diff --git a/.github/workflows/dokka-gh-pages.yml b/.github/workflows/dokka-gh-pages.yml index 446637b83..16b125497 100644 --- a/.github/workflows/dokka-gh-pages.yml +++ b/.github/workflows/dokka-gh-pages.yml @@ -33,7 +33,7 @@ jobs: - name: Build with Dokka uses: gradle/gradle-build-action@v2 with: - arguments: dokkaHtml -i + arguments: doc -i - name: Upload artifact uses: actions/upload-pages-artifact@v2 diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/-advanced-properties.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/-advanced-properties.html deleted file mode 100644 index ac7f84a24..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/-advanced-properties.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - AdvancedProperties - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

AdvancedProperties

-
-
constructor(startTime: Instant? = null, freezeTime: Duration? = null, holdTime: Duration? = null, teamMediaTemplate: Map<TeamMediaType, MediaType?>? = null, teamOverrideTemplate: TeamOverrideTemplate? = null, teamRegexes: TeamRegexOverrides? = null, teamOverrides: Map<String, TeamInfoOverride>? = null, groupOverrides: Map<String, GroupInfoOverride>? = null, organizationOverrides: Map<String, OrganizationInfoOverride>? = null, problemOverrides: Map<String, ProblemInfoOverride>? = null, scoreboardOverrides: RankingSettings? = null)(source)

Parameters

startTime

Override for contest start time. The preferred format is yyyy-mm-dd hh:mm:ss, but some others would be accepted too. startTime override also can affect contest state.

freezeTime

Time from the start of the contest before scoreboard freezing.

holdTime

Fixed time to show as time before the contest start

teamMediaTemplate

Template medias for all teams.

teamOverrideTemplate

Template for team overrides

teamRegexes

Bunch of regexes to extract information cds doesn't provide from team name.

teamOverrides

Overrides for a specific team. Team id from the contest system is key.

groupOverrides

Overrides for specific groups. Group name is key.

problemOverrides

Overrides for specific problems. Problem letter is key.

scoreboardOverrides

Overrides of scoreboard calculation settings

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/freeze-time.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/freeze-time.html deleted file mode 100644 index c7d3905d2..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/freeze-time.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - freezeTime - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

freezeTime

-
-
@Serializable(with = DurationInSecondsSerializer::class)
val freezeTime: Duration? = null(source)

Parameters

freezeTime

Time from the start of the contest before scoreboard freezing.

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/group-overrides.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/group-overrides.html deleted file mode 100644 index 882ef2cd8..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/group-overrides.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - groupOverrides - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

groupOverrides

-
-

Parameters

groupOverrides

Overrides for specific groups. Group name is key.

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/hold-time.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/hold-time.html deleted file mode 100644 index 2513c366b..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/hold-time.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - holdTime - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

holdTime

-
-
@Serializable(with = DurationInSecondsSerializer::class)
val holdTime: Duration? = null(source)

Parameters

holdTime

Fixed time to show as time before the contest start

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/index.html deleted file mode 100644 index f5f1d3bf3..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/index.html +++ /dev/null @@ -1,265 +0,0 @@ - - - - - AdvancedProperties - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

AdvancedProperties

-
@Serializable
data class AdvancedProperties(val startTime: Instant? = null, val freezeTime: Duration? = null, val holdTime: Duration? = null, val teamMediaTemplate: Map<TeamMediaType, MediaType?>? = null, val teamOverrideTemplate: TeamOverrideTemplate? = null, val teamRegexes: TeamRegexOverrides? = null, val teamOverrides: Map<String, TeamInfoOverride>? = null, val groupOverrides: Map<String, GroupInfoOverride>? = null, val organizationOverrides: Map<String, OrganizationInfoOverride>? = null, val problemOverrides: Map<String, ProblemInfoOverride>? = null, val scoreboardOverrides: RankingSettings? = null)(source)

This class represents possible contest configuration overrides.

Ideally, all this information should be received from the contest system. Unfortunately, in the real world, it's not always possible, or information can be not fully correct or convenient to display.

This class contains the data to be fixed in what is received from a contest system.

The order in which overrides applied:

  • Time and scoreboard related (they don't interact with others)

  • Filtering out non-submitted teams if requested

  • Regexp overrides (so values provided by them can be used in templated)

  • Creating new groups mentioned in teams or overrides and group overrides

  • Creating new organizations mentioned in teams or overrides and organization overrides

  • (Deprecated) Team media template

  • Team override template

  • Normal team overrides

In all templates in all strings inside {variableName} pattern is substituted. The following variable names are supported:

  • teamId - team id from the contest system

  • orgFullName - fullName of team organization

  • orgDisplayName - displayName of team organization

  • all values from customFields

Parameters

startTime

Override for contest start time. The preferred format is yyyy-mm-dd hh:mm:ss, but some others would be accepted too. startTime override also can affect contest state.

freezeTime

Time from the start of the contest before scoreboard freezing.

holdTime

Fixed time to show as time before the contest start

teamMediaTemplate

Template medias for all teams.

teamOverrideTemplate

Template for team overrides

teamRegexes

Bunch of regexes to extract information cds doesn't provide from team name.

teamOverrides

Overrides for a specific team. Team id from the contest system is key.

groupOverrides

Overrides for specific groups. Group name is key.

problemOverrides

Overrides for specific problems. Problem letter is key.

scoreboardOverrides

Overrides of scoreboard calculation settings

-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(startTime: Instant? = null, freezeTime: Duration? = null, holdTime: Duration? = null, teamMediaTemplate: Map<TeamMediaType, MediaType?>? = null, teamOverrideTemplate: TeamOverrideTemplate? = null, teamRegexes: TeamRegexOverrides? = null, teamOverrides: Map<String, TeamInfoOverride>? = null, groupOverrides: Map<String, GroupInfoOverride>? = null, organizationOverrides: Map<String, OrganizationInfoOverride>? = null, problemOverrides: Map<String, ProblemInfoOverride>? = null, scoreboardOverrides: RankingSettings? = null)
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable(with = DurationInSecondsSerializer::class)
val freezeTime: Duration? = null
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable(with = DurationInSecondsSerializer::class)
val holdTime: Duration? = null
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
- -
-
- -
-
-
- - -
Link copied to clipboard
-
- -
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable(with = HumanTimeSerializer::class)
val startTime: Instant? = null
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
- -
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/organization-overrides.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/organization-overrides.html deleted file mode 100644 index dc062a1d5..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/organization-overrides.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - organizationOverrides - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

organizationOverrides

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/problem-overrides.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/problem-overrides.html deleted file mode 100644 index 85352b12d..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/problem-overrides.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - problemOverrides - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

problemOverrides

-
-

Parameters

problemOverrides

Overrides for specific problems. Problem letter is key.

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/scoreboard-overrides.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/scoreboard-overrides.html deleted file mode 100644 index dc08aff8e..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/scoreboard-overrides.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - scoreboardOverrides - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

scoreboardOverrides

-
-

Parameters

scoreboardOverrides

Overrides of scoreboard calculation settings

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/start-time.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/start-time.html deleted file mode 100644 index 532aa4da1..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/start-time.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - startTime - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

startTime

-
-
@Serializable(with = HumanTimeSerializer::class)
val startTime: Instant? = null(source)

Parameters

startTime

Override for contest start time. The preferred format is yyyy-mm-dd hh:mm:ss, but some others would be accepted too. startTime override also can affect contest state.

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/team-media-template.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/team-media-template.html deleted file mode 100644 index 8cc3f3ada..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/team-media-template.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - teamMediaTemplate - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

teamMediaTemplate

-
-

Deprecated

Use teamOverrideTemplate instead

Parameters

teamMediaTemplate

Template medias for all teams.

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/team-override-template.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/team-override-template.html deleted file mode 100644 index 1f53e502d..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/team-override-template.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - teamOverrideTemplate - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

teamOverrideTemplate

-
-

Parameters

teamOverrideTemplate

Template for team overrides

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/team-overrides.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/team-overrides.html deleted file mode 100644 index 0b7b5d1a9..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/team-overrides.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - teamOverrides - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

teamOverrides

-
-

Parameters

teamOverrides

Overrides for a specific team. Team id from the contest system is key.

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/team-regexes.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/team-regexes.html deleted file mode 100644 index 283030ea0..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/team-regexes.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - teamRegexes - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

teamRegexes

-
-

Parameters

teamRegexes

Bunch of regexes to extract information cds doesn't provide from team name.

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-group-info-override/-group-info-override.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-group-info-override/-group-info-override.html deleted file mode 100644 index 2cda5fa35..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-group-info-override/-group-info-override.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - GroupInfoOverride - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

GroupInfoOverride

-
-
constructor(isHidden: Boolean? = null, isOutOfContest: Boolean? = null)(source)

Parameters

isHidden

Totally hide all teams from this group

isOutOfContest

Teams from this group will be visible everywhere, but will not have any rank assigned to them in leaderboard

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-group-info-override/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-group-info-override/index.html deleted file mode 100644 index bca2784e0..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-group-info-override/index.html +++ /dev/null @@ -1,130 +0,0 @@ - - - - - GroupInfoOverride - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

GroupInfoOverride

-
@Serializable
data class GroupInfoOverride(val isHidden: Boolean? = null, val isOutOfContest: Boolean? = null)(source)

Parameters

isHidden

Totally hide all teams from this group

isOutOfContest

Teams from this group will be visible everywhere, but will not have any rank assigned to them in leaderboard

-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(isHidden: Boolean? = null, isOutOfContest: Boolean? = null)
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
val isHidden: Boolean? = null
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val isOutOfContest: Boolean? = null
-
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-group-info-override/is-hidden.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-group-info-override/is-hidden.html deleted file mode 100644 index a3a54d016..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-group-info-override/is-hidden.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - isHidden - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

isHidden

-
-
val isHidden: Boolean? = null(source)

Parameters

isHidden

Totally hide all teams from this group

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-group-info-override/is-out-of-contest.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-group-info-override/is-out-of-contest.html deleted file mode 100644 index 22e3ca9fe..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-group-info-override/is-out-of-contest.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - isOutOfContest - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

isOutOfContest

-
-

Parameters

isOutOfContest

Teams from this group will be visible everywhere, but will not have any rank assigned to them in leaderboard

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-organization-info-override/-organization-info-override.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-organization-info-override/-organization-info-override.html deleted file mode 100644 index b476aefc2..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-organization-info-override/-organization-info-override.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - OrganizationInfoOverride - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

OrganizationInfoOverride

-
-
constructor(displayName: String? = null, fullName: String? = null)(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-organization-info-override/display-name.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-organization-info-override/display-name.html deleted file mode 100644 index 0820f9074..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-organization-info-override/display-name.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - displayName - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

displayName

-
-
val displayName: String? = null(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-organization-info-override/full-name.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-organization-info-override/full-name.html deleted file mode 100644 index 7ff41ccf0..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-organization-info-override/full-name.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - fullName - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

fullName

-
-
val fullName: String? = null(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-organization-info-override/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-organization-info-override/index.html deleted file mode 100644 index 6b286661a..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-organization-info-override/index.html +++ /dev/null @@ -1,130 +0,0 @@ - - - - - OrganizationInfoOverride - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

OrganizationInfoOverride

-
@Serializable
data class OrganizationInfoOverride(val displayName: String? = null, val fullName: String? = null)(source)
-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(displayName: String? = null, fullName: String? = null)
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
val displayName: String? = null
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val fullName: String? = null
-
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-problem-info-override/-problem-info-override.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-problem-info-override/-problem-info-override.html deleted file mode 100644 index e6f4292c7..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-problem-info-override/-problem-info-override.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - ProblemInfoOverride - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

ProblemInfoOverride

-
-
constructor(name: String? = null, color: Color? = null, ordinal: Int? = null, minScore: Double? = null, maxScore: Double? = null, scoreMergeMode: ScoreMergeMode? = null)(source)

Parameters

name

Problem name.

color

Color of a problem balloon. It would be shown in queue and scoreboard in places related to the problem

ordinal

Number to sort problems in the scoreboard

minScore

In ioi mode minimal possible value of points in this problem

maxScore

In ioi mode maximal possible value of points in this problem

scoreMergeMode

In ioi mode, select the ruleset to calculate final score based on the scores for each submission.

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-problem-info-override/color.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-problem-info-override/color.html deleted file mode 100644 index 4f2586d2f..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-problem-info-override/color.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - color - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

color

-
-
@Serializable(with = ColorSerializer::class)
val color: Color? = null(source)

Parameters

color

Color of a problem balloon. It would be shown in queue and scoreboard in places related to the problem

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-problem-info-override/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-problem-info-override/index.html deleted file mode 100644 index 49086f8e3..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-problem-info-override/index.html +++ /dev/null @@ -1,190 +0,0 @@ - - - - - ProblemInfoOverride - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

ProblemInfoOverride

-
@Serializable
data class ProblemInfoOverride(val name: String? = null, val color: Color? = null, val ordinal: Int? = null, val minScore: Double? = null, val maxScore: Double? = null, val scoreMergeMode: ScoreMergeMode? = null)(source)

Parameters

name

Problem name.

color

Color of a problem balloon. It would be shown in queue and scoreboard in places related to the problem

ordinal

Number to sort problems in the scoreboard

minScore

In ioi mode minimal possible value of points in this problem

maxScore

In ioi mode maximal possible value of points in this problem

scoreMergeMode

In ioi mode, select the ruleset to calculate final score based on the scores for each submission.

-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(name: String? = null, color: Color? = null, ordinal: Int? = null, minScore: Double? = null, maxScore: Double? = null, scoreMergeMode: ScoreMergeMode? = null)
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable(with = ColorSerializer::class)
val color: Color? = null
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val maxScore: Double? = null
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val minScore: Double? = null
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val name: String? = null
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val ordinal: Int? = null
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-problem-info-override/max-score.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-problem-info-override/max-score.html deleted file mode 100644 index c553e5d2c..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-problem-info-override/max-score.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - maxScore - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

maxScore

-
-
val maxScore: Double? = null(source)

Parameters

maxScore

In ioi mode maximal possible value of points in this problem

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-problem-info-override/min-score.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-problem-info-override/min-score.html deleted file mode 100644 index f13ab7750..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-problem-info-override/min-score.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - minScore - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

minScore

-
-
val minScore: Double? = null(source)

Parameters

minScore

In ioi mode minimal possible value of points in this problem

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-problem-info-override/name.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-problem-info-override/name.html deleted file mode 100644 index ce568a054..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-problem-info-override/name.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - name - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

name

-
-
val name: String? = null(source)

Parameters

name

Problem name.

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-problem-info-override/ordinal.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-problem-info-override/ordinal.html deleted file mode 100644 index 1730a9b83..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-problem-info-override/ordinal.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - ordinal - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

ordinal

-
-
val ordinal: Int? = null(source)

Parameters

ordinal

Number to sort problems in the scoreboard

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-problem-info-override/score-merge-mode.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-problem-info-override/score-merge-mode.html deleted file mode 100644 index 9548657ff..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-problem-info-override/score-merge-mode.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - scoreMergeMode - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

scoreMergeMode

-
-

Parameters

scoreMergeMode

In ioi mode, select the ruleset to calculate final score based on the scores for each submission.

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-ranking-settings/-ranking-settings.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-ranking-settings/-ranking-settings.html deleted file mode 100644 index 0c36daa3a..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-ranking-settings/-ranking-settings.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - RankingSettings - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

RankingSettings

-
-
constructor(medals: List<MedalType>? = null, penaltyPerWrongAttempt: Duration? = null, showTeamsWithoutSubmissions: Boolean? = null, penaltyRoundingMode: PenaltyRoundingMode? = null)(source)

Parameters

medals

List of awarded medals. They would be allocated in given order, according to rules specified in MedalType

penaltyPerWrongAttempt

How many penalty minutes should be added to a team for a wrong attempt

showTeamsWithoutSubmissions

If true, teams without submissions would be automatically hidden

penaltyRoundingMode

Specify rules of how total penalty is calculated based on many submissions

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-ranking-settings/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-ranking-settings/index.html deleted file mode 100644 index bebea3e64..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-ranking-settings/index.html +++ /dev/null @@ -1,160 +0,0 @@ - - - - - RankingSettings - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

RankingSettings

-
@Serializable
class RankingSettings(val medals: List<MedalType>? = null, val penaltyPerWrongAttempt: Duration? = null, val showTeamsWithoutSubmissions: Boolean? = null, val penaltyRoundingMode: PenaltyRoundingMode? = null)(source)

Parameters

medals

List of awarded medals. They would be allocated in given order, according to rules specified in MedalType

penaltyPerWrongAttempt

How many penalty minutes should be added to a team for a wrong attempt

showTeamsWithoutSubmissions

If true, teams without submissions would be automatically hidden

penaltyRoundingMode

Specify rules of how total penalty is calculated based on many submissions

-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(medals: List<MedalType>? = null, penaltyPerWrongAttempt: Duration? = null, showTeamsWithoutSubmissions: Boolean? = null, penaltyRoundingMode: PenaltyRoundingMode? = null)
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
val medals: List<MedalType>? = null
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable(with = DurationInMinutesSerializer::class)
val penaltyPerWrongAttempt: Duration? = null
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
- -
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-ranking-settings/medals.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-ranking-settings/medals.html deleted file mode 100644 index 19a974b13..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-ranking-settings/medals.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - medals - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

medals

-
-
val medals: List<MedalType>? = null(source)

Parameters

medals

List of awarded medals. They would be allocated in given order, according to rules specified in MedalType

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-ranking-settings/penalty-per-wrong-attempt.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-ranking-settings/penalty-per-wrong-attempt.html deleted file mode 100644 index 409ca056a..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-ranking-settings/penalty-per-wrong-attempt.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - penaltyPerWrongAttempt - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

penaltyPerWrongAttempt

-
-
@Serializable(with = DurationInMinutesSerializer::class)
val penaltyPerWrongAttempt: Duration? = null(source)

Parameters

penaltyPerWrongAttempt

How many penalty minutes should be added to a team for a wrong attempt

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-ranking-settings/penalty-rounding-mode.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-ranking-settings/penalty-rounding-mode.html deleted file mode 100644 index bff75a7df..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-ranking-settings/penalty-rounding-mode.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - penaltyRoundingMode - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

penaltyRoundingMode

-
-

Parameters

penaltyRoundingMode

Specify rules of how total penalty is calculated based on many submissions

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-ranking-settings/show-teams-without-submissions.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-ranking-settings/show-teams-without-submissions.html deleted file mode 100644 index 9f947a7ca..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-ranking-settings/show-teams-without-submissions.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - showTeamsWithoutSubmissions - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

showTeamsWithoutSubmissions

-
-

Parameters

showTeamsWithoutSubmissions

If true, teams without submissions would be automatically hidden

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-info-override/-team-info-override.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-info-override/-team-info-override.html deleted file mode 100644 index ae0fe6dae..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-info-override/-team-info-override.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - TeamInfoOverride - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

TeamInfoOverride

-
-
constructor(fullName: String? = null, displayName: String? = null, groups: List<String>? = null, organizationId: String? = null, hashTag: String? = null, medias: Map<TeamMediaType, MediaType?>? = null, customFields: Map<String, String>? = null, isHidden: Boolean? = null, isOutOfContest: Boolean? = null)(source)

Parameters

fullName

Full name of the team. Will be mostly shown on admin pages.

displayName

Name of the team shown in most places.

groups

The list of the groups team belongs too.

organizationId

The id of organization team comes from

hashTag

Team hashtag. Can be shown on some team related pages

medias

Map of urls to team related medias. E.g., team photo or some kind of video from workstation. If media is explicitly set to null, it would be removed if received from a contest system.

customFields

Map of custom values. They can be used in substitutions in templates.

isHidden

If set to true, the team would be totally hidden.

isOutOfContest

If set to true, the team would not receive rank in scoreboard, but it's submission would still be shown.

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-info-override/custom-fields.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-info-override/custom-fields.html deleted file mode 100644 index 6659290c5..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-info-override/custom-fields.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - customFields - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

customFields

-
-

Parameters

customFields

Map of custom values. They can be used in substitutions in templates.

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-info-override/display-name.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-info-override/display-name.html deleted file mode 100644 index d0ab94976..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-info-override/display-name.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - displayName - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

displayName

-
-
val displayName: String? = null(source)

Parameters

displayName

Name of the team shown in most places.

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-info-override/full-name.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-info-override/full-name.html deleted file mode 100644 index df1bb1247..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-info-override/full-name.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - fullName - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

fullName

-
-
val fullName: String? = null(source)

Parameters

fullName

Full name of the team. Will be mostly shown on admin pages.

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-info-override/groups.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-info-override/groups.html deleted file mode 100644 index 8238c4b99..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-info-override/groups.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - groups - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

groups

-
-
val groups: List<String>? = null(source)

Parameters

groups

The list of the groups team belongs too.

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-info-override/hash-tag.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-info-override/hash-tag.html deleted file mode 100644 index 302395fc6..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-info-override/hash-tag.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - hashTag - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

hashTag

-
-
val hashTag: String? = null(source)

Parameters

hashTag

Team hashtag. Can be shown on some team related pages

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-info-override/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-info-override/index.html deleted file mode 100644 index 07993deef..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-info-override/index.html +++ /dev/null @@ -1,235 +0,0 @@ - - - - - TeamInfoOverride - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

TeamInfoOverride

-
@Serializable
data class TeamInfoOverride(val fullName: String? = null, val displayName: String? = null, val groups: List<String>? = null, val organizationId: String? = null, val hashTag: String? = null, val medias: Map<TeamMediaType, MediaType?>? = null, val customFields: Map<String, String>? = null, val isHidden: Boolean? = null, val isOutOfContest: Boolean? = null)(source)

Parameters

fullName

Full name of the team. Will be mostly shown on admin pages.

displayName

Name of the team shown in most places.

groups

The list of the groups team belongs too.

organizationId

The id of organization team comes from

hashTag

Team hashtag. Can be shown on some team related pages

medias

Map of urls to team related medias. E.g., team photo or some kind of video from workstation. If media is explicitly set to null, it would be removed if received from a contest system.

customFields

Map of custom values. They can be used in substitutions in templates.

isHidden

If set to true, the team would be totally hidden.

isOutOfContest

If set to true, the team would not receive rank in scoreboard, but it's submission would still be shown.

-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(fullName: String? = null, displayName: String? = null, groups: List<String>? = null, organizationId: String? = null, hashTag: String? = null, medias: Map<TeamMediaType, MediaType?>? = null, customFields: Map<String, String>? = null, isHidden: Boolean? = null, isOutOfContest: Boolean? = null)
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
val customFields: Map<String, String>? = null
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val displayName: String? = null
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val fullName: String? = null
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val groups: List<String>? = null
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val hashTag: String? = null
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val isHidden: Boolean? = null
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val isOutOfContest: Boolean? = null
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val organizationId: String? = null
-
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-info-override/is-hidden.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-info-override/is-hidden.html deleted file mode 100644 index cdc438e93..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-info-override/is-hidden.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - isHidden - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

isHidden

-
-
val isHidden: Boolean? = null(source)

Parameters

isHidden

If set to true, the team would be totally hidden.

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-info-override/is-out-of-contest.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-info-override/is-out-of-contest.html deleted file mode 100644 index fd5646535..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-info-override/is-out-of-contest.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - isOutOfContest - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

isOutOfContest

-
-

Parameters

isOutOfContest

If set to true, the team would not receive rank in scoreboard, but it's submission would still be shown.

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-info-override/medias.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-info-override/medias.html deleted file mode 100644 index 0c87a06fb..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-info-override/medias.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - medias - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

medias

-
-

Parameters

medias

Map of urls to team related medias. E.g., team photo or some kind of video from workstation. If media is explicitly set to null, it would be removed if received from a contest system.

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-info-override/organization-id.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-info-override/organization-id.html deleted file mode 100644 index 41c87a7b2..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-info-override/organization-id.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - organizationId - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

organizationId

-
-

Parameters

organizationId

The id of organization team comes from

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-override-template/-team-override-template.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-override-template/-team-override-template.html deleted file mode 100644 index 55c8fa1c4..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-override-template/-team-override-template.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - TeamOverrideTemplate - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

TeamOverrideTemplate

-
-
constructor(displayName: String? = null, fullName: String? = null, medias: Map<TeamMediaType, MediaType?>? = null)(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-override-template/display-name.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-override-template/display-name.html deleted file mode 100644 index c77b62cab..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-override-template/display-name.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - displayName - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

displayName

-
-
val displayName: String? = null(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-override-template/full-name.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-override-template/full-name.html deleted file mode 100644 index 79908fc6e..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-override-template/full-name.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - fullName - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

fullName

-
-
val fullName: String? = null(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-override-template/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-override-template/index.html deleted file mode 100644 index d2684dccf..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-override-template/index.html +++ /dev/null @@ -1,145 +0,0 @@ - - - - - TeamOverrideTemplate - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

TeamOverrideTemplate

-
@Serializable
data class TeamOverrideTemplate(val displayName: String? = null, val fullName: String? = null, val medias: Map<TeamMediaType, MediaType?>? = null)(source)

Template for the team override.

It has smaller priority than override in the team itself.

Check AdvancedProperties doc about patterns inside template.

-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(displayName: String? = null, fullName: String? = null, medias: Map<TeamMediaType, MediaType?>? = null)
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
val displayName: String? = null

Template string for team display name. Check TeamInfoOverride.displayName for details.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val fullName: String? = null

Template string for team full name. Check TeamInfoOverride.fullName for details.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Templates for team medias. Check TeamInfoOverride.medias for details.

-
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-override-template/medias.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-override-template/medias.html deleted file mode 100644 index 4fe1e6f75..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-override-template/medias.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - medias - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

medias

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-regex-overrides/-team-regex-overrides.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-regex-overrides/-team-regex-overrides.html deleted file mode 100644 index be3e82e8f..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-regex-overrides/-team-regex-overrides.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - TeamRegexOverrides - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

TeamRegexOverrides

-
-
constructor(organizationRegex: Regex? = null, customFields: Map<String, Regex>? = null, groupRegex: Map<String, Regex>? = null)(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-regex-overrides/custom-fields.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-regex-overrides/custom-fields.html deleted file mode 100644 index 3fd31a2d4..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-regex-overrides/custom-fields.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - customFields - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

customFields

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-regex-overrides/group-regex.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-regex-overrides/group-regex.html deleted file mode 100644 index 84466297f..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-regex-overrides/group-regex.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - groupRegex - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

groupRegex

-
-
val groupRegex: Map<String, Regex>? = null(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-regex-overrides/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-regex-overrides/index.html deleted file mode 100644 index b461d053c..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-regex-overrides/index.html +++ /dev/null @@ -1,145 +0,0 @@ - - - - - TeamRegexOverrides - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

TeamRegexOverrides

-
@Serializable
data class TeamRegexOverrides(val organizationRegex: Regex? = null, val customFields: Map<String, Regex>? = null, val groupRegex: Map<String, Regex>? = null)(source)

In some cases, the contest system provides some useful information as part of team name. This can be used to extract this information to something more structured.

All regexes are java regex.

Regexes are matched against team full name from cds.

-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(organizationRegex: Regex? = null, customFields: Map<String, Regex>? = null, groupRegex: Map<String, Regex>? = null)
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
val customFields: Map<String, Regex>? = null

The only group would be set as custom field value for the corresponding key

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val groupRegex: Map<String, Regex>? = null

The group is added if the name matches regex.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

The only matched group would be equal to new organization id for the team.

-
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-regex-overrides/organization-regex.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-regex-overrides/organization-regex.html deleted file mode 100644 index 0a06f7608..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-regex-overrides/organization-regex.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - organizationRegex - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

organizationRegex

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/index.html deleted file mode 100644 index 9b7e65ddb..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/index.html +++ /dev/null @@ -1,234 +0,0 @@ - - - - - org.icpclive.api.tunning - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

Package-level declarations

-
-
-
-
-
-

Types

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
data class AdvancedProperties(val startTime: Instant? = null, val freezeTime: Duration? = null, val holdTime: Duration? = null, val teamMediaTemplate: Map<TeamMediaType, MediaType?>? = null, val teamOverrideTemplate: TeamOverrideTemplate? = null, val teamRegexes: TeamRegexOverrides? = null, val teamOverrides: Map<String, TeamInfoOverride>? = null, val groupOverrides: Map<String, GroupInfoOverride>? = null, val organizationOverrides: Map<String, OrganizationInfoOverride>? = null, val problemOverrides: Map<String, ProblemInfoOverride>? = null, val scoreboardOverrides: RankingSettings? = null)

This class represents possible contest configuration overrides.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
data class GroupInfoOverride(val isHidden: Boolean? = null, val isOutOfContest: Boolean? = null)
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
data class OrganizationInfoOverride(val displayName: String? = null, val fullName: String? = null)
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
data class ProblemInfoOverride(val name: String? = null, val color: Color? = null, val ordinal: Int? = null, val minScore: Double? = null, val maxScore: Double? = null, val scoreMergeMode: ScoreMergeMode? = null)
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
class RankingSettings(val medals: List<MedalType>? = null, val penaltyPerWrongAttempt: Duration? = null, val showTeamsWithoutSubmissions: Boolean? = null, val penaltyRoundingMode: PenaltyRoundingMode? = null)
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
typealias Regex = @Serializable(with = RegexSerializer::class) kotlin.text.Regex
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
data class TeamInfoOverride(val fullName: String? = null, val displayName: String? = null, val groups: List<String>? = null, val organizationId: String? = null, val hashTag: String? = null, val medias: Map<TeamMediaType, MediaType?>? = null, val customFields: Map<String, String>? = null, val isHidden: Boolean? = null, val isOutOfContest: Boolean? = null)
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
data class TeamOverrideTemplate(val displayName: String? = null, val fullName: String? = null, val medias: Map<TeamMediaType, MediaType?>? = null)

Template for the team override.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
data class TeamRegexOverrides(val organizationRegex: Regex? = null, val customFields: Map<String, Regex>? = null, val groupRegex: Map<String, Regex>? = null)

In some cases, the contest system provides some useful information as part of team name. This can be used to extract this information to something more structured.

-
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-

Converts values in ContestInfo to overrides in [AdvancedProperties

-
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/to-advanced-properties.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/to-advanced-properties.html deleted file mode 100644 index bf871869c..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/to-advanced-properties.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - toAdvancedProperties - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

toAdvancedProperties

-
-

Converts values in ContestInfo to overrides in [AdvancedProperties

Parameters

fields

set of fields to include in returned value. Other would be set to null

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/-analytics-commentary-event.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/-analytics-commentary-event.html deleted file mode 100644 index 3762f6f33..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/-analytics-commentary-event.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - AnalyticsCommentaryEvent - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

AnalyticsCommentaryEvent

-
-
constructor(id: String, message: String, time: Instant, relativeTime: Duration, teamIds: List<Int>, runIds: List<Int>, priority: Int = 0, tags: List<String> = emptyList(), advertisement: AnalyticsCompanionPreset? = null, tickerMessage: AnalyticsCompanionPreset? = null, featuredRun: AnalyticsCompanionRun? = null)(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/advertisement.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/advertisement.html deleted file mode 100644 index 5dddda055..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/advertisement.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - advertisement - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

advertisement

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/featured-run.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/featured-run.html deleted file mode 100644 index 92634c059..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/featured-run.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - featuredRun - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

featuredRun

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/id.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/id.html deleted file mode 100644 index 16a9ebfbc..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/id.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - id - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

id

-
-
open override val id: String(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/index.html deleted file mode 100644 index fb44f968e..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/index.html +++ /dev/null @@ -1,265 +0,0 @@ - - - - - AnalyticsCommentaryEvent - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

AnalyticsCommentaryEvent

-
@Serializable
data class AnalyticsCommentaryEvent(val id: String, val message: String, val time: Instant, val relativeTime: Duration, val teamIds: List<Int>, val runIds: List<Int>, val priority: Int = 0, val tags: List<String> = emptyList(), val advertisement: AnalyticsCompanionPreset? = null, val tickerMessage: AnalyticsCompanionPreset? = null, val featuredRun: AnalyticsCompanionRun? = null) : AnalyticsMessage(source)
-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(id: String, message: String, time: Instant, relativeTime: Duration, teamIds: List<Int>, runIds: List<Int>, priority: Int = 0, tags: List<String> = emptyList(), advertisement: AnalyticsCompanionPreset? = null, tickerMessage: AnalyticsCompanionPreset? = null, featuredRun: AnalyticsCompanionRun? = null)
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
- -
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
open override val id: String
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val priority: Int = 0
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable(with = DurationInMillisecondsSerializer::class)
open override val relativeTime: Duration
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
- -
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable(with = UnixMillisecondsSerializer::class)
open override val time: Instant
-
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/message.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/message.html deleted file mode 100644 index cf393468d..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/message.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - message - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

message

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/priority.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/priority.html deleted file mode 100644 index 7034361de..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/priority.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - priority - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

priority

-
-
val priority: Int = 0(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/relative-time.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/relative-time.html deleted file mode 100644 index cfe18d2d8..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/relative-time.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - relativeTime - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

relativeTime

-
-
@Serializable(with = DurationInMillisecondsSerializer::class)
open override val relativeTime: Duration(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/run-ids.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/run-ids.html deleted file mode 100644 index c3d5acada..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/run-ids.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - runIds - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

runIds

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/tags.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/tags.html deleted file mode 100644 index 3433c7f4b..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/tags.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - tags - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

tags

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/team-ids.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/team-ids.html deleted file mode 100644 index 3a0df7ff4..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/team-ids.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - teamIds - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

teamIds

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/ticker-message.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/ticker-message.html deleted file mode 100644 index bb2b80776..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/ticker-message.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - tickerMessage - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

tickerMessage

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/time.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/time.html deleted file mode 100644 index f29a71f22..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/time.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - time - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

time

-
-
@Serializable(with = UnixMillisecondsSerializer::class)
open override val time: Instant(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-companion-preset/-analytics-companion-preset.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-companion-preset/-analytics-companion-preset.html deleted file mode 100644 index 6062591aa..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-companion-preset/-analytics-companion-preset.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - AnalyticsCompanionPreset - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

AnalyticsCompanionPreset

-
-
constructor(presetId: Int, expirationTime: Instant?)(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-companion-preset/expiration-time.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-companion-preset/expiration-time.html deleted file mode 100644 index 63da0d326..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-companion-preset/expiration-time.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - expirationTime - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

expirationTime

-
-
@Serializable(with = UnixMillisecondsSerializer::class)
val expirationTime: Instant?(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-companion-preset/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-companion-preset/index.html deleted file mode 100644 index e22bdebb8..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-companion-preset/index.html +++ /dev/null @@ -1,130 +0,0 @@ - - - - - AnalyticsCompanionPreset - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

AnalyticsCompanionPreset

-
@Serializable
data class AnalyticsCompanionPreset(val presetId: Int, val expirationTime: Instant?)(source)
-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(presetId: Int, expirationTime: Instant?)
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable(with = UnixMillisecondsSerializer::class)
val expirationTime: Instant?
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-companion-preset/preset-id.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-companion-preset/preset-id.html deleted file mode 100644 index b37bc0842..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-companion-preset/preset-id.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - presetId - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

presetId

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-companion-run/-analytics-companion-run.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-companion-run/-analytics-companion-run.html deleted file mode 100644 index 1090c2e95..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-companion-run/-analytics-companion-run.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - AnalyticsCompanionRun - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

AnalyticsCompanionRun

-
-
constructor(expirationTime: Instant?, mediaType: MediaType)(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-companion-run/expiration-time.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-companion-run/expiration-time.html deleted file mode 100644 index 5de668ce3..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-companion-run/expiration-time.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - expirationTime - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

expirationTime

-
-
@Serializable(with = UnixMillisecondsSerializer::class)
val expirationTime: Instant?(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-companion-run/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-companion-run/index.html deleted file mode 100644 index 17de603e4..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-companion-run/index.html +++ /dev/null @@ -1,130 +0,0 @@ - - - - - AnalyticsCompanionRun - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

AnalyticsCompanionRun

-
@Serializable
data class AnalyticsCompanionRun(val expirationTime: Instant?, val mediaType: MediaType)(source)
-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(expirationTime: Instant?, mediaType: MediaType)
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable(with = UnixMillisecondsSerializer::class)
val expirationTime: Instant?
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-companion-run/media-type.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-companion-run/media-type.html deleted file mode 100644 index 5e4b2062f..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-companion-run/media-type.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - mediaType - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

mediaType

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-message/id.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-message/id.html deleted file mode 100644 index f3949b72b..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-message/id.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - id - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

id

-
-
abstract val id: String(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-message/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-message/index.html deleted file mode 100644 index a8acf028d..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-message/index.html +++ /dev/null @@ -1,126 +0,0 @@ - - - - - AnalyticsMessage - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

AnalyticsMessage

-
@Serializable
sealed class AnalyticsMessage(source)

Inheritors

-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
abstract val id: String
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
abstract val relativeTime: Duration
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
abstract val time: Instant
-
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-message/relative-time.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-message/relative-time.html deleted file mode 100644 index 33e857c52..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-message/relative-time.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - relativeTime - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

relativeTime

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-message/time.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-message/time.html deleted file mode 100644 index 8734ef313..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-message/time.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - time - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

time

-
-
abstract val time: Instant(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/-contest-info.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/-contest-info.html deleted file mode 100644 index 2f9833bc5..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/-contest-info.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - ContestInfo - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

ContestInfo

-
-
constructor(name: String, status: ContestStatus, resultType: ContestResultType, startTime: Instant, contestLength: Duration, freezeTime: Duration, problems: List<ProblemInfo>, teams: List<TeamInfo>, groups: List<GroupInfo>, organizations: List<OrganizationInfo>, penaltyRoundingMode: PenaltyRoundingMode, holdBeforeStartTime: Duration? = null, emulationSpeed: Double = 1.0, medals: List<MedalType> = emptyList(), penaltyPerWrongAttempt: Duration = 20.minutes)(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/contest-length.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/contest-length.html deleted file mode 100644 index 0889613d3..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/contest-length.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - contestLength - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

contestLength

-
-
@Serializable(with = DurationInMillisecondsSerializer::class)
val contestLength: Duration(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/current-contest-time.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/current-contest-time.html deleted file mode 100644 index 5f1f2cb60..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/current-contest-time.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - currentContestTime - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

currentContestTime

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/emulation-speed.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/emulation-speed.html deleted file mode 100644 index 061f6c813..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/emulation-speed.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - emulationSpeed - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

emulationSpeed

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/freeze-time.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/freeze-time.html deleted file mode 100644 index 7eb9ca3f1..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/freeze-time.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - freezeTime - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

freezeTime

-
-
@Serializable(with = DurationInMillisecondsSerializer::class)
val freezeTime: Duration(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/group-by-id.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/group-by-id.html deleted file mode 100644 index 6db310741..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/group-by-id.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - groupById - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

groupById

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/groups.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/groups.html deleted file mode 100644 index bfae5a042..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/groups.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - groups - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

groups

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/hold-before-start-time.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/hold-before-start-time.html deleted file mode 100644 index e35328d03..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/hold-before-start-time.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - holdBeforeStartTime - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

holdBeforeStartTime

-
-
@Serializable(with = DurationInMillisecondsSerializer::class)
val holdBeforeStartTime: Duration? = null(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/index.html deleted file mode 100644 index d4d5001a0..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/index.html +++ /dev/null @@ -1,374 +0,0 @@ - - - - - ContestInfo - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

ContestInfo

-
@Serializable
data class ContestInfo(val name: String, val status: ContestStatus, val resultType: ContestResultType, val startTime: Instant, val contestLength: Duration, val freezeTime: Duration, val problems: List<ProblemInfo>, val teams: List<TeamInfo>, val groups: List<GroupInfo>, val organizations: List<OrganizationInfo>, val penaltyRoundingMode: PenaltyRoundingMode, val holdBeforeStartTime: Duration? = null, val emulationSpeed: Double = 1.0, val medals: List<MedalType> = emptyList(), val penaltyPerWrongAttempt: Duration = 20.minutes)(source)
-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(name: String, status: ContestStatus, resultType: ContestResultType, startTime: Instant, contestLength: Duration, freezeTime: Duration, problems: List<ProblemInfo>, teams: List<TeamInfo>, groups: List<GroupInfo>, organizations: List<OrganizationInfo>, penaltyRoundingMode: PenaltyRoundingMode, holdBeforeStartTime: Duration? = null, emulationSpeed: Double = 1.0, medals: List<MedalType> = emptyList(), penaltyPerWrongAttempt: Duration = 20.minutes)
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable(with = DurationInMillisecondsSerializer::class)
val contestLength: Duration
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
- -
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable(with = DurationInMillisecondsSerializer::class)
val freezeTime: Duration
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable(with = DurationInMillisecondsSerializer::class)
val holdBeforeStartTime: Duration? = null
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
- -
-
- -
-
-
- - -
Link copied to clipboard
-
- -
-
- -
-
-
- - -
Link copied to clipboard
-
- -
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
- -
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable(with = UnixMillisecondsSerializer::class)
val startTime: Instant
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Converts values in ContestInfo to overrides in [AdvancedProperties

-
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/medals.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/medals.html deleted file mode 100644 index f5b889fe1..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/medals.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - medals - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

medals

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/name.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/name.html deleted file mode 100644 index 7f15dd9c0..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/name.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - name - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

name

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/organizations.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/organizations.html deleted file mode 100644 index fd871d3a1..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/organizations.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - organizations - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

organizations

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/penalty-per-wrong-attempt.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/penalty-per-wrong-attempt.html deleted file mode 100644 index e49577615..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/penalty-per-wrong-attempt.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - penaltyPerWrongAttempt - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

penaltyPerWrongAttempt

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/penalty-rounding-mode.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/penalty-rounding-mode.html deleted file mode 100644 index 2e4d1227e..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/penalty-rounding-mode.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - penaltyRoundingMode - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

penaltyRoundingMode

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/problems.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/problems.html deleted file mode 100644 index d2ca19e95..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/problems.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - problems - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

problems

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/result-type.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/result-type.html deleted file mode 100644 index cbe86b0e0..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/result-type.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - resultType - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

resultType

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/start-time.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/start-time.html deleted file mode 100644 index 526bea486..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/start-time.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - startTime - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

startTime

-
-
@Serializable(with = UnixMillisecondsSerializer::class)
val startTime: Instant(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/status.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/status.html deleted file mode 100644 index e4567e01d..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/status.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - status - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

status

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/teams.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/teams.html deleted file mode 100644 index 6a5c6bfe5..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/teams.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - teams - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

teams

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-result-type/-i-c-p-c/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-result-type/-i-c-p-c/index.html deleted file mode 100644 index 1b6186102..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-result-type/-i-c-p-c/index.html +++ /dev/null @@ -1,111 +0,0 @@ - - - - - ICPC - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

ICPC

- -
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-result-type/-i-o-i/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-result-type/-i-o-i/index.html deleted file mode 100644 index 1d6f9ef54..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-result-type/-i-o-i/index.html +++ /dev/null @@ -1,111 +0,0 @@ - - - - - IOI - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

IOI

- -
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-result-type/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-result-type/index.html deleted file mode 100644 index c85c241db..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-result-type/index.html +++ /dev/null @@ -1,179 +0,0 @@ - - - - - ContestResultType - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

ContestResultType

- -
-
-
-
-
-

Entries

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns an array containing the constants of this enum type, in the order they're declared.

-
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-result-type/value-of.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-result-type/value-of.html deleted file mode 100644 index 33a0253c1..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-result-type/value-of.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - valueOf - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

valueOf

-
-

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

if this enum type has no constant with the specified name

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-result-type/values.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-result-type/values.html deleted file mode 100644 index 18ff72355..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-result-type/values.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - values - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

values

-
-

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-status/-b-e-f-o-r-e/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-status/-b-e-f-o-r-e/index.html deleted file mode 100644 index 02e8a2fc9..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-status/-b-e-f-o-r-e/index.html +++ /dev/null @@ -1,111 +0,0 @@ - - - - - BEFORE - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

BEFORE

- -
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-status/-o-v-e-r/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-status/-o-v-e-r/index.html deleted file mode 100644 index 46c234eba..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-status/-o-v-e-r/index.html +++ /dev/null @@ -1,111 +0,0 @@ - - - - - OVER - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

OVER

- -
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-status/-r-u-n-n-i-n-g/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-status/-r-u-n-n-i-n-g/index.html deleted file mode 100644 index c435090e0..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-status/-r-u-n-n-i-n-g/index.html +++ /dev/null @@ -1,111 +0,0 @@ - - - - - RUNNING - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

RUNNING

- -
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-status/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-status/index.html deleted file mode 100644 index fbeb4a8fe..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-status/index.html +++ /dev/null @@ -1,194 +0,0 @@ - - - - - ContestStatus - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

ContestStatus

-
@Serializable
enum ContestStatus : Enum<ContestStatus> (source)
-
-
-
-
-
-

Entries

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns an array containing the constants of this enum type, in the order they're declared.

-
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-status/value-of.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-status/value-of.html deleted file mode 100644 index d1cb0226a..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-status/value-of.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - valueOf - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

valueOf

-
-

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

if this enum type has no constant with the specified name

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-status/values.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-status/values.html deleted file mode 100644 index 5d7392600..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-status/values.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - values - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

values

-
-

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-group-info/-group-info.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-group-info/-group-info.html deleted file mode 100644 index 524cd6db4..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-group-info/-group-info.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - GroupInfo - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

GroupInfo

-
-
constructor(name: String, isHidden: Boolean = false, isOutOfContest: Boolean = false)(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-group-info/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-group-info/index.html deleted file mode 100644 index 9f2395d55..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-group-info/index.html +++ /dev/null @@ -1,145 +0,0 @@ - - - - - GroupInfo - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

GroupInfo

-
@Serializable
data class GroupInfo(val name: String, val isHidden: Boolean = false, val isOutOfContest: Boolean = false)(source)
-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(name: String, isHidden: Boolean = false, isOutOfContest: Boolean = false)
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
val isHidden: Boolean = false
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val isOutOfContest: Boolean = false
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-group-info/is-hidden.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-group-info/is-hidden.html deleted file mode 100644 index 97d5bd48a..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-group-info/is-hidden.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - isHidden - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

isHidden

-
-
val isHidden: Boolean = false(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-group-info/is-out-of-contest.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-group-info/is-out-of-contest.html deleted file mode 100644 index 95858f6e0..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-group-info/is-out-of-contest.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - isOutOfContest - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

isOutOfContest

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-group-info/name.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-group-info/name.html deleted file mode 100644 index b7df20545..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-group-info/name.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - name - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

name

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-c-p-c-problem-result/-i-c-p-c-problem-result.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-c-p-c-problem-result/-i-c-p-c-problem-result.html deleted file mode 100644 index 4c5f8dd2d..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-c-p-c-problem-result/-i-c-p-c-problem-result.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - ICPCProblemResult - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

ICPCProblemResult

-
-
constructor(wrongAttempts: Int, pendingAttempts: Int, isSolved: Boolean, isFirstToSolve: Boolean, lastSubmitTime: Duration?)(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-c-p-c-problem-result/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-c-p-c-problem-result/index.html deleted file mode 100644 index 52f665467..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-c-p-c-problem-result/index.html +++ /dev/null @@ -1,175 +0,0 @@ - - - - - ICPCProblemResult - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

ICPCProblemResult

-
@Serializable
data class ICPCProblemResult(val wrongAttempts: Int, val pendingAttempts: Int, val isSolved: Boolean, val isFirstToSolve: Boolean, val lastSubmitTime: Duration?) : ProblemResult(source)
-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(wrongAttempts: Int, pendingAttempts: Int, isSolved: Boolean, isFirstToSolve: Boolean, lastSubmitTime: Duration?)
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable(with = DurationInMillisecondsSerializer::class)
val lastSubmitTime: Duration?
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-c-p-c-problem-result/is-first-to-solve.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-c-p-c-problem-result/is-first-to-solve.html deleted file mode 100644 index 5c8c92c96..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-c-p-c-problem-result/is-first-to-solve.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - isFirstToSolve - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

isFirstToSolve

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-c-p-c-problem-result/is-solved.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-c-p-c-problem-result/is-solved.html deleted file mode 100644 index 1eb0ab5f1..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-c-p-c-problem-result/is-solved.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - isSolved - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

isSolved

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-c-p-c-problem-result/last-submit-time.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-c-p-c-problem-result/last-submit-time.html deleted file mode 100644 index 0e6443071..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-c-p-c-problem-result/last-submit-time.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - lastSubmitTime - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

lastSubmitTime

-
-
@Serializable(with = DurationInMillisecondsSerializer::class)
val lastSubmitTime: Duration?(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-c-p-c-problem-result/pending-attempts.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-c-p-c-problem-result/pending-attempts.html deleted file mode 100644 index 7f8a48ec6..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-c-p-c-problem-result/pending-attempts.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - pendingAttempts - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

pendingAttempts

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-c-p-c-problem-result/wrong-attempts.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-c-p-c-problem-result/wrong-attempts.html deleted file mode 100644 index 2d9503ddf..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-c-p-c-problem-result/wrong-attempts.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - wrongAttempts - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

wrongAttempts

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-c-p-c-run-result/-i-c-p-c-run-result.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-c-p-c-run-result/-i-c-p-c-run-result.html deleted file mode 100644 index f96e0cbde..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-c-p-c-run-result/-i-c-p-c-run-result.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - ICPCRunResult - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

ICPCRunResult

-
-
constructor(verdict: Verdict, isFirstToSolveRun: Boolean)(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-c-p-c-run-result/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-c-p-c-run-result/index.html deleted file mode 100644 index 3925378e0..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-c-p-c-run-result/index.html +++ /dev/null @@ -1,130 +0,0 @@ - - - - - ICPCRunResult - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

ICPCRunResult

-
@Serializable
data class ICPCRunResult(val verdict: Verdict, val isFirstToSolveRun: Boolean) : RunResult(source)
-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(verdict: Verdict, isFirstToSolveRun: Boolean)
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-c-p-c-run-result/is-first-to-solve-run.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-c-p-c-run-result/is-first-to-solve-run.html deleted file mode 100644 index 08e1d843d..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-c-p-c-run-result/is-first-to-solve-run.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - isFirstToSolveRun - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

isFirstToSolveRun

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-c-p-c-run-result/verdict.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-c-p-c-run-result/verdict.html deleted file mode 100644 index 731c6bea7..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-c-p-c-run-result/verdict.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - verdict - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

verdict

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-problem-result/-i-o-i-problem-result.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-problem-result/-i-o-i-problem-result.html deleted file mode 100644 index c526678b5..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-problem-result/-i-o-i-problem-result.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - IOIProblemResult - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

IOIProblemResult

-
-
constructor(score: Double?, lastSubmitTime: Duration?, isFirstBest: Boolean)(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-problem-result/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-problem-result/index.html deleted file mode 100644 index 4e2b10946..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-problem-result/index.html +++ /dev/null @@ -1,145 +0,0 @@ - - - - - IOIProblemResult - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

IOIProblemResult

-
@Serializable
data class IOIProblemResult(val score: Double?, val lastSubmitTime: Duration?, val isFirstBest: Boolean) : ProblemResult(source)
-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(score: Double?, lastSubmitTime: Duration?, isFirstBest: Boolean)
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable(with = DurationInMillisecondsSerializer::class)
val lastSubmitTime: Duration?
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-problem-result/is-first-best.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-problem-result/is-first-best.html deleted file mode 100644 index a87f6c303..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-problem-result/is-first-best.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - isFirstBest - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

isFirstBest

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-problem-result/last-submit-time.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-problem-result/last-submit-time.html deleted file mode 100644 index ef5600daa..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-problem-result/last-submit-time.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - lastSubmitTime - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

lastSubmitTime

-
-
@Serializable(with = DurationInMillisecondsSerializer::class)
val lastSubmitTime: Duration?(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-problem-result/score.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-problem-result/score.html deleted file mode 100644 index 6541cc4a7..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-problem-result/score.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - score - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

score

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-run-result/-i-o-i-run-result.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-run-result/-i-o-i-run-result.html deleted file mode 100644 index f730b0300..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-run-result/-i-o-i-run-result.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - IOIRunResult - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

IOIRunResult

-
-
constructor(score: List<Double>, wrongVerdict: Verdict? = null, difference: Double = 0.0, scoreAfter: Double = 0.0, isFirstBestRun: Boolean = false, isFirstBestTeamRun: Boolean = false)(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-run-result/difference.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-run-result/difference.html deleted file mode 100644 index ff3d928d5..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-run-result/difference.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - difference - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

difference

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-run-result/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-run-result/index.html deleted file mode 100644 index 0bc44b5b7..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-run-result/index.html +++ /dev/null @@ -1,190 +0,0 @@ - - - - - IOIRunResult - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

IOIRunResult

-
@Serializable
data class IOIRunResult(val score: List<Double>, val wrongVerdict: Verdict? = null, val difference: Double = 0.0, val scoreAfter: Double = 0.0, val isFirstBestRun: Boolean = false, val isFirstBestTeamRun: Boolean = false) : RunResult(source)
-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(score: List<Double>, wrongVerdict: Verdict? = null, difference: Double = 0.0, scoreAfter: Double = 0.0, isFirstBestRun: Boolean = false, isFirstBestTeamRun: Boolean = false)
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
val difference: Double = 0.0
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val isFirstBestRun: Boolean = false
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val scoreAfter: Double = 0.0
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val wrongVerdict: Verdict? = null
-
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-run-result/is-first-best-run.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-run-result/is-first-best-run.html deleted file mode 100644 index 5ee8dd5ff..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-run-result/is-first-best-run.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - isFirstBestRun - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

isFirstBestRun

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-run-result/is-first-best-team-run.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-run-result/is-first-best-team-run.html deleted file mode 100644 index 34b544b7f..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-run-result/is-first-best-team-run.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - isFirstBestTeamRun - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

isFirstBestTeamRun

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-run-result/score-after.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-run-result/score-after.html deleted file mode 100644 index 6bf255c5f..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-run-result/score-after.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - scoreAfter - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

scoreAfter

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-run-result/score.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-run-result/score.html deleted file mode 100644 index fd3f111d4..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-run-result/score.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - score - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

score

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-run-result/wrong-verdict.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-run-result/wrong-verdict.html deleted file mode 100644 index 4f419721f..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-run-result/wrong-verdict.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - wrongVerdict - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

wrongVerdict

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-medal-tiebreak-mode/-a-l-l/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-medal-tiebreak-mode/-a-l-l/index.html deleted file mode 100644 index 983035610..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-medal-tiebreak-mode/-a-l-l/index.html +++ /dev/null @@ -1,111 +0,0 @@ - - - - - ALL - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

ALL

- -
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-medal-tiebreak-mode/-n-o-n-e/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-medal-tiebreak-mode/-n-o-n-e/index.html deleted file mode 100644 index d992c5d27..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-medal-tiebreak-mode/-n-o-n-e/index.html +++ /dev/null @@ -1,111 +0,0 @@ - - - - - NONE - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

NONE

- -
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-medal-tiebreak-mode/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-medal-tiebreak-mode/index.html deleted file mode 100644 index 8757e355a..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-medal-tiebreak-mode/index.html +++ /dev/null @@ -1,179 +0,0 @@ - - - - - MedalTiebreakMode - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

MedalTiebreakMode

- -
-
-
-
-
-

Entries

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns an array containing the constants of this enum type, in the order they're declared.

-
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-medal-tiebreak-mode/value-of.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-medal-tiebreak-mode/value-of.html deleted file mode 100644 index a384f8517..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-medal-tiebreak-mode/value-of.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - valueOf - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

valueOf

-
-

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

if this enum type has no constant with the specified name

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-medal-tiebreak-mode/values.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-medal-tiebreak-mode/values.html deleted file mode 100644 index 7506923c6..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-medal-tiebreak-mode/values.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - values - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

values

-
-

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-medal-type/-medal-type.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-medal-type/-medal-type.html deleted file mode 100644 index 1c694dfa5..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-medal-type/-medal-type.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - MedalType - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

MedalType

-
-
constructor(name: String, count: Int, minScore: Double = Double.MIN_VALUE, tiebreakMode: MedalTiebreakMode = MedalTiebreakMode.ALL)(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-medal-type/count.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-medal-type/count.html deleted file mode 100644 index fab8e7e56..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-medal-type/count.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - count - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

count

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-medal-type/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-medal-type/index.html deleted file mode 100644 index 4ca636b4a..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-medal-type/index.html +++ /dev/null @@ -1,160 +0,0 @@ - - - - - MedalType - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

MedalType

-
@Serializable
data class MedalType(val name: String, val count: Int, val minScore: Double = Double.MIN_VALUE, val tiebreakMode: MedalTiebreakMode = MedalTiebreakMode.ALL)(source)
-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(name: String, count: Int, minScore: Double = Double.MIN_VALUE, tiebreakMode: MedalTiebreakMode = MedalTiebreakMode.ALL)
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
val count: Int
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
- -
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-medal-type/min-score.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-medal-type/min-score.html deleted file mode 100644 index 32c2489a4..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-medal-type/min-score.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - minScore - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

minScore

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-medal-type/name.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-medal-type/name.html deleted file mode 100644 index 5a5fc88ae..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-medal-type/name.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - name - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

name

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-medal-type/tiebreak-mode.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-medal-type/tiebreak-mode.html deleted file mode 100644 index f3441ec26..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-medal-type/tiebreak-mode.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - tiebreakMode - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

tiebreakMode

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-object/-object.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-object/-object.html deleted file mode 100644 index f74589ddb..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-object/-object.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - Object - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

Object

-
-
constructor(url: String, isMedia: Boolean = true)(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-object/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-object/index.html deleted file mode 100644 index 1f63ffb7f..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-object/index.html +++ /dev/null @@ -1,149 +0,0 @@ - - - - - Object - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

Object

-
@Serializable
data class Object(val url: String, val isMedia: Boolean = true) : MediaType(source)
-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(url: String, isMedia: Boolean = true)
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
open override val isMedia: Boolean = true
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val url: String
-
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-object/is-media.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-object/is-media.html deleted file mode 100644 index 17b44be07..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-object/is-media.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - isMedia - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

isMedia

-
-
open override val isMedia: Boolean = true(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-object/url.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-object/url.html deleted file mode 100644 index 4fe51b06b..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-object/url.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - url - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

url

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-photo/-photo.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-photo/-photo.html deleted file mode 100644 index 0bb173975..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-photo/-photo.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - Photo - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

Photo

-
-
constructor(url: String, isMedia: Boolean = true)(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-photo/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-photo/index.html deleted file mode 100644 index 64f3bb676..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-photo/index.html +++ /dev/null @@ -1,149 +0,0 @@ - - - - - Photo - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

Photo

-
@Serializable
data class Photo(val url: String, val isMedia: Boolean = true) : MediaType(source)
-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(url: String, isMedia: Boolean = true)
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
open override val isMedia: Boolean = true
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val url: String
-
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-photo/is-media.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-photo/is-media.html deleted file mode 100644 index 3acf4fc80..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-photo/is-media.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - isMedia - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

isMedia

-
-
open override val isMedia: Boolean = true(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-photo/url.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-photo/url.html deleted file mode 100644 index 8847dcf70..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-photo/url.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - url - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

url

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-task-status/-task-status.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-task-status/-task-status.html deleted file mode 100644 index 8bed2e790..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-task-status/-task-status.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - TaskStatus - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

TaskStatus

-
-
constructor(teamId: Int)(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-task-status/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-task-status/index.html deleted file mode 100644 index 600dbe288..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-task-status/index.html +++ /dev/null @@ -1,149 +0,0 @@ - - - - - TaskStatus - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

TaskStatus

-
@Serializable
data class TaskStatus(val teamId: Int) : MediaType(source)
-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(teamId: Int)
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
open override val isMedia: Boolean = false
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val teamId: Int
-
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-task-status/is-media.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-task-status/is-media.html deleted file mode 100644 index fc90b0e47..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-task-status/is-media.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - isMedia - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

isMedia

-
-
open override val isMedia: Boolean = false(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-task-status/team-id.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-task-status/team-id.html deleted file mode 100644 index 3c2cea6c4..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-task-status/team-id.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - teamId - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

teamId

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-video/-video.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-video/-video.html deleted file mode 100644 index 328bf4f04..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-video/-video.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - Video - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

Video

-
-
constructor(url: String, isMedia: Boolean = true)(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-video/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-video/index.html deleted file mode 100644 index c735b8cc8..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-video/index.html +++ /dev/null @@ -1,149 +0,0 @@ - - - - - Video - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

Video

-
@Serializable
data class Video(val url: String, val isMedia: Boolean = true) : MediaType(source)
-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(url: String, isMedia: Boolean = true)
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
open override val isMedia: Boolean = true
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val url: String
-
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-video/is-media.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-video/is-media.html deleted file mode 100644 index b8aa0a82c..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-video/is-media.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - isMedia - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

isMedia

-
-
open override val isMedia: Boolean = true(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-video/url.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-video/url.html deleted file mode 100644 index 43eb4e79c..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-video/url.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - url - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

url

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-web-r-t-c-grabber-connection/-web-r-t-c-grabber-connection.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-web-r-t-c-grabber-connection/-web-r-t-c-grabber-connection.html deleted file mode 100644 index 4ecf989bf..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-web-r-t-c-grabber-connection/-web-r-t-c-grabber-connection.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - WebRTCGrabberConnection - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

WebRTCGrabberConnection

-
-
constructor(url: String, peerName: String, streamType: String, credential: String?, isMedia: Boolean = true)(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-web-r-t-c-grabber-connection/credential.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-web-r-t-c-grabber-connection/credential.html deleted file mode 100644 index d262149b2..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-web-r-t-c-grabber-connection/credential.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - credential - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

credential

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-web-r-t-c-grabber-connection/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-web-r-t-c-grabber-connection/index.html deleted file mode 100644 index 0821dc3ce..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-web-r-t-c-grabber-connection/index.html +++ /dev/null @@ -1,194 +0,0 @@ - - - - - WebRTCGrabberConnection - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

WebRTCGrabberConnection

-
@Serializable
data class WebRTCGrabberConnection(val url: String, val peerName: String, val streamType: String, val credential: String?, val isMedia: Boolean = true) : MediaType(source)

WebRTC grabber connection https://github.com/irdkwmnsb/webrtc-grabber

-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(url: String, peerName: String, streamType: String, credential: String?, isMedia: Boolean = true)
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
open override val isMedia: Boolean = true
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val url: String
-
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-web-r-t-c-grabber-connection/is-media.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-web-r-t-c-grabber-connection/is-media.html deleted file mode 100644 index 21a980c6a..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-web-r-t-c-grabber-connection/is-media.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - isMedia - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

isMedia

-
-
open override val isMedia: Boolean = true(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-web-r-t-c-grabber-connection/peer-name.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-web-r-t-c-grabber-connection/peer-name.html deleted file mode 100644 index 45699fc38..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-web-r-t-c-grabber-connection/peer-name.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - peerName - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

peerName

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-web-r-t-c-grabber-connection/stream-type.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-web-r-t-c-grabber-connection/stream-type.html deleted file mode 100644 index 8a7d77fea..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-web-r-t-c-grabber-connection/stream-type.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - streamType - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

streamType

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-web-r-t-c-grabber-connection/url.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-web-r-t-c-grabber-connection/url.html deleted file mode 100644 index 62e5d882e..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-web-r-t-c-grabber-connection/url.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - url - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

url

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-web-r-t-c-proxy-connection/-web-r-t-c-proxy-connection.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-web-r-t-c-proxy-connection/-web-r-t-c-proxy-connection.html deleted file mode 100644 index 28dcb29ad..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-web-r-t-c-proxy-connection/-web-r-t-c-proxy-connection.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - WebRTCProxyConnection - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

WebRTCProxyConnection

-
-
constructor(url: String, audioUrl: String? = null, isMedia: Boolean = true)(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-web-r-t-c-proxy-connection/audio-url.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-web-r-t-c-proxy-connection/audio-url.html deleted file mode 100644 index 3ee50da2d..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-web-r-t-c-proxy-connection/audio-url.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - audioUrl - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

audioUrl

-
-
val audioUrl: String? = null(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-web-r-t-c-proxy-connection/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-web-r-t-c-proxy-connection/index.html deleted file mode 100644 index 893235a4a..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-web-r-t-c-proxy-connection/index.html +++ /dev/null @@ -1,164 +0,0 @@ - - - - - WebRTCProxyConnection - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

WebRTCProxyConnection

-
@Serializable
data class WebRTCProxyConnection(val url: String, val audioUrl: String? = null, val isMedia: Boolean = true) : MediaType(source)

WebRTC proxy connection

See also

-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(url: String, audioUrl: String? = null, isMedia: Boolean = true)
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
val audioUrl: String? = null
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
open override val isMedia: Boolean = true
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val url: String
-
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-web-r-t-c-proxy-connection/is-media.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-web-r-t-c-proxy-connection/is-media.html deleted file mode 100644 index 3a8098f37..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-web-r-t-c-proxy-connection/is-media.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - isMedia - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

isMedia

-
-
open override val isMedia: Boolean = true(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-web-r-t-c-proxy-connection/url.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-web-r-t-c-proxy-connection/url.html deleted file mode 100644 index d0fec25ff..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-web-r-t-c-proxy-connection/url.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - url - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

url

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/index.html deleted file mode 100644 index abc624fd7..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/index.html +++ /dev/null @@ -1,209 +0,0 @@ - - - - - MediaType - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- - -
-
-
-
-

Types

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
data class Object(val url: String, val isMedia: Boolean = true) : MediaType
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
data class Photo(val url: String, val isMedia: Boolean = true) : MediaType
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
data class TaskStatus(val teamId: Int) : MediaType
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
data class Video(val url: String, val isMedia: Boolean = true) : MediaType
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
data class WebRTCGrabberConnection(val url: String, val peerName: String, val streamType: String, val credential: String?, val isMedia: Boolean = true) : MediaType

WebRTC grabber connection https://github.com/irdkwmnsb/webrtc-grabber

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
data class WebRTCProxyConnection(val url: String, val audioUrl: String? = null, val isMedia: Boolean = true) : MediaType

WebRTC proxy connection

-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
abstract val isMedia: Boolean
-
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/is-media.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/is-media.html deleted file mode 100644 index f573c60fc..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/is-media.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - isMedia - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

isMedia

-
-
abstract val isMedia: Boolean(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/no-media.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/no-media.html deleted file mode 100644 index 476ae8f06..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/no-media.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - noMedia - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

noMedia

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-optimism-level/-n-o-r-m-a-l/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-optimism-level/-n-o-r-m-a-l/index.html deleted file mode 100644 index edbac1b4a..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-optimism-level/-n-o-r-m-a-l/index.html +++ /dev/null @@ -1,111 +0,0 @@ - - - - - NORMAL - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

NORMAL

- -
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-optimism-level/-o-p-t-i-m-i-s-t-i-c/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-optimism-level/-o-p-t-i-m-i-s-t-i-c/index.html deleted file mode 100644 index 8abb88b8b..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-optimism-level/-o-p-t-i-m-i-s-t-i-c/index.html +++ /dev/null @@ -1,111 +0,0 @@ - - - - - OPTIMISTIC - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

OPTIMISTIC

- -
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-optimism-level/-p-e-s-s-i-m-i-s-t-i-c/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-optimism-level/-p-e-s-s-i-m-i-s-t-i-c/index.html deleted file mode 100644 index a584f40fe..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-optimism-level/-p-e-s-s-i-m-i-s-t-i-c/index.html +++ /dev/null @@ -1,111 +0,0 @@ - - - - - PESSIMISTIC - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

PESSIMISTIC

- -
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-optimism-level/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-optimism-level/index.html deleted file mode 100644 index c62264f58..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-optimism-level/index.html +++ /dev/null @@ -1,194 +0,0 @@ - - - - - OptimismLevel - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

OptimismLevel

-
@Serializable
enum OptimismLevel : Enum<OptimismLevel> (source)
-
-
-
-
-
-

Entries

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns an array containing the constants of this enum type, in the order they're declared.

-
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-optimism-level/value-of.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-optimism-level/value-of.html deleted file mode 100644 index 391ab92e3..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-optimism-level/value-of.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - valueOf - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

valueOf

-
-

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

if this enum type has no constant with the specified name

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-optimism-level/values.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-optimism-level/values.html deleted file mode 100644 index 995b9b49f..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-optimism-level/values.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - values - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

values

-
-

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-organization-info/-organization-info.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-organization-info/-organization-info.html deleted file mode 100644 index a99239372..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-organization-info/-organization-info.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - OrganizationInfo - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

OrganizationInfo

-
-
constructor(cdsId: String, displayName: String, fullName: String)(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-organization-info/cds-id.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-organization-info/cds-id.html deleted file mode 100644 index 3872a82ac..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-organization-info/cds-id.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - cdsId - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

cdsId

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-organization-info/display-name.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-organization-info/display-name.html deleted file mode 100644 index 844f15301..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-organization-info/display-name.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - displayName - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

displayName

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-organization-info/full-name.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-organization-info/full-name.html deleted file mode 100644 index 9d0e8fe2d..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-organization-info/full-name.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - fullName - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

fullName

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-organization-info/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-organization-info/index.html deleted file mode 100644 index 59e399311..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-organization-info/index.html +++ /dev/null @@ -1,145 +0,0 @@ - - - - - OrganizationInfo - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

OrganizationInfo

-
@Serializable
data class OrganizationInfo(val cdsId: String, val displayName: String, val fullName: String)(source)
-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(cdsId: String, displayName: String, fullName: String)
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-penalty-rounding-mode/-e-a-c-h_-s-u-b-m-i-s-s-i-o-n_-d-o-w-n_-t-o_-m-i-n-u-t-e/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-penalty-rounding-mode/-e-a-c-h_-s-u-b-m-i-s-s-i-o-n_-d-o-w-n_-t-o_-m-i-n-u-t-e/index.html deleted file mode 100644 index 882126299..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-penalty-rounding-mode/-e-a-c-h_-s-u-b-m-i-s-s-i-o-n_-d-o-w-n_-t-o_-m-i-n-u-t-e/index.html +++ /dev/null @@ -1,111 +0,0 @@ - - - - - EACH_SUBMISSION_DOWN_TO_MINUTE - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

EACH_SUBMISSION_DOWN_TO_MINUTE

-

Round time of all submissions from the beginning of the contest down to whole minute, and then sum them

-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-penalty-rounding-mode/-l-a-s-t/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-penalty-rounding-mode/-l-a-s-t/index.html deleted file mode 100644 index 7b2f779a5..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-penalty-rounding-mode/-l-a-s-t/index.html +++ /dev/null @@ -1,111 +0,0 @@ - - - - - LAST - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

LAST

-

Get time of last submission as penalty

-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-penalty-rounding-mode/-s-u-m_-d-o-w-n_-t-o_-m-i-n-u-t-e/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-penalty-rounding-mode/-s-u-m_-d-o-w-n_-t-o_-m-i-n-u-t-e/index.html deleted file mode 100644 index c138636ac..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-penalty-rounding-mode/-s-u-m_-d-o-w-n_-t-o_-m-i-n-u-t-e/index.html +++ /dev/null @@ -1,111 +0,0 @@ - - - - - SUM_DOWN_TO_MINUTE - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

SUM_DOWN_TO_MINUTE

-

Sum time of all submissions from the beginning of the contest and then round it down to whole minute

-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-penalty-rounding-mode/-s-u-m_-i-n_-s-e-c-o-n-d-s/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-penalty-rounding-mode/-s-u-m_-i-n_-s-e-c-o-n-d-s/index.html deleted file mode 100644 index 3db7c65f0..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-penalty-rounding-mode/-s-u-m_-i-n_-s-e-c-o-n-d-s/index.html +++ /dev/null @@ -1,111 +0,0 @@ - - - - - SUM_IN_SECONDS - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

SUM_IN_SECONDS

-

Sum time of all submissions without rounding

-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-penalty-rounding-mode/-z-e-r-o/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-penalty-rounding-mode/-z-e-r-o/index.html deleted file mode 100644 index 240e39ad3..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-penalty-rounding-mode/-z-e-r-o/index.html +++ /dev/null @@ -1,111 +0,0 @@ - - - - - ZERO - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

ZERO

-

Don't have any penalty as a tie-breaker

-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-penalty-rounding-mode/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-penalty-rounding-mode/index.html deleted file mode 100644 index c3f76a368..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-penalty-rounding-mode/index.html +++ /dev/null @@ -1,224 +0,0 @@ - - - - - PenaltyRoundingMode - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

PenaltyRoundingMode

- -
-
-
-
-
-

Entries

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-

Round time of all submissions from the beginning of the contest down to whole minute, and then sum them

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Sum time of all submissions from the beginning of the contest and then round it down to whole minute

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Sum time of all submissions without rounding

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Get time of last submission as penalty

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Don't have any penalty as a tie-breaker

-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns an array containing the constants of this enum type, in the order they're declared.

-
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-penalty-rounding-mode/value-of.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-penalty-rounding-mode/value-of.html deleted file mode 100644 index 0a3836907..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-penalty-rounding-mode/value-of.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - valueOf - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

valueOf

-
-

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

if this enum type has no constant with the specified name

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-penalty-rounding-mode/values.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-penalty-rounding-mode/values.html deleted file mode 100644 index f56c5d875..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-penalty-rounding-mode/values.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - values - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

values

-
-

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/-companion/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/-companion/index.html deleted file mode 100644 index 0d6cd4607..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/-companion/index.html +++ /dev/null @@ -1,96 +0,0 @@ - - - - - Companion - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

Companion

- -
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
val logger: Logger
-
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/-companion/logger.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/-companion/logger.html deleted file mode 100644 index 02c28ec99..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/-companion/logger.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - logger - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

logger

-
-
val logger: Logger(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/-problem-info.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/-problem-info.html deleted file mode 100644 index 5b38c228b..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/-problem-info.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - ProblemInfo - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

ProblemInfo

-
-
constructor(letter: String, name: String, id: Int, ordinal: Int, contestSystemId: String, minScore: Double? = null, maxScore: Double? = null, color: Color? = null, scoreMergeMode: ScoreMergeMode? = null)(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/color.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/color.html deleted file mode 100644 index 5e91d425d..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/color.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - color - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

color

-
-
@Serializable(with = ColorSerializer::class)
val color: Color? = null(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/contest-system-id.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/contest-system-id.html deleted file mode 100644 index f885b2b9b..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/contest-system-id.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - contestSystemId - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

contestSystemId

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/id.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/id.html deleted file mode 100644 index 1e3ccdaf8..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/id.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - id - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

id

-
-
val id: Int(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/index.html deleted file mode 100644 index e84d02bdb..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/index.html +++ /dev/null @@ -1,254 +0,0 @@ - - - - - ProblemInfo - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

ProblemInfo

-
@Serializable
data class ProblemInfo(val letter: String, val name: String, val id: Int, val ordinal: Int, val contestSystemId: String, val minScore: Double? = null, val maxScore: Double? = null, val color: Color? = null, val scoreMergeMode: ScoreMergeMode? = null)(source)
-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(letter: String, name: String, id: Int, ordinal: Int, contestSystemId: String, minScore: Double? = null, maxScore: Double? = null, color: Color? = null, scoreMergeMode: ScoreMergeMode? = null)
-
-
-
-
-
-
-
-

Types

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
object Companion
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable(with = ColorSerializer::class)
val color: Color? = null
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val id: Int
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val maxScore: Double? = null
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val minScore: Double? = null
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/letter.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/letter.html deleted file mode 100644 index ececea2c7..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/letter.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - letter - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

letter

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/max-score.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/max-score.html deleted file mode 100644 index a8611ccd1..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/max-score.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - maxScore - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

maxScore

-
-
val maxScore: Double? = null(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/min-score.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/min-score.html deleted file mode 100644 index 834148074..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/min-score.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - minScore - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

minScore

-
-
val minScore: Double? = null(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/name.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/name.html deleted file mode 100644 index 12ff5c846..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/name.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - name - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

name

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/ordinal.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/ordinal.html deleted file mode 100644 index df2e77ba2..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/ordinal.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - ordinal - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

ordinal

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/score-merge-mode.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/score-merge-mode.html deleted file mode 100644 index ac44163e1..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/score-merge-mode.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - scoreMergeMode - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

scoreMergeMode

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-result/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-result/index.html deleted file mode 100644 index 49e9616ae..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-result/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - ProblemResult - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

ProblemResult

-
@Serializable
sealed class ProblemResult(source)

Inheritors

-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-run-info/-run-info.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-run-info/-run-info.html deleted file mode 100644 index 9eef52aae..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-run-info/-run-info.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - RunInfo - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

RunInfo

-
-
constructor(id: Int, result: RunResult?, percentage: Double, problemId: Int, teamId: Int, time: Duration, featuredRunMedia: MediaType? = null, reactionVideos: List<MediaType> = emptyList(), isHidden: Boolean = false)(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-run-info/featured-run-media.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-run-info/featured-run-media.html deleted file mode 100644 index 92ba571cb..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-run-info/featured-run-media.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - featuredRunMedia - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

featuredRunMedia

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-run-info/id.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-run-info/id.html deleted file mode 100644 index 46c06e922..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-run-info/id.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - id - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

id

-
-
val id: Int(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-run-info/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-run-info/index.html deleted file mode 100644 index 9cbb56381..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-run-info/index.html +++ /dev/null @@ -1,235 +0,0 @@ - - - - - RunInfo - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

RunInfo

-
@Serializable
data class RunInfo(val id: Int, val result: RunResult?, val percentage: Double, val problemId: Int, val teamId: Int, val time: Duration, val featuredRunMedia: MediaType? = null, val reactionVideos: List<MediaType> = emptyList(), val isHidden: Boolean = false)(source)
-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(id: Int, result: RunResult?, percentage: Double, problemId: Int, teamId: Int, time: Duration, featuredRunMedia: MediaType? = null, reactionVideos: List<MediaType> = emptyList(), isHidden: Boolean = false)
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val id: Int
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val isHidden: Boolean = false
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val teamId: Int
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable(with = DurationInMillisecondsSerializer::class)
val time: Duration
-
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-run-info/is-hidden.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-run-info/is-hidden.html deleted file mode 100644 index 1aa0aab76..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-run-info/is-hidden.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - isHidden - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

isHidden

-
-
val isHidden: Boolean = false(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-run-info/percentage.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-run-info/percentage.html deleted file mode 100644 index 838fc30da..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-run-info/percentage.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - percentage - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

percentage

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-run-info/problem-id.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-run-info/problem-id.html deleted file mode 100644 index 99176ec56..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-run-info/problem-id.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - problemId - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

problemId

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-run-info/reaction-videos.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-run-info/reaction-videos.html deleted file mode 100644 index 3f8e336fa..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-run-info/reaction-videos.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - reactionVideos - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

reactionVideos

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-run-info/result.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-run-info/result.html deleted file mode 100644 index 70eb3d72e..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-run-info/result.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - result - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

result

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-run-info/team-id.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-run-info/team-id.html deleted file mode 100644 index 3e7cc0da5..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-run-info/team-id.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - teamId - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

teamId

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-run-info/time.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-run-info/time.html deleted file mode 100644 index 729d3953c..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-run-info/time.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - time - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

time

-
-
@Serializable(with = DurationInMillisecondsSerializer::class)
val time: Duration(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-run-result/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-run-result/index.html deleted file mode 100644 index e826b1ad4..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-run-result/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - RunResult - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

RunResult

-
@Serializable
sealed class RunResult(source)

Inheritors

-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-score-merge-mode/-l-a-s-t/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-score-merge-mode/-l-a-s-t/index.html deleted file mode 100644 index 0ddb53aed..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-score-merge-mode/-l-a-s-t/index.html +++ /dev/null @@ -1,111 +0,0 @@ - - - - - LAST - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

LAST

-

Get score from last submission

-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-score-merge-mode/-l-a-s-t_-o-k/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-score-merge-mode/-l-a-s-t_-o-k/index.html deleted file mode 100644 index 953946270..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-score-merge-mode/-l-a-s-t_-o-k/index.html +++ /dev/null @@ -1,111 +0,0 @@ - - - - - LAST_OK - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

LAST_OK

-

Get score from last submissions, ignoring submissions, which didn't pass preliminary testing (e.g. on sample tests)

-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-score-merge-mode/-m-a-x_-p-e-r_-g-r-o-u-p/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-score-merge-mode/-m-a-x_-p-e-r_-g-r-o-u-p/index.html deleted file mode 100644 index b3a06559b..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-score-merge-mode/-m-a-x_-p-e-r_-g-r-o-u-p/index.html +++ /dev/null @@ -1,111 +0,0 @@ - - - - - MAX_PER_GROUP - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

MAX_PER_GROUP

-

For each tests group in the problem, get maximum score over all submissions.

-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-score-merge-mode/-m-a-x_-t-o-t-a-l/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-score-merge-mode/-m-a-x_-t-o-t-a-l/index.html deleted file mode 100644 index fdd4fa3c0..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-score-merge-mode/-m-a-x_-t-o-t-a-l/index.html +++ /dev/null @@ -1,111 +0,0 @@ - - - - - MAX_TOTAL - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

MAX_TOTAL

-

Get maximum total score over all submissions

-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-score-merge-mode/-s-u-m/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-score-merge-mode/-s-u-m/index.html deleted file mode 100644 index 036f6e81e..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-score-merge-mode/-s-u-m/index.html +++ /dev/null @@ -1,111 +0,0 @@ - - - - - SUM - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

SUM

-

Get the sum of scores over all submissions

-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-score-merge-mode/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-score-merge-mode/index.html deleted file mode 100644 index 15fb04f6b..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-score-merge-mode/index.html +++ /dev/null @@ -1,224 +0,0 @@ - - - - - ScoreMergeMode - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

ScoreMergeMode

- -
-
-
-
-
-

Entries

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-

For each tests group in the problem, get maximum score over all submissions.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Get maximum total score over all submissions

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Get score from last submission

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Get score from last submissions, ignoring submissions, which didn't pass preliminary testing (e.g. on sample tests)

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Get the sum of scores over all submissions

-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns an array containing the constants of this enum type, in the order they're declared.

-
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-score-merge-mode/value-of.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-score-merge-mode/value-of.html deleted file mode 100644 index 96e89dae5..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-score-merge-mode/value-of.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - valueOf - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

valueOf

-
-

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

if this enum type has no constant with the specified name

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-score-merge-mode/values.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-score-merge-mode/values.html deleted file mode 100644 index 8001f1919..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-score-merge-mode/values.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - values - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

values

-
-

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard-row/-scoreboard-row.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard-row/-scoreboard-row.html deleted file mode 100644 index 51ad38bf4..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard-row/-scoreboard-row.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - ScoreboardRow - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

ScoreboardRow

-
-
constructor(teamId: Int, rank: Int, totalScore: Double, penalty: Duration, lastAccepted: Long, medalType: String?, problemResults: List<ProblemResult>, teamGroups: List<String>, championInGroups: List<String>)(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard-row/champion-in-groups.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard-row/champion-in-groups.html deleted file mode 100644 index fff8ba2fb..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard-row/champion-in-groups.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - championInGroups - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

championInGroups

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard-row/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard-row/index.html deleted file mode 100644 index c20e18975..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard-row/index.html +++ /dev/null @@ -1,235 +0,0 @@ - - - - - ScoreboardRow - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

ScoreboardRow

-
@Serializable
data class ScoreboardRow(val teamId: Int, val rank: Int, val totalScore: Double, val penalty: Duration, val lastAccepted: Long, val medalType: String?, val problemResults: List<ProblemResult>, val teamGroups: List<String>, val championInGroups: List<String>)(source)
-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(teamId: Int, rank: Int, totalScore: Double, penalty: Duration, lastAccepted: Long, medalType: String?, problemResults: List<ProblemResult>, teamGroups: List<String>, championInGroups: List<String>)
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable(with = DurationInMinutesSerializer::class)
val penalty: Duration
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
- -
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val rank: Int
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val teamId: Int
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard-row/last-accepted.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard-row/last-accepted.html deleted file mode 100644 index 0cdec2fe1..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard-row/last-accepted.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - lastAccepted - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

lastAccepted

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard-row/medal-type.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard-row/medal-type.html deleted file mode 100644 index ea85ecdef..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard-row/medal-type.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - medalType - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

medalType

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard-row/penalty.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard-row/penalty.html deleted file mode 100644 index f9f5a4747..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard-row/penalty.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - penalty - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

penalty

-
-
@Serializable(with = DurationInMinutesSerializer::class)
val penalty: Duration(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard-row/problem-results.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard-row/problem-results.html deleted file mode 100644 index 4d4b5f320..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard-row/problem-results.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - problemResults - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

problemResults

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard-row/rank.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard-row/rank.html deleted file mode 100644 index f8b17ea90..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard-row/rank.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - rank - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

rank

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard-row/team-groups.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard-row/team-groups.html deleted file mode 100644 index 57f6b879e..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard-row/team-groups.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - teamGroups - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

teamGroups

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard-row/team-id.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard-row/team-id.html deleted file mode 100644 index 6b529e997..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard-row/team-id.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - teamId - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

teamId

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard-row/total-score.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard-row/total-score.html deleted file mode 100644 index f111ef81c..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard-row/total-score.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - totalScore - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

totalScore

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard/-scoreboard.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard/-scoreboard.html deleted file mode 100644 index d3d72c170..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard/-scoreboard.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - Scoreboard - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

Scoreboard

-
-
constructor(lastSubmitTime: Duration, rows: List<ScoreboardRow>)(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard/index.html deleted file mode 100644 index e0c31aa9b..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard/index.html +++ /dev/null @@ -1,130 +0,0 @@ - - - - - Scoreboard - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

Scoreboard

-
@Serializable
data class Scoreboard(val lastSubmitTime: Duration, val rows: List<ScoreboardRow>)(source)
-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(lastSubmitTime: Duration, rows: List<ScoreboardRow>)
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable(with = DurationInMillisecondsSerializer::class)
val lastSubmitTime: Duration
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard/last-submit-time.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard/last-submit-time.html deleted file mode 100644 index 15748f03a..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard/last-submit-time.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - lastSubmitTime - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

lastSubmitTime

-
-
@Serializable(with = DurationInMillisecondsSerializer::class)
val lastSubmitTime: Duration(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard/rows.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard/rows.html deleted file mode 100644 index a95edeeff..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard/rows.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - rows - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

rows

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/-team-info.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/-team-info.html deleted file mode 100644 index f3acd29dc..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/-team-info.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - TeamInfo - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

TeamInfo

-
-
constructor(id: Int, fullName: String, displayName: String, contestSystemId: String, groups: List<String>, hashTag: String?, medias: Map<TeamMediaType, MediaType>, isHidden: Boolean, isOutOfContest: Boolean, organizationId: String?, customFields: Map<String, String> = emptyMap())(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/contest-system-id.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/contest-system-id.html deleted file mode 100644 index 8af453b83..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/contest-system-id.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - contestSystemId - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

contestSystemId

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/custom-fields.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/custom-fields.html deleted file mode 100644 index 24076cbd3..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/custom-fields.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - customFields - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

customFields

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/display-name.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/display-name.html deleted file mode 100644 index 9be658088..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/display-name.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - displayName - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

displayName

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/full-name.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/full-name.html deleted file mode 100644 index 8fe31c6d4..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/full-name.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - fullName - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

fullName

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/groups.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/groups.html deleted file mode 100644 index 333313d6c..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/groups.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - groups - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

groups

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/hash-tag.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/hash-tag.html deleted file mode 100644 index f34f59fad..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/hash-tag.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - hashTag - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

hashTag

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/id.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/id.html deleted file mode 100644 index c8ace4442..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/id.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - id - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

id

-
-
val id: Int(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/index.html deleted file mode 100644 index e04b0f117..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/index.html +++ /dev/null @@ -1,265 +0,0 @@ - - - - - TeamInfo - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

TeamInfo

-
@Serializable
data class TeamInfo(val id: Int, val fullName: String, val displayName: String, val contestSystemId: String, val groups: List<String>, val hashTag: String?, val medias: Map<TeamMediaType, MediaType>, val isHidden: Boolean, val isOutOfContest: Boolean, val organizationId: String?, val customFields: Map<String, String> = emptyMap())(source)
-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(id: Int, fullName: String, displayName: String, contestSystemId: String, groups: List<String>, hashTag: String?, medias: Map<TeamMediaType, MediaType>, isHidden: Boolean, isOutOfContest: Boolean, organizationId: String?, customFields: Map<String, String> = emptyMap())
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val id: Int
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
- -
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/is-hidden.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/is-hidden.html deleted file mode 100644 index 2f732fa5a..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/is-hidden.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - isHidden - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

isHidden

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/is-out-of-contest.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/is-out-of-contest.html deleted file mode 100644 index 44130fcb6..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/is-out-of-contest.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - isOutOfContest - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

isOutOfContest

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/medias.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/medias.html deleted file mode 100644 index ba203bf13..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/medias.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - medias - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

medias

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/organization-id.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/organization-id.html deleted file mode 100644 index 0d33df73d..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/organization-id.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - organizationId - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

organizationId

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-media-type/-a-c-h-i-e-v-e-m-e-n-t/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-media-type/-a-c-h-i-e-v-e-m-e-n-t/index.html deleted file mode 100644 index 76a8691f6..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-media-type/-a-c-h-i-e-v-e-m-e-n-t/index.html +++ /dev/null @@ -1,111 +0,0 @@ - - - - - ACHIEVEMENT - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

ACHIEVEMENT

- -
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-media-type/-c-a-m-e-r-a/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-media-type/-c-a-m-e-r-a/index.html deleted file mode 100644 index d2e35f3b6..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-media-type/-c-a-m-e-r-a/index.html +++ /dev/null @@ -1,111 +0,0 @@ - - - - - CAMERA - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

CAMERA

- -
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-media-type/-p-h-o-t-o/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-media-type/-p-h-o-t-o/index.html deleted file mode 100644 index 65473bedf..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-media-type/-p-h-o-t-o/index.html +++ /dev/null @@ -1,111 +0,0 @@ - - - - - PHOTO - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

PHOTO

- -
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-media-type/-r-e-a-c-t-i-o-n_-v-i-d-e-o/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-media-type/-r-e-a-c-t-i-o-n_-v-i-d-e-o/index.html deleted file mode 100644 index 6fead3d43..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-media-type/-r-e-a-c-t-i-o-n_-v-i-d-e-o/index.html +++ /dev/null @@ -1,111 +0,0 @@ - - - - - REACTION_VIDEO - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

REACTION_VIDEO

- -
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-media-type/-r-e-c-o-r-d/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-media-type/-r-e-c-o-r-d/index.html deleted file mode 100644 index a27c2f713..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-media-type/-r-e-c-o-r-d/index.html +++ /dev/null @@ -1,111 +0,0 @@ - - - - - RECORD - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

RECORD

- -
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-media-type/-s-c-r-e-e-n/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-media-type/-s-c-r-e-e-n/index.html deleted file mode 100644 index 4763c7b14..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-media-type/-s-c-r-e-e-n/index.html +++ /dev/null @@ -1,111 +0,0 @@ - - - - - SCREEN - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

SCREEN

- -
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-media-type/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-media-type/index.html deleted file mode 100644 index f6b6f7508..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-media-type/index.html +++ /dev/null @@ -1,239 +0,0 @@ - - - - - TeamMediaType - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

TeamMediaType

-
@Serializable
enum TeamMediaType : Enum<TeamMediaType> (source)
-
-
-
-
-
-

Entries

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-

Returns an array containing the constants of this enum type, in the order they're declared.

-
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-media-type/value-of.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-media-type/value-of.html deleted file mode 100644 index 78f546eca..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-media-type/value-of.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - valueOf - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

valueOf

-
-

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

if this enum type has no constant with the specified name

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-media-type/values.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-media-type/values.html deleted file mode 100644 index 903580d3d..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-team-media-type/values.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - values - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

values

-
-

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict-serializer/-verdict-serializer.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict-serializer/-verdict-serializer.html deleted file mode 100644 index 4f6e0396c..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict-serializer/-verdict-serializer.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - VerdictSerializer - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

VerdictSerializer

-
-
constructor()(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict-serializer/descriptor.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict-serializer/descriptor.html deleted file mode 100644 index 662f47d9f..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict-serializer/descriptor.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - descriptor - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

descriptor

-
-
open override val descriptor: <Error class: unknown class>(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict-serializer/deserialize.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict-serializer/deserialize.html deleted file mode 100644 index a2478c0b5..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict-serializer/deserialize.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - deserialize - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

deserialize

-
-
open override fun deserialize(decoder: Decoder): Verdict(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict-serializer/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict-serializer/index.html deleted file mode 100644 index 2bea38517..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict-serializer/index.html +++ /dev/null @@ -1,149 +0,0 @@ - - - - - VerdictSerializer - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

VerdictSerializer

-
class VerdictSerializer : KSerializer<Verdict> (source)
-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor()
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
open override val descriptor: <Error class: unknown class>
-
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
open override fun deserialize(decoder: Decoder): Verdict
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
open override fun serialize(encoder: Encoder, value: Verdict)
-
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict-serializer/serialize.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict-serializer/serialize.html deleted file mode 100644 index 60411a3a3..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict-serializer/serialize.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - serialize - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

serialize

-
-
open override fun serialize(encoder: Encoder, value: Verdict)(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-accepted/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-accepted/index.html deleted file mode 100644 index 0583176f5..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-accepted/index.html +++ /dev/null @@ -1,145 +0,0 @@ - - - - - Accepted - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

Accepted

- -
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-challenged/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-challenged/index.html deleted file mode 100644 index f8d7a36e5..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-challenged/index.html +++ /dev/null @@ -1,145 +0,0 @@ - - - - - Challenged - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

Challenged

- -
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-companion/all.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-companion/all.html deleted file mode 100644 index e0c6463d9..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-companion/all.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - all - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

all

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-companion/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-companion/index.html deleted file mode 100644 index 62fb29107..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-companion/index.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - Companion - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

Companion

- -
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
fun lookup(shortName: String, isAddingPenalty: Boolean, isAccepted: Boolean): Verdict
-
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-companion/lookup.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-companion/lookup.html deleted file mode 100644 index 68371509a..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-companion/lookup.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - lookup - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

lookup

-
-
fun lookup(shortName: String, isAddingPenalty: Boolean, isAccepted: Boolean): Verdict(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-compilation-error-with-penalty/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-compilation-error-with-penalty/index.html deleted file mode 100644 index 6558ace8d..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-compilation-error-with-penalty/index.html +++ /dev/null @@ -1,145 +0,0 @@ - - - - - CompilationErrorWithPenalty - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

CompilationErrorWithPenalty

- -
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-compilation-error/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-compilation-error/index.html deleted file mode 100644 index b4a3afe12..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-compilation-error/index.html +++ /dev/null @@ -1,145 +0,0 @@ - - - - - CompilationError - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

CompilationError

- -
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-fail/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-fail/index.html deleted file mode 100644 index bc5184cfd..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-fail/index.html +++ /dev/null @@ -1,145 +0,0 @@ - - - - - Fail - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

Fail

-
object Fail : Verdict(source)
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-idleness-limit-exceeded/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-idleness-limit-exceeded/index.html deleted file mode 100644 index 2441f6189..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-idleness-limit-exceeded/index.html +++ /dev/null @@ -1,145 +0,0 @@ - - - - - IdlenessLimitExceeded - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

IdlenessLimitExceeded

- -
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-ignored/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-ignored/index.html deleted file mode 100644 index 59d684c95..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-ignored/index.html +++ /dev/null @@ -1,145 +0,0 @@ - - - - - Ignored - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

Ignored

- -
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-memory-limit-exceeded/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-memory-limit-exceeded/index.html deleted file mode 100644 index 897b73a97..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-memory-limit-exceeded/index.html +++ /dev/null @@ -1,145 +0,0 @@ - - - - - MemoryLimitExceeded - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

MemoryLimitExceeded

- -
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-output-limit-exceeded/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-output-limit-exceeded/index.html deleted file mode 100644 index 79fab6f2d..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-output-limit-exceeded/index.html +++ /dev/null @@ -1,145 +0,0 @@ - - - - - OutputLimitExceeded - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

OutputLimitExceeded

- -
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-presentation-error/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-presentation-error/index.html deleted file mode 100644 index 50b221822..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-presentation-error/index.html +++ /dev/null @@ -1,145 +0,0 @@ - - - - - PresentationError - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

PresentationError

- -
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-rejected/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-rejected/index.html deleted file mode 100644 index 1be321638..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-rejected/index.html +++ /dev/null @@ -1,145 +0,0 @@ - - - - - Rejected - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

Rejected

- -
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-runtime-error/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-runtime-error/index.html deleted file mode 100644 index 498e1e631..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-runtime-error/index.html +++ /dev/null @@ -1,145 +0,0 @@ - - - - - RuntimeError - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

RuntimeError

- -
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-security-violation/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-security-violation/index.html deleted file mode 100644 index a6359aeea..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-security-violation/index.html +++ /dev/null @@ -1,145 +0,0 @@ - - - - - SecurityViolation - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

SecurityViolation

- -
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-time-limit-exceeded/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-time-limit-exceeded/index.html deleted file mode 100644 index 15c3a7f4f..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-time-limit-exceeded/index.html +++ /dev/null @@ -1,145 +0,0 @@ - - - - - TimeLimitExceeded - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

TimeLimitExceeded

- -
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-wrong-answer/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-wrong-answer/index.html deleted file mode 100644 index 495d4bccd..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-wrong-answer/index.html +++ /dev/null @@ -1,145 +0,0 @@ - - - - - WrongAnswer - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

WrongAnswer

- -
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/index.html deleted file mode 100644 index 62ed45a0d..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/index.html +++ /dev/null @@ -1,389 +0,0 @@ - - - - - Verdict - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- - -
-
-
-
-

Types

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
object Accepted : Verdict
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
object Companion
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
- -
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
object Fail : Verdict
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
object Ignored : Verdict
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
object Rejected : Verdict
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/is-accepted.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/is-accepted.html deleted file mode 100644 index 18ac6b19d..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/is-accepted.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - isAccepted - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

isAccepted

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/is-adding-penalty.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/is-adding-penalty.html deleted file mode 100644 index fa2491ac3..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/is-adding-penalty.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - isAddingPenalty - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

isAddingPenalty

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/short-name.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/short-name.html deleted file mode 100644 index 8bfe11882..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/short-name.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - shortName - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

shortName

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/to-run-result.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/to-run-result.html deleted file mode 100644 index 8b06bf8fa..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/to-run-result.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - toRunResult - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

toRunResult

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/index.html deleted file mode 100644 index 79d64573b..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/index.html +++ /dev/null @@ -1,534 +0,0 @@ - - - - - org.icpclive.api - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

Package-level declarations

-
-
-
-
-
-

Types

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
data class AnalyticsCommentaryEvent(val id: String, val message: String, val time: Instant, val relativeTime: Duration, val teamIds: List<Int>, val runIds: List<Int>, val priority: Int = 0, val tags: List<String> = emptyList(), val advertisement: AnalyticsCompanionPreset? = null, val tickerMessage: AnalyticsCompanionPreset? = null, val featuredRun: AnalyticsCompanionRun? = null) : AnalyticsMessage
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
data class AnalyticsCompanionPreset(val presetId: Int, val expirationTime: Instant?)
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
data class AnalyticsCompanionRun(val expirationTime: Instant?, val mediaType: MediaType)
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
sealed class AnalyticsMessage
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
data class ContestInfo(val name: String, val status: ContestStatus, val resultType: ContestResultType, val startTime: Instant, val contestLength: Duration, val freezeTime: Duration, val problems: List<ProblemInfo>, val teams: List<TeamInfo>, val groups: List<GroupInfo>, val organizations: List<OrganizationInfo>, val penaltyRoundingMode: PenaltyRoundingMode, val holdBeforeStartTime: Duration? = null, val emulationSpeed: Double = 1.0, val medals: List<MedalType> = emptyList(), val penaltyPerWrongAttempt: Duration = 20.minutes)
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
enum ContestStatus : Enum<ContestStatus>
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
data class GroupInfo(val name: String, val isHidden: Boolean = false, val isOutOfContest: Boolean = false)
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
data class ICPCProblemResult(val wrongAttempts: Int, val pendingAttempts: Int, val isSolved: Boolean, val isFirstToSolve: Boolean, val lastSubmitTime: Duration?) : ProblemResult
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
data class ICPCRunResult(val verdict: Verdict, val isFirstToSolveRun: Boolean) : RunResult
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
data class IOIProblemResult(val score: Double?, val lastSubmitTime: Duration?, val isFirstBest: Boolean) : ProblemResult
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
data class IOIRunResult(val score: List<Double>, val wrongVerdict: Verdict? = null, val difference: Double = 0.0, val scoreAfter: Double = 0.0, val isFirstBestRun: Boolean = false, val isFirstBestTeamRun: Boolean = false) : RunResult
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
- -
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
data class MedalType(val name: String, val count: Int, val minScore: Double = Double.MIN_VALUE, val tiebreakMode: MedalTiebreakMode = MedalTiebreakMode.ALL)
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
sealed class MediaType
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
enum OptimismLevel : Enum<OptimismLevel>
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
data class OrganizationInfo(val cdsId: String, val displayName: String, val fullName: String)
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
data class ProblemInfo(val letter: String, val name: String, val id: Int, val ordinal: Int, val contestSystemId: String, val minScore: Double? = null, val maxScore: Double? = null, val color: Color? = null, val scoreMergeMode: ScoreMergeMode? = null)
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
sealed class ProblemResult
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
data class RunInfo(val id: Int, val result: RunResult?, val percentage: Double, val problemId: Int, val teamId: Int, val time: Duration, val featuredRunMedia: MediaType? = null, val reactionVideos: List<MediaType> = emptyList(), val isHidden: Boolean = false)
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
sealed class RunResult
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
data class Scoreboard(val lastSubmitTime: Duration, val rows: List<ScoreboardRow>)
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
data class ScoreboardRow(val teamId: Int, val rank: Int, val totalScore: Double, val penalty: Duration, val lastAccepted: Long, val medalType: String?, val problemResults: List<ProblemResult>, val teamGroups: List<String>, val championInGroups: List<String>)
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
- -
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
data class TeamInfo(val id: Int, val fullName: String, val displayName: String, val contestSystemId: String, val groups: List<String>, val hashTag: String?, val medias: Map<TeamMediaType, MediaType>, val isHidden: Boolean, val isOutOfContest: Boolean, val organizationId: String?, val customFields: Map<String, String> = emptyMap())
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
enum TeamMediaType : Enum<TeamMediaType>
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable(with = VerdictSerializer::class)
sealed class Verdict
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
class VerdictSerializer : KSerializer<Verdict>
-
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
- -
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/to-group-infos.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/to-group-infos.html deleted file mode 100644 index eadac3fba..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.api/to-group-infos.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - toGroupInfos - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

toGroupInfos

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-advanced-properties-adapter/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-advanced-properties-adapter/index.html deleted file mode 100644 index 369f41a5c..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-advanced-properties-adapter/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - AdvancedPropertiesAdapter - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

AdvancedPropertiesAdapter

- -
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-event-with-grouped-runs/-contest-event-with-grouped-runs.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-event-with-grouped-runs/-contest-event-with-grouped-runs.html deleted file mode 100644 index 308cbf3d2..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-event-with-grouped-runs/-contest-event-with-grouped-runs.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - ContestEventWithGroupedRuns - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

ContestEventWithGroupedRuns

-
-
constructor(event: ContestUpdate, infoBeforeEvent: ContestInfo?, runs: PersistentMap<K, PersistentList<RunInfo>>)(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-event-with-grouped-runs/event.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-event-with-grouped-runs/event.html deleted file mode 100644 index 6f02cd25e..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-event-with-grouped-runs/event.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - event - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

event

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-event-with-grouped-runs/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-event-with-grouped-runs/index.html deleted file mode 100644 index acf38cb84..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-event-with-grouped-runs/index.html +++ /dev/null @@ -1,160 +0,0 @@ - - - - - ContestEventWithGroupedRuns - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

ContestEventWithGroupedRuns

-
class ContestEventWithGroupedRuns<K>(val event: ContestUpdate, val infoBeforeEvent: ContestInfo?, val runs: PersistentMap<K, PersistentList<RunInfo>>)(source)
-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(event: ContestUpdate, infoBeforeEvent: ContestInfo?, runs: PersistentMap<K, PersistentList<RunInfo>>)
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
- -
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val runs: PersistentMap<K, PersistentList<RunInfo>>
-
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-event-with-grouped-runs/info-after-event.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-event-with-grouped-runs/info-after-event.html deleted file mode 100644 index 6b76551fc..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-event-with-grouped-runs/info-after-event.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - infoAfterEvent - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

infoAfterEvent

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-event-with-grouped-runs/info-before-event.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-event-with-grouped-runs/info-before-event.html deleted file mode 100644 index 879158188..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-event-with-grouped-runs/info-before-event.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - infoBeforeEvent - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

infoBeforeEvent

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-event-with-grouped-runs/runs.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-event-with-grouped-runs/runs.html deleted file mode 100644 index 1c4ebb750..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-event-with-grouped-runs/runs.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - runs - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

runs

-
-
val runs: PersistentMap<K, PersistentList<RunInfo>>(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-event-with-runs-before/-contest-event-with-runs-before.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-event-with-runs-before/-contest-event-with-runs-before.html deleted file mode 100644 index a54b4a12f..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-event-with-runs-before/-contest-event-with-runs-before.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - ContestEventWithRunsBefore - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

ContestEventWithRunsBefore

-
-
constructor(event: ContestUpdate, infoBeforeEvent: ContestInfo?, runs: PersistentMap<Int, RunInfo>)(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-event-with-runs-before/event.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-event-with-runs-before/event.html deleted file mode 100644 index 2053ce49a..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-event-with-runs-before/event.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - event - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

event

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-event-with-runs-before/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-event-with-runs-before/index.html deleted file mode 100644 index 3832bcaad..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-event-with-runs-before/index.html +++ /dev/null @@ -1,160 +0,0 @@ - - - - - ContestEventWithRunsBefore - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

ContestEventWithRunsBefore

-
class ContestEventWithRunsBefore(val event: ContestUpdate, val infoBeforeEvent: ContestInfo?, val runs: PersistentMap<Int, RunInfo>)(source)
-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(event: ContestUpdate, infoBeforeEvent: ContestInfo?, runs: PersistentMap<Int, RunInfo>)
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
- -
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val runs: PersistentMap<Int, RunInfo>
-
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-event-with-runs-before/info-after-event.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-event-with-runs-before/info-after-event.html deleted file mode 100644 index 81ba8ee6a..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-event-with-runs-before/info-after-event.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - infoAfterEvent - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

infoAfterEvent

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-event-with-runs-before/info-before-event.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-event-with-runs-before/info-before-event.html deleted file mode 100644 index e0a0800fd..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-event-with-runs-before/info-before-event.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - infoBeforeEvent - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

infoBeforeEvent

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-event-with-runs-before/runs.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-event-with-runs-before/runs.html deleted file mode 100644 index 100defea6..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-event-with-runs-before/runs.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - runs - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

runs

-
-
val runs: PersistentMap<Int, RunInfo>(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-state-with-grouped-runs/-contest-state-with-grouped-runs.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-state-with-grouped-runs/-contest-state-with-grouped-runs.html deleted file mode 100644 index 59e9093b7..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-state-with-grouped-runs/-contest-state-with-grouped-runs.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - ContestStateWithGroupedRuns - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

ContestStateWithGroupedRuns

-
-
constructor(info: ContestInfo?, runs: PersistentMap<K, PersistentList<RunInfo>>)(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-state-with-grouped-runs/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-state-with-grouped-runs/index.html deleted file mode 100644 index 7e4fa5a6d..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-state-with-grouped-runs/index.html +++ /dev/null @@ -1,130 +0,0 @@ - - - - - ContestStateWithGroupedRuns - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

ContestStateWithGroupedRuns

-
open class ContestStateWithGroupedRuns<K>(val info: ContestInfo?, val runs: PersistentMap<K, PersistentList<RunInfo>>)(source)
-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(info: ContestInfo?, runs: PersistentMap<K, PersistentList<RunInfo>>)
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val runs: PersistentMap<K, PersistentList<RunInfo>>
-
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-state-with-grouped-runs/info.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-state-with-grouped-runs/info.html deleted file mode 100644 index c0b5ebc54..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-state-with-grouped-runs/info.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - info - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

info

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-state-with-grouped-runs/runs.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-state-with-grouped-runs/runs.html deleted file mode 100644 index 06c5ec449..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-state-with-grouped-runs/runs.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - runs - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

runs

-
-
val runs: PersistentMap<K, PersistentList<RunInfo>>(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-state-with-runs-by-team/-contest-state-with-runs-by-team.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-state-with-runs-by-team/-contest-state-with-runs-by-team.html deleted file mode 100644 index 650c9f410..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-state-with-runs-by-team/-contest-state-with-runs-by-team.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - ContestStateWithRunsByTeam - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

ContestStateWithRunsByTeam

-
-
constructor(info: ContestInfo?, runs: PersistentMap<Int, PersistentList<RunInfo>>)(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-state-with-runs-by-team/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-state-with-runs-by-team/index.html deleted file mode 100644 index a07039307..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-state-with-runs-by-team/index.html +++ /dev/null @@ -1,130 +0,0 @@ - - - - - ContestStateWithRunsByTeam - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

ContestStateWithRunsByTeam

-
class ContestStateWithRunsByTeam(val info: ContestInfo?, val runs: PersistentMap<Int, PersistentList<RunInfo>>)(source)
-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(info: ContestInfo?, runs: PersistentMap<Int, PersistentList<RunInfo>>)
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val runs: PersistentMap<Int, PersistentList<RunInfo>>
-
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-state-with-runs-by-team/info.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-state-with-runs-by-team/info.html deleted file mode 100644 index 01b89f7e9..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-state-with-runs-by-team/info.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - info - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

info

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-state-with-runs-by-team/runs.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-state-with-runs-by-team/runs.html deleted file mode 100644 index 488c7bf7f..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-state-with-runs-by-team/runs.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - runs - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

runs

-
-
val runs: PersistentMap<Int, PersistentList<RunInfo>>(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/add-first-to-solves.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/add-first-to-solves.html deleted file mode 100644 index ba24c057c..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/add-first-to-solves.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - addFirstToSolves - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

addFirstToSolves

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/apply-advanced-properties.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/apply-advanced-properties.html deleted file mode 100644 index f7f07a5ca..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/apply-advanced-properties.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - applyAdvancedProperties - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

applyAdvancedProperties

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/calculate-score-differences.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/calculate-score-differences.html deleted file mode 100644 index 739593313..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/calculate-score-differences.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - calculateScoreDifferences - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

calculateScoreDifferences

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/filter-useless.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/filter-useless.html deleted file mode 100644 index a029c588d..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/filter-useless.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - filterUseless - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

filterUseless

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/index.html deleted file mode 100644 index b28796498..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/index.html +++ /dev/null @@ -1,339 +0,0 @@ - - - - - org.icpclive.cds.adapters - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

Package-level declarations

-
-
-
-
-
-

Types

-
-
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
class ContestEventWithGroupedRuns<K>(val event: ContestUpdate, val infoBeforeEvent: ContestInfo?, val runs: PersistentMap<K, PersistentList<RunInfo>>)
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
class ContestEventWithRunsBefore(val event: ContestUpdate, val infoBeforeEvent: ContestInfo?, val runs: PersistentMap<Int, RunInfo>)
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
open class ContestStateWithGroupedRuns<K>(val info: ContestInfo?, val runs: PersistentMap<K, PersistentList<RunInfo>>)
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
class ContestStateWithRunsByTeam(val info: ContestInfo?, val runs: PersistentMap<Int, PersistentList<RunInfo>>)
-
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun Flow<ContestUpdate>.applyAdvancedProperties(advancedPropsFlow: Flow<AdvancedProperties>): Flow<ContestUpdate>
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
- -
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
- -
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
- -
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
inline fun <K, V> PersistentMap<K, V>.update(k: K, block: (V?) -> V): PersistentMap<K, V>
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
- -
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
fun <K : Any> Flow<ContestUpdate>.withGroupedRuns(selector: (RunInfo) -> K, transformGroup: (key: K, cur: PersistentList<RunInfo>, original: PersistentList<RunInfo>, info: ContestInfo?) -> List<RunInfo>? = null, needUpdateGroup: (new: ContestInfo, old: ContestInfo?, key: K) -> Boolean? = null): Flow<ContestEventWithGroupedRuns<K>>
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
- -
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/process-hidden-teams-and-groups.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/process-hidden-teams-and-groups.html deleted file mode 100644 index a0354b759..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/process-hidden-teams-and-groups.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - processHiddenTeamsAndGroups - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

processHiddenTeamsAndGroups

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/remove-frozen-submissions.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/remove-frozen-submissions.html deleted file mode 100644 index c5e747f91..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/remove-frozen-submissions.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - removeFrozenSubmissions - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

removeFrozenSubmissions

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/state-grouped-by-team.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/state-grouped-by-team.html deleted file mode 100644 index 9aa053865..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/state-grouped-by-team.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - stateGroupedByTeam - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

stateGroupedByTeam

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/state-with-grouped-runs.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/state-with-grouped-runs.html deleted file mode 100644 index c80f44d42..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/state-with-grouped-runs.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - stateWithGroupedRuns - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

stateWithGroupedRuns

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/update.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/update.html deleted file mode 100644 index e82b88bb3..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/update.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - update - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

update

-
-
inline fun <K, V> PersistentMap<K, V>.update(k: K, block: (V?) -> V): PersistentMap<K, V>(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/with-contest-info-before.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/with-contest-info-before.html deleted file mode 100644 index 80692cd7c..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/with-contest-info-before.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - withContestInfoBefore - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

withContestInfoBefore

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/with-grouped-runs.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/with-grouped-runs.html deleted file mode 100644 index 5508a34f9..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/with-grouped-runs.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - withGroupedRuns - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

withGroupedRuns

-
-
fun <K : Any> Flow<ContestUpdate>.withGroupedRuns(selector: (RunInfo) -> K, transformGroup: (key: K, cur: PersistentList<RunInfo>, original: PersistentList<RunInfo>, info: ContestInfo?) -> List<RunInfo>? = null, needUpdateGroup: (new: ContestInfo, old: ContestInfo?, key: K) -> Boolean? = null): Flow<ContestEventWithGroupedRuns<K>>(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/with-runs-before.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/with-runs-before.html deleted file mode 100644 index 74722f8b9..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/with-runs-before.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - withRunsBefore - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

withRunsBefore

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.common/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.common/index.html deleted file mode 100644 index c6cd76c18..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.common/index.html +++ /dev/null @@ -1,95 +0,0 @@ - - - - - org.icpclive.cds.common - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

Package-level declarations

-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.common/set-allow-unsecure-connections.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.common/set-allow-unsecure-connections.html deleted file mode 100644 index be1448d97..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.common/set-allow-unsecure-connections.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - setAllowUnsecureConnections - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

setAllowUnsecureConnections

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-c-d-s-settings/emulation.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-c-d-s-settings/emulation.html deleted file mode 100644 index 3a45f1ab5..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-c-d-s-settings/emulation.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - emulation - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

emulation

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-c-d-s-settings/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-c-d-s-settings/index.html deleted file mode 100644 index 1601cea6f..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-c-d-s-settings/index.html +++ /dev/null @@ -1,130 +0,0 @@ - - - - - CDSSettings - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- - -
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
fun toFlow(creds: Map<String, String>): Flow<ContestUpdate>
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
open override fun toString(): String
-
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-c-d-s-settings/to-flow.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-c-d-s-settings/to-flow.html deleted file mode 100644 index d961f9a0d..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-c-d-s-settings/to-flow.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - toFlow - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

toFlow

-
-
fun toFlow(creds: Map<String, String>): Flow<ContestUpdate>(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-c-d-s-settings/to-string.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-c-d-s-settings/to-string.html deleted file mode 100644 index 71f1ec04e..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-c-d-s-settings/to-string.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - toString - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

toString

-
-
open override fun toString(): String(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-c-f-settings/-c-f-settings.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-c-f-settings/-c-f-settings.html deleted file mode 100644 index 732cb1202..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-c-f-settings/-c-f-settings.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - CFSettings - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

CFSettings

-
-
constructor(contestId: Int, apiKey: Credential, apiSecret: Credential, asManager: Boolean = true, emulation: EmulationSettings? = null)(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-c-f-settings/api-key.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-c-f-settings/api-key.html deleted file mode 100644 index f40154e5e..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-c-f-settings/api-key.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - apiKey - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

apiKey

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-c-f-settings/api-secret.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-c-f-settings/api-secret.html deleted file mode 100644 index b5bd5f509..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-c-f-settings/api-secret.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - apiSecret - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

apiSecret

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-c-f-settings/as-manager.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-c-f-settings/as-manager.html deleted file mode 100644 index 341fce7df..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-c-f-settings/as-manager.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - asManager - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

asManager

-
-
val asManager: Boolean = true(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-c-f-settings/contest-id.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-c-f-settings/contest-id.html deleted file mode 100644 index 4194d92c1..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-c-f-settings/contest-id.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - contestId - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

contestId

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-c-f-settings/emulation.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-c-f-settings/emulation.html deleted file mode 100644 index 3e97e2db3..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-c-f-settings/emulation.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - emulation - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

emulation

-
-
open override val emulation: EmulationSettings? = null(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-c-f-settings/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-c-f-settings/index.html deleted file mode 100644 index 8a733c216..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-c-f-settings/index.html +++ /dev/null @@ -1,209 +0,0 @@ - - - - - CFSettings - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

CFSettings

-
@Serializable
class CFSettings(val contestId: Int, val apiKey: Credential, val apiSecret: Credential, val asManager: Boolean = true, val emulation: EmulationSettings? = null) : CDSSettings(source)
-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(contestId: Int, apiKey: Credential, apiSecret: Credential, asManager: Boolean = true, emulation: EmulationSettings? = null)
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val asManager: Boolean = true
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
open override val emulation: EmulationSettings? = null
-
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
fun toFlow(creds: Map<String, String>): Flow<ContestUpdate>
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
open override fun toString(): String
-
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-cats-settings/-cats-settings.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-cats-settings/-cats-settings.html deleted file mode 100644 index c3f71dc22..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-cats-settings/-cats-settings.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - CatsSettings - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

CatsSettings

-
-
constructor(login: Credential, password: Credential, url: String, timeZone: TimeZone = TimeZone.of("Asia/Vladivostok"), resultType: ContestResultType = ContestResultType.ICPC, cid: String, emulation: EmulationSettings? = null)(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-cats-settings/cid.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-cats-settings/cid.html deleted file mode 100644 index aeb9cc6e5..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-cats-settings/cid.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - cid - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

cid

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-cats-settings/emulation.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-cats-settings/emulation.html deleted file mode 100644 index d22a96648..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-cats-settings/emulation.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - emulation - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

emulation

-
-
open override val emulation: EmulationSettings? = null(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-cats-settings/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-cats-settings/index.html deleted file mode 100644 index 37442706b..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-cats-settings/index.html +++ /dev/null @@ -1,239 +0,0 @@ - - - - - CatsSettings - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

CatsSettings

-
@Serializable
class CatsSettings(val login: Credential, val password: Credential, val url: String, val timeZone: TimeZone = TimeZone.of("Asia/Vladivostok"), val resultType: ContestResultType = ContestResultType.ICPC, val cid: String, val emulation: EmulationSettings? = null) : CDSSettings(source)
-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(login: Credential, password: Credential, url: String, timeZone: TimeZone = TimeZone.of("Asia/Vladivostok"), resultType: ContestResultType = ContestResultType.ICPC, cid: String, emulation: EmulationSettings? = null)
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
val cid: String
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
open override val emulation: EmulationSettings? = null
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
- -
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable(with = TimeZoneSerializer::class)
val timeZone: TimeZone
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val url: String
-
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
fun toFlow(creds: Map<String, String>): Flow<ContestUpdate>
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
open override fun toString(): String
-
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-cats-settings/login.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-cats-settings/login.html deleted file mode 100644 index fe5ed8012..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-cats-settings/login.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - login - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

login

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-cats-settings/password.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-cats-settings/password.html deleted file mode 100644 index c5c478b60..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-cats-settings/password.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - password - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

password

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-cats-settings/result-type.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-cats-settings/result-type.html deleted file mode 100644 index df7a1ba67..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-cats-settings/result-type.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - resultType - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

resultType

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-cats-settings/time-zone.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-cats-settings/time-zone.html deleted file mode 100644 index 95fe479bc..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-cats-settings/time-zone.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - timeZone - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

timeZone

-
-
@Serializable(with = TimeZoneSerializer::class)
val timeZone: TimeZone(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-cats-settings/url.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-cats-settings/url.html deleted file mode 100644 index ba6a8ffd5..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-cats-settings/url.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - url - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

url

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-loader-settings/-clics-loader-settings.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-loader-settings/-clics-loader-settings.html deleted file mode 100644 index d58ae1d15..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-loader-settings/-clics-loader-settings.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - ClicsLoaderSettings - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

ClicsLoaderSettings

-
-
constructor(url: String, login: Credential? = null, password: Credential? = null, eventFeedName: String = "event-feed", feedVersion: FeedVersion = FeedVersion.`2022_07`)(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-loader-settings/event-feed-name.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-loader-settings/event-feed-name.html deleted file mode 100644 index 46cab3aa3..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-loader-settings/event-feed-name.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - eventFeedName - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

eventFeedName

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-loader-settings/feed-version.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-loader-settings/feed-version.html deleted file mode 100644 index 535233c64..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-loader-settings/feed-version.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - feedVersion - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

feedVersion

-
-
val feedVersion: FeedVersion(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-loader-settings/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-loader-settings/index.html deleted file mode 100644 index ab06bd0db..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-loader-settings/index.html +++ /dev/null @@ -1,175 +0,0 @@ - - - - - ClicsLoaderSettings - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

ClicsLoaderSettings

-
@Serializable
class ClicsLoaderSettings(val url: String, val login: Credential? = null, val password: Credential? = null, val eventFeedName: String = "event-feed", val feedVersion: FeedVersion = FeedVersion.`2022_07`)(source)
-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(url: String, login: Credential? = null, password: Credential? = null, eventFeedName: String = "event-feed", feedVersion: FeedVersion = FeedVersion.`2022_07`)
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val feedVersion: FeedVersion
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val login: Credential? = null
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val password: Credential? = null
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val url: String
-
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-loader-settings/login.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-loader-settings/login.html deleted file mode 100644 index 4fcba0c60..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-loader-settings/login.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - login - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

login

-
-
val login: Credential? = null(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-loader-settings/password.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-loader-settings/password.html deleted file mode 100644 index d27ec5db5..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-loader-settings/password.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - password - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

password

-
-
val password: Credential? = null(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-loader-settings/url.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-loader-settings/url.html deleted file mode 100644 index e1abeacd7..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-loader-settings/url.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - url - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

url

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-settings/-clics-settings.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-settings/-clics-settings.html deleted file mode 100644 index 41352e2a5..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-settings/-clics-settings.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - ClicsSettings - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

ClicsSettings

-
-
constructor(url: String, login: Credential? = null, password: Credential? = null, eventFeedName: String = "event-feed", feedVersion: FeedVersion = FeedVersion.`2022_07`, additionalFeed: ClicsLoaderSettings? = null, useTeamNames: Boolean = true, mediaBaseUrl: String = "", emulation: EmulationSettings? = null)(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-settings/additional-feed.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-settings/additional-feed.html deleted file mode 100644 index 617201b1f..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-settings/additional-feed.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - additionalFeed - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

additionalFeed

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-settings/emulation.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-settings/emulation.html deleted file mode 100644 index c27a73bbf..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-settings/emulation.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - emulation - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

emulation

-
-
open override val emulation: EmulationSettings? = null(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-settings/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-settings/index.html deleted file mode 100644 index 0e8afbd51..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-settings/index.html +++ /dev/null @@ -1,209 +0,0 @@ - - - - - ClicsSettings - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

ClicsSettings

-
@Serializable
class ClicsSettings(url: String, login: Credential? = null, password: Credential? = null, eventFeedName: String = "event-feed", feedVersion: FeedVersion = FeedVersion.`2022_07`, val additionalFeed: ClicsLoaderSettings? = null, val useTeamNames: Boolean = true, val mediaBaseUrl: String = "", val emulation: EmulationSettings? = null) : CDSSettings(source)
-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(url: String, login: Credential? = null, password: Credential? = null, eventFeedName: String = "event-feed", feedVersion: FeedVersion = FeedVersion.`2022_07`, additionalFeed: ClicsLoaderSettings? = null, useTeamNames: Boolean = true, mediaBaseUrl: String = "", emulation: EmulationSettings? = null)
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
open override val emulation: EmulationSettings? = null
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
- -
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val useTeamNames: Boolean = true
-
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
fun toFlow(creds: Map<String, String>): Flow<ContestUpdate>
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
open override fun toString(): String
-
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-settings/main-feed.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-settings/main-feed.html deleted file mode 100644 index f45a57549..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-settings/main-feed.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - mainFeed - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

mainFeed

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-settings/media-base-url.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-settings/media-base-url.html deleted file mode 100644 index bf64f8bb4..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-settings/media-base-url.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - mediaBaseUrl - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

mediaBaseUrl

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-settings/use-team-names.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-settings/use-team-names.html deleted file mode 100644 index a6d0ce899..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-settings/use-team-names.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - useTeamNames - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

useTeamNames

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-code-drills-settings/-code-drills-settings.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-code-drills-settings/-code-drills-settings.html deleted file mode 100644 index 44a30deb9..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-code-drills-settings/-code-drills-settings.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - CodeDrillsSettings - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

CodeDrillsSettings

-
-
constructor(url: String, port: Int, contestId: String, authKey: Credential, emulation: EmulationSettings? = null)(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-code-drills-settings/auth-key.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-code-drills-settings/auth-key.html deleted file mode 100644 index 2371d2934..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-code-drills-settings/auth-key.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - authKey - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

authKey

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-code-drills-settings/contest-id.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-code-drills-settings/contest-id.html deleted file mode 100644 index bb3e5f391..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-code-drills-settings/contest-id.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - contestId - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

contestId

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-code-drills-settings/emulation.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-code-drills-settings/emulation.html deleted file mode 100644 index 0bf2942d4..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-code-drills-settings/emulation.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - emulation - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

emulation

-
-
open override val emulation: EmulationSettings? = null(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-code-drills-settings/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-code-drills-settings/index.html deleted file mode 100644 index e86db358f..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-code-drills-settings/index.html +++ /dev/null @@ -1,209 +0,0 @@ - - - - - CodeDrillsSettings - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

CodeDrillsSettings

-
@Serializable
class CodeDrillsSettings(val url: String, val port: Int, val contestId: String, val authKey: Credential, val emulation: EmulationSettings? = null) : CDSSettings(source)
-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(url: String, port: Int, contestId: String, authKey: Credential, emulation: EmulationSettings? = null)
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
open override val emulation: EmulationSettings? = null
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val port: Int
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val url: String
-
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
fun toFlow(creds: Map<String, String>): Flow<ContestUpdate>
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
open override fun toString(): String
-
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-code-drills-settings/port.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-code-drills-settings/port.html deleted file mode 100644 index 4d426c155..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-code-drills-settings/port.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - port - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

port

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-code-drills-settings/url.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-code-drills-settings/url.html deleted file mode 100644 index ccdc97066..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-code-drills-settings/url.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - url - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

url

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-credential/-credential.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-credential/-credential.html deleted file mode 100644 index 012acfb18..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-credential/-credential.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - Credential - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

Credential

-
-
constructor(raw: String)(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-credential/get.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-credential/get.html deleted file mode 100644 index d75eacc82..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-credential/get.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - get - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

get

-
-
fun get(creds: Map<String, String>): String(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-credential/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-credential/index.html deleted file mode 100644 index 9d2dbbd99..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-credential/index.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - Credential - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

Credential

-
@Serializable
value class Credential(raw: String)(source)
-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(raw: String)
-
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
fun get(creds: Map<String, String>): String
-
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-ejudge-settings/-ejudge-settings.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-ejudge-settings/-ejudge-settings.html deleted file mode 100644 index 613cfb3cf..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-ejudge-settings/-ejudge-settings.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - EjudgeSettings - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

EjudgeSettings

-
-
constructor(url: String, resultType: ContestResultType = ContestResultType.ICPC, emulation: EmulationSettings? = null)(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-ejudge-settings/emulation.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-ejudge-settings/emulation.html deleted file mode 100644 index ff0f35ea7..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-ejudge-settings/emulation.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - emulation - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

emulation

-
-
open override val emulation: EmulationSettings? = null(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-ejudge-settings/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-ejudge-settings/index.html deleted file mode 100644 index 5b95cd482..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-ejudge-settings/index.html +++ /dev/null @@ -1,179 +0,0 @@ - - - - - EjudgeSettings - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

EjudgeSettings

-
@Serializable
class EjudgeSettings(val url: String, val resultType: ContestResultType = ContestResultType.ICPC, val emulation: EmulationSettings? = null) : CDSSettings(source)
-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(url: String, resultType: ContestResultType = ContestResultType.ICPC, emulation: EmulationSettings? = null)
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
open override val emulation: EmulationSettings? = null
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
- -
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val url: String
-
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
fun toFlow(creds: Map<String, String>): Flow<ContestUpdate>
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
open override fun toString(): String
-
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-ejudge-settings/result-type.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-ejudge-settings/result-type.html deleted file mode 100644 index f3cb02d1d..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-ejudge-settings/result-type.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - resultType - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

resultType

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-ejudge-settings/url.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-ejudge-settings/url.html deleted file mode 100644 index b8e4c8d06..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-ejudge-settings/url.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - url - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

url

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-emulation-settings/-emulation-settings.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-emulation-settings/-emulation-settings.html deleted file mode 100644 index 5fcd795d3..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-emulation-settings/-emulation-settings.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - EmulationSettings - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

EmulationSettings

-
-
constructor(speed: Double, startTime: Instant)(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-emulation-settings/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-emulation-settings/index.html deleted file mode 100644 index 4de9d69af..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-emulation-settings/index.html +++ /dev/null @@ -1,130 +0,0 @@ - - - - - EmulationSettings - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

EmulationSettings

-
@Serializable
class EmulationSettings(val speed: Double, val startTime: Instant)(source)
-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(speed: Double, startTime: Instant)
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable(with = HumanTimeSerializer::class)
val startTime: Instant
-
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-emulation-settings/speed.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-emulation-settings/speed.html deleted file mode 100644 index 4ab4a434e..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-emulation-settings/speed.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - speed - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

speed

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-emulation-settings/start-time.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-emulation-settings/start-time.html deleted file mode 100644 index 6864f4150..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-emulation-settings/start-time.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - startTime - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

startTime

-
-
@Serializable(with = HumanTimeSerializer::class)
val startTime: Instant(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-k-r-s-u-settings/-k-r-s-u-settings.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-k-r-s-u-settings/-k-r-s-u-settings.html deleted file mode 100644 index 042e8d085..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-k-r-s-u-settings/-k-r-s-u-settings.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - KRSUSettings - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

KRSUSettings

-
-
constructor(submissionsUrl: String, contestUrl: String, timeZone: TimeZone = TimeZone.of("Asia/Bishkek"), emulation: EmulationSettings? = null)(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-k-r-s-u-settings/contest-url.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-k-r-s-u-settings/contest-url.html deleted file mode 100644 index a52f3f7f2..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-k-r-s-u-settings/contest-url.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - contestUrl - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

contestUrl

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-k-r-s-u-settings/emulation.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-k-r-s-u-settings/emulation.html deleted file mode 100644 index 95d376326..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-k-r-s-u-settings/emulation.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - emulation - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

emulation

-
-
open override val emulation: EmulationSettings? = null(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-k-r-s-u-settings/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-k-r-s-u-settings/index.html deleted file mode 100644 index fee2c771b..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-k-r-s-u-settings/index.html +++ /dev/null @@ -1,194 +0,0 @@ - - - - - KRSUSettings - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

KRSUSettings

-
@Serializable
class KRSUSettings(val submissionsUrl: String, val contestUrl: String, val timeZone: TimeZone = TimeZone.of("Asia/Bishkek"), val emulation: EmulationSettings? = null) : CDSSettings(source)
-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(submissionsUrl: String, contestUrl: String, timeZone: TimeZone = TimeZone.of("Asia/Bishkek"), emulation: EmulationSettings? = null)
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
open override val emulation: EmulationSettings? = null
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable(with = TimeZoneSerializer::class)
val timeZone: TimeZone
-
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
fun toFlow(creds: Map<String, String>): Flow<ContestUpdate>
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
open override fun toString(): String
-
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-k-r-s-u-settings/submissions-url.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-k-r-s-u-settings/submissions-url.html deleted file mode 100644 index 537e431b6..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-k-r-s-u-settings/submissions-url.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - submissionsUrl - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

submissionsUrl

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-k-r-s-u-settings/time-zone.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-k-r-s-u-settings/time-zone.html deleted file mode 100644 index eb91f50ae..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-k-r-s-u-settings/time-zone.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - timeZone - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

timeZone

-
-
@Serializable(with = TimeZoneSerializer::class)
val timeZone: TimeZone(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-noop-settings/-noop-settings.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-noop-settings/-noop-settings.html deleted file mode 100644 index e237f83ee..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-noop-settings/-noop-settings.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - NoopSettings - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

NoopSettings

-
-
constructor(emulation: EmulationSettings? = null)(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-noop-settings/emulation.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-noop-settings/emulation.html deleted file mode 100644 index 7404bb1d5..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-noop-settings/emulation.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - emulation - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

emulation

-
-
open override val emulation: EmulationSettings? = null(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-noop-settings/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-noop-settings/index.html deleted file mode 100644 index b26610b8c..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-noop-settings/index.html +++ /dev/null @@ -1,149 +0,0 @@ - - - - - NoopSettings - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

NoopSettings

-
@Serializable
class NoopSettings(val emulation: EmulationSettings? = null) : CDSSettings(source)
-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(emulation: EmulationSettings? = null)
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
open override val emulation: EmulationSettings? = null
-
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
fun toFlow(creds: Map<String, String>): Flow<ContestUpdate>
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
open override fun toString(): String
-
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-p-c-m-s-settings/-p-c-m-s-settings.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-p-c-m-s-settings/-p-c-m-s-settings.html deleted file mode 100644 index d8d3ddd58..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-p-c-m-s-settings/-p-c-m-s-settings.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - PCMSSettings - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

PCMSSettings

-
-
constructor(url: String, login: Credential? = null, password: Credential? = null, problemsUrl: String? = null, resultType: ContestResultType = ContestResultType.ICPC, emulation: EmulationSettings? = null)(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-p-c-m-s-settings/emulation.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-p-c-m-s-settings/emulation.html deleted file mode 100644 index dc12fe163..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-p-c-m-s-settings/emulation.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - emulation - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

emulation

-
-
open override val emulation: EmulationSettings? = null(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-p-c-m-s-settings/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-p-c-m-s-settings/index.html deleted file mode 100644 index 0dbd3fa2a..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-p-c-m-s-settings/index.html +++ /dev/null @@ -1,224 +0,0 @@ - - - - - PCMSSettings - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

PCMSSettings

-
@Serializable
class PCMSSettings(val url: String, val login: Credential? = null, val password: Credential? = null, val problemsUrl: String? = null, val resultType: ContestResultType = ContestResultType.ICPC, val emulation: EmulationSettings? = null) : CDSSettings(source)
-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(url: String, login: Credential? = null, password: Credential? = null, problemsUrl: String? = null, resultType: ContestResultType = ContestResultType.ICPC, emulation: EmulationSettings? = null)
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
open override val emulation: EmulationSettings? = null
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val login: Credential? = null
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val password: Credential? = null
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val problemsUrl: String? = null
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
- -
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val url: String
-
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
fun toFlow(creds: Map<String, String>): Flow<ContestUpdate>
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
open override fun toString(): String
-
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-p-c-m-s-settings/login.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-p-c-m-s-settings/login.html deleted file mode 100644 index c52091d24..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-p-c-m-s-settings/login.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - login - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

login

-
-
val login: Credential? = null(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-p-c-m-s-settings/password.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-p-c-m-s-settings/password.html deleted file mode 100644 index 22803b137..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-p-c-m-s-settings/password.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - password - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

password

-
-
val password: Credential? = null(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-p-c-m-s-settings/problems-url.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-p-c-m-s-settings/problems-url.html deleted file mode 100644 index 788d39a87..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-p-c-m-s-settings/problems-url.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - problemsUrl - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

problemsUrl

-
-
val problemsUrl: String? = null(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-p-c-m-s-settings/result-type.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-p-c-m-s-settings/result-type.html deleted file mode 100644 index 29990b975..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-p-c-m-s-settings/result-type.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - resultType - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

resultType

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-p-c-m-s-settings/url.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-p-c-m-s-settings/url.html deleted file mode 100644 index 9461ef91d..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-p-c-m-s-settings/url.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - url - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

url

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-test-sys-settings/-test-sys-settings.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-test-sys-settings/-test-sys-settings.html deleted file mode 100644 index 50422a44c..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-test-sys-settings/-test-sys-settings.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - TestSysSettings - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

TestSysSettings

-
-
constructor(url: String, timeZone: TimeZone = TimeZone.of("Europe/Moscow"), emulation: EmulationSettings? = null)(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-test-sys-settings/emulation.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-test-sys-settings/emulation.html deleted file mode 100644 index e0e59bf31..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-test-sys-settings/emulation.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - emulation - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

emulation

-
-
open override val emulation: EmulationSettings? = null(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-test-sys-settings/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-test-sys-settings/index.html deleted file mode 100644 index 6022c2b37..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-test-sys-settings/index.html +++ /dev/null @@ -1,179 +0,0 @@ - - - - - TestSysSettings - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

TestSysSettings

-
@Serializable
class TestSysSettings(val url: String, val timeZone: TimeZone = TimeZone.of("Europe/Moscow"), val emulation: EmulationSettings? = null) : CDSSettings(source)
-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(url: String, timeZone: TimeZone = TimeZone.of("Europe/Moscow"), emulation: EmulationSettings? = null)
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
open override val emulation: EmulationSettings? = null
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable(with = TimeZoneSerializer::class)
val timeZone: TimeZone
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
val url: String
-
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
fun toFlow(creds: Map<String, String>): Flow<ContestUpdate>
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
open override fun toString(): String
-
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-test-sys-settings/time-zone.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-test-sys-settings/time-zone.html deleted file mode 100644 index 063a4a629..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-test-sys-settings/time-zone.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - timeZone - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

timeZone

-
-
@Serializable(with = TimeZoneSerializer::class)
val timeZone: TimeZone(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-test-sys-settings/url.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-test-sys-settings/url.html deleted file mode 100644 index 75611c127..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-test-sys-settings/url.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - url - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

url

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-yandex-settings/-yandex-settings.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-yandex-settings/-yandex-settings.html deleted file mode 100644 index 447bc6e78..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-yandex-settings/-yandex-settings.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - YandexSettings - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

YandexSettings

-
-
constructor(apiKey: Credential, loginRegex: Regex, contestId: Int, resultType: ContestResultType = ContestResultType.ICPC, emulation: EmulationSettings? = null)(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-yandex-settings/api-key.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-yandex-settings/api-key.html deleted file mode 100644 index 684a3b058..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-yandex-settings/api-key.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - apiKey - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

apiKey

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-yandex-settings/contest-id.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-yandex-settings/contest-id.html deleted file mode 100644 index 65da0cf87..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-yandex-settings/contest-id.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - contestId - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

contestId

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-yandex-settings/emulation.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-yandex-settings/emulation.html deleted file mode 100644 index 447545c48..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-yandex-settings/emulation.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - emulation - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

emulation

-
-
open override val emulation: EmulationSettings? = null(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-yandex-settings/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-yandex-settings/index.html deleted file mode 100644 index 167524592..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-yandex-settings/index.html +++ /dev/null @@ -1,209 +0,0 @@ - - - - - YandexSettings - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

YandexSettings

-
@Serializable
class YandexSettings(val apiKey: Credential, val loginRegex: Regex, val contestId: Int, val resultType: ContestResultType = ContestResultType.ICPC, val emulation: EmulationSettings? = null) : CDSSettings(source)
-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(apiKey: Credential, loginRegex: Regex, contestId: Int, resultType: ContestResultType = ContestResultType.ICPC, emulation: EmulationSettings? = null)
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
open override val emulation: EmulationSettings? = null
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable(with = RegexSerializer::class)
val loginRegex: Regex
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
- -
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
fun toFlow(creds: Map<String, String>): Flow<ContestUpdate>
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
open override fun toString(): String
-
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-yandex-settings/login-regex.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-yandex-settings/login-regex.html deleted file mode 100644 index c7b8a689b..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-yandex-settings/login-regex.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - loginRegex - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

loginRegex

-
-
@Serializable(with = RegexSerializer::class)
val loginRegex: Regex(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-yandex-settings/result-type.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-yandex-settings/result-type.html deleted file mode 100644 index 9161ffd85..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-yandex-settings/result-type.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - resultType - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

resultType

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/index.html deleted file mode 100644 index 33f8bb5b4..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/index.html +++ /dev/null @@ -1,309 +0,0 @@ - - - - - org.icpclive.cds.settings - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

Package-level declarations

-
-
-
-
-
-

Types

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
class CatsSettings(val login: Credential, val password: Credential, val url: String, val timeZone: TimeZone = TimeZone.of("Asia/Vladivostok"), val resultType: ContestResultType = ContestResultType.ICPC, val cid: String, val emulation: EmulationSettings? = null) : CDSSettings
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
sealed class CDSSettings
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
class CFSettings(val contestId: Int, val apiKey: Credential, val apiSecret: Credential, val asManager: Boolean = true, val emulation: EmulationSettings? = null) : CDSSettings
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
class ClicsLoaderSettings(val url: String, val login: Credential? = null, val password: Credential? = null, val eventFeedName: String = "event-feed", val feedVersion: FeedVersion = FeedVersion.`2022_07`)
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
class ClicsSettings(url: String, login: Credential? = null, password: Credential? = null, eventFeedName: String = "event-feed", feedVersion: FeedVersion = FeedVersion.`2022_07`, val additionalFeed: ClicsLoaderSettings? = null, val useTeamNames: Boolean = true, val mediaBaseUrl: String = "", val emulation: EmulationSettings? = null) : CDSSettings
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
class CodeDrillsSettings(val url: String, val port: Int, val contestId: String, val authKey: Credential, val emulation: EmulationSettings? = null) : CDSSettings
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
value class Credential(raw: String)
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
class EjudgeSettings(val url: String, val resultType: ContestResultType = ContestResultType.ICPC, val emulation: EmulationSettings? = null) : CDSSettings
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
class EmulationSettings(val speed: Double, val startTime: Instant)
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
class KRSUSettings(val submissionsUrl: String, val contestUrl: String, val timeZone: TimeZone = TimeZone.of("Asia/Bishkek"), val emulation: EmulationSettings? = null) : CDSSettings
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
class NoopSettings(val emulation: EmulationSettings? = null) : CDSSettings
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
class PCMSSettings(val url: String, val login: Credential? = null, val password: Credential? = null, val problemsUrl: String? = null, val resultType: ContestResultType = ContestResultType.ICPC, val emulation: EmulationSettings? = null) : CDSSettings
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
class TestSysSettings(val url: String, val timeZone: TimeZone = TimeZone.of("Europe/Moscow"), val emulation: EmulationSettings? = null) : CDSSettings
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
@Serializable
class YandexSettings(val apiKey: Credential, val loginRegex: Regex, val contestId: Int, val resultType: ContestResultType = ContestResultType.ICPC, val emulation: EmulationSettings? = null) : CDSSettings
-
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
- -
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/parse-file-to-cds-settings.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/parse-file-to-cds-settings.html deleted file mode 100644 index c69df2904..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/parse-file-to-cds-settings.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - parseFileToCdsSettings - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

parseFileToCdsSettings

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds/-analytics-update/-analytics-update.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds/-analytics-update/-analytics-update.html deleted file mode 100644 index d0a3bcad4..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds/-analytics-update/-analytics-update.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - AnalyticsUpdate - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

AnalyticsUpdate

-
-
constructor(message: AnalyticsMessage)(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds/-analytics-update/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds/-analytics-update/index.html deleted file mode 100644 index 225a3d916..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds/-analytics-update/index.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - AnalyticsUpdate - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

AnalyticsUpdate

- -
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(message: AnalyticsMessage)
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds/-analytics-update/message.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds/-analytics-update/message.html deleted file mode 100644 index d2fa21492..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds/-analytics-update/message.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - message - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

message

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds/-contest-update/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds/-contest-update/index.html deleted file mode 100644 index de6cf0e92..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds/-contest-update/index.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - ContestUpdate - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

ContestUpdate

- -
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds/-info-update/-info-update.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds/-info-update/-info-update.html deleted file mode 100644 index d155b2a6f..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds/-info-update/-info-update.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - InfoUpdate - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

InfoUpdate

-
-
constructor(newInfo: ContestInfo)(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds/-info-update/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds/-info-update/index.html deleted file mode 100644 index ba384dc9c..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds/-info-update/index.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - InfoUpdate - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

InfoUpdate

-
data class InfoUpdate(val newInfo: ContestInfo) : ContestUpdate(source)
-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(newInfo: ContestInfo)
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds/-info-update/new-info.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds/-info-update/new-info.html deleted file mode 100644 index 3c3df74e4..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds/-info-update/new-info.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - newInfo - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

newInfo

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds/-run-update/-run-update.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds/-run-update/-run-update.html deleted file mode 100644 index e8cfbac57..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds/-run-update/-run-update.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - RunUpdate - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

RunUpdate

-
-
constructor(newInfo: RunInfo)(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds/-run-update/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds/-run-update/index.html deleted file mode 100644 index cedadb96a..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds/-run-update/index.html +++ /dev/null @@ -1,115 +0,0 @@ - - - - - RunUpdate - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

RunUpdate

-
data class RunUpdate(val newInfo: RunInfo) : ContestUpdate(source)
-
-
-
-
-
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
constructor(newInfo: RunInfo)
-
-
-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds/-run-update/new-info.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds/-run-update/new-info.html deleted file mode 100644 index d2ea469fc..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds/-run-update/new-info.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - newInfo - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

newInfo

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds/index.html deleted file mode 100644 index 3ad9de022..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.cds/index.html +++ /dev/null @@ -1,140 +0,0 @@ - - - - - org.icpclive.cds - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

Package-level declarations

-
-
-
-
-
-

Types

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
interface ContestUpdate
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
data class InfoUpdate(val newInfo: ContestInfo) : ContestUpdate
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
data class RunUpdate(val newInfo: RunInfo) : ContestUpdate
-
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.scoreboard/-scoreboard-calculator/get-scoreboard.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.scoreboard/-scoreboard-calculator/get-scoreboard.html deleted file mode 100644 index e31b2417a..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.scoreboard/-scoreboard-calculator/get-scoreboard.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - getScoreboard - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

getScoreboard

-
-
abstract fun getScoreboard(info: ContestInfo, runs: Map<Int, List<RunInfo>>): Scoreboard(source)
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.scoreboard/-scoreboard-calculator/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.scoreboard/-scoreboard-calculator/index.html deleted file mode 100644 index 300c59452..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.scoreboard/-scoreboard-calculator/index.html +++ /dev/null @@ -1,96 +0,0 @@ - - - - - ScoreboardCalculator - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

ScoreboardCalculator

- -
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
abstract fun getScoreboard(info: ContestInfo, runs: Map<Int, List<RunInfo>>): Scoreboard
-
-
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.scoreboard/calculate-scoreboard-with-info.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.scoreboard/calculate-scoreboard-with-info.html deleted file mode 100644 index 75cabefd8..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.scoreboard/calculate-scoreboard-with-info.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - calculateScoreboardWithInfo - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

calculateScoreboardWithInfo

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.scoreboard/calculate-scoreboard.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.scoreboard/calculate-scoreboard.html deleted file mode 100644 index e58f8c9e8..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.scoreboard/calculate-scoreboard.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - calculateScoreboard - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

calculateScoreboard

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.scoreboard/get-scoreboard-calculator.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.scoreboard/get-scoreboard-calculator.html deleted file mode 100644 index d5050a291..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.scoreboard/get-scoreboard-calculator.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - getScoreboardCalculator - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

getScoreboardCalculator

-
- -
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.scoreboard/index.html b/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.scoreboard/index.html deleted file mode 100644 index 721da8134..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/org.icpclive.scoreboard/index.html +++ /dev/null @@ -1,144 +0,0 @@ - - - - - org.icpclive.scoreboard - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

Package-level declarations

-
-
-
-
-
-

Types

-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
- -
-
-
- -
-
-
- - -
Link copied to clipboard
-
- -
-
- -
-
-
- - -
Link copied to clipboard
-
- -
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/-i-c-p-c-live contest data parser/package-list b/docs/cds/-i-c-p-c-live contest data parser/package-list deleted file mode 100644 index 79239814a..000000000 --- a/docs/cds/-i-c-p-c-live contest data parser/package-list +++ /dev/null @@ -1,453 +0,0 @@ -$dokka.format:html-v1 -$dokka.linkExtension:html -$dokka.location:org.icpclive.api.tunning////PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/index.html -$dokka.location:org.icpclive.api.tunning//toAdvancedProperties/org.icpclive.api.ContestInfo#kotlin.collections.Set[kotlin.String]/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/to-advanced-properties.html -$dokka.location:org.icpclive.api.tunning/AdvancedProperties///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/index.html -$dokka.location:org.icpclive.api.tunning/AdvancedProperties/AdvancedProperties/#kotlinx.datetime.Instant?#kotlin.time.Duration?#kotlin.time.Duration?#kotlin.collections.Map[org.icpclive.api.TeamMediaType,org.icpclive.api.MediaType?]?#org.icpclive.api.tunning.TeamOverrideTemplate?#org.icpclive.api.tunning.TeamRegexOverrides?#kotlin.collections.Map[kotlin.String,org.icpclive.api.tunning.TeamInfoOverride]?#kotlin.collections.Map[kotlin.String,org.icpclive.api.tunning.GroupInfoOverride]?#kotlin.collections.Map[kotlin.String,org.icpclive.api.tunning.OrganizationInfoOverride]?#kotlin.collections.Map[kotlin.String,org.icpclive.api.tunning.ProblemInfoOverride]?#org.icpclive.api.tunning.RankingSettings?/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/-advanced-properties.html -$dokka.location:org.icpclive.api.tunning/AdvancedProperties/freezeTime/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/freeze-time.html -$dokka.location:org.icpclive.api.tunning/AdvancedProperties/groupOverrides/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/group-overrides.html -$dokka.location:org.icpclive.api.tunning/AdvancedProperties/holdTime/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/hold-time.html -$dokka.location:org.icpclive.api.tunning/AdvancedProperties/organizationOverrides/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/organization-overrides.html -$dokka.location:org.icpclive.api.tunning/AdvancedProperties/problemOverrides/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/problem-overrides.html -$dokka.location:org.icpclive.api.tunning/AdvancedProperties/scoreboardOverrides/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/scoreboard-overrides.html -$dokka.location:org.icpclive.api.tunning/AdvancedProperties/startTime/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/start-time.html -$dokka.location:org.icpclive.api.tunning/AdvancedProperties/teamMediaTemplate/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/team-media-template.html -$dokka.location:org.icpclive.api.tunning/AdvancedProperties/teamOverrideTemplate/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/team-override-template.html -$dokka.location:org.icpclive.api.tunning/AdvancedProperties/teamOverrides/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/team-overrides.html -$dokka.location:org.icpclive.api.tunning/AdvancedProperties/teamRegexes/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-advanced-properties/team-regexes.html -$dokka.location:org.icpclive.api.tunning/GroupInfoOverride///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-group-info-override/index.html -$dokka.location:org.icpclive.api.tunning/GroupInfoOverride/GroupInfoOverride/#kotlin.Boolean?#kotlin.Boolean?/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-group-info-override/-group-info-override.html -$dokka.location:org.icpclive.api.tunning/GroupInfoOverride/isHidden/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-group-info-override/is-hidden.html -$dokka.location:org.icpclive.api.tunning/GroupInfoOverride/isOutOfContest/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-group-info-override/is-out-of-contest.html -$dokka.location:org.icpclive.api.tunning/OrganizationInfoOverride///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-organization-info-override/index.html -$dokka.location:org.icpclive.api.tunning/OrganizationInfoOverride/OrganizationInfoOverride/#kotlin.String?#kotlin.String?/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-organization-info-override/-organization-info-override.html -$dokka.location:org.icpclive.api.tunning/OrganizationInfoOverride/displayName/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-organization-info-override/display-name.html -$dokka.location:org.icpclive.api.tunning/OrganizationInfoOverride/fullName/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-organization-info-override/full-name.html -$dokka.location:org.icpclive.api.tunning/ProblemInfoOverride///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-problem-info-override/index.html -$dokka.location:org.icpclive.api.tunning/ProblemInfoOverride/ProblemInfoOverride/#kotlin.String?#java.awt.Color?#kotlin.Int?#kotlin.Double?#kotlin.Double?#org.icpclive.api.ScoreMergeMode?/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-problem-info-override/-problem-info-override.html -$dokka.location:org.icpclive.api.tunning/ProblemInfoOverride/color/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-problem-info-override/color.html -$dokka.location:org.icpclive.api.tunning/ProblemInfoOverride/maxScore/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-problem-info-override/max-score.html -$dokka.location:org.icpclive.api.tunning/ProblemInfoOverride/minScore/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-problem-info-override/min-score.html -$dokka.location:org.icpclive.api.tunning/ProblemInfoOverride/name/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-problem-info-override/name.html -$dokka.location:org.icpclive.api.tunning/ProblemInfoOverride/ordinal/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-problem-info-override/ordinal.html -$dokka.location:org.icpclive.api.tunning/ProblemInfoOverride/scoreMergeMode/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-problem-info-override/score-merge-mode.html -$dokka.location:org.icpclive.api.tunning/RankingSettings///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-ranking-settings/index.html -$dokka.location:org.icpclive.api.tunning/RankingSettings/RankingSettings/#kotlin.collections.List[org.icpclive.api.MedalType]?#kotlin.time.Duration?#kotlin.Boolean?#org.icpclive.api.PenaltyRoundingMode?/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-ranking-settings/-ranking-settings.html -$dokka.location:org.icpclive.api.tunning/RankingSettings/medals/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-ranking-settings/medals.html -$dokka.location:org.icpclive.api.tunning/RankingSettings/penaltyPerWrongAttempt/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-ranking-settings/penalty-per-wrong-attempt.html -$dokka.location:org.icpclive.api.tunning/RankingSettings/penaltyRoundingMode/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-ranking-settings/penalty-rounding-mode.html -$dokka.location:org.icpclive.api.tunning/RankingSettings/showTeamsWithoutSubmissions/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-ranking-settings/show-teams-without-submissions.html -$dokka.location:org.icpclive.api.tunning/TeamInfoOverride///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-info-override/index.html -$dokka.location:org.icpclive.api.tunning/TeamInfoOverride/TeamInfoOverride/#kotlin.String?#kotlin.String?#kotlin.collections.List[kotlin.String]?#kotlin.String?#kotlin.String?#kotlin.collections.Map[org.icpclive.api.TeamMediaType,org.icpclive.api.MediaType?]?#kotlin.collections.Map[kotlin.String,kotlin.String]?#kotlin.Boolean?#kotlin.Boolean?/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-info-override/-team-info-override.html -$dokka.location:org.icpclive.api.tunning/TeamInfoOverride/customFields/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-info-override/custom-fields.html -$dokka.location:org.icpclive.api.tunning/TeamInfoOverride/displayName/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-info-override/display-name.html -$dokka.location:org.icpclive.api.tunning/TeamInfoOverride/fullName/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-info-override/full-name.html -$dokka.location:org.icpclive.api.tunning/TeamInfoOverride/groups/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-info-override/groups.html -$dokka.location:org.icpclive.api.tunning/TeamInfoOverride/hashTag/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-info-override/hash-tag.html -$dokka.location:org.icpclive.api.tunning/TeamInfoOverride/isHidden/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-info-override/is-hidden.html -$dokka.location:org.icpclive.api.tunning/TeamInfoOverride/isOutOfContest/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-info-override/is-out-of-contest.html -$dokka.location:org.icpclive.api.tunning/TeamInfoOverride/medias/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-info-override/medias.html -$dokka.location:org.icpclive.api.tunning/TeamInfoOverride/organizationId/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-info-override/organization-id.html -$dokka.location:org.icpclive.api.tunning/TeamOverrideTemplate///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-override-template/index.html -$dokka.location:org.icpclive.api.tunning/TeamOverrideTemplate/TeamOverrideTemplate/#kotlin.String?#kotlin.String?#kotlin.collections.Map[org.icpclive.api.TeamMediaType,org.icpclive.api.MediaType?]?/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-override-template/-team-override-template.html -$dokka.location:org.icpclive.api.tunning/TeamOverrideTemplate/displayName/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-override-template/display-name.html -$dokka.location:org.icpclive.api.tunning/TeamOverrideTemplate/fullName/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-override-template/full-name.html -$dokka.location:org.icpclive.api.tunning/TeamOverrideTemplate/medias/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-override-template/medias.html -$dokka.location:org.icpclive.api.tunning/TeamRegexOverrides///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-regex-overrides/index.html -$dokka.location:org.icpclive.api.tunning/TeamRegexOverrides/TeamRegexOverrides/#kotlin.text.Regex?#kotlin.collections.Map[kotlin.String,kotlin.text.Regex]?#kotlin.collections.Map[kotlin.String,kotlin.text.Regex]?/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-regex-overrides/-team-regex-overrides.html -$dokka.location:org.icpclive.api.tunning/TeamRegexOverrides/customFields/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-regex-overrides/custom-fields.html -$dokka.location:org.icpclive.api.tunning/TeamRegexOverrides/groupRegex/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-regex-overrides/group-regex.html -$dokka.location:org.icpclive.api.tunning/TeamRegexOverrides/organizationRegex/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api.tunning/-team-regex-overrides/organization-regex.html -$dokka.location:org.icpclive.api////PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/index.html -$dokka.location:org.icpclive.api//toGroupInfos/kotlin.collections.List[org.icpclive.api.TeamInfo]#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/to-group-infos.html -$dokka.location:org.icpclive.api/AnalyticsCommentaryEvent///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/index.html -$dokka.location:org.icpclive.api/AnalyticsCommentaryEvent/AnalyticsCommentaryEvent/#kotlin.String#kotlin.String#kotlinx.datetime.Instant#kotlin.time.Duration#kotlin.collections.List[kotlin.Int]#kotlin.collections.List[kotlin.Int]#kotlin.Int#kotlin.collections.List[kotlin.String]#org.icpclive.api.AnalyticsCompanionPreset?#org.icpclive.api.AnalyticsCompanionPreset?#org.icpclive.api.AnalyticsCompanionRun?/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/-analytics-commentary-event.html -$dokka.location:org.icpclive.api/AnalyticsCommentaryEvent/advertisement/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/advertisement.html -$dokka.location:org.icpclive.api/AnalyticsCommentaryEvent/featuredRun/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/featured-run.html -$dokka.location:org.icpclive.api/AnalyticsCommentaryEvent/id/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/id.html -$dokka.location:org.icpclive.api/AnalyticsCommentaryEvent/message/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/message.html -$dokka.location:org.icpclive.api/AnalyticsCommentaryEvent/priority/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/priority.html -$dokka.location:org.icpclive.api/AnalyticsCommentaryEvent/relativeTime/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/relative-time.html -$dokka.location:org.icpclive.api/AnalyticsCommentaryEvent/runIds/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/run-ids.html -$dokka.location:org.icpclive.api/AnalyticsCommentaryEvent/tags/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/tags.html -$dokka.location:org.icpclive.api/AnalyticsCommentaryEvent/teamIds/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/team-ids.html -$dokka.location:org.icpclive.api/AnalyticsCommentaryEvent/tickerMessage/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/ticker-message.html -$dokka.location:org.icpclive.api/AnalyticsCommentaryEvent/time/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-commentary-event/time.html -$dokka.location:org.icpclive.api/AnalyticsCompanionPreset///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-companion-preset/index.html -$dokka.location:org.icpclive.api/AnalyticsCompanionPreset/AnalyticsCompanionPreset/#kotlin.Int#kotlinx.datetime.Instant?/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-companion-preset/-analytics-companion-preset.html -$dokka.location:org.icpclive.api/AnalyticsCompanionPreset/expirationTime/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-companion-preset/expiration-time.html -$dokka.location:org.icpclive.api/AnalyticsCompanionPreset/presetId/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-companion-preset/preset-id.html -$dokka.location:org.icpclive.api/AnalyticsCompanionRun///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-companion-run/index.html -$dokka.location:org.icpclive.api/AnalyticsCompanionRun/AnalyticsCompanionRun/#kotlinx.datetime.Instant?#org.icpclive.api.MediaType/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-companion-run/-analytics-companion-run.html -$dokka.location:org.icpclive.api/AnalyticsCompanionRun/expirationTime/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-companion-run/expiration-time.html -$dokka.location:org.icpclive.api/AnalyticsCompanionRun/mediaType/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-companion-run/media-type.html -$dokka.location:org.icpclive.api/AnalyticsMessage///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-message/index.html -$dokka.location:org.icpclive.api/AnalyticsMessage/id/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-message/id.html -$dokka.location:org.icpclive.api/AnalyticsMessage/relativeTime/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-message/relative-time.html -$dokka.location:org.icpclive.api/AnalyticsMessage/time/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-analytics-message/time.html -$dokka.location:org.icpclive.api/ContestInfo///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/index.html -$dokka.location:org.icpclive.api/ContestInfo/ContestInfo/#kotlin.String#org.icpclive.api.ContestStatus#org.icpclive.api.ContestResultType#kotlinx.datetime.Instant#kotlin.time.Duration#kotlin.time.Duration#kotlin.collections.List[org.icpclive.api.ProblemInfo]#kotlin.collections.List[org.icpclive.api.TeamInfo]#kotlin.collections.List[org.icpclive.api.GroupInfo]#kotlin.collections.List[org.icpclive.api.OrganizationInfo]#org.icpclive.api.PenaltyRoundingMode#kotlin.time.Duration?#kotlin.Double#kotlin.collections.List[org.icpclive.api.MedalType]#kotlin.time.Duration/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/-contest-info.html -$dokka.location:org.icpclive.api/ContestInfo/contestLength/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/contest-length.html -$dokka.location:org.icpclive.api/ContestInfo/currentContestTime/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/current-contest-time.html -$dokka.location:org.icpclive.api/ContestInfo/emulationSpeed/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/emulation-speed.html -$dokka.location:org.icpclive.api/ContestInfo/freezeTime/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/freeze-time.html -$dokka.location:org.icpclive.api/ContestInfo/groupById/#kotlin.String/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/group-by-id.html -$dokka.location:org.icpclive.api/ContestInfo/groups/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/groups.html -$dokka.location:org.icpclive.api/ContestInfo/holdBeforeStartTime/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/hold-before-start-time.html -$dokka.location:org.icpclive.api/ContestInfo/medals/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/medals.html -$dokka.location:org.icpclive.api/ContestInfo/name/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/name.html -$dokka.location:org.icpclive.api/ContestInfo/organizations/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/organizations.html -$dokka.location:org.icpclive.api/ContestInfo/penaltyPerWrongAttempt/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/penalty-per-wrong-attempt.html -$dokka.location:org.icpclive.api/ContestInfo/penaltyRoundingMode/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/penalty-rounding-mode.html -$dokka.location:org.icpclive.api/ContestInfo/problems/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/problems.html -$dokka.location:org.icpclive.api/ContestInfo/resultType/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/result-type.html -$dokka.location:org.icpclive.api/ContestInfo/startTime/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/start-time.html -$dokka.location:org.icpclive.api/ContestInfo/status/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/status.html -$dokka.location:org.icpclive.api/ContestInfo/teams/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-info/teams.html -$dokka.location:org.icpclive.api/ContestResultType.ICPC///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-i-c-p-c-live contest data parser/org.icpclive.api/-contest-result-type/-i-c-p-c/index.html -$dokka.location:org.icpclive.api/ContestResultType.IOI///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-i-c-p-c-live contest data parser/org.icpclive.api/-contest-result-type/-i-o-i/index.html -$dokka.location:org.icpclive.api/ContestResultType///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-result-type/index.html -$dokka.location:org.icpclive.api/ContestResultType/valueOf/#kotlin.String/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-result-type/value-of.html -$dokka.location:org.icpclive.api/ContestResultType/values/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-result-type/values.html -$dokka.location:org.icpclive.api/ContestStatus.BEFORE///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-i-c-p-c-live contest data parser/org.icpclive.api/-contest-status/-b-e-f-o-r-e/index.html -$dokka.location:org.icpclive.api/ContestStatus.OVER///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-i-c-p-c-live contest data parser/org.icpclive.api/-contest-status/-o-v-e-r/index.html -$dokka.location:org.icpclive.api/ContestStatus.RUNNING///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-i-c-p-c-live contest data parser/org.icpclive.api/-contest-status/-r-u-n-n-i-n-g/index.html -$dokka.location:org.icpclive.api/ContestStatus///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-status/index.html -$dokka.location:org.icpclive.api/ContestStatus/valueOf/#kotlin.String/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-status/value-of.html -$dokka.location:org.icpclive.api/ContestStatus/values/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-contest-status/values.html -$dokka.location:org.icpclive.api/GroupInfo///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-group-info/index.html -$dokka.location:org.icpclive.api/GroupInfo/GroupInfo/#kotlin.String#kotlin.Boolean#kotlin.Boolean/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-group-info/-group-info.html -$dokka.location:org.icpclive.api/GroupInfo/isHidden/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-group-info/is-hidden.html -$dokka.location:org.icpclive.api/GroupInfo/isOutOfContest/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-group-info/is-out-of-contest.html -$dokka.location:org.icpclive.api/GroupInfo/name/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-group-info/name.html -$dokka.location:org.icpclive.api/ICPCProblemResult///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-i-c-p-c-problem-result/index.html -$dokka.location:org.icpclive.api/ICPCProblemResult/ICPCProblemResult/#kotlin.Int#kotlin.Int#kotlin.Boolean#kotlin.Boolean#kotlin.time.Duration?/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-i-c-p-c-problem-result/-i-c-p-c-problem-result.html -$dokka.location:org.icpclive.api/ICPCProblemResult/isFirstToSolve/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-i-c-p-c-problem-result/is-first-to-solve.html -$dokka.location:org.icpclive.api/ICPCProblemResult/isSolved/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-i-c-p-c-problem-result/is-solved.html -$dokka.location:org.icpclive.api/ICPCProblemResult/lastSubmitTime/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-i-c-p-c-problem-result/last-submit-time.html -$dokka.location:org.icpclive.api/ICPCProblemResult/pendingAttempts/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-i-c-p-c-problem-result/pending-attempts.html -$dokka.location:org.icpclive.api/ICPCProblemResult/wrongAttempts/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-i-c-p-c-problem-result/wrong-attempts.html -$dokka.location:org.icpclive.api/ICPCRunResult///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-i-c-p-c-run-result/index.html -$dokka.location:org.icpclive.api/ICPCRunResult/ICPCRunResult/#org.icpclive.api.Verdict#kotlin.Boolean/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-i-c-p-c-run-result/-i-c-p-c-run-result.html -$dokka.location:org.icpclive.api/ICPCRunResult/isFirstToSolveRun/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-i-c-p-c-run-result/is-first-to-solve-run.html -$dokka.location:org.icpclive.api/ICPCRunResult/verdict/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-i-c-p-c-run-result/verdict.html -$dokka.location:org.icpclive.api/IOIProblemResult///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-problem-result/index.html -$dokka.location:org.icpclive.api/IOIProblemResult/IOIProblemResult/#kotlin.Double?#kotlin.time.Duration?#kotlin.Boolean/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-problem-result/-i-o-i-problem-result.html -$dokka.location:org.icpclive.api/IOIProblemResult/isFirstBest/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-problem-result/is-first-best.html -$dokka.location:org.icpclive.api/IOIProblemResult/lastSubmitTime/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-problem-result/last-submit-time.html -$dokka.location:org.icpclive.api/IOIProblemResult/score/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-problem-result/score.html -$dokka.location:org.icpclive.api/IOIRunResult///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-run-result/index.html -$dokka.location:org.icpclive.api/IOIRunResult/IOIRunResult/#kotlin.collections.List[kotlin.Double]#org.icpclive.api.Verdict?#kotlin.Double#kotlin.Double#kotlin.Boolean#kotlin.Boolean/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-run-result/-i-o-i-run-result.html -$dokka.location:org.icpclive.api/IOIRunResult/difference/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-run-result/difference.html -$dokka.location:org.icpclive.api/IOIRunResult/isFirstBestRun/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-run-result/is-first-best-run.html -$dokka.location:org.icpclive.api/IOIRunResult/isFirstBestTeamRun/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-run-result/is-first-best-team-run.html -$dokka.location:org.icpclive.api/IOIRunResult/score/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-run-result/score.html -$dokka.location:org.icpclive.api/IOIRunResult/scoreAfter/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-run-result/score-after.html -$dokka.location:org.icpclive.api/IOIRunResult/wrongVerdict/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-i-o-i-run-result/wrong-verdict.html -$dokka.location:org.icpclive.api/MedalTiebreakMode.ALL///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-i-c-p-c-live contest data parser/org.icpclive.api/-medal-tiebreak-mode/-a-l-l/index.html -$dokka.location:org.icpclive.api/MedalTiebreakMode.NONE///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-i-c-p-c-live contest data parser/org.icpclive.api/-medal-tiebreak-mode/-n-o-n-e/index.html -$dokka.location:org.icpclive.api/MedalTiebreakMode///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-medal-tiebreak-mode/index.html -$dokka.location:org.icpclive.api/MedalTiebreakMode/valueOf/#kotlin.String/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-medal-tiebreak-mode/value-of.html -$dokka.location:org.icpclive.api/MedalTiebreakMode/values/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-medal-tiebreak-mode/values.html -$dokka.location:org.icpclive.api/MedalType///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-medal-type/index.html -$dokka.location:org.icpclive.api/MedalType/MedalType/#kotlin.String#kotlin.Int#kotlin.Double#org.icpclive.api.MedalTiebreakMode/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-medal-type/-medal-type.html -$dokka.location:org.icpclive.api/MedalType/count/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-medal-type/count.html -$dokka.location:org.icpclive.api/MedalType/minScore/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-medal-type/min-score.html -$dokka.location:org.icpclive.api/MedalType/name/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-medal-type/name.html -$dokka.location:org.icpclive.api/MedalType/tiebreakMode/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-medal-type/tiebreak-mode.html -$dokka.location:org.icpclive.api/MediaType.Object///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-object/index.html -$dokka.location:org.icpclive.api/MediaType.Object/Object/#kotlin.String#kotlin.Boolean/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-object/-object.html -$dokka.location:org.icpclive.api/MediaType.Object/isMedia/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-object/is-media.html -$dokka.location:org.icpclive.api/MediaType.Object/url/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-object/url.html -$dokka.location:org.icpclive.api/MediaType.Photo///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-photo/index.html -$dokka.location:org.icpclive.api/MediaType.Photo/Photo/#kotlin.String#kotlin.Boolean/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-photo/-photo.html -$dokka.location:org.icpclive.api/MediaType.Photo/isMedia/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-photo/is-media.html -$dokka.location:org.icpclive.api/MediaType.Photo/url/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-photo/url.html -$dokka.location:org.icpclive.api/MediaType.TaskStatus///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-task-status/index.html -$dokka.location:org.icpclive.api/MediaType.TaskStatus/TaskStatus/#kotlin.Int/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-task-status/-task-status.html -$dokka.location:org.icpclive.api/MediaType.TaskStatus/isMedia/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-task-status/is-media.html -$dokka.location:org.icpclive.api/MediaType.TaskStatus/teamId/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-task-status/team-id.html -$dokka.location:org.icpclive.api/MediaType.Video///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-video/index.html -$dokka.location:org.icpclive.api/MediaType.Video/Video/#kotlin.String#kotlin.Boolean/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-video/-video.html -$dokka.location:org.icpclive.api/MediaType.Video/isMedia/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-video/is-media.html -$dokka.location:org.icpclive.api/MediaType.Video/url/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-video/url.html -$dokka.location:org.icpclive.api/MediaType.WebRTCGrabberConnection///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-web-r-t-c-grabber-connection/index.html -$dokka.location:org.icpclive.api/MediaType.WebRTCGrabberConnection/WebRTCGrabberConnection/#kotlin.String#kotlin.String#kotlin.String#kotlin.String?#kotlin.Boolean/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-web-r-t-c-grabber-connection/-web-r-t-c-grabber-connection.html -$dokka.location:org.icpclive.api/MediaType.WebRTCGrabberConnection/credential/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-web-r-t-c-grabber-connection/credential.html -$dokka.location:org.icpclive.api/MediaType.WebRTCGrabberConnection/isMedia/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-web-r-t-c-grabber-connection/is-media.html -$dokka.location:org.icpclive.api/MediaType.WebRTCGrabberConnection/peerName/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-web-r-t-c-grabber-connection/peer-name.html -$dokka.location:org.icpclive.api/MediaType.WebRTCGrabberConnection/streamType/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-web-r-t-c-grabber-connection/stream-type.html -$dokka.location:org.icpclive.api/MediaType.WebRTCGrabberConnection/url/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-web-r-t-c-grabber-connection/url.html -$dokka.location:org.icpclive.api/MediaType.WebRTCProxyConnection///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-web-r-t-c-proxy-connection/index.html -$dokka.location:org.icpclive.api/MediaType.WebRTCProxyConnection/WebRTCProxyConnection/#kotlin.String#kotlin.String?#kotlin.Boolean/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-web-r-t-c-proxy-connection/-web-r-t-c-proxy-connection.html -$dokka.location:org.icpclive.api/MediaType.WebRTCProxyConnection/audioUrl/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-web-r-t-c-proxy-connection/audio-url.html -$dokka.location:org.icpclive.api/MediaType.WebRTCProxyConnection/isMedia/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-web-r-t-c-proxy-connection/is-media.html -$dokka.location:org.icpclive.api/MediaType.WebRTCProxyConnection/url/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/-web-r-t-c-proxy-connection/url.html -$dokka.location:org.icpclive.api/MediaType///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/index.html -$dokka.location:org.icpclive.api/MediaType/isMedia/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/is-media.html -$dokka.location:org.icpclive.api/MediaType/noMedia/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-media-type/no-media.html -$dokka.location:org.icpclive.api/OptimismLevel.NORMAL///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-i-c-p-c-live contest data parser/org.icpclive.api/-optimism-level/-n-o-r-m-a-l/index.html -$dokka.location:org.icpclive.api/OptimismLevel.OPTIMISTIC///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-i-c-p-c-live contest data parser/org.icpclive.api/-optimism-level/-o-p-t-i-m-i-s-t-i-c/index.html -$dokka.location:org.icpclive.api/OptimismLevel.PESSIMISTIC///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-i-c-p-c-live contest data parser/org.icpclive.api/-optimism-level/-p-e-s-s-i-m-i-s-t-i-c/index.html -$dokka.location:org.icpclive.api/OptimismLevel///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-optimism-level/index.html -$dokka.location:org.icpclive.api/OptimismLevel/valueOf/#kotlin.String/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-optimism-level/value-of.html -$dokka.location:org.icpclive.api/OptimismLevel/values/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-optimism-level/values.html -$dokka.location:org.icpclive.api/OrganizationInfo///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-organization-info/index.html -$dokka.location:org.icpclive.api/OrganizationInfo/OrganizationInfo/#kotlin.String#kotlin.String#kotlin.String/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-organization-info/-organization-info.html -$dokka.location:org.icpclive.api/OrganizationInfo/cdsId/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-organization-info/cds-id.html -$dokka.location:org.icpclive.api/OrganizationInfo/displayName/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-organization-info/display-name.html -$dokka.location:org.icpclive.api/OrganizationInfo/fullName/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-organization-info/full-name.html -$dokka.location:org.icpclive.api/PenaltyRoundingMode.EACH_SUBMISSION_DOWN_TO_MINUTE///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-i-c-p-c-live contest data parser/org.icpclive.api/-penalty-rounding-mode/-e-a-c-h_-s-u-b-m-i-s-s-i-o-n_-d-o-w-n_-t-o_-m-i-n-u-t-e/index.html -$dokka.location:org.icpclive.api/PenaltyRoundingMode.LAST///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-i-c-p-c-live contest data parser/org.icpclive.api/-penalty-rounding-mode/-l-a-s-t/index.html -$dokka.location:org.icpclive.api/PenaltyRoundingMode.SUM_DOWN_TO_MINUTE///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-i-c-p-c-live contest data parser/org.icpclive.api/-penalty-rounding-mode/-s-u-m_-d-o-w-n_-t-o_-m-i-n-u-t-e/index.html -$dokka.location:org.icpclive.api/PenaltyRoundingMode.SUM_IN_SECONDS///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-i-c-p-c-live contest data parser/org.icpclive.api/-penalty-rounding-mode/-s-u-m_-i-n_-s-e-c-o-n-d-s/index.html -$dokka.location:org.icpclive.api/PenaltyRoundingMode.ZERO///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-i-c-p-c-live contest data parser/org.icpclive.api/-penalty-rounding-mode/-z-e-r-o/index.html -$dokka.location:org.icpclive.api/PenaltyRoundingMode///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-penalty-rounding-mode/index.html -$dokka.location:org.icpclive.api/PenaltyRoundingMode/valueOf/#kotlin.String/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-penalty-rounding-mode/value-of.html -$dokka.location:org.icpclive.api/PenaltyRoundingMode/values/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-penalty-rounding-mode/values.html -$dokka.location:org.icpclive.api/ProblemInfo.Companion///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/-companion/index.html -$dokka.location:org.icpclive.api/ProblemInfo.Companion/logger/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/-companion/logger.html -$dokka.location:org.icpclive.api/ProblemInfo///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/index.html -$dokka.location:org.icpclive.api/ProblemInfo/ProblemInfo/#kotlin.String#kotlin.String#kotlin.Int#kotlin.Int#kotlin.String#kotlin.Double?#kotlin.Double?#java.awt.Color?#org.icpclive.api.ScoreMergeMode?/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/-problem-info.html -$dokka.location:org.icpclive.api/ProblemInfo/color/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/color.html -$dokka.location:org.icpclive.api/ProblemInfo/contestSystemId/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/contest-system-id.html -$dokka.location:org.icpclive.api/ProblemInfo/id/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/id.html -$dokka.location:org.icpclive.api/ProblemInfo/letter/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/letter.html -$dokka.location:org.icpclive.api/ProblemInfo/maxScore/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/max-score.html -$dokka.location:org.icpclive.api/ProblemInfo/minScore/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/min-score.html -$dokka.location:org.icpclive.api/ProblemInfo/name/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/name.html -$dokka.location:org.icpclive.api/ProblemInfo/ordinal/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/ordinal.html -$dokka.location:org.icpclive.api/ProblemInfo/scoreMergeMode/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-info/score-merge-mode.html -$dokka.location:org.icpclive.api/ProblemResult///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-problem-result/index.html -$dokka.location:org.icpclive.api/RunInfo///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-run-info/index.html -$dokka.location:org.icpclive.api/RunInfo/RunInfo/#kotlin.Int#org.icpclive.api.RunResult?#kotlin.Double#kotlin.Int#kotlin.Int#kotlin.time.Duration#org.icpclive.api.MediaType?#kotlin.collections.List[org.icpclive.api.MediaType]#kotlin.Boolean/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-run-info/-run-info.html -$dokka.location:org.icpclive.api/RunInfo/featuredRunMedia/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-run-info/featured-run-media.html -$dokka.location:org.icpclive.api/RunInfo/id/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-run-info/id.html -$dokka.location:org.icpclive.api/RunInfo/isHidden/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-run-info/is-hidden.html -$dokka.location:org.icpclive.api/RunInfo/percentage/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-run-info/percentage.html -$dokka.location:org.icpclive.api/RunInfo/problemId/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-run-info/problem-id.html -$dokka.location:org.icpclive.api/RunInfo/reactionVideos/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-run-info/reaction-videos.html -$dokka.location:org.icpclive.api/RunInfo/result/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-run-info/result.html -$dokka.location:org.icpclive.api/RunInfo/teamId/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-run-info/team-id.html -$dokka.location:org.icpclive.api/RunInfo/time/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-run-info/time.html -$dokka.location:org.icpclive.api/RunResult///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-run-result/index.html -$dokka.location:org.icpclive.api/ScoreMergeMode.LAST///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-i-c-p-c-live contest data parser/org.icpclive.api/-score-merge-mode/-l-a-s-t/index.html -$dokka.location:org.icpclive.api/ScoreMergeMode.LAST_OK///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-i-c-p-c-live contest data parser/org.icpclive.api/-score-merge-mode/-l-a-s-t_-o-k/index.html -$dokka.location:org.icpclive.api/ScoreMergeMode.MAX_PER_GROUP///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-i-c-p-c-live contest data parser/org.icpclive.api/-score-merge-mode/-m-a-x_-p-e-r_-g-r-o-u-p/index.html -$dokka.location:org.icpclive.api/ScoreMergeMode.MAX_TOTAL///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-i-c-p-c-live contest data parser/org.icpclive.api/-score-merge-mode/-m-a-x_-t-o-t-a-l/index.html -$dokka.location:org.icpclive.api/ScoreMergeMode.SUM///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-i-c-p-c-live contest data parser/org.icpclive.api/-score-merge-mode/-s-u-m/index.html -$dokka.location:org.icpclive.api/ScoreMergeMode///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-score-merge-mode/index.html -$dokka.location:org.icpclive.api/ScoreMergeMode/valueOf/#kotlin.String/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-score-merge-mode/value-of.html -$dokka.location:org.icpclive.api/ScoreMergeMode/values/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-score-merge-mode/values.html -$dokka.location:org.icpclive.api/Scoreboard///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard/index.html -$dokka.location:org.icpclive.api/Scoreboard/Scoreboard/#kotlin.time.Duration#kotlin.collections.List[org.icpclive.api.ScoreboardRow]/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard/-scoreboard.html -$dokka.location:org.icpclive.api/Scoreboard/lastSubmitTime/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard/last-submit-time.html -$dokka.location:org.icpclive.api/Scoreboard/rows/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard/rows.html -$dokka.location:org.icpclive.api/ScoreboardRow///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard-row/index.html -$dokka.location:org.icpclive.api/ScoreboardRow/ScoreboardRow/#kotlin.Int#kotlin.Int#kotlin.Double#kotlin.time.Duration#kotlin.Long#kotlin.String?#kotlin.collections.List[org.icpclive.api.ProblemResult]#kotlin.collections.List[kotlin.String]#kotlin.collections.List[kotlin.String]/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard-row/-scoreboard-row.html -$dokka.location:org.icpclive.api/ScoreboardRow/championInGroups/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard-row/champion-in-groups.html -$dokka.location:org.icpclive.api/ScoreboardRow/lastAccepted/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard-row/last-accepted.html -$dokka.location:org.icpclive.api/ScoreboardRow/medalType/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard-row/medal-type.html -$dokka.location:org.icpclive.api/ScoreboardRow/penalty/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard-row/penalty.html -$dokka.location:org.icpclive.api/ScoreboardRow/problemResults/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard-row/problem-results.html -$dokka.location:org.icpclive.api/ScoreboardRow/rank/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard-row/rank.html -$dokka.location:org.icpclive.api/ScoreboardRow/teamGroups/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard-row/team-groups.html -$dokka.location:org.icpclive.api/ScoreboardRow/teamId/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard-row/team-id.html -$dokka.location:org.icpclive.api/ScoreboardRow/totalScore/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-scoreboard-row/total-score.html -$dokka.location:org.icpclive.api/TeamInfo///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/index.html -$dokka.location:org.icpclive.api/TeamInfo/TeamInfo/#kotlin.Int#kotlin.String#kotlin.String#kotlin.String#kotlin.collections.List[kotlin.String]#kotlin.String?#kotlin.collections.Map[org.icpclive.api.TeamMediaType,org.icpclive.api.MediaType]#kotlin.Boolean#kotlin.Boolean#kotlin.String?#kotlin.collections.Map[kotlin.String,kotlin.String]/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/-team-info.html -$dokka.location:org.icpclive.api/TeamInfo/contestSystemId/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/contest-system-id.html -$dokka.location:org.icpclive.api/TeamInfo/customFields/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/custom-fields.html -$dokka.location:org.icpclive.api/TeamInfo/displayName/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/display-name.html -$dokka.location:org.icpclive.api/TeamInfo/fullName/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/full-name.html -$dokka.location:org.icpclive.api/TeamInfo/groups/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/groups.html -$dokka.location:org.icpclive.api/TeamInfo/hashTag/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/hash-tag.html -$dokka.location:org.icpclive.api/TeamInfo/id/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/id.html -$dokka.location:org.icpclive.api/TeamInfo/isHidden/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/is-hidden.html -$dokka.location:org.icpclive.api/TeamInfo/isOutOfContest/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/is-out-of-contest.html -$dokka.location:org.icpclive.api/TeamInfo/medias/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/medias.html -$dokka.location:org.icpclive.api/TeamInfo/organizationId/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-team-info/organization-id.html -$dokka.location:org.icpclive.api/TeamMediaType.ACHIEVEMENT///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-i-c-p-c-live contest data parser/org.icpclive.api/-team-media-type/-a-c-h-i-e-v-e-m-e-n-t/index.html -$dokka.location:org.icpclive.api/TeamMediaType.CAMERA///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-i-c-p-c-live contest data parser/org.icpclive.api/-team-media-type/-c-a-m-e-r-a/index.html -$dokka.location:org.icpclive.api/TeamMediaType.PHOTO///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-i-c-p-c-live contest data parser/org.icpclive.api/-team-media-type/-p-h-o-t-o/index.html -$dokka.location:org.icpclive.api/TeamMediaType.REACTION_VIDEO///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-i-c-p-c-live contest data parser/org.icpclive.api/-team-media-type/-r-e-a-c-t-i-o-n_-v-i-d-e-o/index.html -$dokka.location:org.icpclive.api/TeamMediaType.RECORD///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-i-c-p-c-live contest data parser/org.icpclive.api/-team-media-type/-r-e-c-o-r-d/index.html -$dokka.location:org.icpclive.api/TeamMediaType.SCREEN///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}-i-c-p-c-live contest data parser/org.icpclive.api/-team-media-type/-s-c-r-e-e-n/index.html -$dokka.location:org.icpclive.api/TeamMediaType///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-team-media-type/index.html -$dokka.location:org.icpclive.api/TeamMediaType/valueOf/#kotlin.String/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-team-media-type/value-of.html -$dokka.location:org.icpclive.api/TeamMediaType/values/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-team-media-type/values.html -$dokka.location:org.icpclive.api/Verdict.Accepted///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-accepted/index.html -$dokka.location:org.icpclive.api/Verdict.Challenged///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-challenged/index.html -$dokka.location:org.icpclive.api/Verdict.Companion///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-companion/index.html -$dokka.location:org.icpclive.api/Verdict.Companion/all/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-companion/all.html -$dokka.location:org.icpclive.api/Verdict.Companion/lookup/#kotlin.String#kotlin.Boolean#kotlin.Boolean/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-companion/lookup.html -$dokka.location:org.icpclive.api/Verdict.CompilationError///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-compilation-error/index.html -$dokka.location:org.icpclive.api/Verdict.CompilationErrorWithPenalty///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-compilation-error-with-penalty/index.html -$dokka.location:org.icpclive.api/Verdict.Fail///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-fail/index.html -$dokka.location:org.icpclive.api/Verdict.IdlenessLimitExceeded///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-idleness-limit-exceeded/index.html -$dokka.location:org.icpclive.api/Verdict.Ignored///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-ignored/index.html -$dokka.location:org.icpclive.api/Verdict.MemoryLimitExceeded///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-memory-limit-exceeded/index.html -$dokka.location:org.icpclive.api/Verdict.OutputLimitExceeded///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-output-limit-exceeded/index.html -$dokka.location:org.icpclive.api/Verdict.PresentationError///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-presentation-error/index.html -$dokka.location:org.icpclive.api/Verdict.Rejected///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-rejected/index.html -$dokka.location:org.icpclive.api/Verdict.RuntimeError///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-runtime-error/index.html -$dokka.location:org.icpclive.api/Verdict.SecurityViolation///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-security-violation/index.html -$dokka.location:org.icpclive.api/Verdict.TimeLimitExceeded///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-time-limit-exceeded/index.html -$dokka.location:org.icpclive.api/Verdict.WrongAnswer///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/-wrong-answer/index.html -$dokka.location:org.icpclive.api/Verdict///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/index.html -$dokka.location:org.icpclive.api/Verdict/isAccepted/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/is-accepted.html -$dokka.location:org.icpclive.api/Verdict/isAddingPenalty/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/is-adding-penalty.html -$dokka.location:org.icpclive.api/Verdict/shortName/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/short-name.html -$dokka.location:org.icpclive.api/Verdict/toRunResult/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict/to-run-result.html -$dokka.location:org.icpclive.api/VerdictSerializer///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict-serializer/index.html -$dokka.location:org.icpclive.api/VerdictSerializer/VerdictSerializer/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict-serializer/-verdict-serializer.html -$dokka.location:org.icpclive.api/VerdictSerializer/descriptor/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict-serializer/descriptor.html -$dokka.location:org.icpclive.api/VerdictSerializer/deserialize/#kotlinx.serialization.encoding.Decoder/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict-serializer/deserialize.html -$dokka.location:org.icpclive.api/VerdictSerializer/serialize/#kotlinx.serialization.encoding.Encoder#org.icpclive.api.Verdict/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.api/-verdict-serializer/serialize.html -$dokka.location:org.icpclive.cds.adapters////PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/index.html -$dokka.location:org.icpclive.cds.adapters//addFirstToSolves/kotlinx.coroutines.flow.Flow[org.icpclive.cds.ContestUpdate]#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/add-first-to-solves.html -$dokka.location:org.icpclive.cds.adapters//applyAdvancedProperties/kotlinx.coroutines.flow.Flow[org.icpclive.cds.ContestUpdate]#kotlinx.coroutines.flow.Flow[org.icpclive.api.tunning.AdvancedProperties]/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/apply-advanced-properties.html -$dokka.location:org.icpclive.cds.adapters//calculateScoreDifferences/kotlinx.coroutines.flow.Flow[org.icpclive.cds.ContestUpdate]#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/calculate-score-differences.html -$dokka.location:org.icpclive.cds.adapters//filterUseless/kotlinx.coroutines.flow.Flow[org.icpclive.cds.ContestUpdate]#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/filter-useless.html -$dokka.location:org.icpclive.cds.adapters//filterUseless/kotlinx.coroutines.flow.Flow[org.icpclive.cds.adapters.ContestEventWithRunsBefore]#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/filter-useless.html -$dokka.location:org.icpclive.cds.adapters//processHiddenTeamsAndGroups/kotlinx.coroutines.flow.Flow[org.icpclive.cds.ContestUpdate]#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/process-hidden-teams-and-groups.html -$dokka.location:org.icpclive.cds.adapters//removeFrozenSubmissions/kotlinx.coroutines.flow.Flow[org.icpclive.cds.ContestUpdate]#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/remove-frozen-submissions.html -$dokka.location:org.icpclive.cds.adapters//removeFrozenSubmissions/kotlinx.coroutines.flow.Flow[org.icpclive.cds.adapters.ContestEventWithRunsBefore]#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/remove-frozen-submissions.html -$dokka.location:org.icpclive.cds.adapters//stateGroupedByTeam/kotlinx.coroutines.flow.Flow[org.icpclive.cds.ContestUpdate]#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/state-grouped-by-team.html -$dokka.location:org.icpclive.cds.adapters//stateWithGroupedRuns/kotlinx.coroutines.flow.Flow[org.icpclive.cds.ContestUpdate]#kotlin.Function1[org.icpclive.api.RunInfo,TypeParam(bounds=[kotlin.Any])]/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/state-with-grouped-runs.html -$dokka.location:org.icpclive.cds.adapters//update/kotlinx.collections.immutable.PersistentMap[TypeParam(bounds=[kotlin.Any?]),TypeParam(bounds=[kotlin.Any?])]#TypeParam(bounds=[kotlin.Any?])#kotlin.Function1[TypeParam(bounds=[kotlin.Any?])?,TypeParam(bounds=[kotlin.Any?])]/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/update.html -$dokka.location:org.icpclive.cds.adapters//withContestInfoBefore/kotlinx.coroutines.flow.Flow[org.icpclive.cds.ContestUpdate]#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/with-contest-info-before.html -$dokka.location:org.icpclive.cds.adapters//withGroupedRuns/kotlinx.coroutines.flow.Flow[org.icpclive.cds.ContestUpdate]#kotlin.Function1[org.icpclive.api.RunInfo,TypeParam(bounds=[kotlin.Any])]#kotlin.Function4[TypeParam(bounds=[kotlin.Any]),kotlinx.collections.immutable.PersistentList[org.icpclive.api.RunInfo],kotlinx.collections.immutable.PersistentList[org.icpclive.api.RunInfo],org.icpclive.api.ContestInfo?,kotlin.collections.List[org.icpclive.api.RunInfo]]?#kotlin.Function3[org.icpclive.api.ContestInfo,org.icpclive.api.ContestInfo?,TypeParam(bounds=[kotlin.Any]),kotlin.Boolean]?/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/with-grouped-runs.html -$dokka.location:org.icpclive.cds.adapters//withRunsBefore/kotlinx.coroutines.flow.Flow[org.icpclive.cds.ContestUpdate]#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/with-runs-before.html -$dokka.location:org.icpclive.cds.adapters/AdvancedPropertiesAdapter///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-advanced-properties-adapter/index.html -$dokka.location:org.icpclive.cds.adapters/ContestEventWithGroupedRuns///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-event-with-grouped-runs/index.html -$dokka.location:org.icpclive.cds.adapters/ContestEventWithGroupedRuns/ContestEventWithGroupedRuns/#org.icpclive.cds.ContestUpdate#org.icpclive.api.ContestInfo?#kotlinx.collections.immutable.PersistentMap[TypeParam(bounds=[kotlin.Any?]),kotlinx.collections.immutable.PersistentList[org.icpclive.api.RunInfo]]/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-event-with-grouped-runs/-contest-event-with-grouped-runs.html -$dokka.location:org.icpclive.cds.adapters/ContestEventWithGroupedRuns/event/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-event-with-grouped-runs/event.html -$dokka.location:org.icpclive.cds.adapters/ContestEventWithGroupedRuns/infoAfterEvent/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-event-with-grouped-runs/info-after-event.html -$dokka.location:org.icpclive.cds.adapters/ContestEventWithGroupedRuns/infoBeforeEvent/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-event-with-grouped-runs/info-before-event.html -$dokka.location:org.icpclive.cds.adapters/ContestEventWithGroupedRuns/runs/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-event-with-grouped-runs/runs.html -$dokka.location:org.icpclive.cds.adapters/ContestEventWithRunsBefore///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-event-with-runs-before/index.html -$dokka.location:org.icpclive.cds.adapters/ContestEventWithRunsBefore/ContestEventWithRunsBefore/#org.icpclive.cds.ContestUpdate#org.icpclive.api.ContestInfo?#kotlinx.collections.immutable.PersistentMap[kotlin.Int,org.icpclive.api.RunInfo]/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-event-with-runs-before/-contest-event-with-runs-before.html -$dokka.location:org.icpclive.cds.adapters/ContestEventWithRunsBefore/event/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-event-with-runs-before/event.html -$dokka.location:org.icpclive.cds.adapters/ContestEventWithRunsBefore/infoAfterEvent/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-event-with-runs-before/info-after-event.html -$dokka.location:org.icpclive.cds.adapters/ContestEventWithRunsBefore/infoBeforeEvent/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-event-with-runs-before/info-before-event.html -$dokka.location:org.icpclive.cds.adapters/ContestEventWithRunsBefore/runs/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-event-with-runs-before/runs.html -$dokka.location:org.icpclive.cds.adapters/ContestStateWithGroupedRuns///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-state-with-grouped-runs/index.html -$dokka.location:org.icpclive.cds.adapters/ContestStateWithGroupedRuns/ContestStateWithGroupedRuns/#org.icpclive.api.ContestInfo?#kotlinx.collections.immutable.PersistentMap[TypeParam(bounds=[kotlin.Any?]),kotlinx.collections.immutable.PersistentList[org.icpclive.api.RunInfo]]/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-state-with-grouped-runs/-contest-state-with-grouped-runs.html -$dokka.location:org.icpclive.cds.adapters/ContestStateWithGroupedRuns/info/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-state-with-grouped-runs/info.html -$dokka.location:org.icpclive.cds.adapters/ContestStateWithGroupedRuns/runs/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-state-with-grouped-runs/runs.html -$dokka.location:org.icpclive.cds.adapters/ContestStateWithRunsByTeam///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-state-with-runs-by-team/index.html -$dokka.location:org.icpclive.cds.adapters/ContestStateWithRunsByTeam/ContestStateWithRunsByTeam/#org.icpclive.api.ContestInfo?#kotlinx.collections.immutable.PersistentMap[kotlin.Int,kotlinx.collections.immutable.PersistentList[org.icpclive.api.RunInfo]]/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-state-with-runs-by-team/-contest-state-with-runs-by-team.html -$dokka.location:org.icpclive.cds.adapters/ContestStateWithRunsByTeam/info/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-state-with-runs-by-team/info.html -$dokka.location:org.icpclive.cds.adapters/ContestStateWithRunsByTeam/runs/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.adapters/-contest-state-with-runs-by-team/runs.html -$dokka.location:org.icpclive.cds.common////PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.common/index.html -$dokka.location:org.icpclive.cds.common//setAllowUnsecureConnections/#kotlin.Boolean/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.common/set-allow-unsecure-connections.html -$dokka.location:org.icpclive.cds.settings////PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/index.html -$dokka.location:org.icpclive.cds.settings//parseFileToCdsSettings/#java.nio.file.Path/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/parse-file-to-cds-settings.html -$dokka.location:org.icpclive.cds.settings/CDSSettings///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-c-d-s-settings/index.html -$dokka.location:org.icpclive.cds.settings/CDSSettings/emulation/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-c-d-s-settings/emulation.html -$dokka.location:org.icpclive.cds.settings/CDSSettings/toFlow/#kotlin.collections.Map[kotlin.String,kotlin.String]/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-c-d-s-settings/to-flow.html -$dokka.location:org.icpclive.cds.settings/CDSSettings/toString/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-c-d-s-settings/to-string.html -$dokka.location:org.icpclive.cds.settings/CFSettings///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-c-f-settings/index.html -$dokka.location:org.icpclive.cds.settings/CFSettings/CFSettings/#kotlin.Int#org.icpclive.cds.settings.Credential#org.icpclive.cds.settings.Credential#kotlin.Boolean#org.icpclive.cds.settings.EmulationSettings?/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-c-f-settings/-c-f-settings.html -$dokka.location:org.icpclive.cds.settings/CFSettings/apiKey/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-c-f-settings/api-key.html -$dokka.location:org.icpclive.cds.settings/CFSettings/apiSecret/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-c-f-settings/api-secret.html -$dokka.location:org.icpclive.cds.settings/CFSettings/asManager/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-c-f-settings/as-manager.html -$dokka.location:org.icpclive.cds.settings/CFSettings/contestId/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-c-f-settings/contest-id.html -$dokka.location:org.icpclive.cds.settings/CFSettings/emulation/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-c-f-settings/emulation.html -$dokka.location:org.icpclive.cds.settings/CatsSettings///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-cats-settings/index.html -$dokka.location:org.icpclive.cds.settings/CatsSettings/CatsSettings/#org.icpclive.cds.settings.Credential#org.icpclive.cds.settings.Credential#kotlin.String#kotlinx.datetime.TimeZone#org.icpclive.api.ContestResultType#kotlin.String#org.icpclive.cds.settings.EmulationSettings?/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-cats-settings/-cats-settings.html -$dokka.location:org.icpclive.cds.settings/CatsSettings/cid/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-cats-settings/cid.html -$dokka.location:org.icpclive.cds.settings/CatsSettings/emulation/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-cats-settings/emulation.html -$dokka.location:org.icpclive.cds.settings/CatsSettings/login/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-cats-settings/login.html -$dokka.location:org.icpclive.cds.settings/CatsSettings/password/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-cats-settings/password.html -$dokka.location:org.icpclive.cds.settings/CatsSettings/resultType/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-cats-settings/result-type.html -$dokka.location:org.icpclive.cds.settings/CatsSettings/timeZone/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-cats-settings/time-zone.html -$dokka.location:org.icpclive.cds.settings/CatsSettings/url/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-cats-settings/url.html -$dokka.location:org.icpclive.cds.settings/ClicsLoaderSettings///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-loader-settings/index.html -$dokka.location:org.icpclive.cds.settings/ClicsLoaderSettings/ClicsLoaderSettings/#kotlin.String#org.icpclive.cds.settings.Credential?#org.icpclive.cds.settings.Credential?#kotlin.String#org.icpclive.cds.clics.FeedVersion/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-loader-settings/-clics-loader-settings.html -$dokka.location:org.icpclive.cds.settings/ClicsLoaderSettings/eventFeedName/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-loader-settings/event-feed-name.html -$dokka.location:org.icpclive.cds.settings/ClicsLoaderSettings/feedVersion/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-loader-settings/feed-version.html -$dokka.location:org.icpclive.cds.settings/ClicsLoaderSettings/login/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-loader-settings/login.html -$dokka.location:org.icpclive.cds.settings/ClicsLoaderSettings/password/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-loader-settings/password.html -$dokka.location:org.icpclive.cds.settings/ClicsLoaderSettings/url/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-loader-settings/url.html -$dokka.location:org.icpclive.cds.settings/ClicsSettings///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-settings/index.html -$dokka.location:org.icpclive.cds.settings/ClicsSettings/ClicsSettings/#kotlin.String#org.icpclive.cds.settings.Credential?#org.icpclive.cds.settings.Credential?#kotlin.String#org.icpclive.cds.clics.FeedVersion#org.icpclive.cds.settings.ClicsLoaderSettings?#kotlin.Boolean#kotlin.String#org.icpclive.cds.settings.EmulationSettings?/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-settings/-clics-settings.html -$dokka.location:org.icpclive.cds.settings/ClicsSettings/additionalFeed/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-settings/additional-feed.html -$dokka.location:org.icpclive.cds.settings/ClicsSettings/emulation/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-settings/emulation.html -$dokka.location:org.icpclive.cds.settings/ClicsSettings/mainFeed/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-settings/main-feed.html -$dokka.location:org.icpclive.cds.settings/ClicsSettings/mediaBaseUrl/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-settings/media-base-url.html -$dokka.location:org.icpclive.cds.settings/ClicsSettings/useTeamNames/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-clics-settings/use-team-names.html -$dokka.location:org.icpclive.cds.settings/CodeDrillsSettings///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-code-drills-settings/index.html -$dokka.location:org.icpclive.cds.settings/CodeDrillsSettings/CodeDrillsSettings/#kotlin.String#kotlin.Int#kotlin.String#org.icpclive.cds.settings.Credential#org.icpclive.cds.settings.EmulationSettings?/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-code-drills-settings/-code-drills-settings.html -$dokka.location:org.icpclive.cds.settings/CodeDrillsSettings/authKey/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-code-drills-settings/auth-key.html -$dokka.location:org.icpclive.cds.settings/CodeDrillsSettings/contestId/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-code-drills-settings/contest-id.html -$dokka.location:org.icpclive.cds.settings/CodeDrillsSettings/emulation/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-code-drills-settings/emulation.html -$dokka.location:org.icpclive.cds.settings/CodeDrillsSettings/port/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-code-drills-settings/port.html -$dokka.location:org.icpclive.cds.settings/CodeDrillsSettings/url/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-code-drills-settings/url.html -$dokka.location:org.icpclive.cds.settings/Credential///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-credential/index.html -$dokka.location:org.icpclive.cds.settings/Credential/Credential/#kotlin.String/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-credential/-credential.html -$dokka.location:org.icpclive.cds.settings/Credential/get/#kotlin.collections.Map[kotlin.String,kotlin.String]/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-credential/get.html -$dokka.location:org.icpclive.cds.settings/EjudgeSettings///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-ejudge-settings/index.html -$dokka.location:org.icpclive.cds.settings/EjudgeSettings/EjudgeSettings/#kotlin.String#org.icpclive.api.ContestResultType#org.icpclive.cds.settings.EmulationSettings?/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-ejudge-settings/-ejudge-settings.html -$dokka.location:org.icpclive.cds.settings/EjudgeSettings/emulation/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-ejudge-settings/emulation.html -$dokka.location:org.icpclive.cds.settings/EjudgeSettings/resultType/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-ejudge-settings/result-type.html -$dokka.location:org.icpclive.cds.settings/EjudgeSettings/url/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-ejudge-settings/url.html -$dokka.location:org.icpclive.cds.settings/EmulationSettings///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-emulation-settings/index.html -$dokka.location:org.icpclive.cds.settings/EmulationSettings/EmulationSettings/#kotlin.Double#kotlinx.datetime.Instant/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-emulation-settings/-emulation-settings.html -$dokka.location:org.icpclive.cds.settings/EmulationSettings/speed/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-emulation-settings/speed.html -$dokka.location:org.icpclive.cds.settings/EmulationSettings/startTime/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-emulation-settings/start-time.html -$dokka.location:org.icpclive.cds.settings/KRSUSettings///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-k-r-s-u-settings/index.html -$dokka.location:org.icpclive.cds.settings/KRSUSettings/KRSUSettings/#kotlin.String#kotlin.String#kotlinx.datetime.TimeZone#org.icpclive.cds.settings.EmulationSettings?/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-k-r-s-u-settings/-k-r-s-u-settings.html -$dokka.location:org.icpclive.cds.settings/KRSUSettings/contestUrl/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-k-r-s-u-settings/contest-url.html -$dokka.location:org.icpclive.cds.settings/KRSUSettings/emulation/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-k-r-s-u-settings/emulation.html -$dokka.location:org.icpclive.cds.settings/KRSUSettings/submissionsUrl/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-k-r-s-u-settings/submissions-url.html -$dokka.location:org.icpclive.cds.settings/KRSUSettings/timeZone/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-k-r-s-u-settings/time-zone.html -$dokka.location:org.icpclive.cds.settings/NoopSettings///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-noop-settings/index.html -$dokka.location:org.icpclive.cds.settings/NoopSettings/NoopSettings/#org.icpclive.cds.settings.EmulationSettings?/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-noop-settings/-noop-settings.html -$dokka.location:org.icpclive.cds.settings/NoopSettings/emulation/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-noop-settings/emulation.html -$dokka.location:org.icpclive.cds.settings/PCMSSettings///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-p-c-m-s-settings/index.html -$dokka.location:org.icpclive.cds.settings/PCMSSettings/PCMSSettings/#kotlin.String#org.icpclive.cds.settings.Credential?#org.icpclive.cds.settings.Credential?#kotlin.String?#org.icpclive.api.ContestResultType#org.icpclive.cds.settings.EmulationSettings?/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-p-c-m-s-settings/-p-c-m-s-settings.html -$dokka.location:org.icpclive.cds.settings/PCMSSettings/emulation/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-p-c-m-s-settings/emulation.html -$dokka.location:org.icpclive.cds.settings/PCMSSettings/login/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-p-c-m-s-settings/login.html -$dokka.location:org.icpclive.cds.settings/PCMSSettings/password/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-p-c-m-s-settings/password.html -$dokka.location:org.icpclive.cds.settings/PCMSSettings/problemsUrl/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-p-c-m-s-settings/problems-url.html -$dokka.location:org.icpclive.cds.settings/PCMSSettings/resultType/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-p-c-m-s-settings/result-type.html -$dokka.location:org.icpclive.cds.settings/PCMSSettings/url/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-p-c-m-s-settings/url.html -$dokka.location:org.icpclive.cds.settings/TestSysSettings///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-test-sys-settings/index.html -$dokka.location:org.icpclive.cds.settings/TestSysSettings/TestSysSettings/#kotlin.String#kotlinx.datetime.TimeZone#org.icpclive.cds.settings.EmulationSettings?/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-test-sys-settings/-test-sys-settings.html -$dokka.location:org.icpclive.cds.settings/TestSysSettings/emulation/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-test-sys-settings/emulation.html -$dokka.location:org.icpclive.cds.settings/TestSysSettings/timeZone/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-test-sys-settings/time-zone.html -$dokka.location:org.icpclive.cds.settings/TestSysSettings/url/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-test-sys-settings/url.html -$dokka.location:org.icpclive.cds.settings/YandexSettings///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-yandex-settings/index.html -$dokka.location:org.icpclive.cds.settings/YandexSettings/YandexSettings/#org.icpclive.cds.settings.Credential#kotlin.text.Regex#kotlin.Int#org.icpclive.api.ContestResultType#org.icpclive.cds.settings.EmulationSettings?/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-yandex-settings/-yandex-settings.html -$dokka.location:org.icpclive.cds.settings/YandexSettings/apiKey/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-yandex-settings/api-key.html -$dokka.location:org.icpclive.cds.settings/YandexSettings/contestId/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-yandex-settings/contest-id.html -$dokka.location:org.icpclive.cds.settings/YandexSettings/emulation/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-yandex-settings/emulation.html -$dokka.location:org.icpclive.cds.settings/YandexSettings/loginRegex/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-yandex-settings/login-regex.html -$dokka.location:org.icpclive.cds.settings/YandexSettings/resultType/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds.settings/-yandex-settings/result-type.html -$dokka.location:org.icpclive.cds////PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds/index.html -$dokka.location:org.icpclive.cds/AnalyticsUpdate///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds/-analytics-update/index.html -$dokka.location:org.icpclive.cds/AnalyticsUpdate/AnalyticsUpdate/#org.icpclive.api.AnalyticsMessage/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds/-analytics-update/-analytics-update.html -$dokka.location:org.icpclive.cds/AnalyticsUpdate/message/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds/-analytics-update/message.html -$dokka.location:org.icpclive.cds/ContestUpdate///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds/-contest-update/index.html -$dokka.location:org.icpclive.cds/InfoUpdate///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds/-info-update/index.html -$dokka.location:org.icpclive.cds/InfoUpdate/InfoUpdate/#org.icpclive.api.ContestInfo/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds/-info-update/-info-update.html -$dokka.location:org.icpclive.cds/InfoUpdate/newInfo/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds/-info-update/new-info.html -$dokka.location:org.icpclive.cds/RunUpdate///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds/-run-update/index.html -$dokka.location:org.icpclive.cds/RunUpdate/RunUpdate/#org.icpclive.api.RunInfo/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds/-run-update/-run-update.html -$dokka.location:org.icpclive.cds/RunUpdate/newInfo/#/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.cds/-run-update/new-info.html -$dokka.location:org.icpclive.scoreboard////PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.scoreboard/index.html -$dokka.location:org.icpclive.scoreboard//calculateScoreboard/kotlinx.coroutines.flow.Flow[org.icpclive.cds.adapters.ContestStateWithRunsByTeam]#org.icpclive.api.OptimismLevel/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.scoreboard/calculate-scoreboard.html -$dokka.location:org.icpclive.scoreboard//calculateScoreboardWithInfo/kotlinx.coroutines.flow.Flow[org.icpclive.cds.adapters.ContestStateWithRunsByTeam]#org.icpclive.api.OptimismLevel/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.scoreboard/calculate-scoreboard-with-info.html -$dokka.location:org.icpclive.scoreboard//getScoreboardCalculator/#org.icpclive.api.ContestInfo#org.icpclive.api.OptimismLevel/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.scoreboard/get-scoreboard-calculator.html -$dokka.location:org.icpclive.scoreboard/ScoreboardCalculator///PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.scoreboard/-scoreboard-calculator/index.html -$dokka.location:org.icpclive.scoreboard/ScoreboardCalculator/getScoreboard/#org.icpclive.api.ContestInfo#kotlin.collections.Map[kotlin.Int,kotlin.collections.List[org.icpclive.api.RunInfo]]/PointingToDeclaration/-i-c-p-c-live contest data parser/org.icpclive.scoreboard/-scoreboard-calculator/get-scoreboard.html -org.icpclive.api -org.icpclive.api.tunning -org.icpclive.cds -org.icpclive.cds.adapters -org.icpclive.cds.common -org.icpclive.cds.settings -org.icpclive.scoreboard - diff --git a/docs/cds/images/anchor-copy-button.svg b/docs/cds/images/anchor-copy-button.svg deleted file mode 100644 index bab9d747f..000000000 --- a/docs/cds/images/anchor-copy-button.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/docs/cds/images/arrow_down.svg b/docs/cds/images/arrow_down.svg deleted file mode 100644 index c0388dee2..000000000 --- a/docs/cds/images/arrow_down.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/docs/cds/images/copy-icon.svg b/docs/cds/images/copy-icon.svg deleted file mode 100644 index 61440f0a4..000000000 --- a/docs/cds/images/copy-icon.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/docs/cds/images/copy-successful-icon.svg b/docs/cds/images/copy-successful-icon.svg deleted file mode 100644 index 1865f739b..000000000 --- a/docs/cds/images/copy-successful-icon.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/docs/cds/images/footer-go-to-link.svg b/docs/cds/images/footer-go-to-link.svg deleted file mode 100644 index 0137e2231..000000000 --- a/docs/cds/images/footer-go-to-link.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/docs/cds/images/go-to-top-icon.svg b/docs/cds/images/go-to-top-icon.svg deleted file mode 100644 index d987f3ead..000000000 --- a/docs/cds/images/go-to-top-icon.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/docs/cds/images/logo-icon.svg b/docs/cds/images/logo-icon.svg deleted file mode 100644 index 1fea08773..000000000 --- a/docs/cds/images/logo-icon.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/docs/cds/images/nav-icons/abstract-class-kotlin.svg b/docs/cds/images/nav-icons/abstract-class-kotlin.svg deleted file mode 100644 index a2069b8fb..000000000 --- a/docs/cds/images/nav-icons/abstract-class-kotlin.svg +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/cds/images/nav-icons/abstract-class.svg b/docs/cds/images/nav-icons/abstract-class.svg deleted file mode 100644 index 601820302..000000000 --- a/docs/cds/images/nav-icons/abstract-class.svg +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/docs/cds/images/nav-icons/annotation-kotlin.svg b/docs/cds/images/nav-icons/annotation-kotlin.svg deleted file mode 100644 index 932f1d3de..000000000 --- a/docs/cds/images/nav-icons/annotation-kotlin.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/docs/cds/images/nav-icons/annotation.svg b/docs/cds/images/nav-icons/annotation.svg deleted file mode 100644 index b80c54b4b..000000000 --- a/docs/cds/images/nav-icons/annotation.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/docs/cds/images/nav-icons/class-kotlin.svg b/docs/cds/images/nav-icons/class-kotlin.svg deleted file mode 100644 index 46a21f65a..000000000 --- a/docs/cds/images/nav-icons/class-kotlin.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/docs/cds/images/nav-icons/class.svg b/docs/cds/images/nav-icons/class.svg deleted file mode 100644 index 3f1ad167e..000000000 --- a/docs/cds/images/nav-icons/class.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/docs/cds/images/nav-icons/enum-kotlin.svg b/docs/cds/images/nav-icons/enum-kotlin.svg deleted file mode 100644 index 4a8545968..000000000 --- a/docs/cds/images/nav-icons/enum-kotlin.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/docs/cds/images/nav-icons/enum.svg b/docs/cds/images/nav-icons/enum.svg deleted file mode 100644 index fa7f24766..000000000 --- a/docs/cds/images/nav-icons/enum.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/docs/cds/images/nav-icons/exception-class.svg b/docs/cds/images/nav-icons/exception-class.svg deleted file mode 100644 index c0b2bdeba..000000000 --- a/docs/cds/images/nav-icons/exception-class.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/docs/cds/images/nav-icons/field-value.svg b/docs/cds/images/nav-icons/field-value.svg deleted file mode 100644 index 20449c947..000000000 --- a/docs/cds/images/nav-icons/field-value.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/docs/cds/images/nav-icons/field-variable.svg b/docs/cds/images/nav-icons/field-variable.svg deleted file mode 100644 index 3b0745007..000000000 --- a/docs/cds/images/nav-icons/field-variable.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/docs/cds/images/nav-icons/function.svg b/docs/cds/images/nav-icons/function.svg deleted file mode 100644 index f0da64a0b..000000000 --- a/docs/cds/images/nav-icons/function.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/docs/cds/images/nav-icons/interface-kotlin.svg b/docs/cds/images/nav-icons/interface-kotlin.svg deleted file mode 100644 index bf07a1488..000000000 --- a/docs/cds/images/nav-icons/interface-kotlin.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/docs/cds/images/nav-icons/interface.svg b/docs/cds/images/nav-icons/interface.svg deleted file mode 100644 index 32063ba26..000000000 --- a/docs/cds/images/nav-icons/interface.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/docs/cds/images/nav-icons/object.svg b/docs/cds/images/nav-icons/object.svg deleted file mode 100644 index 9f427de41..000000000 --- a/docs/cds/images/nav-icons/object.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/docs/cds/images/theme-toggle.svg b/docs/cds/images/theme-toggle.svg deleted file mode 100644 index 2a8d750ea..000000000 --- a/docs/cds/images/theme-toggle.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - \ No newline at end of file diff --git a/docs/cds/index.html b/docs/cds/index.html deleted file mode 100644 index 6865fda9c..000000000 --- a/docs/cds/index.html +++ /dev/null @@ -1,199 +0,0 @@ - - - - - ICPC-live contest data parser - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- -
-

ICPC-live contest data parser

-
-

Packages

-
-
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
- -
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
- -
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
- -
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
- -
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
- -
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
- -
-
-
-
- - -
Link copied to clipboard
-
-
-
- -
-
-
-
-
-
-
-
- -
-
- - diff --git a/docs/cds/navigation.html b/docs/cds/navigation.html deleted file mode 100644 index 86423cd77..000000000 --- a/docs/cds/navigation.html +++ /dev/null @@ -1,412 +0,0 @@ -
-
ICPC-live contest data parser
-
- - - - - - -
- -
- -
-
- -
-
-
- -
- -
-
- -
-
- -
-
-
- -
- - - - -
- -
- -
-
- -
-
-
- -
- -
- -
- -
- - -
- - - - -
- -
-
- -
- - -
- - -
- -
-
- -
-
- -
-
- -
-
-
- -
-
- -
- -
-
- -
-
- -
-
- -
- - -
- - - -
-
- - - - - - - - - - -
-
- - - - -
- -
-
-
- - - - - - - - - - - - - - -
- -
- - - -
-
- - -
-
- - - - - - - - - - - - - - - - -
-
- - - - - -
-
- diff --git a/docs/cds/scripts/clipboard.js b/docs/cds/scripts/clipboard.js deleted file mode 100644 index b00ce246e..000000000 --- a/docs/cds/scripts/clipboard.js +++ /dev/null @@ -1,52 +0,0 @@ -window.addEventListener('load', () => { - document.querySelectorAll('span.copy-icon').forEach(element => { - element.addEventListener('click', (el) => copyElementsContentToClipboard(element)); - }) - - document.querySelectorAll('span.anchor-icon').forEach(element => { - element.addEventListener('click', (el) => { - if(element.hasAttribute('pointing-to')){ - const location = hrefWithoutCurrentlyUsedAnchor() + '#' + element.getAttribute('pointing-to') - copyTextToClipboard(element, location) - } - }); - }) -}) - -const copyElementsContentToClipboard = (element) => { - const selection = window.getSelection(); - const range = document.createRange(); - range.selectNodeContents(element.parentNode.parentNode); - selection.removeAllRanges(); - selection.addRange(range); - - copyAndShowPopup(element, () => selection.removeAllRanges()) -} - -const copyTextToClipboard = (element, text) => { - var textarea = document.createElement("textarea"); - textarea.textContent = text; - textarea.style.position = "fixed"; - document.body.appendChild(textarea); - textarea.select(); - - copyAndShowPopup(element, () => document.body.removeChild(textarea)) -} - -const copyAndShowPopup = (element, after) => { - try { - document.execCommand('copy'); - element.nextElementSibling.classList.add('active-popup'); - setTimeout(() => { - element.nextElementSibling.classList.remove('active-popup'); - }, 1200); - } catch (e) { - console.error('Failed to write to clipboard:', e) - } - finally { - if(after) after() - } -} - -const hrefWithoutCurrentlyUsedAnchor = () => window.location.href.split('#')[0] - diff --git a/docs/cds/scripts/main.js b/docs/cds/scripts/main.js deleted file mode 100644 index e5b54a36a..000000000 --- a/docs/cds/scripts/main.js +++ /dev/null @@ -1,44 +0,0 @@ -(()=>{var e={8527:e=>{e.exports=''},5570:e=>{e.exports=''},107:e=>{e.exports=''},7224:e=>{e.exports=''},538:e=>{e.exports=''},1924:(e,n,t)=>{"use strict";var r=t(210),o=t(5559),i=o(r("String.prototype.indexOf"));e.exports=function(e,n){var t=r(e,!!n);return"function"==typeof t&&i(e,".prototype.")>-1?o(t):t}},5559:(e,n,t)=>{"use strict";var r=t(8612),o=t(210),i=o("%Function.prototype.apply%"),a=o("%Function.prototype.call%"),l=o("%Reflect.apply%",!0)||r.call(a,i),c=o("%Object.getOwnPropertyDescriptor%",!0),u=o("%Object.defineProperty%",!0),s=o("%Math.max%");if(u)try{u({},"a",{value:1})}catch(e){u=null}e.exports=function(e){var n=l(r,a,arguments);if(c&&u){var t=c(n,"length");t.configurable&&u(n,"length",{value:1+s(0,e.length-(arguments.length-1))})}return n};var f=function(){return l(r,i,arguments)};u?u(e.exports,"apply",{value:f}):e.exports.apply=f},4184:(e,n)=>{var t; -/*! - Copyright (c) 2018 Jed Watson. - Licensed under the MIT License (MIT), see - http://jedwatson.github.io/classnames -*/!function(){"use strict";var r={}.hasOwnProperty;function o(){for(var e=[],n=0;n{"use strict";e.exports=function(e,n){var t=this,r=t.constructor;return t.options=Object.assign({storeInstancesGlobally:!0},n||{}),t.callbacks={},t.directMap={},t.sequenceLevels={},t.resetTimer=null,t.ignoreNextKeyup=!1,t.ignoreNextKeypress=!1,t.nextExpectedAction=!1,t.element=e,t.addEvents(),t.options.storeInstancesGlobally&&r.instances.push(t),t},e.exports.prototype.bind=t(2207),e.exports.prototype.bindMultiple=t(3396),e.exports.prototype.unbind=t(9208),e.exports.prototype.trigger=t(9855),e.exports.prototype.reset=t(6214),e.exports.prototype.stopCallback=t(3450),e.exports.prototype.handleKey=t(3067),e.exports.prototype.addEvents=t(718),e.exports.prototype.bindSingle=t(8763),e.exports.prototype.getKeyInfo=t(5825),e.exports.prototype.pickBestAction=t(8608),e.exports.prototype.getReverseMap=t(3956),e.exports.prototype.getMatches=t(3373),e.exports.prototype.resetSequences=t(3346),e.exports.prototype.fireCallback=t(2684),e.exports.prototype.bindSequence=t(7103),e.exports.prototype.resetSequenceTimer=t(7309),e.exports.prototype.detach=t(7554),e.exports.instances=[],e.exports.reset=t(1822),e.exports.REVERSE_MAP=null},718:(e,n,t)=>{"use strict";e.exports=function(){var e=this,n=t(4323),r=e.element;e.eventHandler=t(9646).bind(e),n(r,"keypress",e.eventHandler),n(r,"keydown",e.eventHandler),n(r,"keyup",e.eventHandler)}},2207:e=>{"use strict";e.exports=function(e,n,t){return e=e instanceof Array?e:[e],this.bindMultiple(e,n,t),this}},3396:e=>{"use strict";e.exports=function(e,n,t){for(var r=0;r{"use strict";e.exports=function(e,n,r,o){var i=this;function a(n){return function(){i.nextExpectedAction=n,++i.sequenceLevels[e],i.resetSequenceTimer()}}function l(n){var a;i.fireCallback(r,n,e),"keyup"!==o&&(a=t(6770),i.ignoreNextKeyup=a(n)),setTimeout((function(){i.resetSequences()}),10)}i.sequenceLevels[e]=0;for(var c=0;c{"use strict";e.exports=function(e,n,t,r,o){var i=this;i.directMap[e+":"+t]=n;var a,l=(e=e.replace(/\s+/g," ")).split(" ");l.length>1?i.bindSequence(e,l,n,t):(a=i.getKeyInfo(e,t),i.callbacks[a.key]=i.callbacks[a.key]||[],i.getMatches(a.key,a.modifiers,{type:a.action},r,e,o),i.callbacks[a.key][r?"unshift":"push"]({callback:n,modifiers:a.modifiers,action:a.action,seq:r,level:o,combo:e}))}},7554:(e,n,t)=>{var r=t(4323).off;e.exports=function(){var e=this,n=e.element;r(n,"keypress",e.eventHandler),r(n,"keydown",e.eventHandler),r(n,"keyup",e.eventHandler)}},4323:e=>{function n(e,n,t,r){return!e.addEventListener&&(n="on"+n),(e.addEventListener||e.attachEvent).call(e,n,t,r),t}e.exports=n,e.exports.on=n,e.exports.off=function(e,n,t,r){return!e.removeEventListener&&(n="on"+n),(e.removeEventListener||e.detachEvent).call(e,n,t,r),t}},2684:(e,n,t)=>{"use strict";e.exports=function(e,n,r,o){this.stopCallback(n,n.target||n.srcElement,r,o)||!1===e(n,r)&&(t(1350)(n),t(6103)(n))}},5825:(e,n,t)=>{"use strict";e.exports=function(e,n){var r,o,i,a,l,c,u=[];for(r=t(4520)(e),a=t(7549),l=t(5355),c=t(8581),i=0;i{"use strict";e.exports=function(e,n,r,o,i,a){var l,c,u,s,f=this,p=[],d=r.type;"keypress"!==d||r.code&&"Arrow"===r.code.slice(0,5)||(f.callbacks["any-character"]||[]).forEach((function(e){p.push(e)}));if(!f.callbacks[e])return p;for(u=t(8581),"keyup"===d&&u(e)&&(n=[e]),l=0;l{"use strict";e.exports=function(){var e,n=this.constructor;if(!n.REVERSE_MAP)for(var r in n.REVERSE_MAP={},e=t(4766))r>95&&r<112||e.hasOwnProperty(r)&&(n.REVERSE_MAP[e[r]]=r);return n.REVERSE_MAP}},3067:(e,n,t)=>{"use strict";e.exports=function(e,n,r){var o,i,a,l,c=this,u={},s=0,f=!1;for(o=c.getMatches(e,n,r),i=0;i{"use strict";e.exports=function(e){var n,r=this;"number"!=typeof e.which&&(e.which=e.keyCode);var o=t(6770)(e);void 0!==o&&("keyup"!==e.type||r.ignoreNextKeyup!==o?(n=t(4610),r.handleKey(o,n(e),e)):r.ignoreNextKeyup=!1)}},5532:e=>{"use strict";e.exports=function(e,n){return e.sort().join(",")===n.sort().join(",")}},8608:e=>{"use strict";e.exports=function(e,n,t){return t||(t=this.getReverseMap()[e]?"keydown":"keypress"),"keypress"===t&&n.length&&(t="keydown"),t}},6214:e=>{"use strict";e.exports=function(){return this.callbacks={},this.directMap={},this}},7309:e=>{"use strict";e.exports=function(){var e=this;clearTimeout(e.resetTimer),e.resetTimer=setTimeout((function(){e.resetSequences()}),1e3)}},3346:e=>{"use strict";e.exports=function(e){var n=this;e=e||{};var t,r=!1;for(t in n.sequenceLevels)e[t]?r=!0:n.sequenceLevels[t]=0;r||(n.nextExpectedAction=!1)}},3450:e=>{"use strict";e.exports=function(e,n){if((" "+n.className+" ").indexOf(" combokeys ")>-1)return!1;var t=n.tagName.toLowerCase();return"input"===t||"select"===t||"textarea"===t||n.isContentEditable}},9855:e=>{"use strict";e.exports=function(e,n){return this.directMap[e+":"+n]&&this.directMap[e+":"+n]({},e),this}},9208:e=>{"use strict";e.exports=function(e,n){return this.bind(e,(function(){}),n)}},1822:e=>{"use strict";e.exports=function(){this.instances.forEach((function(e){e.reset()}))}},6770:(e,n,t)=>{"use strict";e.exports=function(e){var n,r;if(n=t(4766),r=t(5295),"keypress"===e.type){var o=String.fromCharCode(e.which);return e.shiftKey||(o=o.toLowerCase()),o}return void 0!==n[e.which]?n[e.which]:void 0!==r[e.which]?r[e.which]:String.fromCharCode(e.which).toLowerCase()}},4610:e=>{"use strict";e.exports=function(e){var n=[];return e.shiftKey&&n.push("shift"),e.altKey&&n.push("alt"),e.ctrlKey&&n.push("ctrl"),e.metaKey&&n.push("meta"),n}},8581:e=>{"use strict";e.exports=function(e){return"shift"===e||"ctrl"===e||"alt"===e||"meta"===e}},4520:e=>{"use strict";e.exports=function(e){return"+"===e?["+"]:e.split("+")}},1350:e=>{"use strict";e.exports=function(e){e.preventDefault?e.preventDefault():e.returnValue=!1}},5355:e=>{"use strict";e.exports={"~":"`","!":"1","@":"2","#":"3",$:"4","%":"5","^":"6","&":"7","*":"8","(":"9",")":"0",_:"-","+":"=",":":";",'"':"'","<":",",">":".","?":"/","|":"\\"}},7549:e=>{"use strict";e.exports={option:"alt",command:"meta",return:"enter",escape:"esc",mod:/Mac|iPod|iPhone|iPad/.test(navigator.platform)?"meta":"ctrl"}},5295:e=>{"use strict";e.exports={106:"*",107:"plus",109:"minus",110:".",111:"/",186:";",187:"=",188:",",189:"-",190:".",191:"/",192:"`",219:"[",220:"\\",221:"]",222:"'"}},4766:e=>{"use strict";e.exports={8:"backspace",9:"tab",13:"enter",16:"shift",17:"ctrl",18:"alt",20:"capslock",27:"esc",32:"space",33:"pageup",34:"pagedown",35:"end",36:"home",37:"left",38:"up",39:"right",40:"down",45:"ins",46:"del",91:"meta",93:"meta",173:"minus",187:"plus",189:"minus",224:"meta"};for(var n=1;n<20;++n)e.exports[111+n]="f"+n;for(n=0;n<=9;++n)e.exports[n+96]=n},6103:e=>{"use strict";e.exports=function(e){e.stopPropagation?e.stopPropagation():e.cancelBubble=!0}},3362:()=>{var e;!function(){var e=Math.PI,n=2*e,t=e/180,r=document.createElement("div");document.head.appendChild(r);var o=self.ConicGradient=function(e){o.all.push(this),e=e||{},this.canvas=document.createElement("canvas"),this.context=this.canvas.getContext("2d"),this.repeating=!!e.repeating,this.size=e.size||Math.max(innerWidth,innerHeight),this.canvas.width=this.canvas.height=this.size;var n=e.stops;this.stops=(n||"").split(/\s*,(?![^(]*\))\s*/),this.from=0;for(var t=0;t0){var i=this.stops[0].clone();i.pos=0,this.stops.unshift(i)}if(void 0===this.stops[this.stops.length-1].pos)this.stops[this.stops.length-1].pos=1;else if(!this.repeating&&this.stops[this.stops.length-1].pos<1){var a=this.stops[this.stops.length-1].clone();a.pos=1,this.stops.push(a)}if(this.stops.forEach((function(e,n){if(void 0===e.pos){for(var t=n+1;this[t];t++)if(void 0!==this[t].pos){e.pos=this[n-1].pos+(this[t].pos-this[n-1].pos)/(t-n+1);break}}else n>0&&(e.pos=Math.max(e.pos,this[n-1].pos))}),this.stops),this.repeating){var l=(n=this.stops.slice())[n.length-1].pos-n[0].pos;for(t=0;this.stops[this.stops.length-1].pos<1&&t<1e4;t++)for(var c=0;c'},get png(){return this.canvas.toDataURL()},get r(){return Math.sqrt(2)*this.size/2},paint:function(){var e,n,r,o=this.context,i=this.r,a=this.size/2,l=0,c=this.stops[l];o.translate(this.size/2,this.size/2),o.rotate(-90*t),o.rotate(this.from*t),o.translate(-this.size/2,-this.size/2);for(var u=0;u<360;){if(u/360+1e-5>=c.pos){do{e=c,l++,c=this.stops[l]}while(c&&c!=e&&c.pos===e.pos);if(!c)break;var s=e.color+""==c.color+""&&e!=c;n=e.color.map((function(e,n){return c.color[n]-e}))}r=(u/360-e.pos)/(c.pos-e.pos);var f=s?c.color:n.map((function(n,t){var o=n*r+e.color[t];return t<3?255&o:o}));if(o.fillStyle="rgba("+f.join(",")+")",o.beginPath(),o.moveTo(a,a),s)var p=360*(c.pos-e.pos);else p=.5;var d=u*t,h=(d=Math.min(360*t,d))+p*t;h=Math.min(360*t,h+.02),o.arc(a,a,i,d,h),o.closePath(),o.fill(),u+=p}}},o.ColorStop=function(e,t){if(this.gradient=e,t){var r=t.match(/^(.+?)(?:\s+([\d.]+)(%|deg|turn|grad|rad)?)?(?:\s+([\d.]+)(%|deg|turn|grad|rad)?)?\s*$/);if(this.color=o.ColorStop.colorToRGBA(r[1]),r[2]){var i=r[3];"%"==i||"0"===r[2]&&!i?this.pos=r[2]/100:"turn"==i?this.pos=+r[2]:"deg"==i?this.pos=r[2]/360:"grad"==i?this.pos=r[2]/400:"rad"==i&&(this.pos=r[2]/n)}r[4]&&(this.next=new o.ColorStop(e,r[1]+" "+r[4]+r[5]))}},o.ColorStop.prototype={clone:function(){var e=new o.ColorStop(this.gradient);return e.color=this.color,e.pos=this.pos,e},toString:function(){return"rgba("+this.color.join(", ")+") "+100*this.pos+"%"}},o.ColorStop.colorToRGBA=function(e){if(!Array.isArray(e)&&-1==e.indexOf("from")){r.style.color=e;var n=getComputedStyle(r).color.match(/rgba?\(([\d.]+), ([\d.]+), ([\d.]+)(?:, ([\d.]+))?\)/);return n&&(n.shift(),(n=n.map((function(e){return+e})))[3]=isNaN(n[3])?1:n[3]),n||[0,0,0,0]}return e}}(),self.StyleFix&&((e=document.createElement("p")).style.backgroundImage="conic-gradient(white, black)",e.style.backgroundImage=PrefixFree.prefix+"conic-gradient(white, black)",e.style.backgroundImage||StyleFix.register((function(e,n){return e.indexOf("conic-gradient")>-1&&(e=e.replace(/(?:repeating-)?conic-gradient\(\s*((?:\([^()]+\)|[^;()}])+?)\)/g,(function(e,n){return new ConicGradient({stops:n,repeating:e.indexOf("repeating-")>-1})}))),e})))},9662:(e,n,t)=>{var r=t(7854),o=t(614),i=t(6330),a=r.TypeError;e.exports=function(e){if(o(e))return e;throw a(i(e)+" is not a function")}},9483:(e,n,t)=>{var r=t(7854),o=t(4411),i=t(6330),a=r.TypeError;e.exports=function(e){if(o(e))return e;throw a(i(e)+" is not a constructor")}},6077:(e,n,t)=>{var r=t(7854),o=t(614),i=r.String,a=r.TypeError;e.exports=function(e){if("object"==typeof e||o(e))return e;throw a("Can't set "+i(e)+" as a prototype")}},1223:(e,n,t)=>{var r=t(5112),o=t(30),i=t(3070),a=r("unscopables"),l=Array.prototype;null==l[a]&&i.f(l,a,{configurable:!0,value:o(null)}),e.exports=function(e){l[a][e]=!0}},1530:(e,n,t)=>{"use strict";var r=t(8710).charAt;e.exports=function(e,n,t){return n+(t?r(e,n).length:1)}},5787:(e,n,t)=>{var r=t(7854),o=t(7976),i=r.TypeError;e.exports=function(e,n){if(o(n,e))return e;throw i("Incorrect invocation")}},9670:(e,n,t)=>{var r=t(7854),o=t(111),i=r.String,a=r.TypeError;e.exports=function(e){if(o(e))return e;throw a(i(e)+" is not an object")}},7556:(e,n,t)=>{var r=t(7293);e.exports=r((function(){if("function"==typeof ArrayBuffer){var e=new ArrayBuffer(8);Object.isExtensible(e)&&Object.defineProperty(e,"a",{value:8})}}))},8533:(e,n,t)=>{"use strict";var r=t(2092).forEach,o=t(9341)("forEach");e.exports=o?[].forEach:function(e){return r(this,e,arguments.length>1?arguments[1]:void 0)}},8457:(e,n,t)=>{"use strict";var r=t(7854),o=t(9974),i=t(6916),a=t(7908),l=t(3411),c=t(7659),u=t(4411),s=t(6244),f=t(6135),p=t(8554),d=t(1246),h=r.Array;e.exports=function(e){var n=a(e),t=u(this),r=arguments.length,g=r>1?arguments[1]:void 0,v=void 0!==g;v&&(g=o(g,r>2?arguments[2]:void 0));var A,b,m,y,E,_,C=d(n),w=0;if(!C||this==h&&c(C))for(A=s(n),b=t?new this(A):h(A);A>w;w++)_=v?g(n[w],w):n[w],f(b,w,_);else for(E=(y=p(n,C)).next,b=t?new this:[];!(m=i(E,y)).done;w++)_=v?l(y,g,[m.value,w],!0):m.value,f(b,w,_);return b.length=w,b}},1318:(e,n,t)=>{var r=t(5656),o=t(1400),i=t(6244),a=function(e){return function(n,t,a){var l,c=r(n),u=i(c),s=o(a,u);if(e&&t!=t){for(;u>s;)if((l=c[s++])!=l)return!0}else for(;u>s;s++)if((e||s in c)&&c[s]===t)return e||s||0;return!e&&-1}};e.exports={includes:a(!0),indexOf:a(!1)}},2092:(e,n,t)=>{var r=t(9974),o=t(1702),i=t(8361),a=t(7908),l=t(6244),c=t(5417),u=o([].push),s=function(e){var n=1==e,t=2==e,o=3==e,s=4==e,f=6==e,p=7==e,d=5==e||f;return function(h,g,v,A){for(var b,m,y=a(h),E=i(y),_=r(g,v),C=l(E),w=0,x=A||c,k=n?x(h,C):t||p?x(h,0):void 0;C>w;w++)if((d||w in E)&&(m=_(b=E[w],w,y),e))if(n)k[w]=m;else if(m)switch(e){case 3:return!0;case 5:return b;case 6:return w;case 2:u(k,b)}else switch(e){case 4:return!1;case 7:u(k,b)}return f?-1:o||s?s:k}};e.exports={forEach:s(0),map:s(1),filter:s(2),some:s(3),every:s(4),find:s(5),findIndex:s(6),filterReject:s(7)}},1194:(e,n,t)=>{var r=t(7293),o=t(5112),i=t(7392),a=o("species");e.exports=function(e){return i>=51||!r((function(){var n=[];return(n.constructor={})[a]=function(){return{foo:1}},1!==n[e](Boolean).foo}))}},9341:(e,n,t)=>{"use strict";var r=t(7293);e.exports=function(e,n){var t=[][e];return!!t&&r((function(){t.call(null,n||function(){throw 1},1)}))}},3671:(e,n,t)=>{var r=t(7854),o=t(9662),i=t(7908),a=t(8361),l=t(6244),c=r.TypeError,u=function(e){return function(n,t,r,u){o(t);var s=i(n),f=a(s),p=l(s),d=e?p-1:0,h=e?-1:1;if(r<2)for(;;){if(d in f){u=f[d],d+=h;break}if(d+=h,e?d<0:p<=d)throw c("Reduce of empty array with no initial value")}for(;e?d>=0:p>d;d+=h)d in f&&(u=t(u,f[d],d,s));return u}};e.exports={left:u(!1),right:u(!0)}},206:(e,n,t)=>{var r=t(1702);e.exports=r([].slice)},4362:(e,n,t)=>{var r=t(206),o=Math.floor,i=function(e,n){var t=e.length,c=o(t/2);return t<8?a(e,n):l(e,i(r(e,0,c),n),i(r(e,c),n),n)},a=function(e,n){for(var t,r,o=e.length,i=1;i0;)e[r]=e[--r];r!==i++&&(e[r]=t)}return e},l=function(e,n,t,r){for(var o=n.length,i=t.length,a=0,l=0;a{var r=t(7854),o=t(3157),i=t(4411),a=t(111),l=t(5112)("species"),c=r.Array;e.exports=function(e){var n;return o(e)&&(n=e.constructor,(i(n)&&(n===c||o(n.prototype))||a(n)&&null===(n=n[l]))&&(n=void 0)),void 0===n?c:n}},5417:(e,n,t)=>{var r=t(7475);e.exports=function(e,n){return new(r(e))(0===n?0:n)}},3411:(e,n,t)=>{var r=t(9670),o=t(9212);e.exports=function(e,n,t,i){try{return i?n(r(t)[0],t[1]):n(t)}catch(n){o(e,"throw",n)}}},7072:(e,n,t)=>{var r=t(5112)("iterator"),o=!1;try{var i=0,a={next:function(){return{done:!!i++}},return:function(){o=!0}};a[r]=function(){return this},Array.from(a,(function(){throw 2}))}catch(e){}e.exports=function(e,n){if(!n&&!o)return!1;var t=!1;try{var i={};i[r]=function(){return{next:function(){return{done:t=!0}}}},e(i)}catch(e){}return t}},4326:(e,n,t)=>{var r=t(1702),o=r({}.toString),i=r("".slice);e.exports=function(e){return i(o(e),8,-1)}},648:(e,n,t)=>{var r=t(7854),o=t(1694),i=t(614),a=t(4326),l=t(5112)("toStringTag"),c=r.Object,u="Arguments"==a(function(){return arguments}());e.exports=o?a:function(e){var n,t,r;return void 0===e?"Undefined":null===e?"Null":"string"==typeof(t=function(e,n){try{return e[n]}catch(e){}}(n=c(e),l))?t:u?a(n):"Object"==(r=a(n))&&i(n.callee)?"Arguments":r}},5631:(e,n,t)=>{"use strict";var r=t(3070).f,o=t(30),i=t(2248),a=t(9974),l=t(5787),c=t(408),u=t(654),s=t(6340),f=t(9781),p=t(2423).fastKey,d=t(9909),h=d.set,g=d.getterFor;e.exports={getConstructor:function(e,n,t,u){var s=e((function(e,r){l(e,d),h(e,{type:n,index:o(null),first:void 0,last:void 0,size:0}),f||(e.size=0),null!=r&&c(r,e[u],{that:e,AS_ENTRIES:t})})),d=s.prototype,v=g(n),A=function(e,n,t){var r,o,i=v(e),a=b(e,n);return a?a.value=t:(i.last=a={index:o=p(n,!0),key:n,value:t,previous:r=i.last,next:void 0,removed:!1},i.first||(i.first=a),r&&(r.next=a),f?i.size++:e.size++,"F"!==o&&(i.index[o]=a)),e},b=function(e,n){var t,r=v(e),o=p(n);if("F"!==o)return r.index[o];for(t=r.first;t;t=t.next)if(t.key==n)return t};return i(d,{clear:function(){for(var e=v(this),n=e.index,t=e.first;t;)t.removed=!0,t.previous&&(t.previous=t.previous.next=void 0),delete n[t.index],t=t.next;e.first=e.last=void 0,f?e.size=0:this.size=0},delete:function(e){var n=this,t=v(n),r=b(n,e);if(r){var o=r.next,i=r.previous;delete t.index[r.index],r.removed=!0,i&&(i.next=o),o&&(o.previous=i),t.first==r&&(t.first=o),t.last==r&&(t.last=i),f?t.size--:n.size--}return!!r},forEach:function(e){for(var n,t=v(this),r=a(e,arguments.length>1?arguments[1]:void 0);n=n?n.next:t.first;)for(r(n.value,n.key,this);n&&n.removed;)n=n.previous},has:function(e){return!!b(this,e)}}),i(d,t?{get:function(e){var n=b(this,e);return n&&n.value},set:function(e,n){return A(this,0===e?0:e,n)}}:{add:function(e){return A(this,e=0===e?0:e,e)}}),f&&r(d,"size",{get:function(){return v(this).size}}),s},setStrong:function(e,n,t){var r=n+" Iterator",o=g(n),i=g(r);u(e,n,(function(e,n){h(this,{type:r,target:e,state:o(e),kind:n,last:void 0})}),(function(){for(var e=i(this),n=e.kind,t=e.last;t&&t.removed;)t=t.previous;return e.target&&(e.last=t=t?t.next:e.state.first)?"keys"==n?{value:t.key,done:!1}:"values"==n?{value:t.value,done:!1}:{value:[t.key,t.value],done:!1}:(e.target=void 0,{value:void 0,done:!0})}),t?"entries":"values",!t,!0),s(n)}}},9320:(e,n,t)=>{"use strict";var r=t(1702),o=t(2248),i=t(2423).getWeakData,a=t(9670),l=t(111),c=t(5787),u=t(408),s=t(2092),f=t(2597),p=t(9909),d=p.set,h=p.getterFor,g=s.find,v=s.findIndex,A=r([].splice),b=0,m=function(e){return e.frozen||(e.frozen=new y)},y=function(){this.entries=[]},E=function(e,n){return g(e.entries,(function(e){return e[0]===n}))};y.prototype={get:function(e){var n=E(this,e);if(n)return n[1]},has:function(e){return!!E(this,e)},set:function(e,n){var t=E(this,e);t?t[1]=n:this.entries.push([e,n])},delete:function(e){var n=v(this.entries,(function(n){return n[0]===e}));return~n&&A(this.entries,n,1),!!~n}},e.exports={getConstructor:function(e,n,t,r){var s=e((function(e,o){c(e,p),d(e,{type:n,id:b++,frozen:void 0}),null!=o&&u(o,e[r],{that:e,AS_ENTRIES:t})})),p=s.prototype,g=h(n),v=function(e,n,t){var r=g(e),o=i(a(n),!0);return!0===o?m(r).set(n,t):o[r.id]=t,e};return o(p,{delete:function(e){var n=g(this);if(!l(e))return!1;var t=i(e);return!0===t?m(n).delete(e):t&&f(t,n.id)&&delete t[n.id]},has:function(e){var n=g(this);if(!l(e))return!1;var t=i(e);return!0===t?m(n).has(e):t&&f(t,n.id)}}),o(p,t?{get:function(e){var n=g(this);if(l(e)){var t=i(e);return!0===t?m(n).get(e):t?t[n.id]:void 0}},set:function(e,n){return v(this,e,n)}}:{add:function(e){return v(this,e,!0)}}),s}}},7710:(e,n,t)=>{"use strict";var r=t(2109),o=t(7854),i=t(1702),a=t(4705),l=t(1320),c=t(2423),u=t(408),s=t(5787),f=t(614),p=t(111),d=t(7293),h=t(7072),g=t(8003),v=t(9587);e.exports=function(e,n,t){var A=-1!==e.indexOf("Map"),b=-1!==e.indexOf("Weak"),m=A?"set":"add",y=o[e],E=y&&y.prototype,_=y,C={},w=function(e){var n=i(E[e]);l(E,e,"add"==e?function(e){return n(this,0===e?0:e),this}:"delete"==e?function(e){return!(b&&!p(e))&&n(this,0===e?0:e)}:"get"==e?function(e){return b&&!p(e)?void 0:n(this,0===e?0:e)}:"has"==e?function(e){return!(b&&!p(e))&&n(this,0===e?0:e)}:function(e,t){return n(this,0===e?0:e,t),this})};if(a(e,!f(y)||!(b||E.forEach&&!d((function(){(new y).entries().next()})))))_=t.getConstructor(n,e,A,m),c.enable();else if(a(e,!0)){var x=new _,k=x[m](b?{}:-0,1)!=x,S=d((function(){x.has(1)})),O=h((function(e){new y(e)})),B=!b&&d((function(){for(var e=new y,n=5;n--;)e[m](n,n);return!e.has(-0)}));O||((_=n((function(e,n){s(e,E);var t=v(new y,e,_);return null!=n&&u(n,t[m],{that:t,AS_ENTRIES:A}),t}))).prototype=E,E.constructor=_),(S||B)&&(w("delete"),w("has"),A&&w("get")),(B||k)&&w(m),b&&E.clear&&delete E.clear}return C[e]=_,r({global:!0,forced:_!=y},C),g(_,e),b||t.setStrong(_,e,A),_}},9920:(e,n,t)=>{var r=t(2597),o=t(3887),i=t(1236),a=t(3070);e.exports=function(e,n){for(var t=o(n),l=a.f,c=i.f,u=0;u{var r=t(5112)("match");e.exports=function(e){var n=/./;try{"/./"[e](n)}catch(t){try{return n[r]=!1,"/./"[e](n)}catch(e){}}return!1}},8544:(e,n,t)=>{var r=t(7293);e.exports=!r((function(){function e(){}return e.prototype.constructor=null,Object.getPrototypeOf(new e)!==e.prototype}))},4230:(e,n,t)=>{var r=t(1702),o=t(4488),i=t(1340),a=/"/g,l=r("".replace);e.exports=function(e,n,t,r){var c=i(o(e)),u="<"+n;return""!==t&&(u+=" "+t+'="'+l(i(r),a,""")+'"'),u+">"+c+""}},4994:(e,n,t)=>{"use strict";var r=t(3383).IteratorPrototype,o=t(30),i=t(9114),a=t(8003),l=t(7497),c=function(){return this};e.exports=function(e,n,t){var u=n+" Iterator";return e.prototype=o(r,{next:i(1,t)}),a(e,u,!1,!0),l[u]=c,e}},8880:(e,n,t)=>{var r=t(9781),o=t(3070),i=t(9114);e.exports=r?function(e,n,t){return o.f(e,n,i(1,t))}:function(e,n,t){return e[n]=t,e}},9114:e=>{e.exports=function(e,n){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:n}}},6135:(e,n,t)=>{"use strict";var r=t(4948),o=t(3070),i=t(9114);e.exports=function(e,n,t){var a=r(n);a in e?o.f(e,a,i(0,t)):e[a]=t}},8709:(e,n,t)=>{"use strict";var r=t(7854),o=t(9670),i=t(2140),a=r.TypeError;e.exports=function(e){if(o(this),"string"===e||"default"===e)e="string";else if("number"!==e)throw a("Incorrect hint");return i(this,e)}},654:(e,n,t)=>{"use strict";var r=t(2109),o=t(6916),i=t(1913),a=t(6530),l=t(614),c=t(4994),u=t(9518),s=t(7674),f=t(8003),p=t(8880),d=t(1320),h=t(5112),g=t(7497),v=t(3383),A=a.PROPER,b=a.CONFIGURABLE,m=v.IteratorPrototype,y=v.BUGGY_SAFARI_ITERATORS,E=h("iterator"),_="keys",C="values",w="entries",x=function(){return this};e.exports=function(e,n,t,a,h,v,k){c(t,n,a);var S,O,B,I=function(e){if(e===h&&R)return R;if(!y&&e in j)return j[e];switch(e){case _:case C:case w:return function(){return new t(this,e)}}return function(){return new t(this)}},T=n+" Iterator",P=!1,j=e.prototype,z=j[E]||j["@@iterator"]||h&&j[h],R=!y&&z||I(h),M="Array"==n&&j.entries||z;if(M&&(S=u(M.call(new e)))!==Object.prototype&&S.next&&(i||u(S)===m||(s?s(S,m):l(S[E])||d(S,E,x)),f(S,T,!0,!0),i&&(g[T]=x)),A&&h==C&&z&&z.name!==C&&(!i&&b?p(j,"name",C):(P=!0,R=function(){return o(z,this)})),h)if(O={values:I(C),keys:v?R:I(_),entries:I(w)},k)for(B in O)(y||P||!(B in j))&&d(j,B,O[B]);else r({target:n,proto:!0,forced:y||P},O);return i&&!k||j[E]===R||d(j,E,R,{name:h}),g[n]=R,O}},7235:(e,n,t)=>{var r=t(857),o=t(2597),i=t(6061),a=t(3070).f;e.exports=function(e){var n=r.Symbol||(r.Symbol={});o(n,e)||a(n,e,{value:i.f(e)})}},9781:(e,n,t)=>{var r=t(7293);e.exports=!r((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},317:(e,n,t)=>{var r=t(7854),o=t(111),i=r.document,a=o(i)&&o(i.createElement);e.exports=function(e){return a?i.createElement(e):{}}},8324:e=>{e.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}},8509:(e,n,t)=>{var r=t(317)("span").classList,o=r&&r.constructor&&r.constructor.prototype;e.exports=o===Object.prototype?void 0:o},8886:(e,n,t)=>{var r=t(8113).match(/firefox\/(\d+)/i);e.exports=!!r&&+r[1]},256:(e,n,t)=>{var r=t(8113);e.exports=/MSIE|Trident/.test(r)},5268:(e,n,t)=>{var r=t(4326),o=t(7854);e.exports="process"==r(o.process)},8113:(e,n,t)=>{var r=t(5005);e.exports=r("navigator","userAgent")||""},7392:(e,n,t)=>{var r,o,i=t(7854),a=t(8113),l=i.process,c=i.Deno,u=l&&l.versions||c&&c.version,s=u&&u.v8;s&&(o=(r=s.split("."))[0]>0&&r[0]<4?1:+(r[0]+r[1])),!o&&a&&(!(r=a.match(/Edge\/(\d+)/))||r[1]>=74)&&(r=a.match(/Chrome\/(\d+)/))&&(o=+r[1]),e.exports=o},8008:(e,n,t)=>{var r=t(8113).match(/AppleWebKit\/(\d+)\./);e.exports=!!r&&+r[1]},748:e=>{e.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},2109:(e,n,t)=>{var r=t(7854),o=t(1236).f,i=t(8880),a=t(1320),l=t(3505),c=t(9920),u=t(4705);e.exports=function(e,n){var t,s,f,p,d,h=e.target,g=e.global,v=e.stat;if(t=g?r:v?r[h]||l(h,{}):(r[h]||{}).prototype)for(s in n){if(p=n[s],f=e.noTargetGet?(d=o(t,s))&&d.value:t[s],!u(g?s:h+(v?".":"#")+s,e.forced)&&void 0!==f){if(typeof p==typeof f)continue;c(p,f)}(e.sham||f&&f.sham)&&i(p,"sham",!0),a(t,s,p,e)}}},7293:e=>{e.exports=function(e){try{return!!e()}catch(e){return!0}}},7007:(e,n,t)=>{"use strict";t(4916);var r=t(1702),o=t(1320),i=t(2261),a=t(7293),l=t(5112),c=t(8880),u=l("species"),s=RegExp.prototype;e.exports=function(e,n,t,f){var p=l(e),d=!a((function(){var n={};return n[p]=function(){return 7},7!=""[e](n)})),h=d&&!a((function(){var n=!1,t=/a/;return"split"===e&&((t={}).constructor={},t.constructor[u]=function(){return t},t.flags="",t[p]=/./[p]),t.exec=function(){return n=!0,null},t[p](""),!n}));if(!d||!h||t){var g=r(/./[p]),v=n(p,""[e],(function(e,n,t,o,a){var l=r(e),c=n.exec;return c===i||c===s.exec?d&&!a?{done:!0,value:g(n,t,o)}:{done:!0,value:l(t,n,o)}:{done:!1}}));o(String.prototype,e,v[0]),o(s,p,v[1])}f&&c(s[p],"sham",!0)}},6677:(e,n,t)=>{var r=t(7293);e.exports=!r((function(){return Object.isExtensible(Object.preventExtensions({}))}))},2104:e=>{var n=Function.prototype,t=n.apply,r=n.bind,o=n.call;e.exports="object"==typeof Reflect&&Reflect.apply||(r?o.bind(t):function(){return o.apply(t,arguments)})},9974:(e,n,t)=>{var r=t(1702),o=t(9662),i=r(r.bind);e.exports=function(e,n){return o(e),void 0===n?e:i?i(e,n):function(){return e.apply(n,arguments)}}},7065:(e,n,t)=>{"use strict";var r=t(7854),o=t(1702),i=t(9662),a=t(111),l=t(2597),c=t(206),u=r.Function,s=o([].concat),f=o([].join),p={},d=function(e,n,t){if(!l(p,n)){for(var r=[],o=0;o{var n=Function.prototype.call;e.exports=n.bind?n.bind(n):function(){return n.apply(n,arguments)}},6530:(e,n,t)=>{var r=t(9781),o=t(2597),i=Function.prototype,a=r&&Object.getOwnPropertyDescriptor,l=o(i,"name"),c=l&&"something"===function(){}.name,u=l&&(!r||r&&a(i,"name").configurable);e.exports={EXISTS:l,PROPER:c,CONFIGURABLE:u}},1702:e=>{var n=Function.prototype,t=n.bind,r=n.call,o=t&&t.bind(r);e.exports=t?function(e){return e&&o(r,e)}:function(e){return e&&function(){return r.apply(e,arguments)}}},5005:(e,n,t)=>{var r=t(7854),o=t(614),i=function(e){return o(e)?e:void 0};e.exports=function(e,n){return arguments.length<2?i(r[e]):r[e]&&r[e][n]}},1246:(e,n,t)=>{var r=t(648),o=t(8173),i=t(7497),a=t(5112)("iterator");e.exports=function(e){if(null!=e)return o(e,a)||o(e,"@@iterator")||i[r(e)]}},8554:(e,n,t)=>{var r=t(7854),o=t(6916),i=t(9662),a=t(9670),l=t(6330),c=t(1246),u=r.TypeError;e.exports=function(e,n){var t=arguments.length<2?c(e):n;if(i(t))return a(o(t,e));throw u(l(e)+" is not iterable")}},8173:(e,n,t)=>{var r=t(9662);e.exports=function(e,n){var t=e[n];return null==t?void 0:r(t)}},647:(e,n,t)=>{var r=t(1702),o=t(7908),i=Math.floor,a=r("".charAt),l=r("".replace),c=r("".slice),u=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,s=/\$([$&'`]|\d{1,2})/g;e.exports=function(e,n,t,r,f,p){var d=t+e.length,h=r.length,g=s;return void 0!==f&&(f=o(f),g=u),l(p,g,(function(o,l){var u;switch(a(l,0)){case"$":return"$";case"&":return e;case"`":return c(n,0,t);case"'":return c(n,d);case"<":u=f[c(l,1,-1)];break;default:var s=+l;if(0===s)return o;if(s>h){var p=i(s/10);return 0===p?o:p<=h?void 0===r[p-1]?a(l,1):r[p-1]+a(l,1):o}u=r[s-1]}return void 0===u?"":u}))}},7854:(e,n,t)=>{var r=function(e){return e&&e.Math==Math&&e};e.exports=r("object"==typeof globalThis&&globalThis)||r("object"==typeof window&&window)||r("object"==typeof self&&self)||r("object"==typeof t.g&&t.g)||function(){return this}()||Function("return this")()},2597:(e,n,t)=>{var r=t(1702),o=t(7908),i=r({}.hasOwnProperty);e.exports=Object.hasOwn||function(e,n){return i(o(e),n)}},3501:e=>{e.exports={}},490:(e,n,t)=>{var r=t(5005);e.exports=r("document","documentElement")},4664:(e,n,t)=>{var r=t(9781),o=t(7293),i=t(317);e.exports=!r&&!o((function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},8361:(e,n,t)=>{var r=t(7854),o=t(1702),i=t(7293),a=t(4326),l=r.Object,c=o("".split);e.exports=i((function(){return!l("z").propertyIsEnumerable(0)}))?function(e){return"String"==a(e)?c(e,""):l(e)}:l},9587:(e,n,t)=>{var r=t(614),o=t(111),i=t(7674);e.exports=function(e,n,t){var a,l;return i&&r(a=n.constructor)&&a!==t&&o(l=a.prototype)&&l!==t.prototype&&i(e,l),e}},2788:(e,n,t)=>{var r=t(1702),o=t(614),i=t(5465),a=r(Function.toString);o(i.inspectSource)||(i.inspectSource=function(e){return a(e)}),e.exports=i.inspectSource},2423:(e,n,t)=>{var r=t(2109),o=t(1702),i=t(3501),a=t(111),l=t(2597),c=t(3070).f,u=t(8006),s=t(1156),f=t(2050),p=t(9711),d=t(6677),h=!1,g=p("meta"),v=0,A=function(e){c(e,g,{value:{objectID:"O"+v++,weakData:{}}})},b=e.exports={enable:function(){b.enable=function(){},h=!0;var e=u.f,n=o([].splice),t={};t[g]=1,e(t).length&&(u.f=function(t){for(var r=e(t),o=0,i=r.length;o{var r,o,i,a=t(8536),l=t(7854),c=t(1702),u=t(111),s=t(8880),f=t(2597),p=t(5465),d=t(6200),h=t(3501),g="Object already initialized",v=l.TypeError,A=l.WeakMap;if(a||p.state){var b=p.state||(p.state=new A),m=c(b.get),y=c(b.has),E=c(b.set);r=function(e,n){if(y(b,e))throw new v(g);return n.facade=e,E(b,e,n),n},o=function(e){return m(b,e)||{}},i=function(e){return y(b,e)}}else{var _=d("state");h[_]=!0,r=function(e,n){if(f(e,_))throw new v(g);return n.facade=e,s(e,_,n),n},o=function(e){return f(e,_)?e[_]:{}},i=function(e){return f(e,_)}}e.exports={set:r,get:o,has:i,enforce:function(e){return i(e)?o(e):r(e,{})},getterFor:function(e){return function(n){var t;if(!u(n)||(t=o(n)).type!==e)throw v("Incompatible receiver, "+e+" required");return t}}}},7659:(e,n,t)=>{var r=t(5112),o=t(7497),i=r("iterator"),a=Array.prototype;e.exports=function(e){return void 0!==e&&(o.Array===e||a[i]===e)}},3157:(e,n,t)=>{var r=t(4326);e.exports=Array.isArray||function(e){return"Array"==r(e)}},614:e=>{e.exports=function(e){return"function"==typeof e}},4411:(e,n,t)=>{var r=t(1702),o=t(7293),i=t(614),a=t(648),l=t(5005),c=t(2788),u=function(){},s=[],f=l("Reflect","construct"),p=/^\s*(?:class|function)\b/,d=r(p.exec),h=!p.exec(u),g=function(e){if(!i(e))return!1;try{return f(u,s,e),!0}catch(e){return!1}};e.exports=!f||o((function(){var e;return g(g.call)||!g(Object)||!g((function(){e=!0}))||e}))?function(e){if(!i(e))return!1;switch(a(e)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}return h||!!d(p,c(e))}:g},4705:(e,n,t)=>{var r=t(7293),o=t(614),i=/#|\.prototype\./,a=function(e,n){var t=c[l(e)];return t==s||t!=u&&(o(n)?r(n):!!n)},l=a.normalize=function(e){return String(e).replace(i,".").toLowerCase()},c=a.data={},u=a.NATIVE="N",s=a.POLYFILL="P";e.exports=a},111:(e,n,t)=>{var r=t(614);e.exports=function(e){return"object"==typeof e?null!==e:r(e)}},1913:e=>{e.exports=!1},7850:(e,n,t)=>{var r=t(111),o=t(4326),i=t(5112)("match");e.exports=function(e){var n;return r(e)&&(void 0!==(n=e[i])?!!n:"RegExp"==o(e))}},2190:(e,n,t)=>{var r=t(7854),o=t(5005),i=t(614),a=t(7976),l=t(3307),c=r.Object;e.exports=l?function(e){return"symbol"==typeof e}:function(e){var n=o("Symbol");return i(n)&&a(n.prototype,c(e))}},408:(e,n,t)=>{var r=t(7854),o=t(9974),i=t(6916),a=t(9670),l=t(6330),c=t(7659),u=t(6244),s=t(7976),f=t(8554),p=t(1246),d=t(9212),h=r.TypeError,g=function(e,n){this.stopped=e,this.result=n},v=g.prototype;e.exports=function(e,n,t){var r,A,b,m,y,E,_,C=t&&t.that,w=!(!t||!t.AS_ENTRIES),x=!(!t||!t.IS_ITERATOR),k=!(!t||!t.INTERRUPTED),S=o(n,C),O=function(e){return r&&d(r,"normal",e),new g(!0,e)},B=function(e){return w?(a(e),k?S(e[0],e[1],O):S(e[0],e[1])):k?S(e,O):S(e)};if(x)r=e;else{if(!(A=p(e)))throw h(l(e)+" is not iterable");if(c(A)){for(b=0,m=u(e);m>b;b++)if((y=B(e[b]))&&s(v,y))return y;return new g(!1)}r=f(e,A)}for(E=r.next;!(_=i(E,r)).done;){try{y=B(_.value)}catch(e){d(r,"throw",e)}if("object"==typeof y&&y&&s(v,y))return y}return new g(!1)}},9212:(e,n,t)=>{var r=t(6916),o=t(9670),i=t(8173);e.exports=function(e,n,t){var a,l;o(e);try{if(!(a=i(e,"return"))){if("throw"===n)throw t;return t}a=r(a,e)}catch(e){l=!0,a=e}if("throw"===n)throw t;if(l)throw a;return o(a),t}},3383:(e,n,t)=>{"use strict";var r,o,i,a=t(7293),l=t(614),c=t(30),u=t(9518),s=t(1320),f=t(5112),p=t(1913),d=f("iterator"),h=!1;[].keys&&("next"in(i=[].keys())?(o=u(u(i)))!==Object.prototype&&(r=o):h=!0),null==r||a((function(){var e={};return r[d].call(e)!==e}))?r={}:p&&(r=c(r)),l(r[d])||s(r,d,(function(){return this})),e.exports={IteratorPrototype:r,BUGGY_SAFARI_ITERATORS:h}},7497:e=>{e.exports={}},6244:(e,n,t)=>{var r=t(7466);e.exports=function(e){return r(e.length)}},133:(e,n,t)=>{var r=t(7392),o=t(7293);e.exports=!!Object.getOwnPropertySymbols&&!o((function(){var e=Symbol();return!String(e)||!(Object(e)instanceof Symbol)||!Symbol.sham&&r&&r<41}))},8536:(e,n,t)=>{var r=t(7854),o=t(614),i=t(2788),a=r.WeakMap;e.exports=o(a)&&/native code/.test(i(a))},3929:(e,n,t)=>{var r=t(7854),o=t(7850),i=r.TypeError;e.exports=function(e){if(o(e))throw i("The method doesn't accept regular expressions");return e}},1574:(e,n,t)=>{"use strict";var r=t(9781),o=t(1702),i=t(6916),a=t(7293),l=t(1956),c=t(5181),u=t(5296),s=t(7908),f=t(8361),p=Object.assign,d=Object.defineProperty,h=o([].concat);e.exports=!p||a((function(){if(r&&1!==p({b:1},p(d({},"a",{enumerable:!0,get:function(){d(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var e={},n={},t=Symbol(),o="abcdefghijklmnopqrst";return e[t]=7,o.split("").forEach((function(e){n[e]=e})),7!=p({},e)[t]||l(p({},n)).join("")!=o}))?function(e,n){for(var t=s(e),o=arguments.length,a=1,p=c.f,d=u.f;o>a;)for(var g,v=f(arguments[a++]),A=p?h(l(v),p(v)):l(v),b=A.length,m=0;b>m;)g=A[m++],r&&!i(d,v,g)||(t[g]=v[g]);return t}:p},30:(e,n,t)=>{var r,o=t(9670),i=t(6048),a=t(748),l=t(3501),c=t(490),u=t(317),s=t(6200),f=s("IE_PROTO"),p=function(){},d=function(e){return"