From 31a3c002b620f09aaca94dd9c35b54e3859dfe2e Mon Sep 17 00:00:00 2001 From: Alexander Date: Mon, 13 Mar 2023 15:56:38 +0200 Subject: [PATCH 01/34] Mark 'F' score rank as -1 to match osu!lazer --- src/Scoring/Enums/ScoreRank.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Scoring/Enums/ScoreRank.ts b/src/Scoring/Enums/ScoreRank.ts index b686566..88bebb8 100644 --- a/src/Scoring/Enums/ScoreRank.ts +++ b/src/Scoring/Enums/ScoreRank.ts @@ -1,5 +1,5 @@ export enum ScoreRank { - F, + F = -1, D, C, B, From c67ae836279fe3b1626d09c39a6763d8bf7d82bd Mon Sep 17 00:00:00 2001 From: Alexander Date: Mon, 13 Mar 2023 17:08:15 +0200 Subject: [PATCH 02/34] Rename 'md5' property to make the name consistent between different classes --- src/Beatmaps/BeatmapInfo.ts | 2 +- src/Beatmaps/IBeatmapInfo.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Beatmaps/BeatmapInfo.ts b/src/Beatmaps/BeatmapInfo.ts index c8ecba5..027c7bb 100644 --- a/src/Beatmaps/BeatmapInfo.ts +++ b/src/Beatmaps/BeatmapInfo.ts @@ -207,7 +207,7 @@ export class BeatmapInfo implements IBeatmapInfo { /** * Beatmap MD5 hash. */ - md5 = ''; + hashMD5 = ''; /** * Creates a new instance of a beatmap information. diff --git a/src/Beatmaps/IBeatmapInfo.ts b/src/Beatmaps/IBeatmapInfo.ts index 2441297..74c9e34 100644 --- a/src/Beatmaps/IBeatmapInfo.ts +++ b/src/Beatmaps/IBeatmapInfo.ts @@ -174,7 +174,7 @@ export interface IBeatmapInfo { /** * Beatmap MD5 hash. */ - md5: string; + hashMD5: string; /** * Converts this beatmap information to JSON. From e4d38e1f9a9993759830a25ede44759a7da30af4 Mon Sep 17 00:00:00 2001 From: Alexander Date: Mon, 13 Mar 2023 17:18:18 +0200 Subject: [PATCH 03/34] Rename bpmMode to bpm 'bpmMode' is obsolete name of the property that was used in those times when I was writing timing point parser. It has been a long time since that moment and many things have changed. --- src/Beatmaps/Beatmap.ts | 9 --------- src/Beatmaps/BeatmapInfo.ts | 2 +- src/Beatmaps/IBeatmap.ts | 2 +- src/Beatmaps/IBeatmapInfo.ts | 2 +- src/Beatmaps/ProgressiveCalculationBeatmap.ts | 4 ++-- 5 files changed, 5 insertions(+), 14 deletions(-) diff --git a/src/Beatmaps/Beatmap.ts b/src/Beatmaps/Beatmap.ts index f4653a3..72236de 100644 --- a/src/Beatmaps/Beatmap.ts +++ b/src/Beatmaps/Beatmap.ts @@ -157,15 +157,6 @@ export class Beatmap implements IBeatmap { * The most common BPM of a beatmap. */ get bpm(): number { - return this.bpmMode; - } - - /** - * The most common BPM of a beatmap. - * Use the {@link bpm} instead. - * @deprecated Since 2.1.1 - */ - get bpmMode(): number { const timingPoints = this.controlPoints.timingPoints; const hitObjects = this.hitObjects; diff --git a/src/Beatmaps/BeatmapInfo.ts b/src/Beatmaps/BeatmapInfo.ts index 027c7bb..d2ec88f 100644 --- a/src/Beatmaps/BeatmapInfo.ts +++ b/src/Beatmaps/BeatmapInfo.ts @@ -100,7 +100,7 @@ export class BeatmapInfo implements IBeatmapInfo { /** * The most common BPM of a beatmap. */ - bpmMode = 0; + bpm = 0; /** * Circle size of the beatmap. diff --git a/src/Beatmaps/IBeatmap.ts b/src/Beatmaps/IBeatmap.ts index cae77c9..363e9bc 100644 --- a/src/Beatmaps/IBeatmap.ts +++ b/src/Beatmaps/IBeatmap.ts @@ -93,7 +93,7 @@ export interface IBeatmap { /** * The most common BPM of a beatmap. */ - bpmMode: number; + bpm: number; /** * The total break time of a beatmap. diff --git a/src/Beatmaps/IBeatmapInfo.ts b/src/Beatmaps/IBeatmapInfo.ts index 74c9e34..73f24aa 100644 --- a/src/Beatmaps/IBeatmapInfo.ts +++ b/src/Beatmaps/IBeatmapInfo.ts @@ -104,7 +104,7 @@ export interface IBeatmapInfo { /** * The most common BPM of a beatmap. */ - bpmMode: number; + bpm: number; /** * Circle size of the beatmap. diff --git a/src/Beatmaps/ProgressiveCalculationBeatmap.ts b/src/Beatmaps/ProgressiveCalculationBeatmap.ts index 74e1366..677d175 100644 --- a/src/Beatmaps/ProgressiveCalculationBeatmap.ts +++ b/src/Beatmaps/ProgressiveCalculationBeatmap.ts @@ -148,8 +148,8 @@ export class ProgressiveCalculationBeatmap implements IBeatmap { /** * The most common BPM of a beatmap. */ - get bpmMode(): number { - return this._baseBeatmap.bpmMode; + get bpm(): number { + return this._baseBeatmap.bpm; } /** From 8852e751e2493ef5249984523b0d3924af1eefb4 Mon Sep 17 00:00:00 2001 From: Alexander Date: Mon, 13 Mar 2023 17:34:20 +0200 Subject: [PATCH 04/34] Use custom map implementation to store score hit statistics --- src/Scoring/HitStatistics.ts | 18 +++++++++++ src/Scoring/IHitStatistics.ts | 20 ------------ src/Scoring/IScoreInfo.ts | 6 ++-- src/Scoring/LegacyScoreExtensions.ts | 47 +++++++++++++++------------ src/Scoring/ScoreInfo.ts | 48 ++++------------------------ src/Scoring/index.ts | 2 +- 6 files changed, 55 insertions(+), 86 deletions(-) create mode 100644 src/Scoring/HitStatistics.ts delete mode 100644 src/Scoring/IHitStatistics.ts diff --git a/src/Scoring/HitStatistics.ts b/src/Scoring/HitStatistics.ts new file mode 100644 index 0000000..e75b1fe --- /dev/null +++ b/src/Scoring/HitStatistics.ts @@ -0,0 +1,18 @@ +import { HitResult } from './Enums/HitResult'; + +/** + * A special case of a map structure for storing hit statistics. + */ +export class HitStatistics extends Map { + /** + * Gets the number of hit results by their type. + * If hit result is not present sets it to default value and returns it. + * @param key Hit result type. + * @returns The number of hit results of this type. + */ + get(key: HitResult): number { + if (!super.has(key)) super.set(key, 0); + + return super.get(key) as number; + } +} diff --git a/src/Scoring/IHitStatistics.ts b/src/Scoring/IHitStatistics.ts deleted file mode 100644 index 31f0b6d..0000000 --- a/src/Scoring/IHitStatistics.ts +++ /dev/null @@ -1,20 +0,0 @@ -/** - * Hit statistics. - */ -export interface IHitStatistics { - none: number; - miss: number; - meh: number; - ok: number; - good: number; - great: number; - perfect: number; - smallTickMiss: number; - smallTickHit: number; - largeTickMiss: number; - largeTickHit: number; - smallBonus: number; - largeBonus: number; - ignoreMiss: number; - ignoreHit: number; -} diff --git a/src/Scoring/IScoreInfo.ts b/src/Scoring/IScoreInfo.ts index e97c0ff..d99e539 100644 --- a/src/Scoring/IScoreInfo.ts +++ b/src/Scoring/IScoreInfo.ts @@ -1,9 +1,9 @@ import { ScoreRank } from './Enums/ScoreRank'; -import { IHitStatistics } from './IHitStatistics'; +import { IJsonableScoreInfo } from './IJsonableScoreInfo'; +import { HitStatistics } from './HitStatistics'; import { IBeatmapInfo } from '../Beatmaps'; import { IRuleset } from '../Rulesets'; import { ModCombination } from '../Mods'; -import { IJsonableScoreInfo } from './IJsonableScoreInfo'; /** * A score information. @@ -97,7 +97,7 @@ export interface IScoreInfo { /** * Hit statistics. */ - statistics: Partial; + statistics: HitStatistics; /** * Beatmap MD5 hash. diff --git a/src/Scoring/LegacyScoreExtensions.ts b/src/Scoring/LegacyScoreExtensions.ts index 38e2992..83549e6 100644 --- a/src/Scoring/LegacyScoreExtensions.ts +++ b/src/Scoring/LegacyScoreExtensions.ts @@ -1,4 +1,5 @@ -import { IHitStatistics } from './IHitStatistics'; +import { HitResult } from './Enums/HitResult'; +import { HitStatistics } from './HitStatistics'; /** * Score extensions. @@ -12,7 +13,7 @@ export abstract class LegacyScoreExtensions { /** * Hit statistics. */ - abstract statistics: Partial; + statistics = new HitStatistics(); /** * This is only stored for legacy scores. @@ -27,7 +28,9 @@ export abstract class LegacyScoreExtensions { */ get countGeki(): number { if (this.rulesetId === 3) { - return this.statistics?.perfect ?? this._legacyCountGeki; + return this.statistics.has(HitResult.Perfect) + ? this.statistics.get(HitResult.Perfect) + : this._legacyCountGeki; } return this._legacyCountGeki; @@ -37,7 +40,7 @@ export abstract class LegacyScoreExtensions { if (!this.statistics) return; if (this.rulesetId === 3) { - this.statistics.perfect = value; + this.statistics.set(HitResult.Perfect, value); } this._legacyCountGeki = value; @@ -47,13 +50,13 @@ export abstract class LegacyScoreExtensions { * Number of 300s. */ get count300(): number { - return this.statistics?.great ?? 0; + return this.statistics.get(HitResult.Great); } set count300(value: number) { if (!this.statistics) return; - this.statistics.great = value; + this.statistics.set(HitResult.Great, value); } /** @@ -61,11 +64,15 @@ export abstract class LegacyScoreExtensions { */ get countKatu(): number { if (this.rulesetId === 2) { - return this.statistics?.smallTickMiss ?? this._legacyCountKatu; + return this.statistics.has(HitResult.SmallTickMiss) + ? this.statistics.get(HitResult.SmallTickMiss) + : this._legacyCountKatu; } if (this.rulesetId === 3) { - return this.statistics?.good ?? this._legacyCountKatu; + return this.statistics.has(HitResult.Good) + ? this.statistics.get(HitResult.Good) + : this._legacyCountKatu; } return this._legacyCountKatu; @@ -75,11 +82,11 @@ export abstract class LegacyScoreExtensions { if (!this.statistics) return; if (this.rulesetId === 2) { - this.statistics.smallTickMiss = value; + this.statistics.set(HitResult.SmallTickMiss, value); } if (this.rulesetId === 3) { - this.statistics.good = value; + this.statistics.set(HitResult.Good, value); } this._legacyCountKatu = value; @@ -90,20 +97,20 @@ export abstract class LegacyScoreExtensions { */ get count100(): number { if (this.rulesetId === 2) { - return this.statistics?.largeTickHit ?? 0; + return this.statistics.get(HitResult.LargeTickHit); } - return this.statistics?.ok ?? 0; + return this.statistics.get(HitResult.Ok); } set count100(value: number) { if (!this.statistics) return; if (this.rulesetId === 2) { - this.statistics.largeTickHit = value; + this.statistics.set(HitResult.LargeTickHit, value); } - this.statistics.ok = value; + this.statistics.set(HitResult.Ok, value); } /** @@ -111,33 +118,33 @@ export abstract class LegacyScoreExtensions { */ get count50(): number { if (this.rulesetId === 2) { - return this.statistics?.smallTickHit ?? 0; + return this.statistics.get(HitResult.SmallTickHit); } - return this.statistics?.meh ?? 0; + return this.statistics.get(HitResult.Meh); } set count50(value: number) { if (!this.statistics) return; if (this.rulesetId === 2) { - this.statistics.smallTickHit = value; + this.statistics.set(HitResult.SmallTickHit, value); } - this.statistics.meh = value; + this.statistics.set(HitResult.Meh, value); } /** * Number of misses. */ get countMiss(): number { - return this.statistics?.miss ?? 0; + return this.statistics.get(HitResult.Miss); } set countMiss(value: number) { if (!this.statistics) return; - this.statistics.miss = value; + this.statistics.set(HitResult.Miss, value); } /** diff --git a/src/Scoring/ScoreInfo.ts b/src/Scoring/ScoreInfo.ts index cfa4d1d..48a96c4 100644 --- a/src/Scoring/ScoreInfo.ts +++ b/src/Scoring/ScoreInfo.ts @@ -1,12 +1,12 @@ import { ScoreRank } from './Enums/ScoreRank'; -import { IHitStatistics } from './IHitStatistics'; +import { HitStatistics } from './HitStatistics'; +import { LegacyScoreExtensions } from './LegacyScoreExtensions'; +import { calculateAccuracy, calculateRank } from './ScoreUtils'; import { IScoreInfo } from './IScoreInfo'; import { IJsonableScoreInfo, JsonableScoreInfo } from './IJsonableScoreInfo'; -import { LegacyScoreExtensions } from './LegacyScoreExtensions'; import { IBeatmapInfo } from '../Beatmaps'; import { IRuleset } from '../Rulesets'; import { ModCombination } from '../Mods'; -import { calculateAccuracy, calculateRank } from './ScoreUtils'; /** * A score information. @@ -145,27 +145,6 @@ export class ScoreInfo extends LegacyScoreExtensions implements IScoreInfo { */ date: Date = new Date(); - /** - * Hit statistics. - */ - statistics: IHitStatistics = { - none: 0, - miss: 0, - meh: 0, - ok: 0, - good: 0, - great: 0, - perfect: 0, - smallTickMiss: 0, - smallTickHit: 0, - largeTickMiss: 0, - largeTickHit: 0, - smallBonus: 0, - largeBonus: 0, - ignoreMiss: 0, - ignoreHit: 0, - }; - /** * Beatmap MD5 hash. */ @@ -220,24 +199,9 @@ export class ScoreInfo extends LegacyScoreExtensions implements IScoreInfo { const cloned = new ScoreInfo(); - cloned.id = this.id; - cloned.totalScore = this.totalScore; - cloned.maxCombo = this.maxCombo; - cloned.rulesetId = this.rulesetId; - cloned.passed = this.passed; - cloned.perfect = this.perfect; - cloned.ruleset = this.ruleset; - cloned.mods = this.mods; - cloned.username = this.username; - cloned.userId = this.userId; - cloned.beatmap = this.beatmap; - cloned.beatmapId = this.beatmapId; - cloned.beatmapHashMD5 = this.beatmapHashMD5; - cloned.date = this.date; - - if (this.pp) cloned.pp = this.pp; - - cloned.statistics = { ...this.statistics }; + Object.assign(cloned, this); + + cloned.statistics = new HitStatistics(this.statistics); return cloned; } diff --git a/src/Scoring/index.ts b/src/Scoring/index.ts index 6b34b78..ae41c42 100644 --- a/src/Scoring/index.ts +++ b/src/Scoring/index.ts @@ -2,7 +2,7 @@ export * from './DifficultyRange'; export * from './Enums/HitResult'; export * from './Enums/ScoreRank'; export * from './HitWindows'; -export * from './IHitStatistics'; +export * from './HitStatistics'; export * from './IJsonableScoreInfo'; export * from './IScore'; export * from './IScoreInfo'; From 960a5d3e9c19d06e2d30fc9f59635576e2d7388b Mon Sep 17 00:00:00 2001 From: Alexander Date: Mon, 13 Mar 2023 17:34:45 +0200 Subject: [PATCH 05/34] Set passed flag to false if score rank is 'F' --- src/Scoring/ScoreInfo.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Scoring/ScoreInfo.ts b/src/Scoring/ScoreInfo.ts index 48a96c4..07997c9 100644 --- a/src/Scoring/ScoreInfo.ts +++ b/src/Scoring/ScoreInfo.ts @@ -34,6 +34,7 @@ export class ScoreInfo extends LegacyScoreExtensions implements IScoreInfo { /** * Whether the map was passed or not. + * Score rank will always be 'F' on passed = false. */ passed = false; @@ -65,8 +66,8 @@ export class ScoreInfo extends LegacyScoreExtensions implements IScoreInfo { return calculateRank(this); } - set rank(_: keyof typeof ScoreRank) { - return; + set rank(value: keyof typeof ScoreRank) { + this.passed = value !== 'F'; } /** From 63e7eb0bb4c761b6d3e142bf19e9603046356681 Mon Sep 17 00:00:00 2001 From: Alexander Date: Mon, 13 Mar 2023 17:35:03 +0200 Subject: [PATCH 06/34] Complete user information class --- src/Users/Enums/CountryCode.ts | 253 +++++++++++++++++++++++++++++++++ src/Users/Grades.ts | 25 ++++ src/Users/IUserInfo.ts | 112 +++++++++++---- src/Users/LevelInfo.ts | 27 ++++ src/Users/RankHistory.ts | 36 +++++ src/Users/UserInfo.ts | 122 ++++++++++++---- src/Users/index.ts | 4 + 7 files changed, 522 insertions(+), 57 deletions(-) create mode 100644 src/Users/Enums/CountryCode.ts create mode 100644 src/Users/Grades.ts create mode 100644 src/Users/LevelInfo.ts create mode 100644 src/Users/RankHistory.ts diff --git a/src/Users/Enums/CountryCode.ts b/src/Users/Enums/CountryCode.ts new file mode 100644 index 0000000..82c8eee --- /dev/null +++ b/src/Users/Enums/CountryCode.ts @@ -0,0 +1,253 @@ +export enum CountryCode { + Unknown = 0, + BD, // Bangladesh + BE, // Belgium + BF, // Burkina Faso + BG, // Bulgaria + BA, // Bosnia and Herzegovina + BB, // Barbados + WF, // Wallis and Futuna + BL, // Saint Barthelemy + BM, // Bermuda + BN, // Brunei + BO, // Bolivia + BH, // Bahrain + BI, // Burundi + BJ, // Benin + BT, // Bhutan + JM, // Jamaica + BV, // Bouvet Island + BW, // Botswana + WS, // Samoa + BQ, // Bonaire, Saint Eustatius and Saba + BR, // Brazil + BS, // Bahamas + JE, // Jersey + BY, // Belarus + BZ, // Belize + RU, // Russia + RW, // Rwanda + RS, // Serbia + TL, // East Timor + RE, // Reunion + TM, // Turkmenistan + TJ, // Tajikistan + RO, // Romania + TK, // Tokelau + GW, // Guinea-Bissau + GU, // Guam + GT, // Guatemala + GS, // South Georgia and the South Sandwich Islands + GR, // Greece + GQ, // Equatorial Guinea + GP, // Guadeloupe + JP, // Japan + GY, // Guyana + GG, // Guernsey + GF, // French Guiana + GE, // Georgia + GD, // Grenada + GB, // United Kingdom + GA, // Gabon + SV, // El Salvador + GN, // Guinea + GM, // Gambia + GL, // Greenland + GI, // Gibraltar + GH, // Ghana + OM, // Oman + TN, // Tunisia + JO, // Jordan + HR, // Croatia + HT, // Haiti + HU, // Hungary + HK, // Hong Kong + HN, // Honduras + HM, // Heard Island and McDonald Islands + VE, // Venezuela + PR, // Puerto Rico + PS, // Palestinian Territory + PW, // Palau + PT, // Portugal + SJ, // Svalbard and Jan Mayen + PY, // Paraguay + IQ, // Iraq + PA, // Panama + PF, // French Polynesia + PG, // Papua New Guinea + PE, // Peru + PK, // Pakistan + PH, // Philippines + PN, // Pitcairn + PL, // Poland + PM, // Saint Pierre and Miquelon + ZM, // Zambia + EH, // Western Sahara + EE, // Estonia + EG, // Egypt + ZA, // South Africa + EC, // Ecuador + IT, // Italy + VN, // Vietnam + SB, // Solomon Islands + ET, // Ethiopia + SO, // Somalia + ZW, // Zimbabwe + SA, // Saudi Arabia + ES, // Spain + ER, // Eritrea + ME, // Montenegro + MD, // Moldova + MG, // Madagascar + MF, // Saint Martin + MA, // Morocco + MC, // Monaco + UZ, // Uzbekistan + MM, // Myanmar + ML, // Mali + MO, // Macao + MN, // Mongolia + MH, // Marshall Islands + MK, // North Macedonia + MU, // Mauritius + MT, // Malta + MW, // Malawi + MV, // Maldives + MQ, // Martinique + MP, // Northern Mariana Islands + MS, // Montserrat + MR, // Mauritania + IM, // Isle of Man + UG, // Uganda + TZ, // Tanzania + MY, // Malaysia + MX, // Mexico + IL, // Israel + FR, // France + IO, // British Indian Ocean Territory + SH, // Saint Helena + FI, // Finland + FJ, // Fiji + FK, // Falkland Islands + FM, // Micronesia + FO, // Faroe Islands + NI, // Nicaragua + NL, // Netherlands + NO, // Norway + NA, // Namibia + VU, // Vanuatu + NC, // New Caledonia + NE, // Niger + NF, // Norfolk Island + NG, // Nigeria + NZ, // New Zealand + NP, // Nepal + NR, // Nauru + NU, // Niue + CK, // Cook Islands + XK, // Kosovo + CI, // Ivory Coast + CH, // Switzerland + CO, // Colombia + CN, // China + CM, // Cameroon + CL, // Chile + CC, // Cocos Islands + CA, // Canada + CG, // Republic of the Congo + CF, // Central African Republic + CD, // Democratic Republic of the Congo + CZ, // Czech Republic + CY, // Cyprus + CX, // Christmas Island + CR, // Costa Rica + CW, // Curacao + CV, // Cabo Verde + CU, // Cuba + SZ, // Eswatini + SY, // Syria + SX, // Sint Maarten + KG, // Kyrgyzstan + KE, // Kenya + SS, // South Sudan + SR, // Suriname + KI, // Kiribati + KH, // Cambodia + KN, // Saint Kitts and Nevis + KM, // Comoros + ST, // Sao Tome and Principe + SK, // Slovakia + KR, // South Korea + SI, // Slovenia + KP, // North Korea + KW, // Kuwait + SN, // Senegal + SM, // San Marino + SL, // Sierra Leone + SC, // Seychelles + KZ, // Kazakhstan + KY, // Cayman Islands + SG, // Singapore + SE, // Sweden + SD, // Sudan + DO, // Dominican Republic + DM, // Dominica + DJ, // Djibouti + DK, // Denmark + VG, // British Virgin Islands + DE, // Germany + YE, // Yemen + DZ, // Algeria + US, // United States + UY, // Uruguay + YT, // Mayotte + UM, // United States Minor Outlying Islands + LB, // Lebanon + LC, // Saint Lucia + LA, // Laos + TV, // Tuvalu + TW, // Taiwan + TT, // Trinidad and Tobago + TR, // Turkey + LK, // Sri Lanka + LI, // Liechtenstein + LV, // Latvia + TO, // Tonga + LT, // Lithuania + LU, // Luxembourg + LR, // Liberia + LS, // Lesotho + TH, // Thailand + TF, // French Southern Territories + TG, // Togo + TD, // Chad + TC, // Turks and Caicos Islands + LY, // Libya + VA, // Vatican + VC, // Saint Vincent and the Grenadines + AE, // United Arab Emirates + AD, // Andorra + AG, // Antigua and Barbuda + AF, // Afghanistan + AI, // Anguilla + VI, // U.S. Virgin Islands + IS, // Iceland + IR, // Iran + AM, // Armenia + AL, // Albania + AO, // Angola + AQ, // Antarctica + AS, // American Samoa + AR, // Argentina + AU, // Australia + AT, // Austria + AW, // Aruba + IN, // India + AX, // Aland Islands + AZ, // Azerbaijan + IE, // Ireland + ID, // Indonesia + UA, // Ukraine + QA, // Qatar + MZ, // Mozambique +} diff --git a/src/Users/Grades.ts b/src/Users/Grades.ts new file mode 100644 index 0000000..46d1041 --- /dev/null +++ b/src/Users/Grades.ts @@ -0,0 +1,25 @@ +import { ScoreRank } from '../Scoring'; + +/** + * A special case of a map structure for storing the number of user's grades. + */ +export class Grades extends Map { + /** + * Gets the number of grades by their type. + * If grade is not present sets it to default value and returns it. + * @param key Score rank type. + * @returns The number of grades of this type. + */ + get(key: ScoreRank): number { + if (!super.has(key)) super.set(key, 0); + + return super.get(key) as number; + } + + /** + * If user has zero grades in total. + */ + get hasZeroGrades(): boolean { + return this.size === 0 || [...this.values()].reduce((p, c) => p + c) === 0; + } +} diff --git a/src/Users/IUserInfo.ts b/src/Users/IUserInfo.ts index 2f3d56c..16cb9e7 100644 --- a/src/Users/IUserInfo.ts +++ b/src/Users/IUserInfo.ts @@ -1,69 +1,129 @@ +import { CountryCode } from './Enums/CountryCode'; +import { Grades } from './Grades'; +import { LevelInfo } from './LevelInfo'; +import { RankHistory } from './RankHistory'; + /** - * An user information. + * A user information. */ export interface IUserInfo { + /** + * User ID. + */ + id: number; + + /** + * User's name. + */ + username: string; + /** * User country code. */ - countryCode: Uppercase; + countryCode: keyof typeof CountryCode; /** - * User ID. + * Playmode of the user. */ - id: number; + playmode: number; /** - * Whether the user is active or not. + * User performance points. */ - isActive: boolean; + totalPerformance: number; /** - * Whether the user is bot or not. + * Rank in the global top. */ - isBot: boolean; + globalRank: number | null; /** - * Whether the user is deleted or not. + * Rank in the country top. */ - isDeleted: boolean; + countryRank: number | null; /** - * Whether the user is online or not. + * Information about a user's level. */ - isOnline: boolean; + level: LevelInfo; /** - * Whether the user is supporter or not. + * Ranked score of a user. */ - isSupporter: boolean; + rankedScore: number; /** - * Last visit date of the user. + * Total score of a user. */ - lastVisitAt: Date | null; + totalScore: number; /** - * User's name. + * Total accuracy of a user. */ - username: string; + accuracy: number; /** - * Playmode of the user. + * Total playcount of a user. */ - playmode: number; + playcount: number; /** - * User performance points. + * Total playtime of a user. */ - totalPerformance: number; + playtime: number; /** - * Rank in the global top. + * Total hits of a user. */ - globalRank: number; + totalHits: number; /** - * Rank in the country top. + * Max combo of a user. */ - countryRank: number; + maxCombo: number; + + /** + * How many times this user's replays have been watched. + */ + replaysWatched: number; + + /** + * Grades count of a user. + */ + grades: Grades; + + /** + * Rank history of a user. + */ + rankHistory: RankHistory; + + /** + * Whether the user is active or not. + */ + isActive: boolean; + + /** + * Whether the user is bot or not. + */ + isBot: boolean; + + /** + * Whether the user is deleted or not. + */ + isDeleted: boolean; + + /** + * Whether the user is online or not. + */ + isOnline: boolean; + + /** + * Whether the user is supporter or not. + */ + isSupporter: boolean; + + /** + * Last visit date of the user. + */ + lastVisitAt: Date | null; } diff --git a/src/Users/LevelInfo.ts b/src/Users/LevelInfo.ts new file mode 100644 index 0000000..8a5fdaa --- /dev/null +++ b/src/Users/LevelInfo.ts @@ -0,0 +1,27 @@ +/** + * A level information of a user. + */ +export class LevelInfo { + /** + * Current level of a user. + */ + current = 0; + + /** + * Progress to the next level. + */ + progress = 0; + + constructor(current = 0, progress = 0) { + this.current = current; + this.progress = progress; + } + + /** + * Creates a deep copy of the level info. + * @returns Cloned level info. + */ + clone(): LevelInfo { + return new LevelInfo(this.current, this.progress); + } +} diff --git a/src/Users/RankHistory.ts b/src/Users/RankHistory.ts new file mode 100644 index 0000000..2dcdbcd --- /dev/null +++ b/src/Users/RankHistory.ts @@ -0,0 +1,36 @@ +/** + * A class that represents rank history of a user. + */ +export class RankHistory { + static DEFAULT_MODE = 'Unknown'; + + /** + * A mode to which this data belongs. + */ + mode: string; + + /** + * List of previous ranks at different points of history. + */ + data: number[]; + + /** + * If this rank history has valid mode and more than 1 entry to build a graph. + */ + get hasEnoughData(): boolean { + return this.mode !== RankHistory.DEFAULT_MODE && this.data.length > 1; + } + + constructor(mode?: string, data?: number[]) { + this.mode = mode ?? RankHistory.DEFAULT_MODE; + this.data = data ?? []; + } + + /** + * Creates a deep copy of the rank history. + * @returns Cloned rank history. + */ + clone(): RankHistory { + return new RankHistory(this.mode, [...this.data]); + } +} diff --git a/src/Users/UserInfo.ts b/src/Users/UserInfo.ts index 7998f82..31828c7 100644 --- a/src/Users/UserInfo.ts +++ b/src/Users/UserInfo.ts @@ -1,73 +1,132 @@ +import { CountryCode } from './Enums/CountryCode'; +import { Grades } from './Grades'; import { IUserInfo } from './IUserInfo'; +import { LevelInfo } from './LevelInfo'; +import { RankHistory } from './RankHistory'; /** - * An user information. + * A user information. */ export class UserInfo implements IUserInfo { + /** + * User ID. + */ + id = 0; + + /** + * User's name. + */ + username = ''; + /** * User country code. */ - countryCode: Uppercase = ''; + countryCode: keyof typeof CountryCode = 'Unknown'; /** - * User ID. + * Playmode of the user. */ - id = 0; + playmode = 0; /** - * Whether the user is active or not. + * User performance points. */ - isActive = false; + totalPerformance = 0; /** - * Whether the user is bot or not. + * Rank in the global top. */ - isBot = false; + globalRank: number | null = null; /** - * Whether the user is deleted or not. + * Rank in the country top. */ - isDeleted = false; + countryRank: number | null = null; /** - * Whether the user is online or not. + * Information about a user's level. */ - isOnline = false; + level = new LevelInfo(); /** - * Whether the user is supporter or not. + * Ranked score of a user. */ - isSupporter = false; + rankedScore = 0; /** - * Last visit date of the user. + * Total score of a user. */ - lastVisitAt: Date | null = null; + totalScore = 0; /** - * User's name. + * Total accuracy of a user. */ - username = ''; + accuracy = 0; /** - * Playmode of the user. + * Total playcount of a user. */ - playmode = 0; + playcount = 0; /** - * User performance points. + * Total playtime of a user. */ - totalPerformance = 0; + playtime = 0; /** - * Rank in the global top. + * Total hits of a user. */ - globalRank = 0; + totalHits = 0; /** - * Rank in the country top. + * Max combo of a user. */ - countryRank = 0; + maxCombo = 0; + + /** + * How many times this user's replays have been watched. + */ + replaysWatched = 0; + + /** + * Grades count of a user. + */ + grades = new Grades(); + + /** + * Rank history of a user. + */ + rankHistory = new RankHistory(); + + /** + * Whether the user is active or not. + */ + isActive = true; + + /** + * Whether the user is bot or not. + */ + isBot = false; + + /** + * Whether the user is deleted or not. + */ + isDeleted = false; + + /** + * Whether the user is online or not. + */ + isOnline = false; + + /** + * Whether the user is supporter or not. + */ + isSupporter = false; + + /** + * Last visit date of the user. + */ + lastVisitAt: Date | null = null; /** * Creates a new instance of a user information. @@ -88,6 +147,11 @@ export class UserInfo implements IUserInfo { Object.assign(cloned, this); + cloned.level = this.level.clone(); + cloned.rankHistory = this.rankHistory.clone(); + cloned.grades = new Grades(this.grades); + cloned.lastVisitAt = this.lastVisitAt ? new Date(this.lastVisitAt) : null; + return cloned; } @@ -98,10 +162,6 @@ export class UserInfo implements IUserInfo { equals(other: IUserInfo): boolean { if (!other) return false; - if (this.id !== 0 && other.id !== 0) { - return this.id === other.id; - } - - return false; + return this.id === other.id && this.username === other.username; } } diff --git a/src/Users/index.ts b/src/Users/index.ts index d1e01b2..3b7ab0c 100644 --- a/src/Users/index.ts +++ b/src/Users/index.ts @@ -1,2 +1,6 @@ +export * from './Enums/CountryCode'; +export * from './Grades'; export * from './IUserInfo'; +export * from './LevelInfo'; +export * from './RankHistory'; export * from './UserInfo'; From d7431af53b137eab940f0766764ffee0cb1f45e8 Mon Sep 17 00:00:00 2001 From: Alexander Date: Mon, 13 Mar 2023 17:45:12 +0200 Subject: [PATCH 07/34] Add markdown formatting to ts-doc comments --- src/Scoring/ScoreInfo.ts | 3 ++- src/Storyboards/Storyboard.ts | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Scoring/ScoreInfo.ts b/src/Scoring/ScoreInfo.ts index 07997c9..b099d7b 100644 --- a/src/Scoring/ScoreInfo.ts +++ b/src/Scoring/ScoreInfo.ts @@ -34,7 +34,7 @@ export class ScoreInfo extends LegacyScoreExtensions implements IScoreInfo { /** * Whether the map was passed or not. - * Score rank will always be 'F' on passed = false. + * Score rank will always be `F` on `passed = false`. */ passed = false; @@ -95,6 +95,7 @@ export class ScoreInfo extends LegacyScoreExtensions implements IScoreInfo { /** * Mods of the play. + * This will always be `null` if {@link ruleset} is not set. */ get mods(): ModCombination | null { return this._mods; diff --git a/src/Storyboards/Storyboard.ts b/src/Storyboards/Storyboard.ts index c4a5a1e..3ccbf2e 100644 --- a/src/Storyboards/Storyboard.ts +++ b/src/Storyboards/Storyboard.ts @@ -69,7 +69,7 @@ export class Storyboard { /** * Across all layers, find the earliest point in time that a storyboard element exists at. - * Will return null if there are no elements. + * Will return `null` if there are no elements. * This iterates all elements and as such should be used sparingly or stored locally. */ get earliestEventTime(): number | null { From ccb199287dc2528406cd5a21b60dea4262971939 Mon Sep 17 00:00:00 2001 From: Alexander Date: Mon, 13 Mar 2023 20:49:28 +0200 Subject: [PATCH 08/34] Improve JSON serialization/deserialization --- src/Beatmaps/BeatmapInfo.ts | 51 +++++++++++--------- src/Beatmaps/IJsonableBeatmapInfo.ts | 2 +- src/Mods/ModCombination.ts | 2 +- src/Scoring/HitStatistics.ts | 67 +++++++++++++++++++++++++++ src/Scoring/IJsonableHitStatistics.ts | 17 +++++++ src/Scoring/IJsonableScoreInfo.ts | 8 +++- src/Scoring/ScoreInfo.ts | 15 +++++- 7 files changed, 136 insertions(+), 26 deletions(-) create mode 100644 src/Scoring/IJsonableHitStatistics.ts diff --git a/src/Beatmaps/BeatmapInfo.ts b/src/Beatmaps/BeatmapInfo.ts index d2ec88f..88dd90e 100644 --- a/src/Beatmaps/BeatmapInfo.ts +++ b/src/Beatmaps/BeatmapInfo.ts @@ -218,26 +218,10 @@ export class BeatmapInfo implements IBeatmapInfo { } /** - * Converts this beatmap information to JSON. - * @returns Beatmap information convertable to JSON. + * Beatmap total hits. */ - toJSON(): IJsonableBeatmapInfo { - const partial: Partial = {}; - const deselect = ['beatmap', 'ruleset', 'rawMods', 'mods']; - - for (const key in this) { - if (key.startsWith('_')) continue; - if (deselect.includes(key)) continue; - - partial[key] = this[key]; - } - - return { - ...partial as JsonableBeatmapInfo, - mods: this.mods?.toString() ?? 'NM', - rulesetId: this.rulesetId, - totalHits: this.totalHits, - }; + get totalHits(): number { + return this.hittable + this.slidable + this.spinnable + this.holdable; } /** @@ -269,9 +253,32 @@ export class BeatmapInfo implements IBeatmapInfo { } /** - * Beatmap total hits. + * Converts this beatmap information to JSON. + * @returns Beatmap information convertable to JSON. */ - get totalHits(): number { - return this.hittable + this.slidable + this.spinnable + this.holdable; + toJSON(): IJsonableBeatmapInfo { + const partial: Partial = {}; + const deselect = ['ruleset', 'rawMods', 'mods']; + + for (const key in this) { + if (key.startsWith('_')) continue; + if (deselect.includes(key)) continue; + + partial[key] = this[key]; + } + + return { + ...partial as JsonableBeatmapInfo, + mods: this.mods?.toString() ?? 'NM', + rulesetId: this.rulesetId, + totalHits: this.totalHits, + }; + } + + static fromJSON(json: IJsonableBeatmapInfo): BeatmapInfo { + return new BeatmapInfo({ + ...json as Omit, + rawMods: json.mods, + }); } } diff --git a/src/Beatmaps/IJsonableBeatmapInfo.ts b/src/Beatmaps/IJsonableBeatmapInfo.ts index 7ec1418..901ff31 100644 --- a/src/Beatmaps/IJsonableBeatmapInfo.ts +++ b/src/Beatmaps/IJsonableBeatmapInfo.ts @@ -1,6 +1,6 @@ import { IBeatmapInfo } from './IBeatmapInfo'; -export type JsonableBeatmapInfo = Omit; +export type JsonableBeatmapInfo = Omit; /** * A beatmap information that can be converted to JSON. diff --git a/src/Mods/ModCombination.ts b/src/Mods/ModCombination.ts index b9de446..481d9d4 100644 --- a/src/Mods/ModCombination.ts +++ b/src/Mods/ModCombination.ts @@ -284,7 +284,7 @@ export abstract class ModCombination { /** * Converts this mod combination to a string. - * @returns Stringified mod combination. + * @returns Formatted mod combination that can be converted to JSON. */ toJSON(): string { return this.toString(); diff --git a/src/Scoring/HitStatistics.ts b/src/Scoring/HitStatistics.ts index e75b1fe..ae504d2 100644 --- a/src/Scoring/HitStatistics.ts +++ b/src/Scoring/HitStatistics.ts @@ -1,4 +1,5 @@ import { HitResult } from './Enums/HitResult'; +import { IJsonableHitStatistics } from './IJsonableHitStatistics'; /** * A special case of a map structure for storing hit statistics. @@ -15,4 +16,70 @@ export class HitStatistics extends Map { return super.get(key) as number; } + + /** + * Converts this map to a readable JSON format. + */ + toJSON(): IJsonableHitStatistics { + const result: IJsonableHitStatistics = {}; + + this.forEach((value, key) => { + result[HitStatistics._getJsonableKeyFromHitResult(key)] = value; + }); + + return result; + } + + static fromJSON(json: IJsonableHitStatistics): HitStatistics { + const statistics = new HitStatistics(); + const entries = Object.entries(json); + + entries.forEach((entry) => { + const key = entry[0] as keyof IJsonableHitStatistics; + + statistics.set(this._getHitResultFromJsonableKey(key), entry[1]); + }); + + return statistics; + } + + private static _getJsonableKeyFromHitResult(result: HitResult): keyof IJsonableHitStatistics { + switch (result) { + case HitResult.None: return 'none'; + case HitResult.Miss: return 'miss'; + case HitResult.Meh: return 'meh'; + case HitResult.Ok: return 'ok'; + case HitResult.Good: return 'good'; + case HitResult.Great: return 'great'; + case HitResult.Perfect: return 'perfect'; + case HitResult.SmallTickMiss: return 'smallTickMiss'; + case HitResult.SmallTickHit: return 'smallTickHit'; + case HitResult.LargeTickMiss: return 'largeTickMiss'; + case HitResult.LargeTickHit: return 'largeTickHit'; + case HitResult.SmallBonus: return 'smallBonus'; + case HitResult.LargeBonus: return 'largeBonus'; + case HitResult.IgnoreMiss: return 'ignoreMiss'; + case HitResult.IgnoreHit: return 'ignoreHit'; + } + } + + private static _getHitResultFromJsonableKey(key: keyof IJsonableHitStatistics): HitResult { + switch (key) { + case 'none': return HitResult.None; + case 'miss': return HitResult.Miss; + case 'meh': return HitResult.Meh; + case 'ok': return HitResult.Ok; + case 'good': return HitResult.Good; + case 'great': return HitResult.Great; + case 'perfect': return HitResult.Perfect; + case 'smallTickMiss': return HitResult.SmallTickMiss; + case 'smallTickHit': return HitResult.SmallTickHit; + case 'largeTickMiss': return HitResult.LargeTickMiss; + case 'largeTickHit': return HitResult.LargeTickHit; + case 'smallBonus': return HitResult.SmallBonus; + case 'largeBonus': return HitResult.LargeBonus; + case 'ignoreMiss': return HitResult.IgnoreMiss; + case 'ignoreHit': return HitResult.IgnoreHit; + } + } } diff --git a/src/Scoring/IJsonableHitStatistics.ts b/src/Scoring/IJsonableHitStatistics.ts new file mode 100644 index 0000000..4d2f0d9 --- /dev/null +++ b/src/Scoring/IJsonableHitStatistics.ts @@ -0,0 +1,17 @@ +export interface IJsonableHitStatistics { + none?: number; + miss?: number; + meh?: number; + ok?: number; + good?: number; + great?: number; + perfect?: number; + smallTickMiss?: number; + smallTickHit?: number; + largeTickMiss?: number; + largeTickHit?: number; + smallBonus?: number; + largeBonus?: number; + ignoreMiss?: number; + ignoreHit?: number; +} diff --git a/src/Scoring/IJsonableScoreInfo.ts b/src/Scoring/IJsonableScoreInfo.ts index e43433d..3691afe 100644 --- a/src/Scoring/IJsonableScoreInfo.ts +++ b/src/Scoring/IJsonableScoreInfo.ts @@ -1,7 +1,8 @@ import { IJsonableBeatmapInfo } from '../Beatmaps'; +import { IJsonableHitStatistics } from './IJsonableHitStatistics'; import { IScoreInfo } from './IScoreInfo'; -export type JsonableScoreInfo = Omit; +export type JsonableScoreInfo = Omit; /** * A score information that can be converted to JSON. @@ -16,4 +17,9 @@ export interface IJsonableScoreInfo extends JsonableScoreInfo { * A beatmap information that can be converted to JSON. */ beatmap: IJsonableBeatmapInfo | null; + + /** + * Hit statistics that can be converted to JSON. + */ + statistics: IJsonableHitStatistics; } diff --git a/src/Scoring/ScoreInfo.ts b/src/Scoring/ScoreInfo.ts index b099d7b..82edc5f 100644 --- a/src/Scoring/ScoreInfo.ts +++ b/src/Scoring/ScoreInfo.ts @@ -4,7 +4,7 @@ import { LegacyScoreExtensions } from './LegacyScoreExtensions'; import { calculateAccuracy, calculateRank } from './ScoreUtils'; import { IScoreInfo } from './IScoreInfo'; import { IJsonableScoreInfo, JsonableScoreInfo } from './IJsonableScoreInfo'; -import { IBeatmapInfo } from '../Beatmaps'; +import { BeatmapInfo, IBeatmapInfo } from '../Beatmaps'; import { IRuleset } from '../Rulesets'; import { ModCombination } from '../Mods'; @@ -108,6 +108,7 @@ export class ScoreInfo extends LegacyScoreExtensions implements IScoreInfo { /** * Raw mods of the play that are neutral to any of the rulesets. + * This can be either bitwise or stringified mod combination. * {@link ScoreInfo} can't work with mod combinations without an actual ruleset instance. * TODO: Implement it in a better way??? */ @@ -179,8 +180,11 @@ export class ScoreInfo extends LegacyScoreExtensions implements IScoreInfo { return { ...partial as JsonableScoreInfo, + statistics: this.statistics.toJSON(), beatmap: this.beatmap?.toJSON() ?? null, mods: this.mods?.toString() ?? 'NM', + accuracy: this.accuracy, + rank: this.rank, rulesetId: this.rulesetId, countGeki: this.countGeki, count300: this.count300, @@ -221,4 +225,13 @@ export class ScoreInfo extends LegacyScoreExtensions implements IScoreInfo { return false; } + + static fromJSON(json: IJsonableScoreInfo): ScoreInfo { + return new ScoreInfo({ + ...json as Omit, + rawMods: json.mods, + beatmap: json.beatmap ? BeatmapInfo.fromJSON(json.beatmap) : null, + statistics: HitStatistics.fromJSON(json.statistics), + }); + } } From 9fcd2077f29d0ad0fab900b3fd25d06d95743577 Mon Sep 17 00:00:00 2001 From: Alexander Date: Mon, 13 Mar 2023 20:50:02 +0200 Subject: [PATCH 09/34] Split score utililty methods to their own files --- src/Scoring/ScoreInfo.ts | 6 +-- src/Scoring/Utils/Accuracy.ts | 34 ++++++++++++++++ src/Scoring/{ScoreUtils.ts => Utils/Rank.ts} | 41 ++------------------ src/Scoring/Utils/index.ts | 2 + src/Scoring/index.ts | 6 +-- 5 files changed, 46 insertions(+), 43 deletions(-) create mode 100644 src/Scoring/Utils/Accuracy.ts rename src/Scoring/{ScoreUtils.ts => Utils/Rank.ts} (78%) create mode 100644 src/Scoring/Utils/index.ts diff --git a/src/Scoring/ScoreInfo.ts b/src/Scoring/ScoreInfo.ts index 82edc5f..7530d7b 100644 --- a/src/Scoring/ScoreInfo.ts +++ b/src/Scoring/ScoreInfo.ts @@ -1,7 +1,7 @@ import { ScoreRank } from './Enums/ScoreRank'; import { HitStatistics } from './HitStatistics'; import { LegacyScoreExtensions } from './LegacyScoreExtensions'; -import { calculateAccuracy, calculateRank } from './ScoreUtils'; +import { Accuracy, Rank } from './Utils'; import { IScoreInfo } from './IScoreInfo'; import { IJsonableScoreInfo, JsonableScoreInfo } from './IJsonableScoreInfo'; import { BeatmapInfo, IBeatmapInfo } from '../Beatmaps'; @@ -52,7 +52,7 @@ export class ScoreInfo extends LegacyScoreExtensions implements IScoreInfo { * Score accuracy. */ get accuracy(): number { - return calculateAccuracy(this); + return Accuracy.calculate(this); } set accuracy(_: number) { @@ -63,7 +63,7 @@ export class ScoreInfo extends LegacyScoreExtensions implements IScoreInfo { * Score rank. */ get rank(): keyof typeof ScoreRank { - return calculateRank(this); + return Rank.calculate(this); } set rank(value: keyof typeof ScoreRank) { diff --git a/src/Scoring/Utils/Accuracy.ts b/src/Scoring/Utils/Accuracy.ts new file mode 100644 index 0000000..b051a25 --- /dev/null +++ b/src/Scoring/Utils/Accuracy.ts @@ -0,0 +1,34 @@ +import { clamp01 } from '../../Utils/MathUtils'; +import { IScoreInfo } from '../IScoreInfo'; + +/** + * Calculates accuracy of a score. + * @param scoreInfo Score information. + * @returns Calculated accuracy. + */ +export function calculate(scoreInfo: IScoreInfo): number { + const geki = scoreInfo.countGeki; + const katu = scoreInfo.countKatu; + const n300 = scoreInfo.count300; + const n100 = scoreInfo.count100; + const n50 = scoreInfo.count50; + const total = scoreInfo.totalHits; + + if (total <= 0) return 1; + + switch (scoreInfo.rulesetId) { + case 0: + return clamp01((n50 / 6 + n100 / 3 + n300) / total); + + case 1: + return clamp01((n100 / 2 + n300) / total); + + case 2: + return clamp01((n50 + n100 + n300) / total); + + case 3: + return clamp01((n50 / 6 + n100 / 3 + katu / 1.5 + (n300 + geki)) / total); + } + + return 1; +} diff --git a/src/Scoring/ScoreUtils.ts b/src/Scoring/Utils/Rank.ts similarity index 78% rename from src/Scoring/ScoreUtils.ts rename to src/Scoring/Utils/Rank.ts index f2585d4..faa3379 100644 --- a/src/Scoring/ScoreUtils.ts +++ b/src/Scoring/Utils/Rank.ts @@ -1,46 +1,13 @@ -import { IScoreInfo } from './IScoreInfo'; -import { ScoreRank } from './Enums/ScoreRank'; -import { ModBitwise } from '../Mods'; -import { clamp01 } from '../Utils/MathUtils'; - -/** - * Calculates accuracy of a score. - * @param scoreInfo Score information. - * @returns Calculated accuracy. - */ -export function calculateAccuracy(scoreInfo: IScoreInfo): number { - const geki = scoreInfo.countGeki; - const katu = scoreInfo.countKatu; - const n300 = scoreInfo.count300; - const n100 = scoreInfo.count100; - const n50 = scoreInfo.count50; - const total = scoreInfo.totalHits; - - if (total <= 0) return 1; - - switch (scoreInfo.rulesetId) { - case 0: - return clamp01((n50 / 6 + n100 / 3 + n300) / total); - - case 1: - return clamp01((n100 / 2 + n300) / total); - - case 2: - return clamp01((n50 + n100 + n300) / total); - - case 3: - return clamp01((n50 / 6 + n100 / 3 + katu / 1.5 + (n300 + geki)) / total); - } - - return 1; -} +import { IScoreInfo } from '../IScoreInfo'; +import { ScoreRank } from '../Enums/ScoreRank'; +import { ModBitwise } from '../../Mods'; /** * Calculates rank of a score. * @param scoreInfo Score information. * @returns Calculated score rank. */ -export function calculateRank(scoreInfo: IScoreInfo): keyof typeof ScoreRank { +export function calculate(scoreInfo: IScoreInfo): keyof typeof ScoreRank { if (!scoreInfo.passed) return 'F'; switch (scoreInfo.rulesetId) { diff --git a/src/Scoring/Utils/index.ts b/src/Scoring/Utils/index.ts new file mode 100644 index 0000000..35c4e65 --- /dev/null +++ b/src/Scoring/Utils/index.ts @@ -0,0 +1,2 @@ +export * as Accuracy from './Accuracy'; +export * as Rank from './Rank'; diff --git a/src/Scoring/index.ts b/src/Scoring/index.ts index ae41c42..47aae9d 100644 --- a/src/Scoring/index.ts +++ b/src/Scoring/index.ts @@ -1,13 +1,13 @@ export * from './DifficultyRange'; export * from './Enums/HitResult'; export * from './Enums/ScoreRank'; -export * from './HitWindows'; export * from './HitStatistics'; +export * from './HitWindows'; +export * from './IJsonableHitStatistics'; export * from './IJsonableScoreInfo'; export * from './IScore'; export * from './IScoreInfo'; export * from './LegacyScoreExtensions'; export * from './Score'; export * from './ScoreInfo'; - -export * as ScoreUtils from './ScoreUtils'; +export * from './Utils'; From 6272369c5e38c596fe0147acb396ff04052c4134 Mon Sep 17 00:00:00 2001 From: Alexander Date: Mon, 13 Mar 2023 21:33:12 +0200 Subject: [PATCH 10/34] Bump typescript eslint plugins --- package-lock.json | 888 +++++++++++++++++++++++++++------------------- package.json | 4 +- 2 files changed, 521 insertions(+), 371 deletions(-) diff --git a/package-lock.json b/package-lock.json index e919b6a..3c289c8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -13,8 +13,8 @@ "@rollup/plugin-typescript": "^8.2.1", "@types/jest": "^26.0.22", "@types/node": "^14.14.35", - "@typescript-eslint/eslint-plugin": "^4.20.0", - "@typescript-eslint/parser": "^4.21.0", + "@typescript-eslint/eslint-plugin": "^5.55.0", + "@typescript-eslint/parser": "^5.55.0", "eslint": "^7.23.0", "eslint-plugin-import": "^2.22.1", "jest": "^26.6.3", @@ -80,13 +80,10 @@ } }, "node_modules/@babel/core/node_modules/json5": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz", - "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==", + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", "dev": true, - "dependencies": { - "minimist": "^1.2.5" - }, "bin": { "json5": "lib/cli.js" }, @@ -594,6 +591,39 @@ "node": ">=0.1.95" } }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.2.0.tgz", + "integrity": "sha512-gB8T4H4DEfX2IV9zGDJPOBgP1e/DbfCPDTtEqUMckpvzS1OYtva8JdFYBqMwYk7xAQ429WGF/UPqn8uQ//h2vQ==", + "dev": true, + "dependencies": { + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", + "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.4.0.tgz", + "integrity": "sha512-A9983Q0LnDGdLPjxyXQ00sbV+K+O+ko2Dr+CZigbHWtX9pNfxlaBkMR8X1CztI73zuEyEBXTVjx7CE+/VSwDiQ==", + "dev": true, + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, "node_modules/@eslint/eslintrc": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.0.tgz", @@ -970,12 +1000,12 @@ } }, "node_modules/@nodelib/fs.scandir": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.4.tgz", - "integrity": "sha512-33g3pMJk3bg5nXbL/+CY6I2eJDzZAni49PfJnL5fghPTggPvBd/pFNSgJsdAgWptuFu7qq/ERvOYFlhvsLTCKA==", + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", "dev": true, "dependencies": { - "@nodelib/fs.stat": "2.0.4", + "@nodelib/fs.stat": "2.0.5", "run-parallel": "^1.1.9" }, "engines": { @@ -983,21 +1013,21 @@ } }, "node_modules/@nodelib/fs.stat": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.4.tgz", - "integrity": "sha512-IYlHJA0clt2+Vg7bccq+TzRdJvv19c2INqBSsoOLp1je7xjtr7J26+WXR72MCdvU9q1qTzIWDfhMf+DRvQJK4Q==", + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", "dev": true, "engines": { "node": ">= 8" } }, "node_modules/@nodelib/fs.walk": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.6.tgz", - "integrity": "sha512-8Broas6vTtW4GIXTAHDoE32hnN2M5ykgCpWGbuXHQ15vEMqr23pB76e/GZcYsZCHALv50ktd24qhEyKr6wBtow==", + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", "dev": true, "dependencies": { - "@nodelib/fs.scandir": "2.1.4", + "@nodelib/fs.scandir": "2.1.5", "fastq": "^1.6.0" }, "engines": { @@ -1175,9 +1205,9 @@ } }, "node_modules/@types/json-schema": { - "version": "7.0.7", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.7.tgz", - "integrity": "sha512-cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA==", + "version": "7.0.11", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", + "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", "dev": true }, "node_modules/@types/json5": { @@ -1204,6 +1234,12 @@ "integrity": "sha512-PijRCG/K3s3w1We6ynUKdxEc5AcuuH3NBmMDP8uvKVp6X43UY7NQlTzczakXP3DJR0F4dfNQIGjU2cUeRYs2AA==", "dev": true }, + "node_modules/@types/semver": { + "version": "7.3.13", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz", + "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==", + "dev": true + }, "node_modules/@types/stack-utils": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.0.tgz", @@ -1226,30 +1262,32 @@ "dev": true }, "node_modules/@typescript-eslint/eslint-plugin": { - "version": "4.22.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.22.0.tgz", - "integrity": "sha512-U8SP9VOs275iDXaL08Ln1Fa/wLXfj5aTr/1c0t0j6CdbOnxh+TruXu1p4I0NAvdPBQgoPjHsgKn28mOi0FzfoA==", + "version": "5.55.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.55.0.tgz", + "integrity": "sha512-IZGc50rtbjk+xp5YQoJvmMPmJEYoC53SiKPXyqWfv15XoD2Y5Kju6zN0DwlmaGJp1Iw33JsWJcQ7nw0lGCGjVg==", "dev": true, "dependencies": { - "@typescript-eslint/experimental-utils": "4.22.0", - "@typescript-eslint/scope-manager": "4.22.0", - "debug": "^4.1.1", - "functional-red-black-tree": "^1.0.1", - "lodash": "^4.17.15", - "regexpp": "^3.0.0", - "semver": "^7.3.2", - "tsutils": "^3.17.1" + "@eslint-community/regexpp": "^4.4.0", + "@typescript-eslint/scope-manager": "5.55.0", + "@typescript-eslint/type-utils": "5.55.0", + "@typescript-eslint/utils": "5.55.0", + "debug": "^4.3.4", + "grapheme-splitter": "^1.0.4", + "ignore": "^5.2.0", + "natural-compare-lite": "^1.4.0", + "semver": "^7.3.7", + "tsutils": "^3.21.0" }, "engines": { - "node": "^10.12.0 || >=12.0.0" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { - "@typescript-eslint/parser": "^4.0.0", - "eslint": "^5.0.0 || ^6.0.0 || ^7.0.0" + "@typescript-eslint/parser": "^5.0.0", + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" }, "peerDependenciesMeta": { "typescript": { @@ -1257,81 +1295,84 @@ } } }, - "node_modules/@typescript-eslint/experimental-utils": { - "version": "4.22.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.22.0.tgz", - "integrity": "sha512-xJXHHl6TuAxB5AWiVrGhvbGL8/hbiCQ8FiWwObO3r0fnvBdrbWEDy1hlvGQOAWc6qsCWuWMKdVWlLAEMpxnddg==", + "node_modules/@typescript-eslint/parser": { + "version": "5.55.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.55.0.tgz", + "integrity": "sha512-ppvmeF7hvdhUUZWSd2EEWfzcFkjJzgNQzVST22nzg958CR+sphy8A6K7LXQZd6V75m1VKjp+J4g/PCEfSCmzhw==", "dev": true, "dependencies": { - "@types/json-schema": "^7.0.3", - "@typescript-eslint/scope-manager": "4.22.0", - "@typescript-eslint/types": "4.22.0", - "@typescript-eslint/typescript-estree": "4.22.0", - "eslint-scope": "^5.0.0", - "eslint-utils": "^2.0.0" + "@typescript-eslint/scope-manager": "5.55.0", + "@typescript-eslint/types": "5.55.0", + "@typescript-eslint/typescript-estree": "5.55.0", + "debug": "^4.3.4" }, "engines": { - "node": "^10.12.0 || >=12.0.0" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { - "eslint": "*" + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/@typescript-eslint/parser": { - "version": "4.22.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.22.0.tgz", - "integrity": "sha512-z/bGdBJJZJN76nvAY9DkJANYgK3nlRstRRi74WHm3jjgf2I8AglrSY+6l7ogxOmn55YJ6oKZCLLy+6PW70z15Q==", + "node_modules/@typescript-eslint/scope-manager": { + "version": "5.55.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.55.0.tgz", + "integrity": "sha512-OK+cIO1ZGhJYNCL//a3ROpsd83psf4dUJ4j7pdNVzd5DmIk+ffkuUIX2vcZQbEW/IR41DYsfJTB19tpCboxQuw==", "dev": true, "dependencies": { - "@typescript-eslint/scope-manager": "4.22.0", - "@typescript-eslint/types": "4.22.0", - "@typescript-eslint/typescript-estree": "4.22.0", - "debug": "^4.1.1" + "@typescript-eslint/types": "5.55.0", + "@typescript-eslint/visitor-keys": "5.55.0" }, "engines": { - "node": "^10.12.0 || >=12.0.0" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^5.0.0 || ^6.0.0 || ^7.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } } }, - "node_modules/@typescript-eslint/scope-manager": { - "version": "4.22.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.22.0.tgz", - "integrity": "sha512-OcCO7LTdk6ukawUM40wo61WdeoA7NM/zaoq1/2cs13M7GyiF+T4rxuA4xM+6LeHWjWbss7hkGXjFDRcKD4O04Q==", + "node_modules/@typescript-eslint/type-utils": { + "version": "5.55.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.55.0.tgz", + "integrity": "sha512-ObqxBgHIXj8rBNm0yh8oORFrICcJuZPZTqtAFh0oZQyr5DnAHZWfyw54RwpEEH+fD8suZaI0YxvWu5tYE/WswA==", "dev": true, "dependencies": { - "@typescript-eslint/types": "4.22.0", - "@typescript-eslint/visitor-keys": "4.22.0" + "@typescript-eslint/typescript-estree": "5.55.0", + "@typescript-eslint/utils": "5.55.0", + "debug": "^4.3.4", + "tsutils": "^3.21.0" }, "engines": { - "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, "node_modules/@typescript-eslint/types": { - "version": "4.22.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.22.0.tgz", - "integrity": "sha512-sW/BiXmmyMqDPO2kpOhSy2Py5w6KvRRsKZnV0c4+0nr4GIcedJwXAq+RHNK4lLVEZAJYFltnnk1tJSlbeS9lYA==", + "version": "5.55.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.55.0.tgz", + "integrity": "sha512-M4iRh4AG1ChrOL6Y+mETEKGeDnT7Sparn6fhZ5LtVJF1909D5O4uqK+C5NPbLmpfZ0XIIxCdwzKiijpZUOvOug==", "dev": true, "engines": { - "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "type": "opencollective", @@ -1339,21 +1380,21 @@ } }, "node_modules/@typescript-eslint/typescript-estree": { - "version": "4.22.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.22.0.tgz", - "integrity": "sha512-TkIFeu5JEeSs5ze/4NID+PIcVjgoU3cUQUIZnH3Sb1cEn1lBo7StSV5bwPuJQuoxKXlzAObjYTilOEKRuhR5yg==", + "version": "5.55.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.55.0.tgz", + "integrity": "sha512-I7X4A9ovA8gdpWMpr7b1BN9eEbvlEtWhQvpxp/yogt48fy9Lj3iE3ild/1H3jKBBIYj5YYJmS2+9ystVhC7eaQ==", "dev": true, "dependencies": { - "@typescript-eslint/types": "4.22.0", - "@typescript-eslint/visitor-keys": "4.22.0", - "debug": "^4.1.1", - "globby": "^11.0.1", - "is-glob": "^4.0.1", - "semver": "^7.3.2", - "tsutils": "^3.17.1" + "@typescript-eslint/types": "5.55.0", + "@typescript-eslint/visitor-keys": "5.55.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" }, "engines": { - "node": "^10.12.0 || >=12.0.0" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "type": "opencollective", @@ -1365,23 +1406,58 @@ } } }, + "node_modules/@typescript-eslint/utils": { + "version": "5.55.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.55.0.tgz", + "integrity": "sha512-FkW+i2pQKcpDC3AY6DU54yl8Lfl14FVGYDgBTyGKB75cCwV3KpkpTMFi9d9j2WAJ4271LR2HeC5SEWF/CZmmfw==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@types/json-schema": "^7.0.9", + "@types/semver": "^7.3.12", + "@typescript-eslint/scope-manager": "5.55.0", + "@typescript-eslint/types": "5.55.0", + "@typescript-eslint/typescript-estree": "5.55.0", + "eslint-scope": "^5.1.1", + "semver": "^7.3.7" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, "node_modules/@typescript-eslint/visitor-keys": { - "version": "4.22.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.22.0.tgz", - "integrity": "sha512-nnMu4F+s4o0sll6cBSsTeVsT4cwxB7zECK3dFxzEjPBii9xLpq4yqqsy/FU5zMfan6G60DKZSCXAa3sHJZrcYw==", + "version": "5.55.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.55.0.tgz", + "integrity": "sha512-q2dlHHwWgirKh1D3acnuApXG+VNXpEY5/AwRxDVuEQpxWaB0jCDe0jFMVMALJ3ebSfuOVE8/rMS+9ZOYGg1GWw==", "dev": true, "dependencies": { - "@typescript-eslint/types": "4.22.0", - "eslint-visitor-keys": "^2.0.0" + "@typescript-eslint/types": "5.55.0", + "eslint-visitor-keys": "^3.3.0" }, "engines": { - "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" } }, + "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", + "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, "node_modules/abab": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz", @@ -2246,9 +2322,9 @@ } }, "node_modules/debug": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", - "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "dev": true, "dependencies": { "ms": "2.1.2" @@ -2278,9 +2354,9 @@ "dev": true }, "node_modules/decode-uri-component": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", - "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", + "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", "dev": true, "engines": { "node": ">=0.10" @@ -3268,20 +3344,19 @@ "dev": true }, "node_modules/fast-glob": { - "version": "3.2.5", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.5.tgz", - "integrity": "sha512-2DtFcgT68wiTTiwZ2hNdJfcHNke9XOfnwmBRWXhmeKM8rF0TGwmC/Qto3S7RoZKp5cilZbxzO5iTNTQsJ+EeDg==", + "version": "3.2.12", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", + "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", "dev": true, "dependencies": { "@nodelib/fs.stat": "^2.0.2", "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.0", + "glob-parent": "^5.1.2", "merge2": "^1.3.0", - "micromatch": "^4.0.2", - "picomatch": "^2.2.1" + "micromatch": "^4.0.4" }, "engines": { - "node": ">=8" + "node": ">=8.6.0" } }, "node_modules/fast-json-stable-stringify": { @@ -3297,9 +3372,9 @@ "dev": true }, "node_modules/fastq": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.11.0.tgz", - "integrity": "sha512-7Eczs8gIPDrVzT+EksYBcupqMyxSHXXrHOLRRxU2/DicV8789MRBRR8+Hc2uWzUupOs4YS4JzBmBxjjCVBxD/g==", + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", "dev": true, "dependencies": { "reusify": "^1.0.4" @@ -3576,16 +3651,16 @@ } }, "node_modules/globby": { - "version": "11.0.3", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.3.tgz", - "integrity": "sha512-ffdmosjA807y7+lA1NM0jELARVmYul/715xiILEjo3hBLPTcirgQNnXECn5g3mtR8TOLCVbkfua1Hpen25/Xcg==", + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", "dev": true, "dependencies": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", - "fast-glob": "^3.1.1", - "ignore": "^5.1.4", - "merge2": "^1.3.0", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", "slash": "^3.0.0" }, "engines": { @@ -3601,6 +3676,12 @@ "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==", "dev": true }, + "node_modules/grapheme-splitter": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", + "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", + "dev": true + }, "node_modules/growly": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz", @@ -3797,9 +3878,9 @@ } }, "node_modules/ignore": { - "version": "5.1.8", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz", - "integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==", + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", "dev": true, "engines": { "node": ">= 4" @@ -4152,9 +4233,9 @@ } }, "node_modules/is-glob": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", - "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dev": true, "dependencies": { "is-extglob": "^2.1.1" @@ -5250,9 +5331,9 @@ "dev": true }, "node_modules/json-schema": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", - "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=", + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", "dev": true }, "node_modules/json-schema-traverse": { @@ -5274,9 +5355,9 @@ "dev": true }, "node_modules/json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", "dev": true, "dependencies": { "minimist": "^1.2.0" @@ -5286,24 +5367,24 @@ } }, "node_modules/jsonc-parser": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.0.0.tgz", - "integrity": "sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", + "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==", "dev": true }, "node_modules/jsprim": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", - "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", + "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", "dev": true, - "engines": [ - "node >=0.6.0" - ], "dependencies": { "assert-plus": "1.0.0", "extsprintf": "1.3.0", - "json-schema": "0.2.3", + "json-schema": "0.4.0", "verror": "1.10.0" + }, + "engines": { + "node": ">=0.6.0" } }, "node_modules/kind-of": { @@ -5486,12 +5567,12 @@ } }, "node_modules/marked": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/marked/-/marked-3.0.7.tgz", - "integrity": "sha512-ctKqbnLuNbsHbI26cfMyOlKgXGfl1orOv1AvWWDX7AkgfMOwCWvmuYc+mVLeWhQ9W6hdWVBynOs96VkcscKo0Q==", + "version": "4.2.12", + "resolved": "https://registry.npmjs.org/marked/-/marked-4.2.12.tgz", + "integrity": "sha512-yr8hSKa3Fv4D3jdZmtMMPghgVt6TWbk86WQaWhDloQjRSQhMMYCAro7jP7VDJrjjdV8pxVxMssXS8B8Y5DZ5aw==", "dev": true, "bin": { - "marked": "bin/marked" + "marked": "bin/marked.js" }, "engines": { "node": ">= 12" @@ -5556,9 +5637,9 @@ } }, "node_modules/minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "dependencies": { "brace-expansion": "^1.1.7" @@ -5568,10 +5649,13 @@ } }, "node_modules/minimist": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", - "dev": true + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, "node_modules/mixin-deep": { "version": "1.3.2", @@ -5632,6 +5716,12 @@ "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", "dev": true }, + "node_modules/natural-compare-lite": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", + "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", + "dev": true + }, "node_modules/nice-try": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", @@ -5880,30 +5970,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/onigasm": { - "version": "2.2.5", - "resolved": "https://registry.npmjs.org/onigasm/-/onigasm-2.2.5.tgz", - "integrity": "sha512-F+th54mPc0l1lp1ZcFMyL/jTs2Tlq4SqIHKIXGZOR/VkHkF9A7Fr5rRr5+ZG/lWeRsyrClLYRq7s/yFQ/XhWCA==", - "dev": true, - "dependencies": { - "lru-cache": "^5.1.1" - } - }, - "node_modules/onigasm/node_modules/lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "dev": true, - "dependencies": { - "yallist": "^3.0.2" - } - }, - "node_modules/onigasm/node_modules/yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", - "dev": true - }, "node_modules/optionator": { "version": "0.9.1", "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", @@ -6194,9 +6260,9 @@ } }, "node_modules/qs": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", - "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==", + "version": "6.5.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", + "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==", "dev": true, "engines": { "node": ">=0.6" @@ -6887,9 +6953,9 @@ } }, "node_modules/semver": { - "version": "7.3.5", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", - "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", "dev": true, "dependencies": { "lru-cache": "^6.0.0" @@ -6963,13 +7029,13 @@ "optional": true }, "node_modules/shiki": { - "version": "0.9.12", - "resolved": "https://registry.npmjs.org/shiki/-/shiki-0.9.12.tgz", - "integrity": "sha512-VXcROdldv0/Qu0w2XvzU4IrvTeBNs/Kj/FCmtcEXGz7Tic/veQzliJj6tEiAgoKianhQstpYmbPDStHU5Opqcw==", + "version": "0.10.1", + "resolved": "https://registry.npmjs.org/shiki/-/shiki-0.10.1.tgz", + "integrity": "sha512-VsY7QJVzU51j5o1+DguUd+6vmCmZ5v/6gYu4vyYAhzjuNQU6P/vmSy4uQaOhvje031qQMiW0d2BwgMH52vqMng==", "dev": true, "dependencies": { "jsonc-parser": "^3.0.0", - "onigasm": "^2.2.5", + "vscode-oniguruma": "^1.6.1", "vscode-textmate": "5.2.0" } }, @@ -7744,16 +7810,16 @@ } }, "node_modules/typedoc": { - "version": "0.22.6", - "resolved": "https://registry.npmjs.org/typedoc/-/typedoc-0.22.6.tgz", - "integrity": "sha512-ePbJqOaz0GNkU2ehRwFwBpLD4Gp6m7jbJfHysXmDdjVKc1g8DFJ83r/LOZ9TZrkC661vgpoIY3FjSPEtUilHNA==", + "version": "0.22.18", + "resolved": "https://registry.npmjs.org/typedoc/-/typedoc-0.22.18.tgz", + "integrity": "sha512-NK9RlLhRUGMvc6Rw5USEYgT4DVAUFk7IF7Q6MYfpJ88KnTZP7EneEa4RcP+tX1auAcz7QT1Iy0bUSZBYYHdoyA==", "dev": true, "dependencies": { - "glob": "^7.2.0", + "glob": "^8.0.3", "lunr": "^2.3.9", - "marked": "^3.0.4", - "minimatch": "^3.0.4", - "shiki": "^0.9.11" + "marked": "^4.0.16", + "minimatch": "^5.1.0", + "shiki": "^0.10.1" }, "bin": { "typedoc": "bin/typedoc" @@ -7762,29 +7828,49 @@ "node": ">= 12.10.0" }, "peerDependencies": { - "typescript": "4.0.x || 4.1.x || 4.2.x || 4.3.x || 4.4.x" + "typescript": "4.0.x || 4.1.x || 4.2.x || 4.3.x || 4.4.x || 4.5.x || 4.6.x || 4.7.x" + } + }, + "node_modules/typedoc/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" } }, "node_modules/typedoc/node_modules/glob": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", - "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", "dev": true, "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "minimatch": "^5.0.1", + "once": "^1.3.0" }, "engines": { - "node": "*" + "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, + "node_modules/typedoc/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/typescript": { "version": "4.2.4", "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.2.4.tgz", @@ -7973,6 +8059,12 @@ "extsprintf": "^1.2.0" } }, + "node_modules/vscode-oniguruma": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/vscode-oniguruma/-/vscode-oniguruma-1.7.0.tgz", + "integrity": "sha512-L9WMGRfrjOhgHSdOYgCt/yRMsXzLDJSL7BPrOZt73gU0iWO4mpqzqQzOz5srxqTvMBaR0XZTSrVWo4j55Rc6cA==", + "dev": true + }, "node_modules/vscode-textmate": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/vscode-textmate/-/vscode-textmate-5.2.0.tgz", @@ -8337,13 +8429,10 @@ } }, "json5": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz", - "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==", - "dev": true, - "requires": { - "minimist": "^1.2.5" - } + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true }, "semver": { "version": "6.3.0", @@ -8779,6 +8868,29 @@ "minimist": "^1.2.0" } }, + "@eslint-community/eslint-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.2.0.tgz", + "integrity": "sha512-gB8T4H4DEfX2IV9zGDJPOBgP1e/DbfCPDTtEqUMckpvzS1OYtva8JdFYBqMwYk7xAQ429WGF/UPqn8uQ//h2vQ==", + "dev": true, + "requires": { + "eslint-visitor-keys": "^3.3.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", + "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", + "dev": true + } + } + }, + "@eslint-community/regexpp": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.4.0.tgz", + "integrity": "sha512-A9983Q0LnDGdLPjxyXQ00sbV+K+O+ko2Dr+CZigbHWtX9pNfxlaBkMR8X1CztI73zuEyEBXTVjx7CE+/VSwDiQ==", + "dev": true + }, "@eslint/eslintrc": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.0.tgz", @@ -9082,28 +9194,28 @@ } }, "@nodelib/fs.scandir": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.4.tgz", - "integrity": "sha512-33g3pMJk3bg5nXbL/+CY6I2eJDzZAni49PfJnL5fghPTggPvBd/pFNSgJsdAgWptuFu7qq/ERvOYFlhvsLTCKA==", + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", "dev": true, "requires": { - "@nodelib/fs.stat": "2.0.4", + "@nodelib/fs.stat": "2.0.5", "run-parallel": "^1.1.9" } }, "@nodelib/fs.stat": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.4.tgz", - "integrity": "sha512-IYlHJA0clt2+Vg7bccq+TzRdJvv19c2INqBSsoOLp1je7xjtr7J26+WXR72MCdvU9q1qTzIWDfhMf+DRvQJK4Q==", + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", "dev": true }, "@nodelib/fs.walk": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.6.tgz", - "integrity": "sha512-8Broas6vTtW4GIXTAHDoE32hnN2M5ykgCpWGbuXHQ15vEMqr23pB76e/GZcYsZCHALv50ktd24qhEyKr6wBtow==", + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", "dev": true, "requires": { - "@nodelib/fs.scandir": "2.1.4", + "@nodelib/fs.scandir": "2.1.5", "fastq": "^1.6.0" } }, @@ -9260,9 +9372,9 @@ } }, "@types/json-schema": { - "version": "7.0.7", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.7.tgz", - "integrity": "sha512-cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA==", + "version": "7.0.11", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", + "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", "dev": true }, "@types/json5": { @@ -9289,6 +9401,12 @@ "integrity": "sha512-PijRCG/K3s3w1We6ynUKdxEc5AcuuH3NBmMDP8uvKVp6X43UY7NQlTzczakXP3DJR0F4dfNQIGjU2cUeRYs2AA==", "dev": true }, + "@types/semver": { + "version": "7.3.13", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz", + "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==", + "dev": true + }, "@types/stack-utils": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.0.tgz", @@ -9311,86 +9429,110 @@ "dev": true }, "@typescript-eslint/eslint-plugin": { - "version": "4.22.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.22.0.tgz", - "integrity": "sha512-U8SP9VOs275iDXaL08Ln1Fa/wLXfj5aTr/1c0t0j6CdbOnxh+TruXu1p4I0NAvdPBQgoPjHsgKn28mOi0FzfoA==", + "version": "5.55.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.55.0.tgz", + "integrity": "sha512-IZGc50rtbjk+xp5YQoJvmMPmJEYoC53SiKPXyqWfv15XoD2Y5Kju6zN0DwlmaGJp1Iw33JsWJcQ7nw0lGCGjVg==", "dev": true, "requires": { - "@typescript-eslint/experimental-utils": "4.22.0", - "@typescript-eslint/scope-manager": "4.22.0", - "debug": "^4.1.1", - "functional-red-black-tree": "^1.0.1", - "lodash": "^4.17.15", - "regexpp": "^3.0.0", - "semver": "^7.3.2", - "tsutils": "^3.17.1" + "@eslint-community/regexpp": "^4.4.0", + "@typescript-eslint/scope-manager": "5.55.0", + "@typescript-eslint/type-utils": "5.55.0", + "@typescript-eslint/utils": "5.55.0", + "debug": "^4.3.4", + "grapheme-splitter": "^1.0.4", + "ignore": "^5.2.0", + "natural-compare-lite": "^1.4.0", + "semver": "^7.3.7", + "tsutils": "^3.21.0" } }, - "@typescript-eslint/experimental-utils": { - "version": "4.22.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.22.0.tgz", - "integrity": "sha512-xJXHHl6TuAxB5AWiVrGhvbGL8/hbiCQ8FiWwObO3r0fnvBdrbWEDy1hlvGQOAWc6qsCWuWMKdVWlLAEMpxnddg==", + "@typescript-eslint/parser": { + "version": "5.55.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.55.0.tgz", + "integrity": "sha512-ppvmeF7hvdhUUZWSd2EEWfzcFkjJzgNQzVST22nzg958CR+sphy8A6K7LXQZd6V75m1VKjp+J4g/PCEfSCmzhw==", "dev": true, "requires": { - "@types/json-schema": "^7.0.3", - "@typescript-eslint/scope-manager": "4.22.0", - "@typescript-eslint/types": "4.22.0", - "@typescript-eslint/typescript-estree": "4.22.0", - "eslint-scope": "^5.0.0", - "eslint-utils": "^2.0.0" + "@typescript-eslint/scope-manager": "5.55.0", + "@typescript-eslint/types": "5.55.0", + "@typescript-eslint/typescript-estree": "5.55.0", + "debug": "^4.3.4" } }, - "@typescript-eslint/parser": { - "version": "4.22.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.22.0.tgz", - "integrity": "sha512-z/bGdBJJZJN76nvAY9DkJANYgK3nlRstRRi74WHm3jjgf2I8AglrSY+6l7ogxOmn55YJ6oKZCLLy+6PW70z15Q==", + "@typescript-eslint/scope-manager": { + "version": "5.55.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.55.0.tgz", + "integrity": "sha512-OK+cIO1ZGhJYNCL//a3ROpsd83psf4dUJ4j7pdNVzd5DmIk+ffkuUIX2vcZQbEW/IR41DYsfJTB19tpCboxQuw==", "dev": true, "requires": { - "@typescript-eslint/scope-manager": "4.22.0", - "@typescript-eslint/types": "4.22.0", - "@typescript-eslint/typescript-estree": "4.22.0", - "debug": "^4.1.1" + "@typescript-eslint/types": "5.55.0", + "@typescript-eslint/visitor-keys": "5.55.0" } }, - "@typescript-eslint/scope-manager": { - "version": "4.22.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.22.0.tgz", - "integrity": "sha512-OcCO7LTdk6ukawUM40wo61WdeoA7NM/zaoq1/2cs13M7GyiF+T4rxuA4xM+6LeHWjWbss7hkGXjFDRcKD4O04Q==", + "@typescript-eslint/type-utils": { + "version": "5.55.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.55.0.tgz", + "integrity": "sha512-ObqxBgHIXj8rBNm0yh8oORFrICcJuZPZTqtAFh0oZQyr5DnAHZWfyw54RwpEEH+fD8suZaI0YxvWu5tYE/WswA==", "dev": true, "requires": { - "@typescript-eslint/types": "4.22.0", - "@typescript-eslint/visitor-keys": "4.22.0" + "@typescript-eslint/typescript-estree": "5.55.0", + "@typescript-eslint/utils": "5.55.0", + "debug": "^4.3.4", + "tsutils": "^3.21.0" } }, "@typescript-eslint/types": { - "version": "4.22.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.22.0.tgz", - "integrity": "sha512-sW/BiXmmyMqDPO2kpOhSy2Py5w6KvRRsKZnV0c4+0nr4GIcedJwXAq+RHNK4lLVEZAJYFltnnk1tJSlbeS9lYA==", + "version": "5.55.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.55.0.tgz", + "integrity": "sha512-M4iRh4AG1ChrOL6Y+mETEKGeDnT7Sparn6fhZ5LtVJF1909D5O4uqK+C5NPbLmpfZ0XIIxCdwzKiijpZUOvOug==", "dev": true }, "@typescript-eslint/typescript-estree": { - "version": "4.22.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.22.0.tgz", - "integrity": "sha512-TkIFeu5JEeSs5ze/4NID+PIcVjgoU3cUQUIZnH3Sb1cEn1lBo7StSV5bwPuJQuoxKXlzAObjYTilOEKRuhR5yg==", + "version": "5.55.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.55.0.tgz", + "integrity": "sha512-I7X4A9ovA8gdpWMpr7b1BN9eEbvlEtWhQvpxp/yogt48fy9Lj3iE3ild/1H3jKBBIYj5YYJmS2+9ystVhC7eaQ==", "dev": true, "requires": { - "@typescript-eslint/types": "4.22.0", - "@typescript-eslint/visitor-keys": "4.22.0", - "debug": "^4.1.1", - "globby": "^11.0.1", - "is-glob": "^4.0.1", - "semver": "^7.3.2", - "tsutils": "^3.17.1" + "@typescript-eslint/types": "5.55.0", + "@typescript-eslint/visitor-keys": "5.55.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + } + }, + "@typescript-eslint/utils": { + "version": "5.55.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.55.0.tgz", + "integrity": "sha512-FkW+i2pQKcpDC3AY6DU54yl8Lfl14FVGYDgBTyGKB75cCwV3KpkpTMFi9d9j2WAJ4271LR2HeC5SEWF/CZmmfw==", + "dev": true, + "requires": { + "@eslint-community/eslint-utils": "^4.2.0", + "@types/json-schema": "^7.0.9", + "@types/semver": "^7.3.12", + "@typescript-eslint/scope-manager": "5.55.0", + "@typescript-eslint/types": "5.55.0", + "@typescript-eslint/typescript-estree": "5.55.0", + "eslint-scope": "^5.1.1", + "semver": "^7.3.7" } }, "@typescript-eslint/visitor-keys": { - "version": "4.22.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.22.0.tgz", - "integrity": "sha512-nnMu4F+s4o0sll6cBSsTeVsT4cwxB7zECK3dFxzEjPBii9xLpq4yqqsy/FU5zMfan6G60DKZSCXAa3sHJZrcYw==", + "version": "5.55.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.55.0.tgz", + "integrity": "sha512-q2dlHHwWgirKh1D3acnuApXG+VNXpEY5/AwRxDVuEQpxWaB0jCDe0jFMVMALJ3ebSfuOVE8/rMS+9ZOYGg1GWw==", "dev": true, "requires": { - "@typescript-eslint/types": "4.22.0", - "eslint-visitor-keys": "^2.0.0" + "@typescript-eslint/types": "5.55.0", + "eslint-visitor-keys": "^3.3.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", + "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", + "dev": true + } } }, "abab": { @@ -10064,9 +10206,9 @@ } }, "debug": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", - "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "dev": true, "requires": { "ms": "2.1.2" @@ -10085,9 +10227,9 @@ "dev": true }, "decode-uri-component": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", - "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", + "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", "dev": true }, "deep-is": { @@ -10879,17 +11021,16 @@ "dev": true }, "fast-glob": { - "version": "3.2.5", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.5.tgz", - "integrity": "sha512-2DtFcgT68wiTTiwZ2hNdJfcHNke9XOfnwmBRWXhmeKM8rF0TGwmC/Qto3S7RoZKp5cilZbxzO5iTNTQsJ+EeDg==", + "version": "3.2.12", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", + "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", "dev": true, "requires": { "@nodelib/fs.stat": "^2.0.2", "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.0", + "glob-parent": "^5.1.2", "merge2": "^1.3.0", - "micromatch": "^4.0.2", - "picomatch": "^2.2.1" + "micromatch": "^4.0.4" } }, "fast-json-stable-stringify": { @@ -10905,9 +11046,9 @@ "dev": true }, "fastq": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.11.0.tgz", - "integrity": "sha512-7Eczs8gIPDrVzT+EksYBcupqMyxSHXXrHOLRRxU2/DicV8789MRBRR8+Hc2uWzUupOs4YS4JzBmBxjjCVBxD/g==", + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", "dev": true, "requires": { "reusify": "^1.0.4" @@ -11116,16 +11257,16 @@ } }, "globby": { - "version": "11.0.3", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.3.tgz", - "integrity": "sha512-ffdmosjA807y7+lA1NM0jELARVmYul/715xiILEjo3hBLPTcirgQNnXECn5g3mtR8TOLCVbkfua1Hpen25/Xcg==", + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", "dev": true, "requires": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", - "fast-glob": "^3.1.1", - "ignore": "^5.1.4", - "merge2": "^1.3.0", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", "slash": "^3.0.0" } }, @@ -11135,6 +11276,12 @@ "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==", "dev": true }, + "grapheme-splitter": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", + "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", + "dev": true + }, "growly": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz", @@ -11285,9 +11432,9 @@ } }, "ignore": { - "version": "5.1.8", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz", - "integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==", + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", "dev": true }, "import-fresh": { @@ -11540,9 +11687,9 @@ "dev": true }, "is-glob": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", - "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dev": true, "requires": { "is-extglob": "^2.1.1" @@ -12383,9 +12530,9 @@ "dev": true }, "json-schema": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", - "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=", + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", "dev": true }, "json-schema-traverse": { @@ -12407,29 +12554,29 @@ "dev": true }, "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", "dev": true, "requires": { "minimist": "^1.2.0" } }, "jsonc-parser": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.0.0.tgz", - "integrity": "sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", + "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==", "dev": true }, "jsprim": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", - "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", + "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", "dev": true, "requires": { "assert-plus": "1.0.0", "extsprintf": "1.3.0", - "json-schema": "0.2.3", + "json-schema": "0.4.0", "verror": "1.10.0" } }, @@ -12579,9 +12726,9 @@ } }, "marked": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/marked/-/marked-3.0.7.tgz", - "integrity": "sha512-ctKqbnLuNbsHbI26cfMyOlKgXGfl1orOv1AvWWDX7AkgfMOwCWvmuYc+mVLeWhQ9W6hdWVBynOs96VkcscKo0Q==", + "version": "4.2.12", + "resolved": "https://registry.npmjs.org/marked/-/marked-4.2.12.tgz", + "integrity": "sha512-yr8hSKa3Fv4D3jdZmtMMPghgVt6TWbk86WQaWhDloQjRSQhMMYCAro7jP7VDJrjjdV8pxVxMssXS8B8Y5DZ5aw==", "dev": true }, "merge-stream": { @@ -12628,18 +12775,18 @@ "dev": true }, "minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "requires": { "brace-expansion": "^1.1.7" } }, "minimist": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", "dev": true }, "mixin-deep": { @@ -12694,6 +12841,12 @@ "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", "dev": true }, + "natural-compare-lite": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", + "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", + "dev": true + }, "nice-try": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", @@ -12891,32 +13044,6 @@ "mimic-fn": "^2.1.0" } }, - "onigasm": { - "version": "2.2.5", - "resolved": "https://registry.npmjs.org/onigasm/-/onigasm-2.2.5.tgz", - "integrity": "sha512-F+th54mPc0l1lp1ZcFMyL/jTs2Tlq4SqIHKIXGZOR/VkHkF9A7Fr5rRr5+ZG/lWeRsyrClLYRq7s/yFQ/XhWCA==", - "dev": true, - "requires": { - "lru-cache": "^5.1.1" - }, - "dependencies": { - "lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "dev": true, - "requires": { - "yallist": "^3.0.2" - } - }, - "yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", - "dev": true - } - } - }, "optionator": { "version": "0.9.1", "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", @@ -13132,9 +13259,9 @@ "dev": true }, "qs": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", - "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==", + "version": "6.5.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", + "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==", "dev": true }, "queue-microtask": { @@ -13643,9 +13770,9 @@ } }, "semver": { - "version": "7.3.5", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", - "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", "dev": true, "requires": { "lru-cache": "^6.0.0" @@ -13703,13 +13830,13 @@ "optional": true }, "shiki": { - "version": "0.9.12", - "resolved": "https://registry.npmjs.org/shiki/-/shiki-0.9.12.tgz", - "integrity": "sha512-VXcROdldv0/Qu0w2XvzU4IrvTeBNs/Kj/FCmtcEXGz7Tic/veQzliJj6tEiAgoKianhQstpYmbPDStHU5Opqcw==", + "version": "0.10.1", + "resolved": "https://registry.npmjs.org/shiki/-/shiki-0.10.1.tgz", + "integrity": "sha512-VsY7QJVzU51j5o1+DguUd+6vmCmZ5v/6gYu4vyYAhzjuNQU6P/vmSy4uQaOhvje031qQMiW0d2BwgMH52vqMng==", "dev": true, "requires": { "jsonc-parser": "^3.0.0", - "onigasm": "^2.2.5", + "vscode-oniguruma": "^1.6.1", "vscode-textmate": "5.2.0" } }, @@ -14334,30 +14461,47 @@ } }, "typedoc": { - "version": "0.22.6", - "resolved": "https://registry.npmjs.org/typedoc/-/typedoc-0.22.6.tgz", - "integrity": "sha512-ePbJqOaz0GNkU2ehRwFwBpLD4Gp6m7jbJfHysXmDdjVKc1g8DFJ83r/LOZ9TZrkC661vgpoIY3FjSPEtUilHNA==", + "version": "0.22.18", + "resolved": "https://registry.npmjs.org/typedoc/-/typedoc-0.22.18.tgz", + "integrity": "sha512-NK9RlLhRUGMvc6Rw5USEYgT4DVAUFk7IF7Q6MYfpJ88KnTZP7EneEa4RcP+tX1auAcz7QT1Iy0bUSZBYYHdoyA==", "dev": true, "requires": { - "glob": "^7.2.0", + "glob": "^8.0.3", "lunr": "^2.3.9", - "marked": "^3.0.4", - "minimatch": "^3.0.4", - "shiki": "^0.9.11" + "marked": "^4.0.16", + "minimatch": "^5.1.0", + "shiki": "^0.10.1" }, "dependencies": { + "brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0" + } + }, "glob": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", - "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", "dev": true, "requires": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "minimatch": "^5.0.1", + "once": "^1.3.0" + } + }, + "minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dev": true, + "requires": { + "brace-expansion": "^2.0.1" } } } @@ -14512,6 +14656,12 @@ "extsprintf": "^1.2.0" } }, + "vscode-oniguruma": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/vscode-oniguruma/-/vscode-oniguruma-1.7.0.tgz", + "integrity": "sha512-L9WMGRfrjOhgHSdOYgCt/yRMsXzLDJSL7BPrOZt73gU0iWO4mpqzqQzOz5srxqTvMBaR0XZTSrVWo4j55Rc6cA==", + "dev": true + }, "vscode-textmate": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/vscode-textmate/-/vscode-textmate-5.2.0.tgz", diff --git a/package.json b/package.json index ac1c0d0..466e2cd 100644 --- a/package.json +++ b/package.json @@ -35,8 +35,8 @@ "@rollup/plugin-typescript": "^8.2.1", "@types/jest": "^26.0.22", "@types/node": "^14.14.35", - "@typescript-eslint/eslint-plugin": "^4.20.0", - "@typescript-eslint/parser": "^4.21.0", + "@typescript-eslint/eslint-plugin": "^5.55.0", + "@typescript-eslint/parser": "^5.55.0", "eslint": "^7.23.0", "eslint-plugin-import": "^2.22.1", "jest": "^26.6.3", From 9cdf5560923a7151704b74b0845cf84628849031 Mon Sep 17 00:00:00 2001 From: Alexander Date: Mon, 13 Mar 2023 21:34:57 +0200 Subject: [PATCH 11/34] Convert dates to timestamps in JSON --- src/Beatmaps/BeatmapInfo.ts | 13 +++++- src/Beatmaps/IBeatmapInfo.ts | 2 +- src/Beatmaps/IJsonableBeatmapInfo.ts | 17 ++++++- src/Scoring/IJsonableScoreInfo.ts | 12 ++++- src/Scoring/ScoreInfo.ts | 67 +++++++++++++++------------- 5 files changed, 76 insertions(+), 35 deletions(-) diff --git a/src/Beatmaps/BeatmapInfo.ts b/src/Beatmaps/BeatmapInfo.ts index 88dd90e..30c268a 100644 --- a/src/Beatmaps/BeatmapInfo.ts +++ b/src/Beatmaps/BeatmapInfo.ts @@ -253,7 +253,7 @@ export class BeatmapInfo implements IBeatmapInfo { } /** - * Converts this beatmap information to JSON. + * Converts this beatmap information to a plain object convertable to JSON. * @returns Beatmap information convertable to JSON. */ toJSON(): IJsonableBeatmapInfo { @@ -272,12 +272,21 @@ export class BeatmapInfo implements IBeatmapInfo { mods: this.mods?.toString() ?? 'NM', rulesetId: this.rulesetId, totalHits: this.totalHits, + deletedAt: this.deletedAt ? this.deletedAt.getTime() / 1000 : null, + updatedAt: this.updatedAt ? this.updatedAt.getTime() / 1000 : null, }; } + /** + * Converts raw JSON beatmap information to an instance of {@link BeatmapInfo}. + * @param json Raw JSON beatmap information. + * @returns Adapted instance of {@link BeatmapInfo} class. + */ static fromJSON(json: IJsonableBeatmapInfo): BeatmapInfo { return new BeatmapInfo({ - ...json as Omit, + ...json as Omit, + deletedAt: json.deletedAt ? new Date(json.deletedAt * 1000) : null, + updatedAt: json.updatedAt ? new Date(json.updatedAt * 1000) : null, rawMods: json.mods, }); } diff --git a/src/Beatmaps/IBeatmapInfo.ts b/src/Beatmaps/IBeatmapInfo.ts index 73f24aa..7350cf3 100644 --- a/src/Beatmaps/IBeatmapInfo.ts +++ b/src/Beatmaps/IBeatmapInfo.ts @@ -177,7 +177,7 @@ export interface IBeatmapInfo { hashMD5: string; /** - * Converts this beatmap information to JSON. + * Converts this beatmap information to a plain object convertable to JSON. * @returns Beatmap information convertable to JSON. */ toJSON(): IJsonableBeatmapInfo; diff --git a/src/Beatmaps/IJsonableBeatmapInfo.ts b/src/Beatmaps/IJsonableBeatmapInfo.ts index 901ff31..509f869 100644 --- a/src/Beatmaps/IJsonableBeatmapInfo.ts +++ b/src/Beatmaps/IJsonableBeatmapInfo.ts @@ -1,6 +1,11 @@ import { IBeatmapInfo } from './IBeatmapInfo'; -export type JsonableBeatmapInfo = Omit; +export type JsonableBeatmapInfo = Omit< +// eslint-disable-next-line @typescript-eslint/indent + IBeatmapInfo, +// eslint-disable-next-line @typescript-eslint/indent + 'ruleset' | 'mods' | 'rawMods' | 'deletedAt' | 'updatedAt' +>; /** * A beatmap information that can be converted to JSON. @@ -10,4 +15,14 @@ export interface IJsonableBeatmapInfo extends JsonableBeatmapInfo { * Stringified mods of the play. */ mods: string; + + /** + * Timestamp of the beatmap deletion. + */ + deletedAt: number | null; + + /** + * Timestamp of the last beatmap update. + */ + updatedAt: number | null; } diff --git a/src/Scoring/IJsonableScoreInfo.ts b/src/Scoring/IJsonableScoreInfo.ts index 3691afe..f5c45b0 100644 --- a/src/Scoring/IJsonableScoreInfo.ts +++ b/src/Scoring/IJsonableScoreInfo.ts @@ -2,7 +2,12 @@ import { IJsonableBeatmapInfo } from '../Beatmaps'; import { IJsonableHitStatistics } from './IJsonableHitStatistics'; import { IScoreInfo } from './IScoreInfo'; -export type JsonableScoreInfo = Omit; +export type JsonableScoreInfo = Omit< +// eslint-disable-next-line @typescript-eslint/indent + IScoreInfo, +// eslint-disable-next-line @typescript-eslint/indent + 'beatmap' | 'ruleset' | 'mods' | 'rawMods' | 'statistics' | 'date' +>; /** * A score information that can be converted to JSON. @@ -22,4 +27,9 @@ export interface IJsonableScoreInfo extends JsonableScoreInfo { * Hit statistics that can be converted to JSON. */ statistics: IJsonableHitStatistics; + + /** + * Timestamp when this play was set. + */ + date: number; } diff --git a/src/Scoring/ScoreInfo.ts b/src/Scoring/ScoreInfo.ts index 7530d7b..1f43eb6 100644 --- a/src/Scoring/ScoreInfo.ts +++ b/src/Scoring/ScoreInfo.ts @@ -164,7 +164,37 @@ export class ScoreInfo extends LegacyScoreExtensions implements IScoreInfo { } /** - * Converts this score information to JSON. + * Creates a deep copy of the score info. + * @returns Cloned score info. + */ + clone(): this { + const ScoreInfo = this.constructor as new (params?: Partial) => this; + + const cloned = new ScoreInfo(); + + Object.assign(cloned, this); + + cloned.statistics = new HitStatistics(this.statistics); + + return cloned; + } + + /** + * @param other Other score info. + * @returns If two scores are equal. + */ + equals(other: IScoreInfo): boolean { + if (!other) return false; + + if (this.id !== 0 && other.id !== 0) { + return this.id === other.id; + } + + return false; + } + + /** + * Converts this score information to a plain object convertable to JSON. * @returns Score information convertable to JSON. */ toJSON(): IJsonableScoreInfo { @@ -183,6 +213,7 @@ export class ScoreInfo extends LegacyScoreExtensions implements IScoreInfo { statistics: this.statistics.toJSON(), beatmap: this.beatmap?.toJSON() ?? null, mods: this.mods?.toString() ?? 'NM', + date: this.date.getTime() / 1000, accuracy: this.accuracy, rank: this.rank, rulesetId: this.rulesetId, @@ -197,41 +228,17 @@ export class ScoreInfo extends LegacyScoreExtensions implements IScoreInfo { } /** - * Creates a deep copy of the score info. - * @returns Cloned score info. + * Converts raw JSON score information to an instance of {@link ScoreInfo}. + * @param json Raw JSON score information. + * @returns Adapted instance of {@link ScoreInfo} class. */ - clone(): this { - const ScoreInfo = this.constructor as new (params?: Partial) => this; - - const cloned = new ScoreInfo(); - - Object.assign(cloned, this); - - cloned.statistics = new HitStatistics(this.statistics); - - return cloned; - } - - /** - * @param other Other score info. - * @returns If two scores are equal. - */ - equals(other: IScoreInfo): boolean { - if (!other) return false; - - if (this.id !== 0 && other.id !== 0) { - return this.id === other.id; - } - - return false; - } - static fromJSON(json: IJsonableScoreInfo): ScoreInfo { return new ScoreInfo({ - ...json as Omit, + ...json as Omit, rawMods: json.mods, beatmap: json.beatmap ? BeatmapInfo.fromJSON(json.beatmap) : null, statistics: HitStatistics.fromJSON(json.statistics), + date: new Date(json.date * 1000), }); } } From d17a4f5e4d8da1d80e587e877ba92f3aac8dafc3 Mon Sep 17 00:00:00 2001 From: Alexander Date: Mon, 13 Mar 2023 21:50:21 +0200 Subject: [PATCH 12/34] Use jsonable object types instead of utility types --- src/Beatmaps/BeatmapInfo.ts | 2 +- src/Scoring/ScoreInfo.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Beatmaps/BeatmapInfo.ts b/src/Beatmaps/BeatmapInfo.ts index 30c268a..806289f 100644 --- a/src/Beatmaps/BeatmapInfo.ts +++ b/src/Beatmaps/BeatmapInfo.ts @@ -284,7 +284,7 @@ export class BeatmapInfo implements IBeatmapInfo { */ static fromJSON(json: IJsonableBeatmapInfo): BeatmapInfo { return new BeatmapInfo({ - ...json as Omit, + ...json as JsonableBeatmapInfo, deletedAt: json.deletedAt ? new Date(json.deletedAt * 1000) : null, updatedAt: json.updatedAt ? new Date(json.updatedAt * 1000) : null, rawMods: json.mods, diff --git a/src/Scoring/ScoreInfo.ts b/src/Scoring/ScoreInfo.ts index 1f43eb6..a5d067d 100644 --- a/src/Scoring/ScoreInfo.ts +++ b/src/Scoring/ScoreInfo.ts @@ -234,7 +234,7 @@ export class ScoreInfo extends LegacyScoreExtensions implements IScoreInfo { */ static fromJSON(json: IJsonableScoreInfo): ScoreInfo { return new ScoreInfo({ - ...json as Omit, + ...json as JsonableScoreInfo, rawMods: json.mods, beatmap: json.beatmap ? BeatmapInfo.fromJSON(json.beatmap) : null, statistics: HitStatistics.fromJSON(json.statistics), From 93e6017fc9cc62c57174afa92918e262a840052d Mon Sep 17 00:00:00 2001 From: Alexander Date: Mon, 13 Mar 2023 21:54:58 +0200 Subject: [PATCH 13/34] Implement user information JSON serialization/deserialization --- src/Users/Grades.ts | 27 +++++++++++++++++++++++++++ src/Users/IJsonableGrades.ts | 3 +++ src/Users/IJsonableUserInfo.ts | 16 ++++++++++++++++ src/Users/LevelInfo.ts | 10 +++++----- src/Users/RankHistory.ts | 10 +++++----- src/Users/UserInfo.ts | 28 ++++++++++++++++++++++++++++ 6 files changed, 84 insertions(+), 10 deletions(-) create mode 100644 src/Users/IJsonableGrades.ts create mode 100644 src/Users/IJsonableUserInfo.ts diff --git a/src/Users/Grades.ts b/src/Users/Grades.ts index 46d1041..8af9ec3 100644 --- a/src/Users/Grades.ts +++ b/src/Users/Grades.ts @@ -1,4 +1,5 @@ import { ScoreRank } from '../Scoring'; +import { IJsonableGrades } from './IJsonableGrades'; /** * A special case of a map structure for storing the number of user's grades. @@ -22,4 +23,30 @@ export class Grades extends Map { get hasZeroGrades(): boolean { return this.size === 0 || [...this.values()].reduce((p, c) => p + c) === 0; } + + /** + * Converts this map to a readable JSON format. + */ + toJSON(): IJsonableGrades { + const result: IJsonableGrades = {}; + + this.forEach((value, key) => { + result[ScoreRank[key] as keyof typeof ScoreRank] = value; + }); + + return result; + } + + static fromJSON(json: IJsonableGrades): Grades { + const statistics = new Grades(); + const entries = Object.entries(json); + + entries.forEach((entry) => { + const key = entry[0] as keyof typeof ScoreRank; + + statistics.set(ScoreRank[key], entry[1]); + }); + + return statistics; + } } diff --git a/src/Users/IJsonableGrades.ts b/src/Users/IJsonableGrades.ts new file mode 100644 index 0000000..fab2c2f --- /dev/null +++ b/src/Users/IJsonableGrades.ts @@ -0,0 +1,3 @@ +import { ScoreRank } from '../Scoring'; + +export type IJsonableGrades = Partial>; diff --git a/src/Users/IJsonableUserInfo.ts b/src/Users/IJsonableUserInfo.ts new file mode 100644 index 0000000..d79412a --- /dev/null +++ b/src/Users/IJsonableUserInfo.ts @@ -0,0 +1,16 @@ +import { IJsonableGrades } from './IJsonableGrades'; +import { IUserInfo } from './IUserInfo'; + +export type JsonableUserInfo = Omit; + +export interface IJsonableUserInfo extends JsonableUserInfo { + /** + * Grades count of a user. + */ + grades: IJsonableGrades; + + /** + * Timestamp of last visit of the user. + */ + lastVisitAt: number | null; +} diff --git a/src/Users/LevelInfo.ts b/src/Users/LevelInfo.ts index 8a5fdaa..7a37789 100644 --- a/src/Users/LevelInfo.ts +++ b/src/Users/LevelInfo.ts @@ -5,16 +5,16 @@ export class LevelInfo { /** * Current level of a user. */ - current = 0; + current: number; /** * Progress to the next level. */ - progress = 0; + progress: number; - constructor(current = 0, progress = 0) { - this.current = current; - this.progress = progress; + constructor(current?: number, progress?: number) { + this.current = current ?? 0; + this.progress = progress ?? 0; } /** diff --git a/src/Users/RankHistory.ts b/src/Users/RankHistory.ts index 2dcdbcd..f05e0ad 100644 --- a/src/Users/RankHistory.ts +++ b/src/Users/RankHistory.ts @@ -14,6 +14,11 @@ export class RankHistory { */ data: number[]; + constructor(mode?: string, data?: number[]) { + this.mode = mode ?? RankHistory.DEFAULT_MODE; + this.data = data ?? []; + } + /** * If this rank history has valid mode and more than 1 entry to build a graph. */ @@ -21,11 +26,6 @@ export class RankHistory { return this.mode !== RankHistory.DEFAULT_MODE && this.data.length > 1; } - constructor(mode?: string, data?: number[]) { - this.mode = mode ?? RankHistory.DEFAULT_MODE; - this.data = data ?? []; - } - /** * Creates a deep copy of the rank history. * @returns Cloned rank history. diff --git a/src/Users/UserInfo.ts b/src/Users/UserInfo.ts index 31828c7..a3ec40c 100644 --- a/src/Users/UserInfo.ts +++ b/src/Users/UserInfo.ts @@ -1,5 +1,6 @@ import { CountryCode } from './Enums/CountryCode'; import { Grades } from './Grades'; +import { IJsonableUserInfo, JsonableUserInfo } from './IJsonableUserInfo'; import { IUserInfo } from './IUserInfo'; import { LevelInfo } from './LevelInfo'; import { RankHistory } from './RankHistory'; @@ -164,4 +165,31 @@ export class UserInfo implements IUserInfo { return this.id === other.id && this.username === other.username; } + + /** + * Converts this user information to a plain object convertable to JSON. + * @returns User information convertable to JSON. + */ + toJSON(): IJsonableUserInfo { + return { + ...this as JsonableUserInfo, + grades: this.grades.toJSON(), + lastVisitAt: this.lastVisitAt ? this.lastVisitAt.getTime() / 1000 : null, + }; + } + + /** + * Converts raw JSON user information to an instance of {@link UserInfo}. + * @param json Raw JSON user information. + * @returns Adapted instance of {@link UserInfo} class. + */ + static fromJSON(json: IJsonableUserInfo): UserInfo { + return new UserInfo({ + ...json as JsonableUserInfo, + level: new LevelInfo(json?.level?.current, json?.level?.progress), + rankHistory: new RankHistory(json?.rankHistory?.mode, json?.rankHistory?.data), + grades: Grades.fromJSON(json.grades), + lastVisitAt: json.lastVisitAt ? new Date(json.lastVisitAt * 1000) : null, + }); + } } From 24a009c8d1e0cc2a16bf9511b916b0c629133240 Mon Sep 17 00:00:00 2001 From: Alexander Date: Mon, 13 Mar 2023 22:02:08 +0200 Subject: [PATCH 14/34] Fix compilation errors and circular dependencies --- src/Objects/HitObject.ts | 2 +- src/Scoring/HitStatistics.ts | 3 ++- src/Scoring/ScoreInfo.ts | 3 ++- src/Users/Grades.ts | 5 +++-- 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/src/Objects/HitObject.ts b/src/Objects/HitObject.ts index 20443a5..3865293 100644 --- a/src/Objects/HitObject.ts +++ b/src/Objects/HitObject.ts @@ -1,6 +1,6 @@ import { ControlPointInfo } from '../Beatmaps/ControlPoints'; import { BeatmapDifficultySection } from '../Beatmaps/Sections'; -import { HitWindows } from '../Scoring'; +import { HitWindows } from '../Scoring/HitWindows'; import { Vector2 } from '../Types'; import { HitSound } from './Enums/HitSound'; import { HitType } from './Enums/HitType'; diff --git a/src/Scoring/HitStatistics.ts b/src/Scoring/HitStatistics.ts index ae504d2..b19ae1b 100644 --- a/src/Scoring/HitStatistics.ts +++ b/src/Scoring/HitStatistics.ts @@ -36,8 +36,9 @@ export class HitStatistics extends Map { entries.forEach((entry) => { const key = entry[0] as keyof IJsonableHitStatistics; + const value = entry[1] as number; - statistics.set(this._getHitResultFromJsonableKey(key), entry[1]); + statistics.set(this._getHitResultFromJsonableKey(key), value); }); return statistics; diff --git a/src/Scoring/ScoreInfo.ts b/src/Scoring/ScoreInfo.ts index a5d067d..9de644b 100644 --- a/src/Scoring/ScoreInfo.ts +++ b/src/Scoring/ScoreInfo.ts @@ -4,7 +4,8 @@ import { LegacyScoreExtensions } from './LegacyScoreExtensions'; import { Accuracy, Rank } from './Utils'; import { IScoreInfo } from './IScoreInfo'; import { IJsonableScoreInfo, JsonableScoreInfo } from './IJsonableScoreInfo'; -import { BeatmapInfo, IBeatmapInfo } from '../Beatmaps'; +import { BeatmapInfo } from '../Beatmaps/BeatmapInfo'; +import { IBeatmapInfo } from '../Beatmaps/IBeatmapInfo'; import { IRuleset } from '../Rulesets'; import { ModCombination } from '../Mods'; diff --git a/src/Users/Grades.ts b/src/Users/Grades.ts index 8af9ec3..46ccd88 100644 --- a/src/Users/Grades.ts +++ b/src/Users/Grades.ts @@ -42,9 +42,10 @@ export class Grades extends Map { const entries = Object.entries(json); entries.forEach((entry) => { - const key = entry[0] as keyof typeof ScoreRank; + const key = ScoreRank[entry[0] as keyof typeof ScoreRank]; + const value = entry[1] as number; - statistics.set(ScoreRank[key], entry[1]); + statistics.set(key, value); }); return statistics; From 2c27f5bebd7abaea8bba3de4af45f78a1e47758a Mon Sep 17 00:00:00 2001 From: Alexander Date: Tue, 14 Mar 2023 04:15:15 +0200 Subject: [PATCH 15/34] Rename 'pp' property to make it consistent between different classes --- src/Scoring/IScoreInfo.ts | 2 +- src/Scoring/ScoreInfo.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Scoring/IScoreInfo.ts b/src/Scoring/IScoreInfo.ts index d99e539..4cb368b 100644 --- a/src/Scoring/IScoreInfo.ts +++ b/src/Scoring/IScoreInfo.ts @@ -32,7 +32,7 @@ export interface IScoreInfo { /** * The performance of the play. */ - pp: number | null; + totalPerformance: number | null; /** * Max combo of the play. diff --git a/src/Scoring/ScoreInfo.ts b/src/Scoring/ScoreInfo.ts index 9de644b..f13cb40 100644 --- a/src/Scoring/ScoreInfo.ts +++ b/src/Scoring/ScoreInfo.ts @@ -26,7 +26,7 @@ export class ScoreInfo extends LegacyScoreExtensions implements IScoreInfo { /** * The performance of the play. */ - pp: number | null = null; + totalPerformance: number | null = null; /** * Max combo of the play. From 6a56ec89f97259f2cb105896c7ebc2b4ee95d9a8 Mon Sep 17 00:00:00 2001 From: Alexander Date: Tue, 14 Mar 2023 04:16:22 +0200 Subject: [PATCH 16/34] Add more data to the user information class --- src/Users/Grades.ts | 3 +- src/Users/HighestRank.ts | 59 ++++++++++++++++++++++++++++++++++ src/Users/IJsonableGrades.ts | 3 -- src/Users/IJsonableUserInfo.ts | 20 ++++++++++-- src/Users/IUserInfo.ts | 23 ++++++++++++- src/Users/LevelInfo.ts | 8 ++--- src/Users/RankHistory.ts | 11 ++++--- src/Users/UserInfo.ts | 37 ++++++++++++++++++--- src/Users/index.ts | 2 ++ 9 files changed, 146 insertions(+), 20 deletions(-) create mode 100644 src/Users/HighestRank.ts delete mode 100644 src/Users/IJsonableGrades.ts diff --git a/src/Users/Grades.ts b/src/Users/Grades.ts index 46ccd88..616673d 100644 --- a/src/Users/Grades.ts +++ b/src/Users/Grades.ts @@ -1,5 +1,6 @@ import { ScoreRank } from '../Scoring'; -import { IJsonableGrades } from './IJsonableGrades'; + +export type IJsonableGrades = Partial>; /** * A special case of a map structure for storing the number of user's grades. diff --git a/src/Users/HighestRank.ts b/src/Users/HighestRank.ts new file mode 100644 index 0000000..2f779b0 --- /dev/null +++ b/src/Users/HighestRank.ts @@ -0,0 +1,59 @@ +/** + * A highest rank information that can be converted to JSON. + */ +export interface IJsonableHighestRank { + /** + * Highest rank of the user. + */ + rank: number; + + /** + * Timestamp of the date when this rank was achieved. + */ + updatedAt: number; +} + +/** + * A class that represents highest rank of the user. + */ +export class HighestRank { + /** + * Highest rank of the user. + */ + rank: number; + + /** + * The date when highest rank was achieved. + */ + updatedAt: Date; + + constructor(options?: Partial) { + this.rank = options?.rank ?? 0; + this.updatedAt = options?.updatedAt ?? new Date(); + } + + /** + * Creates a deep copy of the highest rank instance. + * @returns Cloned highest rank instance. + */ + clone(): HighestRank { + return new HighestRank(this); + } + + /** + * Converts this map to a readable JSON format. + */ + toJSON(): IJsonableHighestRank { + return { + rank: this.rank, + updatedAt: this.updatedAt.getTime() / 1000, + }; + } + + static fromJSON(json: IJsonableHighestRank): HighestRank { + return new HighestRank({ + rank: json.rank, + updatedAt: json.updatedAt ? new Date(json.updatedAt * 1000) : new Date(), + }); + } +} diff --git a/src/Users/IJsonableGrades.ts b/src/Users/IJsonableGrades.ts deleted file mode 100644 index fab2c2f..0000000 --- a/src/Users/IJsonableGrades.ts +++ /dev/null @@ -1,3 +0,0 @@ -import { ScoreRank } from '../Scoring'; - -export type IJsonableGrades = Partial>; diff --git a/src/Users/IJsonableUserInfo.ts b/src/Users/IJsonableUserInfo.ts index d79412a..7582de4 100644 --- a/src/Users/IJsonableUserInfo.ts +++ b/src/Users/IJsonableUserInfo.ts @@ -1,7 +1,13 @@ -import { IJsonableGrades } from './IJsonableGrades'; +import { IJsonableGrades } from './Grades'; +import { IJsonableHighestRank } from './HighestRank'; import { IUserInfo } from './IUserInfo'; -export type JsonableUserInfo = Omit; +export type JsonableUserInfo = Omit< +// eslint-disable-next-line @typescript-eslint/indent + IUserInfo, +// eslint-disable-next-line @typescript-eslint/indent + 'grades' | 'lastVisitAt' | 'joinedAt' | 'highestRank' +>; export interface IJsonableUserInfo extends JsonableUserInfo { /** @@ -9,8 +15,18 @@ export interface IJsonableUserInfo extends JsonableUserInfo { */ grades: IJsonableGrades; + /** + * Highest rank of the user. + */ + highestRank: IJsonableHighestRank | null; + /** * Timestamp of last visit of the user. */ lastVisitAt: number | null; + + /** + * Timestamp of join date of the user. + */ + joinedAt: number; } diff --git a/src/Users/IUserInfo.ts b/src/Users/IUserInfo.ts index 16cb9e7..b2b5754 100644 --- a/src/Users/IUserInfo.ts +++ b/src/Users/IUserInfo.ts @@ -1,5 +1,6 @@ import { CountryCode } from './Enums/CountryCode'; import { Grades } from './Grades'; +import { HighestRank } from './HighestRank'; import { LevelInfo } from './LevelInfo'; import { RankHistory } from './RankHistory'; @@ -17,6 +18,11 @@ export interface IUserInfo { */ username: string; + /** + * Previous nicknames of the user. + */ + previousUsernames: string[]; + /** * User country code. */ @@ -42,6 +48,11 @@ export interface IUserInfo { */ countryRank: number | null; + /** + * Highest rank of the user. + */ + highestRank: HighestRank | null; + /** * Information about a user's level. */ @@ -87,6 +98,11 @@ export interface IUserInfo { */ replaysWatched: number; + /** + * How many followers does user have. + */ + followersCount: number; + /** * Grades count of a user. */ @@ -95,7 +111,7 @@ export interface IUserInfo { /** * Rank history of a user. */ - rankHistory: RankHistory; + rankHistory: RankHistory | null; /** * Whether the user is active or not. @@ -126,4 +142,9 @@ export interface IUserInfo { * Last visit date of the user. */ lastVisitAt: Date | null; + + /** + * Join date of the user. + */ + joinedAt: Date; } diff --git a/src/Users/LevelInfo.ts b/src/Users/LevelInfo.ts index 7a37789..b1d546d 100644 --- a/src/Users/LevelInfo.ts +++ b/src/Users/LevelInfo.ts @@ -12,9 +12,9 @@ export class LevelInfo { */ progress: number; - constructor(current?: number, progress?: number) { - this.current = current ?? 0; - this.progress = progress ?? 0; + constructor(options?: Partial) { + this.current = options?.current ?? 0; + this.progress = options?.progress ?? 0; } /** @@ -22,6 +22,6 @@ export class LevelInfo { * @returns Cloned level info. */ clone(): LevelInfo { - return new LevelInfo(this.current, this.progress); + return new LevelInfo(this); } } diff --git a/src/Users/RankHistory.ts b/src/Users/RankHistory.ts index f05e0ad..6c36b24 100644 --- a/src/Users/RankHistory.ts +++ b/src/Users/RankHistory.ts @@ -14,9 +14,9 @@ export class RankHistory { */ data: number[]; - constructor(mode?: string, data?: number[]) { - this.mode = mode ?? RankHistory.DEFAULT_MODE; - this.data = data ?? []; + constructor(options?: Partial) { + this.mode = options?.mode ?? RankHistory.DEFAULT_MODE; + this.data = options?.data ?? []; } /** @@ -31,6 +31,9 @@ export class RankHistory { * @returns Cloned rank history. */ clone(): RankHistory { - return new RankHistory(this.mode, [...this.data]); + return new RankHistory({ + mode: this.mode, + data: [...this.data], + }); } } diff --git a/src/Users/UserInfo.ts b/src/Users/UserInfo.ts index a3ec40c..3cfe911 100644 --- a/src/Users/UserInfo.ts +++ b/src/Users/UserInfo.ts @@ -1,5 +1,6 @@ import { CountryCode } from './Enums/CountryCode'; import { Grades } from './Grades'; +import { HighestRank } from './HighestRank'; import { IJsonableUserInfo, JsonableUserInfo } from './IJsonableUserInfo'; import { IUserInfo } from './IUserInfo'; import { LevelInfo } from './LevelInfo'; @@ -19,6 +20,11 @@ export class UserInfo implements IUserInfo { */ username = ''; + /** + * Previous nicknames of the user. + */ + previousUsernames: string[] = []; + /** * User country code. */ @@ -44,6 +50,11 @@ export class UserInfo implements IUserInfo { */ countryRank: number | null = null; + /** + * Highest rank of the user. + */ + highestRank: HighestRank | null = null; + /** * Information about a user's level. */ @@ -89,6 +100,11 @@ export class UserInfo implements IUserInfo { */ replaysWatched = 0; + /** + * How many followers does user have. + */ + followersCount = 0; + /** * Grades count of a user. */ @@ -97,7 +113,7 @@ export class UserInfo implements IUserInfo { /** * Rank history of a user. */ - rankHistory = new RankHistory(); + rankHistory: RankHistory | null = null; /** * Whether the user is active or not. @@ -129,6 +145,11 @@ export class UserInfo implements IUserInfo { */ lastVisitAt: Date | null = null; + /** + * Join date of the user. + */ + joinedAt: Date = new Date(); + /** * Creates a new instance of a user information. * @param options The user information options. @@ -148,10 +169,12 @@ export class UserInfo implements IUserInfo { Object.assign(cloned, this); - cloned.level = this.level.clone(); - cloned.rankHistory = this.rankHistory.clone(); cloned.grades = new Grades(this.grades); + cloned.level = this.level.clone(); + cloned.highestRank = this.highestRank?.clone() ?? null; + cloned.rankHistory = this.rankHistory?.clone() ?? null; cloned.lastVisitAt = this.lastVisitAt ? new Date(this.lastVisitAt) : null; + cloned.previousUsernames = [...this.previousUsernames]; return cloned; } @@ -173,7 +196,9 @@ export class UserInfo implements IUserInfo { toJSON(): IJsonableUserInfo { return { ...this as JsonableUserInfo, + highestRank: this.highestRank?.toJSON() ?? null, grades: this.grades.toJSON(), + joinedAt: this.joinedAt.getTime() / 1000, lastVisitAt: this.lastVisitAt ? this.lastVisitAt.getTime() / 1000 : null, }; } @@ -186,9 +211,11 @@ export class UserInfo implements IUserInfo { static fromJSON(json: IJsonableUserInfo): UserInfo { return new UserInfo({ ...json as JsonableUserInfo, - level: new LevelInfo(json?.level?.current, json?.level?.progress), - rankHistory: new RankHistory(json?.rankHistory?.mode, json?.rankHistory?.data), + highestRank: json.highestRank ? HighestRank.fromJSON(json.highestRank) : null, + rankHistory: json.rankHistory ? new RankHistory(json.rankHistory) : null, grades: Grades.fromJSON(json.grades), + level: new LevelInfo(json.level), + joinedAt: new Date(json.joinedAt * 1000), lastVisitAt: json.lastVisitAt ? new Date(json.lastVisitAt * 1000) : null, }); } diff --git a/src/Users/index.ts b/src/Users/index.ts index 3b7ab0c..40f742b 100644 --- a/src/Users/index.ts +++ b/src/Users/index.ts @@ -1,5 +1,7 @@ export * from './Enums/CountryCode'; export * from './Grades'; +export * from './HighestRank'; +export * from './IJsonableUserInfo'; export * from './IUserInfo'; export * from './LevelInfo'; export * from './RankHistory'; From 4c2054914f229a0725cae966b13ad61e8c6720e6 Mon Sep 17 00:00:00 2001 From: Alexander Date: Fri, 7 Apr 2023 23:35:23 +0300 Subject: [PATCH 17/34] Describe level properties in more detail --- src/Users/LevelInfo.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Users/LevelInfo.ts b/src/Users/LevelInfo.ts index b1d546d..6e0138a 100644 --- a/src/Users/LevelInfo.ts +++ b/src/Users/LevelInfo.ts @@ -3,12 +3,12 @@ */ export class LevelInfo { /** - * Current level of a user. + * Current level of a user as integer. */ current: number; /** - * Progress to the next level. + * Progress to the next level as integer in range of 0-100. */ progress: number; From c1d747527a1aab4ae61ab6a8fc5735b8d44b8e71 Mon Sep 17 00:00:00 2001 From: Alexander Date: Wed, 12 Apr 2023 22:50:14 +0300 Subject: [PATCH 18/34] Add method to stringify user level information --- src/Users/LevelInfo.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/Users/LevelInfo.ts b/src/Users/LevelInfo.ts index 6e0138a..256f3a7 100644 --- a/src/Users/LevelInfo.ts +++ b/src/Users/LevelInfo.ts @@ -24,4 +24,15 @@ export class LevelInfo { clone(): LevelInfo { return new LevelInfo(this); } + + /** + * @returns Stringified level information. + */ + toString(): string { + let progress = this.progress; + + while (progress > 1) progress /= 100; + + return `${this.current + this.progress}`; + } } From e9b53a72b91efb203cb8d4204b3fd63b85376b35 Mon Sep 17 00:00:00 2001 From: Alexander Date: Wed, 12 Apr 2023 23:08:43 +0300 Subject: [PATCH 19/34] Use actual score ranks as keys for grades map --- src/Users/Grades.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Users/Grades.ts b/src/Users/Grades.ts index 616673d..66674b1 100644 --- a/src/Users/Grades.ts +++ b/src/Users/Grades.ts @@ -5,14 +5,14 @@ export type IJsonableGrades = Partial>; /** * A special case of a map structure for storing the number of user's grades. */ -export class Grades extends Map { +export class Grades extends Map { /** * Gets the number of grades by their type. * If grade is not present sets it to default value and returns it. * @param key Score rank type. * @returns The number of grades of this type. */ - get(key: ScoreRank): number { + get(key: keyof typeof ScoreRank): number { if (!super.has(key)) super.set(key, 0); return super.get(key) as number; @@ -32,7 +32,7 @@ export class Grades extends Map { const result: IJsonableGrades = {}; this.forEach((value, key) => { - result[ScoreRank[key] as keyof typeof ScoreRank] = value; + result[key] = value; }); return result; @@ -43,7 +43,7 @@ export class Grades extends Map { const entries = Object.entries(json); entries.forEach((entry) => { - const key = ScoreRank[entry[0] as keyof typeof ScoreRank]; + const key = entry[0] as keyof typeof ScoreRank; const value = entry[1] as number; statistics.set(key, value); From 6ec9e17874a420376eb0201cafa3bec72c6e746e Mon Sep 17 00:00:00 2001 From: Alexander Date: Thu, 13 Apr 2023 12:02:06 +0300 Subject: [PATCH 20/34] Add equality methods to control points --- src/Beatmaps/ControlPoints/DifficultyPoint.ts | 9 +++++++++ src/Beatmaps/ControlPoints/EffectPoint.ts | 11 +++++++++++ src/Beatmaps/ControlPoints/SamplePoint.ts | 11 +++++++++++ src/Beatmaps/ControlPoints/TimingPoint.ts | 10 ++++++++++ 4 files changed, 41 insertions(+) diff --git a/src/Beatmaps/ControlPoints/DifficultyPoint.ts b/src/Beatmaps/ControlPoints/DifficultyPoint.ts index 4a8c1f5..6161388 100644 --- a/src/Beatmaps/ControlPoints/DifficultyPoint.ts +++ b/src/Beatmaps/ControlPoints/DifficultyPoint.ts @@ -59,4 +59,13 @@ export class DifficultyPoint extends ControlPoint { && existing.sliderVelocity === this.sliderVelocity && existing.generateTicks === this.generateTicks; } + + /** + * @param other Other difficulty control point. + * @returns If two difficulty control points are equal. + */ + equals(other: DifficultyPoint): boolean { + return other instanceof DifficultyPoint + && this.sliderVelocity === other.sliderVelocity; + } } diff --git a/src/Beatmaps/ControlPoints/EffectPoint.ts b/src/Beatmaps/ControlPoints/EffectPoint.ts index e70058f..9b47a52 100644 --- a/src/Beatmaps/ControlPoints/EffectPoint.ts +++ b/src/Beatmaps/ControlPoints/EffectPoint.ts @@ -53,4 +53,15 @@ export class EffectPoint extends ControlPoint { && this.scrollSpeed === existing.scrollSpeed ); } + + /** + * @param other Other effect control point. + * @returns If two effect control points are equal. + */ + equals(other: EffectPoint): boolean { + return other instanceof EffectPoint + && this.kiai === other.kiai + && this.omitFirstBarLine === other.omitFirstBarLine + && this.scrollSpeed === other.scrollSpeed; + } } diff --git a/src/Beatmaps/ControlPoints/SamplePoint.ts b/src/Beatmaps/ControlPoints/SamplePoint.ts index 99e90a3..a630164 100644 --- a/src/Beatmaps/ControlPoints/SamplePoint.ts +++ b/src/Beatmaps/ControlPoints/SamplePoint.ts @@ -44,4 +44,15 @@ export class SamplePoint extends ControlPoint { && this.sampleSet === existing.sampleSet ); } + + /** + * @param other Other sample control point. + * @returns If two sample control points are equal. + */ + equals(other: SamplePoint): boolean { + return other instanceof SamplePoint + && this.volume === other.volume + && this.customIndex === other.customIndex + && this.sampleSet === other.sampleSet; + } } diff --git a/src/Beatmaps/ControlPoints/TimingPoint.ts b/src/Beatmaps/ControlPoints/TimingPoint.ts index 304df24..e218794 100644 --- a/src/Beatmaps/ControlPoints/TimingPoint.ts +++ b/src/Beatmaps/ControlPoints/TimingPoint.ts @@ -48,4 +48,14 @@ export class TimingPoint extends ControlPoint { isRedundant(): false { return false; } + + /** + * @param other Other timing control point. + * @returns If two timing control points are equal. + */ + equals(other: TimingPoint): boolean { + return other instanceof TimingPoint + && this.timeSignature === other.timeSignature + && this.beatLength === other.beatLength; + } } From b7552cb253a57bd1148053d7c86f8ab9467a7f86 Mon Sep 17 00:00:00 2001 From: Alexander Date: Thu, 13 Apr 2023 13:26:28 +0300 Subject: [PATCH 21/34] Decode storyboard variables in a map --- src/Storyboards/Storyboard.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Storyboards/Storyboard.ts b/src/Storyboards/Storyboard.ts index 3ccbf2e..932499f 100644 --- a/src/Storyboards/Storyboard.ts +++ b/src/Storyboards/Storyboard.ts @@ -10,7 +10,7 @@ export class Storyboard { /** * Variables of the storyboard. */ - variables: Record = {}; + variables: Map = new Map(); /** * Custom beatmap colors. From 3e0f2cc85f6602502f528d552d6ef5998500f2ab Mon Sep 17 00:00:00 2001 From: Alexander Date: Sun, 18 Jun 2023 12:06:32 +0300 Subject: [PATCH 22/34] Remove unnecessary unknown keywords and make some minor fixes --- src/Beatmaps/Beatmap.ts | 9 ++++----- src/Difficulty/Preprocessing/DifficultyHitObject.ts | 10 ++++++++-- 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/src/Beatmaps/Beatmap.ts b/src/Beatmaps/Beatmap.ts index 72236de..b8b08e9 100644 --- a/src/Beatmaps/Beatmap.ts +++ b/src/Beatmaps/Beatmap.ts @@ -7,9 +7,8 @@ import { BeatmapEventSection, } from './Sections'; -import { ControlPointInfo } from './ControlPoints'; - import { IBeatmap } from './IBeatmap'; +import { ControlPointInfo } from './ControlPoints'; import { HitObject, IHasDuration } from '../Objects'; import { RoundHelper } from '../Utils'; @@ -19,7 +18,7 @@ import { RoundHelper } from '../Utils'; export class Beatmap implements IBeatmap { /** * The optional link to the base beatmap. - * Base beatmap prefered for beatmap convertation. + * Base beatmap is preferrable for beatmap converters. */ base?: IBeatmap; @@ -95,7 +94,7 @@ export class Beatmap implements IBeatmap { const first = this.hitObjects[0]; const last = this.hitObjects[this.hitObjects.length - 1]; - const durationLast = last as unknown as IHasDuration; + const durationLast = last as HitObject & IHasDuration; const startTime = first.startTime; const endTime = durationLast.endTime || last.startTime; @@ -112,7 +111,7 @@ export class Beatmap implements IBeatmap { } const last = this.hitObjects[this.hitObjects.length - 1]; - const durationObject = last as unknown as IHasDuration; + const durationObject = last as HitObject & IHasDuration; const endTime = durationObject.endTime || last.startTime; diff --git a/src/Difficulty/Preprocessing/DifficultyHitObject.ts b/src/Difficulty/Preprocessing/DifficultyHitObject.ts index 5a81175..f798fcc 100644 --- a/src/Difficulty/Preprocessing/DifficultyHitObject.ts +++ b/src/Difficulty/Preprocessing/DifficultyHitObject.ts @@ -45,7 +45,13 @@ export class DifficultyHitObject { * @param objects The list of {@link DifficultyHitObject}s in the current map * @param index The index of this {@link DifficultyHitObject} in {@link objects} list. */ - constructor(hitObject: IHitObject, lastObject: IHitObject, clockRate: number, objects: Array, index: number) { + constructor( + hitObject: IHitObject, + lastObject: IHitObject, + clockRate: number, + objects: DifficultyHitObject[], + index: number, + ) { this._difficultyHitObjects = objects; this.index = index; this.baseObject = hitObject; @@ -53,7 +59,7 @@ export class DifficultyHitObject { this.deltaTime = (hitObject.startTime - lastObject.startTime) / clockRate; this.startTime = hitObject.startTime / clockRate; - const durationObj = hitObject as unknown as IHasDuration; + const durationObj = hitObject as IHitObject & IHasDuration; this.endTime = (durationObj?.endTime ?? hitObject.startTime) / clockRate; } From 721a1b137bd367cf6465270a2f1c8015252ad26c Mon Sep 17 00:00:00 2001 From: Alexander Date: Sun, 18 Jun 2023 12:20:28 +0300 Subject: [PATCH 23/34] Add counters for each type of objects --- src/Beatmaps/Beatmap.ts | 38 +++++++++++++++++++++++++++++++++++++- 1 file changed, 37 insertions(+), 1 deletion(-) diff --git a/src/Beatmaps/Beatmap.ts b/src/Beatmaps/Beatmap.ts index b8b08e9..b38511e 100644 --- a/src/Beatmaps/Beatmap.ts +++ b/src/Beatmaps/Beatmap.ts @@ -9,7 +9,7 @@ import { import { IBeatmap } from './IBeatmap'; import { ControlPointInfo } from './ControlPoints'; -import { HitObject, IHasDuration } from '../Objects'; +import { HitObject, HitType, IHasDuration } from '../Objects'; import { RoundHelper } from '../Utils'; /** @@ -207,6 +207,42 @@ export class Beatmap implements IBeatmap { return (this.events.breaks || []).reduce((d, e) => d + e.duration, 0); } + /** + * The ammount of hittable objects. + */ + get hittable(): number { + return this.hitObjects.reduce((s, h) => { + return s + (h.hitType & HitType.Normal ? 1 : 0); + }, 0); + } + + /** + * The ammount of slidable objects. + */ + get slidable(): number { + return this.hitObjects.reduce((s, h) => { + return s + (h.hitType & HitType.Slider ? 1 : 0); + }, 0); + } + + /** + * The ammount of spinnable objects. + */ + get spinnable(): number { + return this.hitObjects.reduce((s, h) => { + return s + (h.hitType & HitType.Spinner ? 1 : 0); + }, 0); + } + + /** + * The ammount of holdable objects. + */ + get holdable(): number { + return this.hitObjects.reduce((s, h) => { + return s + (h.hitType & HitType.Hold ? 1 : 0); + }, 0); + } + /** * Creates a copy of this beatmap. * Non-primitive properties will be copied via their own clone() method. From 5d45f0e419738ff12407023d78b5191037552683 Mon Sep 17 00:00:00 2001 From: Alexander Date: Sun, 18 Jun 2023 14:31:53 +0300 Subject: [PATCH 24/34] Fix misspelling --- src/Beatmaps/BeatmapInfo.ts | 4 ++-- src/Beatmaps/IBeatmapInfo.ts | 4 ++-- src/Scoring/IScoreInfo.ts | 2 +- src/Scoring/ScoreInfo.ts | 4 ++-- src/Users/UserInfo.ts | 4 ++-- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/Beatmaps/BeatmapInfo.ts b/src/Beatmaps/BeatmapInfo.ts index 806289f..d8bff19 100644 --- a/src/Beatmaps/BeatmapInfo.ts +++ b/src/Beatmaps/BeatmapInfo.ts @@ -253,8 +253,8 @@ export class BeatmapInfo implements IBeatmapInfo { } /** - * Converts this beatmap information to a plain object convertable to JSON. - * @returns Beatmap information convertable to JSON. + * Converts this beatmap information to a plain object convertible to JSON. + * @returns Beatmap information convertible to JSON. */ toJSON(): IJsonableBeatmapInfo { const partial: Partial = {}; diff --git a/src/Beatmaps/IBeatmapInfo.ts b/src/Beatmaps/IBeatmapInfo.ts index 7350cf3..1845edc 100644 --- a/src/Beatmaps/IBeatmapInfo.ts +++ b/src/Beatmaps/IBeatmapInfo.ts @@ -177,8 +177,8 @@ export interface IBeatmapInfo { hashMD5: string; /** - * Converts this beatmap information to a plain object convertable to JSON. - * @returns Beatmap information convertable to JSON. + * Converts this beatmap information to a plain object convertible to JSON. + * @returns Beatmap information convertible to JSON. */ toJSON(): IJsonableBeatmapInfo; } diff --git a/src/Scoring/IScoreInfo.ts b/src/Scoring/IScoreInfo.ts index 4cb368b..35dbcec 100644 --- a/src/Scoring/IScoreInfo.ts +++ b/src/Scoring/IScoreInfo.ts @@ -141,7 +141,7 @@ export interface IScoreInfo { /** * Converts this score information to JSON. - * @returns Score information convertable to JSON. + * @returns Score information convertible to JSON. */ toJSON(): IJsonableScoreInfo; } diff --git a/src/Scoring/ScoreInfo.ts b/src/Scoring/ScoreInfo.ts index f13cb40..4adf20f 100644 --- a/src/Scoring/ScoreInfo.ts +++ b/src/Scoring/ScoreInfo.ts @@ -195,8 +195,8 @@ export class ScoreInfo extends LegacyScoreExtensions implements IScoreInfo { } /** - * Converts this score information to a plain object convertable to JSON. - * @returns Score information convertable to JSON. + * Converts this score information to a plain object convertible to JSON. + * @returns Score information convertible to JSON. */ toJSON(): IJsonableScoreInfo { const partial: Partial = {}; diff --git a/src/Users/UserInfo.ts b/src/Users/UserInfo.ts index 3cfe911..3ddcf75 100644 --- a/src/Users/UserInfo.ts +++ b/src/Users/UserInfo.ts @@ -190,8 +190,8 @@ export class UserInfo implements IUserInfo { } /** - * Converts this user information to a plain object convertable to JSON. - * @returns User information convertable to JSON. + * Converts this user information to a plain object convertible to JSON. + * @returns User information convertible to JSON. */ toJSON(): IJsonableUserInfo { return { From 2f523eb2969937da440c7a12b38a0328f61a65d7 Mon Sep 17 00:00:00 2001 From: Alexander Date: Sun, 18 Jun 2023 19:41:16 +0300 Subject: [PATCH 25/34] Create abstract replay frame and legacy replay frame classes --- src/Replays/IReplayFrame.ts | 17 -------- src/Replays/LegacyReplayFrame.ts | 68 ++++++++++++++++++++++++++++++++ src/Replays/ReplayFrame.ts | 53 +------------------------ 3 files changed, 70 insertions(+), 68 deletions(-) create mode 100644 src/Replays/LegacyReplayFrame.ts diff --git a/src/Replays/IReplayFrame.ts b/src/Replays/IReplayFrame.ts index a8da7c1..dcce2b0 100644 --- a/src/Replays/IReplayFrame.ts +++ b/src/Replays/IReplayFrame.ts @@ -1,5 +1,3 @@ -import { ReplayButtonState } from './Enums'; - /** * A replay frame. */ @@ -14,21 +12,6 @@ export interface IReplayFrame { */ interval: number; - /** - * Button state of this replay frame. - */ - buttonState: ReplayButtonState; - - /** - * Mouse X-position of this replay frame. - */ - mouseX: number; - - /** - * Mouse Y-position of this replay frame. - */ - mouseY: number; - /** * Create a new copy of this replay frame. * @returns A clone of replay frame. diff --git a/src/Replays/LegacyReplayFrame.ts b/src/Replays/LegacyReplayFrame.ts new file mode 100644 index 0000000..bc56071 --- /dev/null +++ b/src/Replays/LegacyReplayFrame.ts @@ -0,0 +1,68 @@ +import { ReplayButtonState } from './Enums/ReplayButtonState'; +import { ReplayFrame } from './ReplayFrame'; +import { Vector2 } from '../Types'; + +/** + * Parsed replay frame. + */ +export class LegacyReplayFrame extends ReplayFrame { + /** + * Button state of this replay frame. + */ + buttonState: ReplayButtonState = ReplayButtonState.None; + + /** + * Mouse X-position of this replay frame. + */ + mouseX = 0; + + /** + * Mouse Y-position of this replay frame. + */ + mouseY = 0; + + /** + * Mouse position of this replay frame. + */ + get mousePosition(): Vector2 { + return new Vector2(this.mouseX ?? 0, this.mouseY ?? 0); + } + + get mouseLeft(): boolean { + return this.mouseLeft1 || this.mouseLeft2; + } + + get mouseRight(): boolean { + return this.mouseRight1 || this.mouseRight2; + } + + get mouseLeft1(): boolean { + return !!(this.buttonState & ReplayButtonState.Left1); + } + + get mouseRight1(): boolean { + return !!(this.buttonState & ReplayButtonState.Right1); + } + + get mouseLeft2(): boolean { + return !!(this.buttonState & ReplayButtonState.Left2); + } + + get mouseRight2(): boolean { + return !!(this.buttonState & ReplayButtonState.Right2); + } + + /** + * Creates a deep copy of the replay frame. + * @returns Cloned replay frame. + */ + clone(): this { + const cloned = super.clone(); + + cloned.buttonState = this.buttonState; + cloned.mouseX = this.mouseX; + cloned.mouseY = this.mouseY; + + return cloned; + } +} diff --git a/src/Replays/ReplayFrame.ts b/src/Replays/ReplayFrame.ts index dcd9526..9b4593e 100644 --- a/src/Replays/ReplayFrame.ts +++ b/src/Replays/ReplayFrame.ts @@ -1,13 +1,11 @@ -import { Vector2 } from '../Types'; -import { ReplayButtonState } from './Enums'; import { IReplayFrame } from './IReplayFrame'; /** * A replay frame. */ -export class ReplayFrame implements IReplayFrame { +export abstract class ReplayFrame implements IReplayFrame { /** - * Starting time of this replay frame. + * The time at which this {@link ReplayFrame} takes place. */ startTime = 0; @@ -16,52 +14,6 @@ export class ReplayFrame implements IReplayFrame { */ interval = 0; - /** - * Button state of this replay frame. - */ - buttonState: ReplayButtonState = ReplayButtonState.None; - - /** - * Mouse X-position of this replay frame. - */ - mouseX = 0; - - /** - * Mouse Y-position of this replay frame. - */ - mouseY = 0; - - /** - * Mouse position of this replay frame. - */ - get mousePosition(): Vector2 { - return new Vector2(this.mouseX ?? 0, this.mouseY ?? 0); - } - - get mouseLeft(): boolean { - return this.mouseLeft1 || this.mouseLeft2; - } - - get mouseRight(): boolean { - return this.mouseRight1 || this.mouseRight2; - } - - get mouseLeft1(): boolean { - return !!(this.buttonState & ReplayButtonState.Left1); - } - - get mouseRight1(): boolean { - return !!(this.buttonState & ReplayButtonState.Right1); - } - - get mouseLeft2(): boolean { - return !!(this.buttonState & ReplayButtonState.Left2); - } - - get mouseRight2(): boolean { - return !!(this.buttonState & ReplayButtonState.Right2); - } - /** * Creates a deep copy of the replay frame. * @returns Cloned replay frame. @@ -71,7 +23,6 @@ export class ReplayFrame implements IReplayFrame { const cloned = new ReplayFrame(); - cloned.buttonState = this.buttonState; cloned.startTime = this.startTime; cloned.interval = this.interval; From 048676a7401963f0fca62d5e5bc6b8c0471f6eea Mon Sep 17 00:00:00 2001 From: Alexander Date: Sun, 18 Jun 2023 19:42:48 +0300 Subject: [PATCH 26/34] Implement replay conversion --- src/Replays/ReplayConverter.ts | 74 ++++++++++++++++++++ src/Replays/Types/IConvertibleReplayFrame.ts | 29 ++++++++ src/Replays/Types/index.ts | 1 + src/Replays/index.ts | 3 + src/Rulesets/IRuleset.ts | 16 ++++- src/Rulesets/Ruleset.ts | 29 +++++++- 6 files changed, 150 insertions(+), 2 deletions(-) create mode 100644 src/Replays/ReplayConverter.ts create mode 100644 src/Replays/Types/IConvertibleReplayFrame.ts create mode 100644 src/Replays/Types/index.ts diff --git a/src/Replays/ReplayConverter.ts b/src/Replays/ReplayConverter.ts new file mode 100644 index 0000000..6c372ce --- /dev/null +++ b/src/Replays/ReplayConverter.ts @@ -0,0 +1,74 @@ +import { Replay } from './Replay'; +import { IReplay } from './IReplay'; +import { IReplayFrame } from './IReplayFrame'; +import { ReplayFrame } from './ReplayFrame'; +import { IBeatmap } from '../Beatmaps'; +import { LegacyReplayFrame } from './LegacyReplayFrame'; +import { IConvertibleReplayFrame } from './Types'; + +/** + * A replay converter. + */ +export abstract class ReplayConverter { + /** + * Converts any replay from one game mode to another. + * @param original Any kind of a replay. + * @returns The converted replay. + */ + convertReplay(original: IReplay, beatmap: IBeatmap): Replay { + const converted = this.createReplay(); + + converted.gameVersion = original.gameVersion; + converted.mode = original.mode; + converted.hashMD5 = original.hashMD5; + converted.lifeBar = original.lifeBar; + + for (const frame of this.convertFrames(original.frames, beatmap)) { + converted.frames.push(frame); + } + + return converted; + } + + createReplay(): Replay { + return new Replay(); + } + + *convertFrames(frames: IReplayFrame[], beatmap: IBeatmap): Generator { + let lastFrame: ReplayFrame | null = null; + + for (const frame of frames) { + const convertedFrame = this._convertFrame(frame, beatmap, lastFrame); + + yield convertedFrame; + + lastFrame = convertedFrame; + } + } + + protected _convertFrame( + frame: IReplayFrame, + beatmap: IBeatmap, + lastFrame: IReplayFrame | null, + ): ReplayFrame { + if (this._isConvertedReplayFrame(frame)) { + return frame; + } + + const convertedFrame = this._createConvertibleReplayFrame(); + + if (convertedFrame && frame instanceof LegacyReplayFrame) { + return convertedFrame.fromLegacy(frame, beatmap, lastFrame); + } + + throw new Error('Replay can not be converted to this ruleset!'); + } + + protected abstract _createConvertibleReplayFrame(): IConvertibleReplayFrame | null; + + /** + * @param frame A replay frame. + * @returns If replay frame is already converted to this ruleset. + */ + protected abstract _isConvertedReplayFrame(frame: IReplayFrame): boolean; +} diff --git a/src/Replays/Types/IConvertibleReplayFrame.ts b/src/Replays/Types/IConvertibleReplayFrame.ts new file mode 100644 index 0000000..933d2a0 --- /dev/null +++ b/src/Replays/Types/IConvertibleReplayFrame.ts @@ -0,0 +1,29 @@ +import { IBeatmap } from '../../Beatmaps'; +import { IReplayFrame } from '../IReplayFrame'; +import { LegacyReplayFrame } from '../LegacyReplayFrame'; + +/** + * A type of {@link IReplayFrame} which can be converted from a {@link LegacyReplayFrame}. + */ +export interface IConvertibleReplayFrame extends IReplayFrame { + /** + * Populates this {@link ReplayFrame} using values from a {@link LegacyReplayFrame}. + * @param currentFrame The {@link LegacyReplayFrame} to extract values from. + * @param beatmap The beatmap of the replay which is used to get some data. + * @param lastFrame The last post-conversion {@link ReplayFrame}, + * used to fill in missing delta information. May be null. + * @returns A reference to this replay frame. + */ + fromLegacy( + currentFrame: LegacyReplayFrame, + beatmap: IBeatmap, + lastFrame: IReplayFrame | null + ): this; + + /** + * Populates this {@link ReplayFrame} using values from a {@link LegacyReplayFrame}. + * @param beatmap The beatmap of the replay which is used to get some data. + * @returns A new instance of legacy replay frame. + */ + toLegacy(beatmap: IBeatmap): LegacyReplayFrame; +} diff --git a/src/Replays/Types/index.ts b/src/Replays/Types/index.ts new file mode 100644 index 0000000..9e3b2d9 --- /dev/null +++ b/src/Replays/Types/index.ts @@ -0,0 +1 @@ +export * from './IConvertibleReplayFrame'; diff --git a/src/Replays/index.ts b/src/Replays/index.ts index 603e97f..de7e762 100644 --- a/src/Replays/index.ts +++ b/src/Replays/index.ts @@ -2,6 +2,9 @@ export * from './Enums'; export * from './ILifeBarFrame'; export * from './IReplay'; export * from './IReplayFrame'; +export * from './LegacyReplayFrame'; export * from './LifeBarFrame'; export * from './Replay'; +export * from './ReplayConverter'; export * from './ReplayFrame'; +export * from './Types'; diff --git a/src/Rulesets/IRuleset.ts b/src/Rulesets/IRuleset.ts index 34421bb..3e0f32c 100644 --- a/src/Rulesets/IRuleset.ts +++ b/src/Rulesets/IRuleset.ts @@ -5,6 +5,11 @@ import { IBeatmap, } from '../Beatmaps'; +import { + IReplay, + Replay, +} from '../Replays'; + import { DifficultyAttributes, DifficultyCalculator, @@ -12,7 +17,7 @@ import { } from '../Difficulty'; import { IScoreInfo } from '../Scoring'; -import { ModCombination } from '../Mods/ModCombination'; +import { ModCombination } from '../Mods'; /** * A ruleset. @@ -38,6 +43,15 @@ export interface IRuleset { */ applyToBeatmapWithMods(beatmap: IBeatmap, mods?: ModCombination): RulesetBeatmap; + /** + * Applies ruleset to a replay. + * Converts legacy replay frames to ruleset specific frames. + * @param replay The replay. + * @param beatmap The beatmap of the replay which is used to get some data. + * @returns A new instance of the replay with applied ruleset. + */ + applyToReplay(replay: IReplay, beatmap: IBeatmap): Replay; + /** * Resets a mod combination from a beatmap. * @param beatmap The beatmap. diff --git a/src/Rulesets/Ruleset.ts b/src/Rulesets/Ruleset.ts index 95d084c..9548204 100644 --- a/src/Rulesets/Ruleset.ts +++ b/src/Rulesets/Ruleset.ts @@ -5,6 +5,12 @@ import { IBeatmap, } from '../Beatmaps'; +import { + IReplay, + Replay, + ReplayConverter, +} from '../Replays'; + import { DifficultyAttributes, DifficultyCalculator, @@ -105,6 +111,23 @@ export abstract class Ruleset implements IRuleset { return converted; } + /** + * Applies ruleset to a replay. + * Converts legacy replay frames to ruleset specific frames. + * @param replay The replay. + * @param beatmap The beatmap of the replay which is used to get some data. + * @returns A new instance of the replay with applied ruleset. + */ + applyToReplay(replay: IReplay, beatmap: IBeatmap): Replay { + if (replay.mode !== beatmap.mode) { + throw new Error('Replay and beatmap mode does not match!'); + } + + const converter = this._createReplayConverter(); + + return converter.convertReplay(replay, beatmap); + } + /** * Resets a mod combination from a beatmap. * @param beatmap The beatmap. @@ -131,7 +154,11 @@ export abstract class Ruleset implements IRuleset { /** * @returns A new beatmap converter. */ - abstract createBeatmapConverter(): BeatmapConverter; + + /** + * @returns A new replay converter. + */ + protected abstract _createReplayConverter(): ReplayConverter; /** * @param beatmap The beatmap for which the calculation will be done. From 8fe263cae614d7366856d297c9fb8995b2ef47d0 Mon Sep 17 00:00:00 2001 From: Alexander Date: Sun, 18 Jun 2023 19:43:16 +0300 Subject: [PATCH 27/34] Make fabric methods for processors and converters protected --- src/Rulesets/IRuleset.ts | 12 ------------ src/Rulesets/Ruleset.ts | 9 +++++---- 2 files changed, 5 insertions(+), 16 deletions(-) diff --git a/src/Rulesets/IRuleset.ts b/src/Rulesets/IRuleset.ts index 3e0f32c..a93bdde 100644 --- a/src/Rulesets/IRuleset.ts +++ b/src/Rulesets/IRuleset.ts @@ -1,6 +1,4 @@ import { - BeatmapProcessor, - BeatmapConverter, RulesetBeatmap, IBeatmap, } from '../Beatmaps'; @@ -66,16 +64,6 @@ export interface IRuleset { */ createModCombination(input?: number | string): ModCombination; - /** - * @returns A new beatmap processor. - */ - createBeatmapProcessor(): BeatmapProcessor; - - /** - * @returns A new beatmap converter. - */ - createBeatmapConverter(): BeatmapConverter; - /** * @param beatmap The beatmap for which the calculation will be done. * @returns A new difficulty calculator. diff --git a/src/Rulesets/Ruleset.ts b/src/Rulesets/Ruleset.ts index 9548204..8ecc0c0 100644 --- a/src/Rulesets/Ruleset.ts +++ b/src/Rulesets/Ruleset.ts @@ -63,13 +63,13 @@ export abstract class Ruleset implements IRuleset { mods = this.createModCombination(mods.bitwise); } - const converter = this.createBeatmapConverter(); + const converter = this._createBeatmapConverter(); /** * Check if the beatmap can be converted. */ if (beatmap.hitObjects.length > 0 && !converter.canConvert(beatmap)) { - throw new Error('Beatmap can not be converted!'); + throw new Error('Beatmap can not be converted to this ruleset!'); } /** @@ -88,7 +88,7 @@ export abstract class Ruleset implements IRuleset { m.applyToDifficulty(converted.difficulty); }); - const processor = this.createBeatmapProcessor(); + const processor = this._createBeatmapProcessor(); processor.preProcess(converted); @@ -149,11 +149,12 @@ export abstract class Ruleset implements IRuleset { /** * @returns A new beatmap processor. */ - abstract createBeatmapProcessor(): BeatmapProcessor; + protected abstract _createBeatmapProcessor(): BeatmapProcessor; /** * @returns A new beatmap converter. */ + protected abstract _createBeatmapConverter(): BeatmapConverter; /** * @returns A new replay converter. From b2a6107cf3bb2fdbed25055568051ef090742ecc Mon Sep 17 00:00:00 2001 From: Alexander Date: Sun, 18 Jun 2023 19:49:52 +0300 Subject: [PATCH 28/34] Use vector2 for replay frame position --- src/Replays/LegacyReplayFrame.ts | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/src/Replays/LegacyReplayFrame.ts b/src/Replays/LegacyReplayFrame.ts index bc56071..349c112 100644 --- a/src/Replays/LegacyReplayFrame.ts +++ b/src/Replays/LegacyReplayFrame.ts @@ -11,15 +11,24 @@ export class LegacyReplayFrame extends ReplayFrame { */ buttonState: ReplayButtonState = ReplayButtonState.None; + /** + * Mouse position of this replay frame. + */ + position: Vector2 = new Vector2(0, 0); + /** * Mouse X-position of this replay frame. */ - mouseX = 0; + get mouseX(): number { + return this.position.x; + } /** * Mouse Y-position of this replay frame. */ - mouseY = 0; + get mouseY(): number { + return this.position.y; + } /** * Mouse position of this replay frame. @@ -60,8 +69,7 @@ export class LegacyReplayFrame extends ReplayFrame { const cloned = super.clone(); cloned.buttonState = this.buttonState; - cloned.mouseX = this.mouseX; - cloned.mouseY = this.mouseY; + cloned.position = this.position.clone(); return cloned; } From 3359135d74e835a987a133881cd19b8687387595 Mon Sep 17 00:00:00 2001 From: Alexander Date: Sun, 18 Jun 2023 19:59:09 +0300 Subject: [PATCH 29/34] Add smoke action for legacy replay frame --- src/Replays/LegacyReplayFrame.ts | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/Replays/LegacyReplayFrame.ts b/src/Replays/LegacyReplayFrame.ts index 349c112..091b401 100644 --- a/src/Replays/LegacyReplayFrame.ts +++ b/src/Replays/LegacyReplayFrame.ts @@ -46,19 +46,23 @@ export class LegacyReplayFrame extends ReplayFrame { } get mouseLeft1(): boolean { - return !!(this.buttonState & ReplayButtonState.Left1); + return (this.buttonState & ReplayButtonState.Left1) > 0; } get mouseRight1(): boolean { - return !!(this.buttonState & ReplayButtonState.Right1); + return (this.buttonState & ReplayButtonState.Right1) > 0; } get mouseLeft2(): boolean { - return !!(this.buttonState & ReplayButtonState.Left2); + return (this.buttonState & ReplayButtonState.Left2) > 0; } get mouseRight2(): boolean { - return !!(this.buttonState & ReplayButtonState.Right2); + return (this.buttonState & ReplayButtonState.Right2) > 0; + } + + get smoke(): boolean { + return (this.buttonState & ReplayButtonState.Smoke) > 0; } /** From 4c95689f337a6a25dc59ca29e535dba49e474afb Mon Sep 17 00:00:00 2001 From: Alexander Date: Sun, 18 Jun 2023 20:04:29 +0300 Subject: [PATCH 30/34] Add constructors for replay frames --- src/Replays/LegacyReplayFrame.ts | 16 ++++++++++++++-- src/Replays/LifeBarFrame.ts | 5 +++++ src/Replays/ReplayFrame.ts | 9 +++++++-- 3 files changed, 26 insertions(+), 4 deletions(-) diff --git a/src/Replays/LegacyReplayFrame.ts b/src/Replays/LegacyReplayFrame.ts index 091b401..fb1949b 100644 --- a/src/Replays/LegacyReplayFrame.ts +++ b/src/Replays/LegacyReplayFrame.ts @@ -9,12 +9,24 @@ export class LegacyReplayFrame extends ReplayFrame { /** * Button state of this replay frame. */ - buttonState: ReplayButtonState = ReplayButtonState.None; + buttonState: ReplayButtonState; /** * Mouse position of this replay frame. */ - position: Vector2 = new Vector2(0, 0); + position: Vector2; + + constructor( + startTime?: number, + interval?: number, + position?: Vector2, + buttonState?: ReplayButtonState, + ) { + super(startTime, interval); + + this.position = position ?? new Vector2(0, 0); + this.buttonState = buttonState ?? ReplayButtonState.None; + } /** * Mouse X-position of this replay frame. diff --git a/src/Replays/LifeBarFrame.ts b/src/Replays/LifeBarFrame.ts index 0235cd2..2b75ac2 100644 --- a/src/Replays/LifeBarFrame.ts +++ b/src/Replays/LifeBarFrame.ts @@ -15,6 +15,11 @@ export class LifeBarFrame implements ILifeBarFrame { */ health = 0; + constructor(startTime: number, health: number) { + this.startTime = startTime; + this.health = health; + } + /** * Creates a deep copy of the replay frame. * @returns Cloned replay frame. diff --git a/src/Replays/ReplayFrame.ts b/src/Replays/ReplayFrame.ts index 9b4593e..1d6cf33 100644 --- a/src/Replays/ReplayFrame.ts +++ b/src/Replays/ReplayFrame.ts @@ -7,12 +7,17 @@ export abstract class ReplayFrame implements IReplayFrame { /** * The time at which this {@link ReplayFrame} takes place. */ - startTime = 0; + startTime: number; /** * Interval between this and previous replay frames. */ - interval = 0; + interval: number; + + constructor(startTime?: number, interval?: number) { + this.startTime = startTime ?? 0; + this.interval = interval ?? 0; + } /** * Creates a deep copy of the replay frame. From 28838c72116e64a4e15f0b722e5292952fcdbe44 Mon Sep 17 00:00:00 2001 From: Alexander Date: Sun, 18 Jun 2023 20:05:20 +0300 Subject: [PATCH 31/34] Make lifebar frame's constructor optional --- src/Replays/LifeBarFrame.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Replays/LifeBarFrame.ts b/src/Replays/LifeBarFrame.ts index 2b75ac2..b8bb1a0 100644 --- a/src/Replays/LifeBarFrame.ts +++ b/src/Replays/LifeBarFrame.ts @@ -7,17 +7,17 @@ export class LifeBarFrame implements ILifeBarFrame { /** * Starting time of this life bar frame. */ - startTime = 0; + startTime: number; /** * The amount of HP at that current time. * This value is in range of 0-1. */ - health = 0; + health: number; - constructor(startTime: number, health: number) { - this.startTime = startTime; - this.health = health; + constructor(startTime?: number, health?: number) { + this.startTime = startTime ?? 0; + this.health = health ?? 0; } /** From b65d668218cf02d39e67485410a95c1e29b92075 Mon Sep 17 00:00:00 2001 From: Alexander Date: Sun, 18 Jun 2023 23:28:58 +0300 Subject: [PATCH 32/34] Allow beatmap to be optional when converting a replay --- src/Replays/ReplayConverter.ts | 13 ++++++++----- src/Replays/Types/IConvertibleReplayFrame.ts | 6 +++--- src/Rulesets/IRuleset.ts | 2 +- src/Rulesets/Ruleset.ts | 4 ++-- 4 files changed, 14 insertions(+), 11 deletions(-) diff --git a/src/Replays/ReplayConverter.ts b/src/Replays/ReplayConverter.ts index 6c372ce..ca3d4d4 100644 --- a/src/Replays/ReplayConverter.ts +++ b/src/Replays/ReplayConverter.ts @@ -15,7 +15,7 @@ export abstract class ReplayConverter { * @param original Any kind of a replay. * @returns The converted replay. */ - convertReplay(original: IReplay, beatmap: IBeatmap): Replay { + convertReplay(original: IReplay, beatmap?: IBeatmap): Replay { const converted = this.createReplay(); converted.gameVersion = original.gameVersion; @@ -34,11 +34,11 @@ export abstract class ReplayConverter { return new Replay(); } - *convertFrames(frames: IReplayFrame[], beatmap: IBeatmap): Generator { + *convertFrames(frames: IReplayFrame[], beatmap?: IBeatmap): Generator { let lastFrame: ReplayFrame | null = null; for (const frame of frames) { - const convertedFrame = this._convertFrame(frame, beatmap, lastFrame); + const convertedFrame = this._convertFrame(frame, lastFrame, beatmap); yield convertedFrame; @@ -48,8 +48,8 @@ export abstract class ReplayConverter { protected _convertFrame( frame: IReplayFrame, - beatmap: IBeatmap, lastFrame: IReplayFrame | null, + beatmap?: IBeatmap, ): ReplayFrame { if (this._isConvertedReplayFrame(frame)) { return frame; @@ -58,12 +58,15 @@ export abstract class ReplayConverter { const convertedFrame = this._createConvertibleReplayFrame(); if (convertedFrame && frame instanceof LegacyReplayFrame) { - return convertedFrame.fromLegacy(frame, beatmap, lastFrame); + return convertedFrame.fromLegacy(frame, lastFrame, beatmap); } throw new Error('Replay can not be converted to this ruleset!'); } + /** + * @returns A new instance of convertible replay frame. + */ protected abstract _createConvertibleReplayFrame(): IConvertibleReplayFrame | null; /** diff --git a/src/Replays/Types/IConvertibleReplayFrame.ts b/src/Replays/Types/IConvertibleReplayFrame.ts index 933d2a0..67fba8e 100644 --- a/src/Replays/Types/IConvertibleReplayFrame.ts +++ b/src/Replays/Types/IConvertibleReplayFrame.ts @@ -16,8 +16,8 @@ export interface IConvertibleReplayFrame extends IReplayFrame { */ fromLegacy( currentFrame: LegacyReplayFrame, - beatmap: IBeatmap, - lastFrame: IReplayFrame | null + lastFrame: IReplayFrame | null, + beatmap?: IBeatmap, ): this; /** @@ -25,5 +25,5 @@ export interface IConvertibleReplayFrame extends IReplayFrame { * @param beatmap The beatmap of the replay which is used to get some data. * @returns A new instance of legacy replay frame. */ - toLegacy(beatmap: IBeatmap): LegacyReplayFrame; + toLegacy(beatmap?: IBeatmap): LegacyReplayFrame; } diff --git a/src/Rulesets/IRuleset.ts b/src/Rulesets/IRuleset.ts index a93bdde..dc0da06 100644 --- a/src/Rulesets/IRuleset.ts +++ b/src/Rulesets/IRuleset.ts @@ -48,7 +48,7 @@ export interface IRuleset { * @param beatmap The beatmap of the replay which is used to get some data. * @returns A new instance of the replay with applied ruleset. */ - applyToReplay(replay: IReplay, beatmap: IBeatmap): Replay; + applyToReplay(replay: IReplay, beatmap?: IBeatmap): Replay; /** * Resets a mod combination from a beatmap. diff --git a/src/Rulesets/Ruleset.ts b/src/Rulesets/Ruleset.ts index 8ecc0c0..54c1b68 100644 --- a/src/Rulesets/Ruleset.ts +++ b/src/Rulesets/Ruleset.ts @@ -118,8 +118,8 @@ export abstract class Ruleset implements IRuleset { * @param beatmap The beatmap of the replay which is used to get some data. * @returns A new instance of the replay with applied ruleset. */ - applyToReplay(replay: IReplay, beatmap: IBeatmap): Replay { - if (replay.mode !== beatmap.mode) { + applyToReplay(replay: IReplay, beatmap?: IBeatmap): Replay { + if (beatmap && replay.mode !== beatmap.mode) { throw new Error('Replay and beatmap mode does not match!'); } From b0e06ec4da8c09f28c06b89414f62690f0f6490c Mon Sep 17 00:00:00 2001 From: Alexander Date: Mon, 19 Jun 2023 00:09:29 +0300 Subject: [PATCH 33/34] 3.0.0 --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 3c289c8..126f80e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "osu-classes", - "version": "2.2.0", + "version": "3.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "osu-classes", - "version": "2.2.0", + "version": "3.0.0", "license": "MIT", "devDependencies": { "@rollup/plugin-commonjs": "^21.0.1", diff --git a/package.json b/package.json index 466e2cd..81b35d8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "osu-classes", - "version": "2.2.0", + "version": "3.0.0", "description": "Basic classes, interfaces and utils for creating new osu! rulesets", "exports": { "import": "./lib/index.mjs", From 7feeb4491d278fa362837abf37cbfae724de7ec7 Mon Sep 17 00:00:00 2001 From: Alexander Date: Mon, 19 Jun 2023 00:10:13 +0300 Subject: [PATCH 34/34] Update docs to 3.0.x --- docs/assets/highlight.css | 2 +- docs/assets/main.js | 4 +- docs/assets/search.js | 2 +- docs/assets/style.css | 34 +++++- docs/classes/Autoplay.html | 16 +-- docs/classes/Beatmap.html | 58 +++++----- docs/classes/BeatmapBreakEvent.html | 16 +-- docs/classes/BeatmapColorSection.html | 12 +- docs/classes/BeatmapConverter.html | 6 +- docs/classes/BeatmapDifficultySection.html | 36 +++--- docs/classes/BeatmapEditorSection.html | 16 +-- docs/classes/BeatmapEventSection.html | 14 +-- docs/classes/BeatmapGeneralSection.html | 36 +++--- docs/classes/BeatmapInfo.html | 101 +++++++++-------- docs/classes/BeatmapMetadataSection.html | 22 ++-- docs/classes/BeatmapProcessor.html | 8 +- docs/classes/BlendingParameters.html | 32 +++--- docs/classes/Cinema.html | 16 +-- docs/classes/CircularArcProperties.html | 16 +-- docs/classes/Color4.html | 22 ++-- docs/classes/Command.html | 28 ++--- docs/classes/CommandLoop.html | 18 +-- docs/classes/CommandTimeline.html | 6 +- docs/classes/CommandTimelineGroup.html | 4 +- docs/classes/CommandTrigger.html | 14 +-- docs/classes/ControlPoint.html | 14 +-- docs/classes/ControlPointGroup.html | 14 +-- docs/classes/ControlPointInfo.html | 34 +++--- docs/classes/DifficultyAttributes.html | 12 +- docs/classes/DifficultyCalculator.html | 16 +-- docs/classes/DifficultyHitObject.html | 18 +-- docs/classes/DifficultyPoint.html | 33 +++--- docs/classes/DifficultyRange.html | 4 +- docs/classes/DoubleTime.html | 18 +-- docs/classes/Easy.html | 18 +-- docs/classes/EffectPoint.html | 27 +++-- docs/classes/EventGenerator.html | 8 +- docs/classes/FastRandom.html | 14 +-- docs/classes/Flashlight.html | 16 +-- docs/classes/Grades.html | 13 +++ docs/classes/HalfTime.html | 18 +-- docs/classes/HardRock.html | 18 +-- docs/classes/Hidden.html | 16 +-- docs/classes/HighestRank.html | 12 ++ docs/classes/HitObject.html | 38 +++---- docs/classes/HitSample.html | 20 ++-- docs/classes/HitStatistics.html | 11 ++ docs/classes/HitWindows.html | 18 +-- docs/classes/LegacyReplayFrame.html | 20 ++++ docs/classes/LegacyScoreExtensions.html | 34 +++--- docs/classes/LevelInfo.html | 11 ++ docs/classes/LifeBarFrame.html | 10 +- docs/classes/LimitedCapacityQueue.html | 22 ++-- docs/classes/ModCombination.html | 62 +++++----- docs/classes/Nightcore.html | 18 +-- docs/classes/NoFail.html | 16 +-- docs/classes/NoMod.html | 16 +-- docs/classes/PathApproximator.html | 20 ++-- docs/classes/PathPoint.html | 10 +- docs/classes/Perfect.html | 16 +-- docs/classes/PerformanceAttributes.html | 10 +- docs/classes/PerformanceCalculator.html | 6 +- .../ProgressiveCalculationBeatmap.html | 54 ++++----- docs/classes/RankHistory.html | 12 ++ docs/classes/Relax.html | 16 +-- docs/classes/Replay.html | 18 +-- docs/classes/ReplayConverter.html | 8 ++ docs/classes/ReplayFrame.html | 20 +--- docs/classes/ReverseQueue.html | 16 +-- docs/classes/RoundHelper.html | 12 +- docs/classes/Ruleset.html | 28 +++-- docs/classes/RulesetBeatmap.html | 62 +++++----- docs/classes/SampleBank.html | 14 +-- docs/classes/SamplePoint.html | 29 ++--- docs/classes/Score.html | 8 +- docs/classes/ScoreInfo.html | 106 ++++++++++-------- docs/classes/Skill.html | 8 +- docs/classes/SliderPath.html | 34 +++--- docs/classes/SortHelper.html | 10 +- docs/classes/Storyboard.html | 26 ++--- docs/classes/StoryboardAnimation.html | 64 +++++------ docs/classes/StoryboardLayer.html | 16 +-- docs/classes/StoryboardSample.html | 12 +- docs/classes/StoryboardSprite.html | 64 +++++------ docs/classes/StoryboardVideo.html | 10 +- docs/classes/StrainDecaySkill.html | 10 +- docs/classes/StrainSkill.html | 10 +- docs/classes/SuddenDeath.html | 16 +-- docs/classes/TimedDifficultyAttributes.html | 12 +- docs/classes/TimingPoint.html | 27 +++-- docs/classes/UserInfo.html | 76 +++++++++---- docs/classes/Vector2.html | 44 ++++---- docs/enums/Anchor.html | 18 +-- docs/enums/BlendEquationMode.html | 2 +- docs/enums/BlendingEquation.html | 14 +-- docs/enums/BlendingFactorDest.html | 2 +- docs/enums/BlendingFactorSrc.html | 2 +- docs/enums/BlendingMode.html | 4 +- docs/enums/BlendingType.html | 4 +- docs/enums/CommandType.html | 4 +- docs/enums/CompoundType.html | 4 +- docs/enums/ControlPointType.html | 4 +- docs/enums/CountryCode.html | 1 + docs/enums/EasingType.html | 4 +- docs/enums/EffectType.html | 4 +- docs/enums/EventType.html | 4 +- docs/enums/HitResult.html | 22 ++-- docs/enums/HitSound.html | 4 +- docs/enums/HitType.html | 4 +- docs/enums/LayerType.html | 4 +- docs/enums/LoopType.html | 4 +- docs/enums/ModBitwise.html | 4 +- docs/enums/ModType.html | 4 +- docs/enums/Origins.html | 4 +- docs/enums/ParameterType.html | 4 +- docs/enums/PathType.html | 4 +- docs/enums/ReplayButtonState.html | 2 +- docs/enums/SampleSet.html | 4 +- docs/enums/ScoreRank.html | 2 +- docs/enums/SliderEventType.html | 4 +- docs/enums/TimeSignature.html | 4 +- docs/index.html | 4 +- docs/interfaces/IApplicableToBeatmap.html | 20 ++-- docs/interfaces/IApplicableToConverter.html | 20 ++-- docs/interfaces/IApplicableToDifficulty.html | 20 ++-- docs/interfaces/IApplicableToHitObjects.html | 20 ++-- docs/interfaces/IBeatmap.html | 42 +++---- docs/interfaces/IBeatmapInfo.html | 82 +++++++------- docs/interfaces/IConvertibleReplayFrame.html | 25 +++++ docs/interfaces/IHasColumn.html | 6 +- docs/interfaces/IHasCombo.html | 8 +- docs/interfaces/IHasComboInformation.html | 16 +-- docs/interfaces/IHasCommands.html | 22 ++-- docs/interfaces/IHasDistance.html | 10 +- docs/interfaces/IHasDuration.html | 8 +- docs/interfaces/IHasLegacyLastTickOffset.html | 6 +- docs/interfaces/IHasNodeSamples.html | 6 +- docs/interfaces/IHasPath.html | 12 +- docs/interfaces/IHasPathWithRepeats.html | 20 ++-- docs/interfaces/IHasPosition.html | 14 +-- docs/interfaces/IHasRepeats.html | 16 +-- docs/interfaces/IHasX.html | 8 +- docs/interfaces/IHasY.html | 8 +- docs/interfaces/IHitObject.html | 16 +-- docs/interfaces/IHitStatistics.html | 3 - docs/interfaces/IHoldableObject.html | 20 ++-- docs/interfaces/IJsonableBeatmapInfo.html | 82 +++++++------- docs/interfaces/IJsonableHighestRank.html | 7 ++ docs/interfaces/IJsonableHitStatistics.html | 1 + docs/interfaces/IJsonableScoreInfo.html | 62 +++++----- docs/interfaces/IJsonableUserInfo.html | 57 ++++++++++ docs/interfaces/ILifeBarFrame.html | 10 +- docs/interfaces/IMod.html | 16 +-- docs/interfaces/IReplay.html | 14 +-- docs/interfaces/IReplayFrame.html | 16 +-- docs/interfaces/IRuleset.html | 28 +++-- docs/interfaces/IScore.html | 8 +- docs/interfaces/IScoreInfo.html | 62 +++++----- docs/interfaces/ISlidableObject.html | 40 +++---- docs/interfaces/ISliderEventDescriptor.html | 14 +-- docs/interfaces/ISpinnableObject.html | 18 +-- docs/interfaces/IStoryboardElement.html | 10 +- .../IStoryboardElementWithDuration.html | 14 +-- docs/interfaces/IUserInfo.html | 62 +++++++--- docs/modules.html | 2 +- docs/modules/Accuracy.html | 6 + docs/modules/BinarySearch.html | 12 +- docs/modules/Easing.html | 2 +- docs/modules/Interpolation.html | 6 +- docs/modules/MathUtils.html | 2 +- docs/modules/Rank.html | 6 + docs/modules/ScoreUtils.html | 11 -- 172 files changed, 1756 insertions(+), 1451 deletions(-) create mode 100644 docs/classes/Grades.html create mode 100644 docs/classes/HighestRank.html create mode 100644 docs/classes/HitStatistics.html create mode 100644 docs/classes/LegacyReplayFrame.html create mode 100644 docs/classes/LevelInfo.html create mode 100644 docs/classes/RankHistory.html create mode 100644 docs/classes/ReplayConverter.html create mode 100644 docs/enums/CountryCode.html create mode 100644 docs/interfaces/IConvertibleReplayFrame.html delete mode 100644 docs/interfaces/IHitStatistics.html create mode 100644 docs/interfaces/IJsonableHighestRank.html create mode 100644 docs/interfaces/IJsonableHitStatistics.html create mode 100644 docs/interfaces/IJsonableUserInfo.html create mode 100644 docs/modules/Accuracy.html create mode 100644 docs/modules/Rank.html delete mode 100644 docs/modules/ScoreUtils.html diff --git a/docs/assets/highlight.css b/docs/assets/highlight.css index 0bbaeb8..f66e525 100644 --- a/docs/assets/highlight.css +++ b/docs/assets/highlight.css @@ -1,7 +1,7 @@ :root { --light-hl-0: #000000; --dark-hl-0: #D4D4D4; - --light-code-background: #FFFFFF; + --light-code-background: #F5F5F5; --dark-code-background: #1E1E1E; } diff --git a/docs/assets/main.js b/docs/assets/main.js index 1cc526e..bd45452 100644 --- a/docs/assets/main.js +++ b/docs/assets/main.js @@ -1,5 +1,5 @@ -(()=>{var Ce=Object.create;var J=Object.defineProperty;var Pe=Object.getOwnPropertyDescriptor;var Oe=Object.getOwnPropertyNames;var Re=Object.getPrototypeOf,_e=Object.prototype.hasOwnProperty;var Me=t=>J(t,"__esModule",{value:!0});var Fe=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports);var De=(t,e,r)=>{if(e&&typeof e=="object"||typeof e=="function")for(let n of Oe(e))!_e.call(t,n)&&n!=="default"&&J(t,n,{get:()=>e[n],enumerable:!(r=Pe(e,n))||r.enumerable});return t},Ae=t=>De(Me(J(t!=null?Ce(Re(t)):{},"default",t&&t.__esModule&&"default"in t?{get:()=>t.default,enumerable:!0}:{value:t,enumerable:!0})),t);var de=Fe((ue,he)=>{(function(){var t=function(e){var r=new t.Builder;return r.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),r.searchPipeline.add(t.stemmer),e.call(r,r),r.build()};t.version="2.3.9";t.utils={},t.utils.warn=function(e){return function(r){e.console&&console.warn&&console.warn(r)}}(this),t.utils.asString=function(e){return e==null?"":e.toString()},t.utils.clone=function(e){if(e==null)return e;for(var r=Object.create(null),n=Object.keys(e),i=0;i0){var h=t.utils.clone(r)||{};h.position=[a,l],h.index=s.length,s.push(new t.Token(n.slice(a,o),h))}a=o+1}}return s},t.tokenizer.separator=/[\s\-]+/;t.Pipeline=function(){this._stack=[]},t.Pipeline.registeredFunctions=Object.create(null),t.Pipeline.registerFunction=function(e,r){r in this.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+r),e.label=r,t.Pipeline.registeredFunctions[e.label]=e},t.Pipeline.warnIfFunctionNotRegistered=function(e){var r=e.label&&e.label in this.registeredFunctions;r||t.utils.warn(`Function is not registered with pipeline. This may cause problems when serialising the index. -`,e)},t.Pipeline.load=function(e){var r=new t.Pipeline;return e.forEach(function(n){var i=t.Pipeline.registeredFunctions[n];if(i)r.add(i);else throw new Error("Cannot load unregistered function: "+n)}),r},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(r){t.Pipeline.warnIfFunctionNotRegistered(r),this._stack.push(r)},this)},t.Pipeline.prototype.after=function(e,r){t.Pipeline.warnIfFunctionNotRegistered(r);var n=this._stack.indexOf(e);if(n==-1)throw new Error("Cannot find existingFn");n=n+1,this._stack.splice(n,0,r)},t.Pipeline.prototype.before=function(e,r){t.Pipeline.warnIfFunctionNotRegistered(r);var n=this._stack.indexOf(e);if(n==-1)throw new Error("Cannot find existingFn");this._stack.splice(n,0,r)},t.Pipeline.prototype.remove=function(e){var r=this._stack.indexOf(e);r!=-1&&this._stack.splice(r,1)},t.Pipeline.prototype.run=function(e){for(var r=this._stack.length,n=0;n1&&(oe&&(n=s),o!=e);)i=n-r,s=r+Math.floor(i/2),o=this.elements[s*2];if(o==e||o>e)return s*2;if(oc?h+=2:a==c&&(r+=n[l+1]*i[h+1],l+=2,h+=2);return r},t.Vector.prototype.similarity=function(e){return this.dot(e)/this.magnitude()||0},t.Vector.prototype.toArray=function(){for(var e=new Array(this.elements.length/2),r=1,n=0;r0){var o=s.str.charAt(0),a;o in s.node.edges?a=s.node.edges[o]:(a=new t.TokenSet,s.node.edges[o]=a),s.str.length==1&&(a.final=!0),i.push({node:a,editsRemaining:s.editsRemaining,str:s.str.slice(1)})}if(s.editsRemaining!=0){if("*"in s.node.edges)var c=s.node.edges["*"];else{var c=new t.TokenSet;s.node.edges["*"]=c}if(s.str.length==0&&(c.final=!0),i.push({node:c,editsRemaining:s.editsRemaining-1,str:s.str}),s.str.length>1&&i.push({node:s.node,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)}),s.str.length==1&&(s.node.final=!0),s.str.length>=1){if("*"in s.node.edges)var l=s.node.edges["*"];else{var l=new t.TokenSet;s.node.edges["*"]=l}s.str.length==1&&(l.final=!0),i.push({node:l,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)})}if(s.str.length>1){var h=s.str.charAt(0),f=s.str.charAt(1),v;f in s.node.edges?v=s.node.edges[f]:(v=new t.TokenSet,s.node.edges[f]=v),s.str.length==1&&(v.final=!0),i.push({node:v,editsRemaining:s.editsRemaining-1,str:h+s.str.slice(2)})}}}return n},t.TokenSet.fromString=function(e){for(var r=new t.TokenSet,n=r,i=0,s=e.length;i=e;r--){var n=this.uncheckedNodes[r],i=n.child.toString();i in this.minimizedNodes?n.parent.edges[n.char]=this.minimizedNodes[i]:(n.child._str=i,this.minimizedNodes[i]=n.child),this.uncheckedNodes.pop()}};t.Index=function(e){this.invertedIndex=e.invertedIndex,this.fieldVectors=e.fieldVectors,this.tokenSet=e.tokenSet,this.fields=e.fields,this.pipeline=e.pipeline},t.Index.prototype.search=function(e){return this.query(function(r){var n=new t.QueryParser(e,r);n.parse()})},t.Index.prototype.query=function(e){for(var r=new t.Query(this.fields),n=Object.create(null),i=Object.create(null),s=Object.create(null),o=Object.create(null),a=Object.create(null),c=0;c1?this._b=1:this._b=e},t.Builder.prototype.k1=function(e){this._k1=e},t.Builder.prototype.add=function(e,r){var n=e[this._ref],i=Object.keys(this._fields);this._documents[n]=r||{},this.documentCount+=1;for(var s=0;s=this.length)return t.QueryLexer.EOS;var e=this.str.charAt(this.pos);return this.pos+=1,e},t.QueryLexer.prototype.width=function(){return this.pos-this.start},t.QueryLexer.prototype.ignore=function(){this.start==this.pos&&(this.pos+=1),this.start=this.pos},t.QueryLexer.prototype.backup=function(){this.pos-=1},t.QueryLexer.prototype.acceptDigitRun=function(){var e,r;do e=this.next(),r=e.charCodeAt(0);while(r>47&&r<58);e!=t.QueryLexer.EOS&&this.backup()},t.QueryLexer.prototype.more=function(){return this.pos1&&(e.backup(),e.emit(t.QueryLexer.TERM)),e.ignore(),e.more())return t.QueryLexer.lexText},t.QueryLexer.lexEditDistance=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(t.QueryLexer.EDIT_DISTANCE),t.QueryLexer.lexText},t.QueryLexer.lexBoost=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(t.QueryLexer.BOOST),t.QueryLexer.lexText},t.QueryLexer.lexEOS=function(e){e.width()>0&&e.emit(t.QueryLexer.TERM)},t.QueryLexer.termSeparator=t.tokenizer.separator,t.QueryLexer.lexText=function(e){for(;;){var r=e.next();if(r==t.QueryLexer.EOS)return t.QueryLexer.lexEOS;if(r.charCodeAt(0)==92){e.escapeCharacter();continue}if(r==":")return t.QueryLexer.lexField;if(r=="~")return e.backup(),e.width()>0&&e.emit(t.QueryLexer.TERM),t.QueryLexer.lexEditDistance;if(r=="^")return e.backup(),e.width()>0&&e.emit(t.QueryLexer.TERM),t.QueryLexer.lexBoost;if(r=="+"&&e.width()===1||r=="-"&&e.width()===1)return e.emit(t.QueryLexer.PRESENCE),t.QueryLexer.lexText;if(r.match(t.QueryLexer.termSeparator))return t.QueryLexer.lexTerm}},t.QueryParser=function(e,r){this.lexer=new t.QueryLexer(e),this.query=r,this.currentClause={},this.lexemeIdx=0},t.QueryParser.prototype.parse=function(){this.lexer.run(),this.lexemes=this.lexer.lexemes;for(var e=t.QueryParser.parseClause;e;)e=e(this);return this.query},t.QueryParser.prototype.peekLexeme=function(){return this.lexemes[this.lexemeIdx]},t.QueryParser.prototype.consumeLexeme=function(){var e=this.peekLexeme();return this.lexemeIdx+=1,e},t.QueryParser.prototype.nextClause=function(){var e=this.currentClause;this.query.clause(e),this.currentClause={}},t.QueryParser.parseClause=function(e){var r=e.peekLexeme();if(r!=null)switch(r.type){case t.QueryLexer.PRESENCE:return t.QueryParser.parsePresence;case t.QueryLexer.FIELD:return t.QueryParser.parseField;case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var n="expected either a field or a term, found "+r.type;throw r.str.length>=1&&(n+=" with value '"+r.str+"'"),new t.QueryParseError(n,r.start,r.end)}},t.QueryParser.parsePresence=function(e){var r=e.consumeLexeme();if(r!=null){switch(r.str){case"-":e.currentClause.presence=t.Query.presence.PROHIBITED;break;case"+":e.currentClause.presence=t.Query.presence.REQUIRED;break;default:var n="unrecognised presence operator'"+r.str+"'";throw new t.QueryParseError(n,r.start,r.end)}var i=e.peekLexeme();if(i==null){var n="expecting term or field, found nothing";throw new t.QueryParseError(n,r.start,r.end)}switch(i.type){case t.QueryLexer.FIELD:return t.QueryParser.parseField;case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var n="expecting term or field, found '"+i.type+"'";throw new t.QueryParseError(n,i.start,i.end)}}},t.QueryParser.parseField=function(e){var r=e.consumeLexeme();if(r!=null){if(e.query.allFields.indexOf(r.str)==-1){var n=e.query.allFields.map(function(o){return"'"+o+"'"}).join(", "),i="unrecognised field '"+r.str+"', possible fields: "+n;throw new t.QueryParseError(i,r.start,r.end)}e.currentClause.fields=[r.str];var s=e.peekLexeme();if(s==null){var i="expecting term, found nothing";throw new t.QueryParseError(i,r.start,r.end)}switch(s.type){case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var i="expecting term, found '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},t.QueryParser.parseTerm=function(e){var r=e.consumeLexeme();if(r!=null){e.currentClause.term=r.str.toLowerCase(),r.str.indexOf("*")!=-1&&(e.currentClause.usePipeline=!1);var n=e.peekLexeme();if(n==null){e.nextClause();return}switch(n.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+n.type+"'";throw new t.QueryParseError(i,n.start,n.end)}}},t.QueryParser.parseEditDistance=function(e){var r=e.consumeLexeme();if(r!=null){var n=parseInt(r.str,10);if(isNaN(n)){var i="edit distance must be numeric";throw new t.QueryParseError(i,r.start,r.end)}e.currentClause.editDistance=n;var s=e.peekLexeme();if(s==null){e.nextClause();return}switch(s.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},t.QueryParser.parseBoost=function(e){var r=e.consumeLexeme();if(r!=null){var n=parseInt(r.str,10);if(isNaN(n)){var i="boost must be numeric";throw new t.QueryParseError(i,r.start,r.end)}e.currentClause.boost=n;var s=e.peekLexeme();if(s==null){e.nextClause();return}switch(s.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},function(e,r){typeof define=="function"&&define.amd?define(r):typeof ue=="object"?he.exports=r():e.lunr=r()}(this,function(){return t})})()});var le=[];function N(t,e){le.push({selector:e,constructor:t})}var X=class{constructor(){this.createComponents(document.body)}createComponents(e){le.forEach(r=>{e.querySelectorAll(r.selector).forEach(n=>{n.dataset.hasInstance||(new r.constructor({el:n}),n.dataset.hasInstance=String(!0))})})}};var Q=class{constructor(e){this.el=e.el}};var Z=class{constructor(){this.listeners={}}addEventListener(e,r){e in this.listeners||(this.listeners[e]=[]),this.listeners[e].push(r)}removeEventListener(e,r){if(!(e in this.listeners))return;let n=this.listeners[e];for(let i=0,s=n.length;i{let r=Date.now();return(...n)=>{r+e-Date.now()<0&&(t(...n),r=Date.now())}};var ee=class extends Z{constructor(){super();this.scrollTop=0;this.lastY=0;this.width=0;this.height=0;this.showToolbar=!0;this.toolbar=document.querySelector(".tsd-page-toolbar"),this.secondaryNav=document.querySelector(".tsd-navigation.secondary"),window.addEventListener("scroll",K(()=>this.onScroll(),10)),window.addEventListener("resize",K(()=>this.onResize(),10)),this.onResize(),this.onScroll()}triggerResize(){let e=new CustomEvent("resize",{detail:{width:this.width,height:this.height}});this.dispatchEvent(e)}onResize(){this.width=window.innerWidth||0,this.height=window.innerHeight||0;let e=new CustomEvent("resize",{detail:{width:this.width,height:this.height}});this.dispatchEvent(e)}onScroll(){this.scrollTop=window.scrollY||0;let e=new CustomEvent("scroll",{detail:{scrollTop:this.scrollTop}});this.dispatchEvent(e),this.hideShowToolbar()}hideShowToolbar(){let e=this.showToolbar;this.showToolbar=this.lastY>=this.scrollTop||this.scrollTop<=0,e!==this.showToolbar&&(this.toolbar.classList.toggle("tsd-page-toolbar--hide"),this.secondaryNav.classList.toggle("tsd-navigation--toolbar-hide")),this.lastY=this.scrollTop}},I=ee;I.instance=new ee;var te=class extends Q{constructor(e){super(e);this.anchors=[];this.index=-1;I.instance.addEventListener("resize",()=>this.onResize()),I.instance.addEventListener("scroll",r=>this.onScroll(r)),this.createAnchors()}createAnchors(){let e=window.location.href;e.indexOf("#")!=-1&&(e=e.substr(0,e.indexOf("#"))),this.el.querySelectorAll("a").forEach(r=>{let n=r.href;if(n.indexOf("#")==-1||n.substr(0,e.length)!=e)return;let i=n.substr(n.indexOf("#")+1),s=document.querySelector("a.tsd-anchor[name="+i+"]"),o=r.parentNode;!s||!o||this.anchors.push({link:o,anchor:s,position:0})}),this.onResize()}onResize(){let e;for(let n=0,i=this.anchors.length;nn.position-i.position);let r=new CustomEvent("scroll",{detail:{scrollTop:I.instance.scrollTop}});this.onScroll(r)}onScroll(e){let r=e.detail.scrollTop+5,n=this.anchors,i=n.length-1,s=this.index;for(;s>-1&&n[s].position>r;)s-=1;for(;s-1&&this.anchors[this.index].link.classList.remove("focus"),this.index=s,this.index>-1&&this.anchors[this.index].link.classList.add("focus"))}};var ce=(t,e=100)=>{let r;return(...n)=>{clearTimeout(r),r=setTimeout(()=>t(n),e)}};var pe=Ae(de());function fe(){let t=document.getElementById("tsd-search");if(!t)return;let e=document.getElementById("search-script");t.classList.add("loading"),e&&(e.addEventListener("error",()=>{t.classList.remove("loading"),t.classList.add("failure")}),e.addEventListener("load",()=>{t.classList.remove("loading"),t.classList.add("ready")}),window.searchData&&t.classList.remove("loading"));let r=document.querySelector("#tsd-search input"),n=document.querySelector("#tsd-search .results");if(!r||!n)throw new Error("The input field or the result list wrapper was not found");let i=!1;n.addEventListener("mousedown",()=>i=!0),n.addEventListener("mouseup",()=>{i=!1,t.classList.remove("has-focus")}),r.addEventListener("focus",()=>t.classList.add("has-focus")),r.addEventListener("blur",()=>{i||(i=!1,t.classList.remove("has-focus"))});let s={base:t.dataset.base+"/"};Ve(t,n,r,s)}function Ve(t,e,r,n){r.addEventListener("input",ce(()=>{ze(t,e,r,n)},200));let i=!1;r.addEventListener("keydown",s=>{i=!0,s.key=="Enter"?Ne(e,r):s.key=="Escape"?r.blur():s.key=="ArrowUp"?me(e,-1):s.key==="ArrowDown"?me(e,1):i=!1}),r.addEventListener("keypress",s=>{i&&s.preventDefault()}),document.body.addEventListener("keydown",s=>{s.altKey||s.ctrlKey||s.metaKey||!r.matches(":focus")&&s.key==="/"&&(r.focus(),s.preventDefault())})}function He(t,e){t.index||window.searchData&&(e.classList.remove("loading"),e.classList.add("ready"),t.data=window.searchData,t.index=pe.Index.load(window.searchData.index))}function ze(t,e,r,n){if(He(n,t),!n.index||!n.data)return;e.textContent="";let i=r.value.trim(),s=n.index.search(`*${i}*`);for(let o=0,a=Math.min(10,s.length);o${ve(c.parent,i)}.${l}`);let h=document.createElement("li");h.classList.value=c.classes;let f=document.createElement("a");f.href=n.base+c.url,f.classList.add("tsd-kind-icon"),f.innerHTML=l,h.append(f),e.appendChild(h)}}function me(t,e){let r=t.querySelector(".current");if(!r)r=t.querySelector(e==1?"li:first-child":"li:last-child"),r&&r.classList.add("current");else{let n=r;if(e===1)do n=n.nextElementSibling;while(n instanceof HTMLElement&&n.offsetParent==null);else do n=n.previousElementSibling;while(n instanceof HTMLElement&&n.offsetParent==null);n&&(r.classList.remove("current"),n.classList.add("current"))}}function Ne(t,e){let r=t.querySelector(".current");if(r||(r=t.querySelector("li:first-child")),r){let n=r.querySelector("a");n&&(window.location.href=n.href),e.blur()}}function ve(t,e){if(e==="")return t;let r=t.toLocaleLowerCase(),n=e.toLocaleLowerCase(),i=[],s=0,o=r.indexOf(n);for(;o!=-1;)i.push(re(t.substring(s,o)),`${re(t.substring(o,o+n.length))}`),s=o+n.length,o=r.indexOf(n,s);return i.push(re(t.substring(s))),i.join("")}var je={"&":"&","<":"<",">":">","'":"'",'"':"""};function re(t){return t.replace(/[&<>"'"]/g,e=>je[e])}var ge=class{constructor(e,r){this.signature=e,this.description=r}addClass(e){return this.signature.classList.add(e),this.description.classList.add(e),this}removeClass(e){return this.signature.classList.remove(e),this.description.classList.remove(e),this}},ne=class extends Q{constructor(e){super(e);this.groups=[];this.index=-1;this.createGroups(),this.container&&(this.el.classList.add("active"),Array.from(this.el.children).forEach(r=>{r.addEventListener("touchstart",n=>this.onClick(n)),r.addEventListener("click",n=>this.onClick(n))}),this.container.classList.add("active"),this.setIndex(0))}setIndex(e){if(e<0&&(e=0),e>this.groups.length-1&&(e=this.groups.length-1),this.index==e)return;let r=this.groups[e];if(this.index>-1){let n=this.groups[this.index];n.removeClass("current").addClass("fade-out"),r.addClass("current"),r.addClass("fade-in"),I.instance.triggerResize(),setTimeout(()=>{n.removeClass("fade-out"),r.removeClass("fade-in")},300)}else r.addClass("current"),I.instance.triggerResize();this.index=e}createGroups(){let e=this.el.children;if(e.length<2)return;this.container=this.el.nextElementSibling;let r=this.container.children;this.groups=[];for(let n=0;n{r.signature===e.currentTarget&&this.setIndex(n)})}};var C="mousedown",ye="mousemove",_="mouseup",G={x:0,y:0},xe=!1,ie=!1,Be=!1,A=!1,Le=/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);document.documentElement.classList.add(Le?"is-mobile":"not-mobile");Le&&"ontouchstart"in document.documentElement&&(Be=!0,C="touchstart",ye="touchmove",_="touchend");document.addEventListener(C,t=>{ie=!0,A=!1;let e=C=="touchstart"?t.targetTouches[0]:t;G.y=e.pageY||0,G.x=e.pageX||0});document.addEventListener(ye,t=>{if(!!ie&&!A){let e=C=="touchstart"?t.targetTouches[0]:t,r=G.x-(e.pageX||0),n=G.y-(e.pageY||0);A=Math.sqrt(r*r+n*n)>10}});document.addEventListener(_,()=>{ie=!1});document.addEventListener("click",t=>{xe&&(t.preventDefault(),t.stopImmediatePropagation(),xe=!1)});var se=class extends Q{constructor(e){super(e);this.className=this.el.dataset.toggle||"",this.el.addEventListener(_,r=>this.onPointerUp(r)),this.el.addEventListener("click",r=>r.preventDefault()),document.addEventListener(C,r=>this.onDocumentPointerDown(r)),document.addEventListener(_,r=>this.onDocumentPointerUp(r))}setActive(e){if(this.active==e)return;this.active=e,document.documentElement.classList.toggle("has-"+this.className,e),this.el.classList.toggle("active",e);let r=(this.active?"to-has-":"from-has-")+this.className;document.documentElement.classList.add(r),setTimeout(()=>document.documentElement.classList.remove(r),500)}onPointerUp(e){A||(this.setActive(!0),e.preventDefault())}onDocumentPointerDown(e){if(this.active){if(e.target.closest(".col-menu, .tsd-filter-group"))return;this.setActive(!1)}}onDocumentPointerUp(e){if(!A&&this.active&&e.target.closest(".col-menu")){let r=e.target.closest("a");if(r){let n=window.location.href;n.indexOf("#")!=-1&&(n=n.substr(0,n.indexOf("#"))),r.href.substr(0,n.length)==n&&setTimeout(()=>this.setActive(!1),250)}}}};var oe=class{constructor(e,r){this.key=e,this.value=r,this.defaultValue=r,this.initialize(),window.localStorage[this.key]&&this.setValue(this.fromLocalStorage(window.localStorage[this.key]))}initialize(){}setValue(e){if(this.value==e)return;let r=this.value;this.value=e,window.localStorage[this.key]=this.toLocalStorage(e),this.handleValueChange(r,e)}},ae=class extends oe{initialize(){let e=document.querySelector("#tsd-filter-"+this.key);!e||(this.checkbox=e,this.checkbox.addEventListener("change",()=>{this.setValue(this.checkbox.checked)}))}handleValueChange(e,r){!this.checkbox||(this.checkbox.checked=this.value,document.documentElement.classList.toggle("toggle-"+this.key,this.value!=this.defaultValue))}fromLocalStorage(e){return e=="true"}toLocalStorage(e){return e?"true":"false"}},Ee=class extends oe{initialize(){document.documentElement.classList.add("toggle-"+this.key+this.value);let e=document.querySelector("#tsd-filter-"+this.key);if(!e)return;this.select=e;let r=()=>{this.select.classList.add("active")},n=()=>{this.select.classList.remove("active")};this.select.addEventListener(C,r),this.select.addEventListener("mouseover",r),this.select.addEventListener("mouseleave",n),this.select.querySelectorAll("li").forEach(i=>{i.addEventListener(_,s=>{e.classList.remove("active"),this.setValue(s.target.dataset.value||"")})}),document.addEventListener(C,i=>{this.select.contains(i.target)||this.select.classList.remove("active")})}handleValueChange(e,r){this.select.querySelectorAll("li.selected").forEach(s=>{s.classList.remove("selected")});let n=this.select.querySelector('li[data-value="'+r+'"]'),i=this.select.querySelector(".tsd-select-label");n&&i&&(n.classList.add("selected"),i.textContent=n.textContent),document.documentElement.classList.remove("toggle-"+e),document.documentElement.classList.add("toggle-"+r)}fromLocalStorage(e){return e}toLocalStorage(e){return e}},Y=class extends Q{constructor(e){super(e);this.optionVisibility=new Ee("visibility","private"),this.optionInherited=new ae("inherited",!0),this.optionExternals=new ae("externals",!0)}static isSupported(){try{return typeof window.localStorage!="undefined"}catch(e){return!1}}};function be(t){let e=localStorage.getItem("tsd-theme")||"os";t.value=e,we(e),t.addEventListener("change",()=>{localStorage.setItem("tsd-theme",t.value),we(t.value)})}function we(t){switch(t){case"os":document.body.classList.remove("light","dark");break;case"light":document.body.classList.remove("dark"),document.body.classList.add("light");break;case"dark":document.body.classList.remove("light"),document.body.classList.add("dark");break}}fe();N(te,".menu-highlight");N(ne,".tsd-signatures");N(se,"a[data-toggle]");Y.isSupported()?N(Y,"#tsd-filter"):document.documentElement.classList.add("no-filter");var Te=document.getElementById("theme");Te&&be(Te);var qe=new X;Object.defineProperty(window,"app",{value:qe});})(); +(()=>{var Ce=Object.create;var ue=Object.defineProperty;var Pe=Object.getOwnPropertyDescriptor;var Oe=Object.getOwnPropertyNames;var Re=Object.getPrototypeOf,_e=Object.prototype.hasOwnProperty;var Me=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports);var De=(t,e,r,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let i of Oe(e))!_e.call(t,i)&&i!==r&&ue(t,i,{get:()=>e[i],enumerable:!(n=Pe(e,i))||n.enumerable});return t};var Fe=(t,e,r)=>(r=t!=null?Ce(Re(t)):{},De(e||!t||!t.__esModule?ue(r,"default",{value:t,enumerable:!0}):r,t));var pe=Me((de,fe)=>{(function(){var t=function(e){var r=new t.Builder;return r.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),r.searchPipeline.add(t.stemmer),e.call(r,r),r.build()};t.version="2.3.9";t.utils={},t.utils.warn=function(e){return function(r){e.console&&console.warn&&console.warn(r)}}(this),t.utils.asString=function(e){return e==null?"":e.toString()},t.utils.clone=function(e){if(e==null)return e;for(var r=Object.create(null),n=Object.keys(e),i=0;i0){var h=t.utils.clone(r)||{};h.position=[a,u],h.index=s.length,s.push(new t.Token(n.slice(a,o),h))}a=o+1}}return s},t.tokenizer.separator=/[\s\-]+/;t.Pipeline=function(){this._stack=[]},t.Pipeline.registeredFunctions=Object.create(null),t.Pipeline.registerFunction=function(e,r){r in this.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+r),e.label=r,t.Pipeline.registeredFunctions[e.label]=e},t.Pipeline.warnIfFunctionNotRegistered=function(e){var r=e.label&&e.label in this.registeredFunctions;r||t.utils.warn(`Function is not registered with pipeline. This may cause problems when serialising the index. +`,e)},t.Pipeline.load=function(e){var r=new t.Pipeline;return e.forEach(function(n){var i=t.Pipeline.registeredFunctions[n];if(i)r.add(i);else throw new Error("Cannot load unregistered function: "+n)}),r},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(r){t.Pipeline.warnIfFunctionNotRegistered(r),this._stack.push(r)},this)},t.Pipeline.prototype.after=function(e,r){t.Pipeline.warnIfFunctionNotRegistered(r);var n=this._stack.indexOf(e);if(n==-1)throw new Error("Cannot find existingFn");n=n+1,this._stack.splice(n,0,r)},t.Pipeline.prototype.before=function(e,r){t.Pipeline.warnIfFunctionNotRegistered(r);var n=this._stack.indexOf(e);if(n==-1)throw new Error("Cannot find existingFn");this._stack.splice(n,0,r)},t.Pipeline.prototype.remove=function(e){var r=this._stack.indexOf(e);r!=-1&&this._stack.splice(r,1)},t.Pipeline.prototype.run=function(e){for(var r=this._stack.length,n=0;n1&&(oe&&(n=s),o!=e);)i=n-r,s=r+Math.floor(i/2),o=this.elements[s*2];if(o==e||o>e)return s*2;if(ol?h+=2:a==l&&(r+=n[u+1]*i[h+1],u+=2,h+=2);return r},t.Vector.prototype.similarity=function(e){return this.dot(e)/this.magnitude()||0},t.Vector.prototype.toArray=function(){for(var e=new Array(this.elements.length/2),r=1,n=0;r0){var o=s.str.charAt(0),a;o in s.node.edges?a=s.node.edges[o]:(a=new t.TokenSet,s.node.edges[o]=a),s.str.length==1&&(a.final=!0),i.push({node:a,editsRemaining:s.editsRemaining,str:s.str.slice(1)})}if(s.editsRemaining!=0){if("*"in s.node.edges)var l=s.node.edges["*"];else{var l=new t.TokenSet;s.node.edges["*"]=l}if(s.str.length==0&&(l.final=!0),i.push({node:l,editsRemaining:s.editsRemaining-1,str:s.str}),s.str.length>1&&i.push({node:s.node,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)}),s.str.length==1&&(s.node.final=!0),s.str.length>=1){if("*"in s.node.edges)var u=s.node.edges["*"];else{var u=new t.TokenSet;s.node.edges["*"]=u}s.str.length==1&&(u.final=!0),i.push({node:u,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)})}if(s.str.length>1){var h=s.str.charAt(0),f=s.str.charAt(1),p;f in s.node.edges?p=s.node.edges[f]:(p=new t.TokenSet,s.node.edges[f]=p),s.str.length==1&&(p.final=!0),i.push({node:p,editsRemaining:s.editsRemaining-1,str:h+s.str.slice(2)})}}}return n},t.TokenSet.fromString=function(e){for(var r=new t.TokenSet,n=r,i=0,s=e.length;i=e;r--){var n=this.uncheckedNodes[r],i=n.child.toString();i in this.minimizedNodes?n.parent.edges[n.char]=this.minimizedNodes[i]:(n.child._str=i,this.minimizedNodes[i]=n.child),this.uncheckedNodes.pop()}};t.Index=function(e){this.invertedIndex=e.invertedIndex,this.fieldVectors=e.fieldVectors,this.tokenSet=e.tokenSet,this.fields=e.fields,this.pipeline=e.pipeline},t.Index.prototype.search=function(e){return this.query(function(r){var n=new t.QueryParser(e,r);n.parse()})},t.Index.prototype.query=function(e){for(var r=new t.Query(this.fields),n=Object.create(null),i=Object.create(null),s=Object.create(null),o=Object.create(null),a=Object.create(null),l=0;l1?this._b=1:this._b=e},t.Builder.prototype.k1=function(e){this._k1=e},t.Builder.prototype.add=function(e,r){var n=e[this._ref],i=Object.keys(this._fields);this._documents[n]=r||{},this.documentCount+=1;for(var s=0;s=this.length)return t.QueryLexer.EOS;var e=this.str.charAt(this.pos);return this.pos+=1,e},t.QueryLexer.prototype.width=function(){return this.pos-this.start},t.QueryLexer.prototype.ignore=function(){this.start==this.pos&&(this.pos+=1),this.start=this.pos},t.QueryLexer.prototype.backup=function(){this.pos-=1},t.QueryLexer.prototype.acceptDigitRun=function(){var e,r;do e=this.next(),r=e.charCodeAt(0);while(r>47&&r<58);e!=t.QueryLexer.EOS&&this.backup()},t.QueryLexer.prototype.more=function(){return this.pos1&&(e.backup(),e.emit(t.QueryLexer.TERM)),e.ignore(),e.more())return t.QueryLexer.lexText},t.QueryLexer.lexEditDistance=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(t.QueryLexer.EDIT_DISTANCE),t.QueryLexer.lexText},t.QueryLexer.lexBoost=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(t.QueryLexer.BOOST),t.QueryLexer.lexText},t.QueryLexer.lexEOS=function(e){e.width()>0&&e.emit(t.QueryLexer.TERM)},t.QueryLexer.termSeparator=t.tokenizer.separator,t.QueryLexer.lexText=function(e){for(;;){var r=e.next();if(r==t.QueryLexer.EOS)return t.QueryLexer.lexEOS;if(r.charCodeAt(0)==92){e.escapeCharacter();continue}if(r==":")return t.QueryLexer.lexField;if(r=="~")return e.backup(),e.width()>0&&e.emit(t.QueryLexer.TERM),t.QueryLexer.lexEditDistance;if(r=="^")return e.backup(),e.width()>0&&e.emit(t.QueryLexer.TERM),t.QueryLexer.lexBoost;if(r=="+"&&e.width()===1||r=="-"&&e.width()===1)return e.emit(t.QueryLexer.PRESENCE),t.QueryLexer.lexText;if(r.match(t.QueryLexer.termSeparator))return t.QueryLexer.lexTerm}},t.QueryParser=function(e,r){this.lexer=new t.QueryLexer(e),this.query=r,this.currentClause={},this.lexemeIdx=0},t.QueryParser.prototype.parse=function(){this.lexer.run(),this.lexemes=this.lexer.lexemes;for(var e=t.QueryParser.parseClause;e;)e=e(this);return this.query},t.QueryParser.prototype.peekLexeme=function(){return this.lexemes[this.lexemeIdx]},t.QueryParser.prototype.consumeLexeme=function(){var e=this.peekLexeme();return this.lexemeIdx+=1,e},t.QueryParser.prototype.nextClause=function(){var e=this.currentClause;this.query.clause(e),this.currentClause={}},t.QueryParser.parseClause=function(e){var r=e.peekLexeme();if(r!=null)switch(r.type){case t.QueryLexer.PRESENCE:return t.QueryParser.parsePresence;case t.QueryLexer.FIELD:return t.QueryParser.parseField;case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var n="expected either a field or a term, found "+r.type;throw r.str.length>=1&&(n+=" with value '"+r.str+"'"),new t.QueryParseError(n,r.start,r.end)}},t.QueryParser.parsePresence=function(e){var r=e.consumeLexeme();if(r!=null){switch(r.str){case"-":e.currentClause.presence=t.Query.presence.PROHIBITED;break;case"+":e.currentClause.presence=t.Query.presence.REQUIRED;break;default:var n="unrecognised presence operator'"+r.str+"'";throw new t.QueryParseError(n,r.start,r.end)}var i=e.peekLexeme();if(i==null){var n="expecting term or field, found nothing";throw new t.QueryParseError(n,r.start,r.end)}switch(i.type){case t.QueryLexer.FIELD:return t.QueryParser.parseField;case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var n="expecting term or field, found '"+i.type+"'";throw new t.QueryParseError(n,i.start,i.end)}}},t.QueryParser.parseField=function(e){var r=e.consumeLexeme();if(r!=null){if(e.query.allFields.indexOf(r.str)==-1){var n=e.query.allFields.map(function(o){return"'"+o+"'"}).join(", "),i="unrecognised field '"+r.str+"', possible fields: "+n;throw new t.QueryParseError(i,r.start,r.end)}e.currentClause.fields=[r.str];var s=e.peekLexeme();if(s==null){var i="expecting term, found nothing";throw new t.QueryParseError(i,r.start,r.end)}switch(s.type){case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var i="expecting term, found '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},t.QueryParser.parseTerm=function(e){var r=e.consumeLexeme();if(r!=null){e.currentClause.term=r.str.toLowerCase(),r.str.indexOf("*")!=-1&&(e.currentClause.usePipeline=!1);var n=e.peekLexeme();if(n==null){e.nextClause();return}switch(n.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+n.type+"'";throw new t.QueryParseError(i,n.start,n.end)}}},t.QueryParser.parseEditDistance=function(e){var r=e.consumeLexeme();if(r!=null){var n=parseInt(r.str,10);if(isNaN(n)){var i="edit distance must be numeric";throw new t.QueryParseError(i,r.start,r.end)}e.currentClause.editDistance=n;var s=e.peekLexeme();if(s==null){e.nextClause();return}switch(s.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},t.QueryParser.parseBoost=function(e){var r=e.consumeLexeme();if(r!=null){var n=parseInt(r.str,10);if(isNaN(n)){var i="boost must be numeric";throw new t.QueryParseError(i,r.start,r.end)}e.currentClause.boost=n;var s=e.peekLexeme();if(s==null){e.nextClause();return}switch(s.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},function(e,r){typeof define=="function"&&define.amd?define(r):typeof de=="object"?fe.exports=r():e.lunr=r()}(this,function(){return t})})()});var ce=[];function N(t,e){ce.push({selector:e,constructor:t})}var Y=class{constructor(){this.createComponents(document.body)}createComponents(e){ce.forEach(r=>{e.querySelectorAll(r.selector).forEach(n=>{n.dataset.hasInstance||(new r.constructor({el:n}),n.dataset.hasInstance=String(!0))})})}};var k=class{constructor(e){this.el=e.el}};var J=class{constructor(){this.listeners={}}addEventListener(e,r){e in this.listeners||(this.listeners[e]=[]),this.listeners[e].push(r)}removeEventListener(e,r){if(!(e in this.listeners))return;let n=this.listeners[e];for(let i=0,s=n.length;i{let r=Date.now();return(...n)=>{r+e-Date.now()<0&&(t(...n),r=Date.now())}};var ie=class extends J{constructor(){super();this.scrollTop=0;this.lastY=0;this.width=0;this.height=0;this.showToolbar=!0;this.toolbar=document.querySelector(".tsd-page-toolbar"),this.secondaryNav=document.querySelector(".tsd-navigation.secondary"),window.addEventListener("scroll",ne(()=>this.onScroll(),10)),window.addEventListener("resize",ne(()=>this.onResize(),10)),this.onResize(),this.onScroll()}triggerResize(){let r=new CustomEvent("resize",{detail:{width:this.width,height:this.height}});this.dispatchEvent(r)}onResize(){this.width=window.innerWidth||0,this.height=window.innerHeight||0;let r=new CustomEvent("resize",{detail:{width:this.width,height:this.height}});this.dispatchEvent(r)}onScroll(){this.scrollTop=window.scrollY||0;let r=new CustomEvent("scroll",{detail:{scrollTop:this.scrollTop}});this.dispatchEvent(r),this.hideShowToolbar()}hideShowToolbar(){var n;let r=this.showToolbar;this.showToolbar=this.lastY>=this.scrollTop||this.scrollTop<=0,r!==this.showToolbar&&(this.toolbar.classList.toggle("tsd-page-toolbar--hide"),(n=this.secondaryNav)==null||n.classList.toggle("tsd-navigation--toolbar-hide")),this.lastY=this.scrollTop}},Q=ie;Q.instance=new ie;var X=class extends k{constructor(r){super(r);this.anchors=[];this.index=-1;Q.instance.addEventListener("resize",()=>this.onResize()),Q.instance.addEventListener("scroll",n=>this.onScroll(n)),this.createAnchors()}createAnchors(){let r=window.location.href;r.indexOf("#")!=-1&&(r=r.substr(0,r.indexOf("#"))),this.el.querySelectorAll("a").forEach(n=>{let i=n.href;if(i.indexOf("#")==-1||i.substr(0,r.length)!=r)return;let s=i.substr(i.indexOf("#")+1),o=document.querySelector("a.tsd-anchor[name="+s+"]"),a=n.parentNode;!o||!a||this.anchors.push({link:a,anchor:o,position:0})}),this.onResize()}onResize(){let r;for(let i=0,s=this.anchors.length;ii.position-s.position);let n=new CustomEvent("scroll",{detail:{scrollTop:Q.instance.scrollTop}});this.onScroll(n)}onScroll(r){let n=r.detail.scrollTop+5,i=this.anchors,s=i.length-1,o=this.index;for(;o>-1&&i[o].position>n;)o-=1;for(;o-1&&this.anchors[this.index].link.classList.remove("focus"),this.index=o,this.index>-1&&this.anchors[this.index].link.classList.add("focus"))}};var he=(t,e=100)=>{let r;return(...n)=>{clearTimeout(r),r=setTimeout(()=>t(n),e)}};var ge=Fe(pe());function ye(){let t=document.getElementById("tsd-search");if(!t)return;let e=document.getElementById("search-script");t.classList.add("loading"),e&&(e.addEventListener("error",()=>{t.classList.remove("loading"),t.classList.add("failure")}),e.addEventListener("load",()=>{t.classList.remove("loading"),t.classList.add("ready")}),window.searchData&&t.classList.remove("loading"));let r=document.querySelector("#tsd-search input"),n=document.querySelector("#tsd-search .results");if(!r||!n)throw new Error("The input field or the result list wrapper was not found");let i=!1;n.addEventListener("mousedown",()=>i=!0),n.addEventListener("mouseup",()=>{i=!1,t.classList.remove("has-focus")}),r.addEventListener("focus",()=>t.classList.add("has-focus")),r.addEventListener("blur",()=>{i||(i=!1,t.classList.remove("has-focus"))});let s={base:t.dataset.base+"/"};Ae(t,n,r,s)}function Ae(t,e,r,n){r.addEventListener("input",he(()=>{He(t,e,r,n)},200));let i=!1;r.addEventListener("keydown",s=>{i=!0,s.key=="Enter"?ze(e,r):s.key=="Escape"?r.blur():s.key=="ArrowUp"?me(e,-1):s.key==="ArrowDown"?me(e,1):i=!1}),r.addEventListener("keypress",s=>{i&&s.preventDefault()}),document.body.addEventListener("keydown",s=>{s.altKey||s.ctrlKey||s.metaKey||!r.matches(":focus")&&s.key==="/"&&(r.focus(),s.preventDefault())})}function Ve(t,e){t.index||window.searchData&&(e.classList.remove("loading"),e.classList.add("ready"),t.data=window.searchData,t.index=ge.Index.load(window.searchData.index))}function He(t,e,r,n){var o,a;if(Ve(n,t),!n.index||!n.data)return;e.textContent="";let i=r.value.trim(),s=i?n.index.search(`*${i}*`):[];for(let l=0;lu.score-l.score);for(let l=0,u=Math.min(10,s.length);l${ve(h.parent,i)}.${f}`);let p=document.createElement("li");p.classList.value=(a=h.classes)!=null?a:"";let E=document.createElement("a");E.href=n.base+h.url,E.classList.add("tsd-kind-icon"),E.innerHTML=f,p.append(E),e.appendChild(p)}}function me(t,e){var n,i;let r=t.querySelector(".current");if(!r)r=t.querySelector(e==1?"li:first-child":"li:last-child"),r&&r.classList.add("current");else{let s=r;if(e===1)do s=(n=s.nextElementSibling)!=null?n:void 0;while(s instanceof HTMLElement&&s.offsetParent==null);else do s=(i=s.previousElementSibling)!=null?i:void 0;while(s instanceof HTMLElement&&s.offsetParent==null);s&&(r.classList.remove("current"),s.classList.add("current"))}}function ze(t,e){let r=t.querySelector(".current");if(r||(r=t.querySelector("li:first-child")),r){let n=r.querySelector("a");n&&(window.location.href=n.href),e.blur()}}function ve(t,e){if(e==="")return t;let r=t.toLocaleLowerCase(),n=e.toLocaleLowerCase(),i=[],s=0,o=r.indexOf(n);for(;o!=-1;)i.push(se(t.substring(s,o)),`${se(t.substring(o,o+n.length))}`),s=o+n.length,o=r.indexOf(n,s);return i.push(se(t.substring(s))),i.join("")}var Ne={"&":"&","<":"<",">":">","'":"'",'"':"""};function se(t){return t.replace(/[&<>"'"]/g,e=>Ne[e])}var oe=class{constructor(e,r){this.signature=e,this.description=r}addClass(e){return this.signature.classList.add(e),this.description.classList.add(e),this}removeClass(e){return this.signature.classList.remove(e),this.description.classList.remove(e),this}},Z=class extends k{constructor(r){super(r);this.groups=[];this.index=-1;this.createGroups(),this.container&&(this.el.classList.add("active"),Array.from(this.el.children).forEach(n=>{n.addEventListener("touchstart",i=>this.onClick(i)),n.addEventListener("click",i=>this.onClick(i))}),this.container.classList.add("active"),this.setIndex(0))}setIndex(r){if(r<0&&(r=0),r>this.groups.length-1&&(r=this.groups.length-1),this.index==r)return;let n=this.groups[r];if(this.index>-1){let i=this.groups[this.index];i.removeClass("current").addClass("fade-out"),n.addClass("current"),n.addClass("fade-in"),Q.instance.triggerResize(),setTimeout(()=>{i.removeClass("fade-out"),n.removeClass("fade-in")},300)}else n.addClass("current"),Q.instance.triggerResize();this.index=r}createGroups(){let r=this.el.children;if(r.length<2)return;this.container=this.el.nextElementSibling;let n=this.container.children;this.groups=[];for(let i=0;i{n.signature===r.currentTarget&&this.setIndex(i)})}};var C="mousedown",Le="mousemove",_="mouseup",K={x:0,y:0},xe=!1,ae=!1,je=!1,A=!1,Ee=/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);document.documentElement.classList.add(Ee?"is-mobile":"not-mobile");Ee&&"ontouchstart"in document.documentElement&&(je=!0,C="touchstart",Le="touchmove",_="touchend");document.addEventListener(C,t=>{ae=!0,A=!1;let e=C=="touchstart"?t.targetTouches[0]:t;K.y=e.pageY||0,K.x=e.pageX||0});document.addEventListener(Le,t=>{if(!!ae&&!A){let e=C=="touchstart"?t.targetTouches[0]:t,r=K.x-(e.pageX||0),n=K.y-(e.pageY||0);A=Math.sqrt(r*r+n*n)>10}});document.addEventListener(_,()=>{ae=!1});document.addEventListener("click",t=>{xe&&(t.preventDefault(),t.stopImmediatePropagation(),xe=!1)});var ee=class extends k{constructor(r){super(r);this.className=this.el.dataset.toggle||"",this.el.addEventListener(_,n=>this.onPointerUp(n)),this.el.addEventListener("click",n=>n.preventDefault()),document.addEventListener(C,n=>this.onDocumentPointerDown(n)),document.addEventListener(_,n=>this.onDocumentPointerUp(n))}setActive(r){if(this.active==r)return;this.active=r,document.documentElement.classList.toggle("has-"+this.className,r),this.el.classList.toggle("active",r);let n=(this.active?"to-has-":"from-has-")+this.className;document.documentElement.classList.add(n),setTimeout(()=>document.documentElement.classList.remove(n),500)}onPointerUp(r){A||(this.setActive(!0),r.preventDefault())}onDocumentPointerDown(r){if(this.active){if(r.target.closest(".col-menu, .tsd-filter-group"))return;this.setActive(!1)}}onDocumentPointerUp(r){if(!A&&this.active&&r.target.closest(".col-menu")){let n=r.target.closest("a");if(n){let i=window.location.href;i.indexOf("#")!=-1&&(i=i.substr(0,i.indexOf("#"))),n.href.substr(0,i.length)==i&&setTimeout(()=>this.setActive(!1),250)}}}};var te=class{constructor(e,r){this.key=e,this.value=r,this.defaultValue=r,this.initialize(),window.localStorage[this.key]&&this.setValue(this.fromLocalStorage(window.localStorage[this.key]))}initialize(){}setValue(e){if(this.value==e)return;let r=this.value;this.value=e,window.localStorage[this.key]=this.toLocalStorage(e),this.handleValueChange(r,e)}},re=class extends te{initialize(){let r=document.querySelector("#tsd-filter-"+this.key);!r||(this.checkbox=r,this.checkbox.addEventListener("change",()=>{this.setValue(this.checkbox.checked)}))}handleValueChange(r,n){!this.checkbox||(this.checkbox.checked=this.value,document.documentElement.classList.toggle("toggle-"+this.key,this.value!=this.defaultValue))}fromLocalStorage(r){return r=="true"}toLocalStorage(r){return r?"true":"false"}},le=class extends te{initialize(){document.documentElement.classList.add("toggle-"+this.key+this.value);let r=document.querySelector("#tsd-filter-"+this.key);if(!r)return;this.select=r;let n=()=>{this.select.classList.add("active")},i=()=>{this.select.classList.remove("active")};this.select.addEventListener(C,n),this.select.addEventListener("mouseover",n),this.select.addEventListener("mouseleave",i),this.select.querySelectorAll("li").forEach(s=>{s.addEventListener(_,o=>{r.classList.remove("active"),this.setValue(o.target.dataset.value||"")})}),document.addEventListener(C,s=>{this.select.contains(s.target)||this.select.classList.remove("active")})}handleValueChange(r,n){this.select.querySelectorAll("li.selected").forEach(o=>{o.classList.remove("selected")});let i=this.select.querySelector('li[data-value="'+n+'"]'),s=this.select.querySelector(".tsd-select-label");i&&s&&(i.classList.add("selected"),s.textContent=i.textContent),document.documentElement.classList.remove("toggle-"+r),document.documentElement.classList.add("toggle-"+n)}fromLocalStorage(r){return r}toLocalStorage(r){return r}},j=class extends k{constructor(r){super(r);this.optionVisibility=new le("visibility","private"),this.optionInherited=new re("inherited",!0),this.optionExternals=new re("externals",!0)}static isSupported(){try{return typeof window.localStorage!="undefined"}catch{return!1}}};function we(t){let e=localStorage.getItem("tsd-theme")||"os";t.value=e,be(e),t.addEventListener("change",()=>{localStorage.setItem("tsd-theme",t.value),be(t.value)})}function be(t){switch(t){case"os":document.body.classList.remove("light","dark");break;case"light":document.body.classList.remove("dark"),document.body.classList.add("light");break;case"dark":document.body.classList.remove("light"),document.body.classList.add("dark");break}}ye();N(X,".menu-highlight");N(Z,".tsd-signatures");N(ee,"a[data-toggle]");j.isSupported()?N(j,"#tsd-filter"):document.documentElement.classList.add("no-filter");var Te=document.getElementById("theme");Te&&we(Te);var Be=new Y;Object.defineProperty(window,"app",{value:Be});})(); /*! * lunr.Builder * Copyright (C) 2020 Oliver Nightingale diff --git a/docs/assets/search.js b/docs/assets/search.js index caccfa6..ad5e218 100644 --- a/docs/assets/search.js +++ b/docs/assets/search.js @@ -1 +1 @@ -window.searchData = {"kinds":{"4":"Namespace","8":"Enumeration","16":"Enumeration member","64":"Function","128":"Class","256":"Interface","512":"Constructor","1024":"Property","2048":"Method","65536":"Type literal","262144":"Accessor","4194304":"Type alias"},"rows":[{"id":0,"kind":128,"name":"Beatmap","url":"classes/Beatmap.html","classes":"tsd-kind-class"},{"id":1,"kind":512,"name":"constructor","url":"classes/Beatmap.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Beatmap"},{"id":2,"kind":1024,"name":"base","url":"classes/Beatmap.html#base","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Beatmap"},{"id":3,"kind":1024,"name":"general","url":"classes/Beatmap.html#general","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Beatmap"},{"id":4,"kind":1024,"name":"editor","url":"classes/Beatmap.html#editor","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Beatmap"},{"id":5,"kind":1024,"name":"difficulty","url":"classes/Beatmap.html#difficulty","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Beatmap"},{"id":6,"kind":1024,"name":"metadata","url":"classes/Beatmap.html#metadata","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Beatmap"},{"id":7,"kind":1024,"name":"colors","url":"classes/Beatmap.html#colors","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Beatmap"},{"id":8,"kind":1024,"name":"events","url":"classes/Beatmap.html#events","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Beatmap"},{"id":9,"kind":1024,"name":"controlPoints","url":"classes/Beatmap.html#controlPoints","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Beatmap"},{"id":10,"kind":1024,"name":"hitObjects","url":"classes/Beatmap.html#hitObjects","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Beatmap"},{"id":11,"kind":1024,"name":"fileFormat","url":"classes/Beatmap.html#fileFormat","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Beatmap"},{"id":12,"kind":1024,"name":"fileUpdateDate","url":"classes/Beatmap.html#fileUpdateDate","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Beatmap"},{"id":13,"kind":1024,"name":"originalMode","url":"classes/Beatmap.html#originalMode","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Beatmap"},{"id":14,"kind":262144,"name":"mode","url":"classes/Beatmap.html#mode","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Beatmap"},{"id":15,"kind":262144,"name":"length","url":"classes/Beatmap.html#length","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Beatmap"},{"id":16,"kind":262144,"name":"totalLength","url":"classes/Beatmap.html#totalLength","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Beatmap"},{"id":17,"kind":262144,"name":"bpmMin","url":"classes/Beatmap.html#bpmMin","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Beatmap"},{"id":18,"kind":262144,"name":"bpmMax","url":"classes/Beatmap.html#bpmMax","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Beatmap"},{"id":19,"kind":262144,"name":"bpm","url":"classes/Beatmap.html#bpm","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Beatmap"},{"id":20,"kind":262144,"name":"bpmMode","url":"classes/Beatmap.html#bpmMode","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Beatmap"},{"id":21,"kind":262144,"name":"totalBreakTime","url":"classes/Beatmap.html#totalBreakTime","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Beatmap"},{"id":22,"kind":2048,"name":"clone","url":"classes/Beatmap.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Beatmap"},{"id":23,"kind":128,"name":"BeatmapConverter","url":"classes/BeatmapConverter.html","classes":"tsd-kind-class"},{"id":24,"kind":512,"name":"constructor","url":"classes/BeatmapConverter.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"BeatmapConverter"},{"id":25,"kind":2048,"name":"convertBeatmap","url":"classes/BeatmapConverter.html#convertBeatmap","classes":"tsd-kind-method tsd-parent-kind-class","parent":"BeatmapConverter"},{"id":26,"kind":2048,"name":"convertHitObjects","url":"classes/BeatmapConverter.html#convertHitObjects","classes":"tsd-kind-method tsd-parent-kind-class","parent":"BeatmapConverter"},{"id":27,"kind":2048,"name":"createBeatmap","url":"classes/BeatmapConverter.html#createBeatmap","classes":"tsd-kind-method tsd-parent-kind-class","parent":"BeatmapConverter"},{"id":28,"kind":2048,"name":"canConvert","url":"classes/BeatmapConverter.html#canConvert","classes":"tsd-kind-method tsd-parent-kind-class","parent":"BeatmapConverter"},{"id":29,"kind":128,"name":"BeatmapInfo","url":"classes/BeatmapInfo.html","classes":"tsd-kind-class"},{"id":30,"kind":512,"name":"constructor","url":"classes/BeatmapInfo.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"BeatmapInfo"},{"id":31,"kind":1024,"name":"id","url":"classes/BeatmapInfo.html#id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapInfo"},{"id":32,"kind":1024,"name":"beatmapsetId","url":"classes/BeatmapInfo.html#beatmapsetId","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapInfo"},{"id":33,"kind":1024,"name":"creatorId","url":"classes/BeatmapInfo.html#creatorId","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapInfo"},{"id":34,"kind":1024,"name":"creator","url":"classes/BeatmapInfo.html#creator","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapInfo"},{"id":35,"kind":1024,"name":"favourites","url":"classes/BeatmapInfo.html#favourites","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapInfo"},{"id":36,"kind":1024,"name":"passcount","url":"classes/BeatmapInfo.html#passcount","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapInfo"},{"id":37,"kind":1024,"name":"playcount","url":"classes/BeatmapInfo.html#playcount","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapInfo"},{"id":38,"kind":1024,"name":"status","url":"classes/BeatmapInfo.html#status","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapInfo"},{"id":39,"kind":1024,"name":"title","url":"classes/BeatmapInfo.html#title","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapInfo"},{"id":40,"kind":1024,"name":"artist","url":"classes/BeatmapInfo.html#artist","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapInfo"},{"id":41,"kind":1024,"name":"version","url":"classes/BeatmapInfo.html#version","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapInfo"},{"id":42,"kind":1024,"name":"hittable","url":"classes/BeatmapInfo.html#hittable","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapInfo"},{"id":43,"kind":1024,"name":"slidable","url":"classes/BeatmapInfo.html#slidable","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapInfo"},{"id":44,"kind":1024,"name":"spinnable","url":"classes/BeatmapInfo.html#spinnable","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapInfo"},{"id":45,"kind":1024,"name":"holdable","url":"classes/BeatmapInfo.html#holdable","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapInfo"},{"id":46,"kind":1024,"name":"length","url":"classes/BeatmapInfo.html#length","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapInfo"},{"id":47,"kind":1024,"name":"bpmMin","url":"classes/BeatmapInfo.html#bpmMin","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapInfo"},{"id":48,"kind":1024,"name":"bpmMax","url":"classes/BeatmapInfo.html#bpmMax","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapInfo"},{"id":49,"kind":1024,"name":"bpmMode","url":"classes/BeatmapInfo.html#bpmMode","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapInfo"},{"id":50,"kind":1024,"name":"circleSize","url":"classes/BeatmapInfo.html#circleSize","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapInfo"},{"id":51,"kind":1024,"name":"approachRate","url":"classes/BeatmapInfo.html#approachRate","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapInfo"},{"id":52,"kind":1024,"name":"overallDifficulty","url":"classes/BeatmapInfo.html#overallDifficulty","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapInfo"},{"id":53,"kind":1024,"name":"drainRate","url":"classes/BeatmapInfo.html#drainRate","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapInfo"},{"id":54,"kind":262144,"name":"ruleset","url":"classes/BeatmapInfo.html#ruleset","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"BeatmapInfo"},{"id":55,"kind":262144,"name":"rulesetId","url":"classes/BeatmapInfo.html#rulesetId","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"BeatmapInfo"},{"id":56,"kind":262144,"name":"mods","url":"classes/BeatmapInfo.html#mods","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"BeatmapInfo"},{"id":57,"kind":262144,"name":"rawMods","url":"classes/BeatmapInfo.html#rawMods","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"BeatmapInfo"},{"id":58,"kind":1024,"name":"starRating","url":"classes/BeatmapInfo.html#starRating","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapInfo"},{"id":59,"kind":1024,"name":"maxCombo","url":"classes/BeatmapInfo.html#maxCombo","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapInfo"},{"id":60,"kind":1024,"name":"isConvert","url":"classes/BeatmapInfo.html#isConvert","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapInfo"},{"id":61,"kind":1024,"name":"deletedAt","url":"classes/BeatmapInfo.html#deletedAt","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapInfo"},{"id":62,"kind":1024,"name":"updatedAt","url":"classes/BeatmapInfo.html#updatedAt","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapInfo"},{"id":63,"kind":1024,"name":"md5","url":"classes/BeatmapInfo.html#md5","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapInfo"},{"id":64,"kind":2048,"name":"toJSON","url":"classes/BeatmapInfo.html#toJSON","classes":"tsd-kind-method tsd-parent-kind-class","parent":"BeatmapInfo"},{"id":65,"kind":2048,"name":"clone","url":"classes/BeatmapInfo.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"BeatmapInfo"},{"id":66,"kind":2048,"name":"equals","url":"classes/BeatmapInfo.html#equals","classes":"tsd-kind-method tsd-parent-kind-class","parent":"BeatmapInfo"},{"id":67,"kind":262144,"name":"totalHits","url":"classes/BeatmapInfo.html#totalHits","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"BeatmapInfo"},{"id":68,"kind":128,"name":"BeatmapProcessor","url":"classes/BeatmapProcessor.html","classes":"tsd-kind-class"},{"id":69,"kind":512,"name":"constructor","url":"classes/BeatmapProcessor.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"BeatmapProcessor"},{"id":70,"kind":2048,"name":"preProcess","url":"classes/BeatmapProcessor.html#preProcess","classes":"tsd-kind-method tsd-parent-kind-class","parent":"BeatmapProcessor"},{"id":71,"kind":2048,"name":"postProcess","url":"classes/BeatmapProcessor.html#postProcess","classes":"tsd-kind-method tsd-parent-kind-class","parent":"BeatmapProcessor"},{"id":72,"kind":128,"name":"ControlPoint","url":"classes/ControlPoint.html","classes":"tsd-kind-class"},{"id":73,"kind":512,"name":"constructor","url":"classes/ControlPoint.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"ControlPoint"},{"id":74,"kind":1024,"name":"pointType","url":"classes/ControlPoint.html#pointType","classes":"tsd-kind-property tsd-parent-kind-class","parent":"ControlPoint"},{"id":75,"kind":1024,"name":"group","url":"classes/ControlPoint.html#group","classes":"tsd-kind-property tsd-parent-kind-class","parent":"ControlPoint"},{"id":76,"kind":2048,"name":"attachGroup","url":"classes/ControlPoint.html#attachGroup","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ControlPoint"},{"id":77,"kind":2048,"name":"dettachGroup","url":"classes/ControlPoint.html#dettachGroup","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ControlPoint"},{"id":78,"kind":262144,"name":"startTime","url":"classes/ControlPoint.html#startTime","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"ControlPoint"},{"id":79,"kind":2048,"name":"isRedundant","url":"classes/ControlPoint.html#isRedundant","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ControlPoint"},{"id":80,"kind":128,"name":"ControlPointGroup","url":"classes/ControlPointGroup.html","classes":"tsd-kind-class"},{"id":81,"kind":512,"name":"constructor","url":"classes/ControlPointGroup.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"ControlPointGroup"},{"id":82,"kind":1024,"name":"controlPoints","url":"classes/ControlPointGroup.html#controlPoints","classes":"tsd-kind-property tsd-parent-kind-class","parent":"ControlPointGroup"},{"id":83,"kind":1024,"name":"startTime","url":"classes/ControlPointGroup.html#startTime","classes":"tsd-kind-property tsd-parent-kind-class","parent":"ControlPointGroup"},{"id":84,"kind":2048,"name":"add","url":"classes/ControlPointGroup.html#add","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ControlPointGroup"},{"id":85,"kind":2048,"name":"remove","url":"classes/ControlPointGroup.html#remove","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ControlPointGroup"},{"id":86,"kind":128,"name":"ControlPointInfo","url":"classes/ControlPointInfo.html","classes":"tsd-kind-class"},{"id":87,"kind":512,"name":"constructor","url":"classes/ControlPointInfo.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"ControlPointInfo"},{"id":88,"kind":1024,"name":"groups","url":"classes/ControlPointInfo.html#groups","classes":"tsd-kind-property tsd-parent-kind-class","parent":"ControlPointInfo"},{"id":89,"kind":1024,"name":"difficultyPoints","url":"classes/ControlPointInfo.html#difficultyPoints","classes":"tsd-kind-property tsd-parent-kind-class","parent":"ControlPointInfo"},{"id":90,"kind":1024,"name":"effectPoints","url":"classes/ControlPointInfo.html#effectPoints","classes":"tsd-kind-property tsd-parent-kind-class","parent":"ControlPointInfo"},{"id":91,"kind":1024,"name":"samplePoints","url":"classes/ControlPointInfo.html#samplePoints","classes":"tsd-kind-property tsd-parent-kind-class","parent":"ControlPointInfo"},{"id":92,"kind":1024,"name":"timingPoints","url":"classes/ControlPointInfo.html#timingPoints","classes":"tsd-kind-property tsd-parent-kind-class","parent":"ControlPointInfo"},{"id":93,"kind":262144,"name":"allPoints","url":"classes/ControlPointInfo.html#allPoints","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"ControlPointInfo"},{"id":94,"kind":2048,"name":"groupAt","url":"classes/ControlPointInfo.html#groupAt","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ControlPointInfo"},{"id":95,"kind":2048,"name":"difficultyPointAt","url":"classes/ControlPointInfo.html#difficultyPointAt","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ControlPointInfo"},{"id":96,"kind":2048,"name":"effectPointAt","url":"classes/ControlPointInfo.html#effectPointAt","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ControlPointInfo"},{"id":97,"kind":2048,"name":"samplePointAt","url":"classes/ControlPointInfo.html#samplePointAt","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ControlPointInfo"},{"id":98,"kind":2048,"name":"timingPointAt","url":"classes/ControlPointInfo.html#timingPointAt","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ControlPointInfo"},{"id":99,"kind":2048,"name":"add","url":"classes/ControlPointInfo.html#add","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ControlPointInfo"},{"id":100,"kind":2048,"name":"getCurrentList","url":"classes/ControlPointInfo.html#getCurrentList","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ControlPointInfo"},{"id":101,"kind":2048,"name":"checkAlreadyExisting","url":"classes/ControlPointInfo.html#checkAlreadyExisting","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ControlPointInfo"},{"id":102,"kind":2048,"name":"remove","url":"classes/ControlPointInfo.html#remove","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ControlPointInfo"},{"id":103,"kind":2048,"name":"clear","url":"classes/ControlPointInfo.html#clear","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ControlPointInfo"},{"id":104,"kind":2048,"name":"clone","url":"classes/ControlPointInfo.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ControlPointInfo"},{"id":105,"kind":128,"name":"DifficultyPoint","url":"classes/DifficultyPoint.html","classes":"tsd-kind-class"},{"id":106,"kind":1024,"name":"default","url":"classes/DifficultyPoint.html#default","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"DifficultyPoint"},{"id":107,"kind":512,"name":"constructor","url":"classes/DifficultyPoint.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"DifficultyPoint"},{"id":108,"kind":1024,"name":"pointType","url":"classes/DifficultyPoint.html#pointType","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"DifficultyPoint"},{"id":109,"kind":1024,"name":"generateTicks","url":"classes/DifficultyPoint.html#generateTicks","classes":"tsd-kind-property tsd-parent-kind-class","parent":"DifficultyPoint"},{"id":110,"kind":1024,"name":"isLegacy","url":"classes/DifficultyPoint.html#isLegacy","classes":"tsd-kind-property tsd-parent-kind-class","parent":"DifficultyPoint"},{"id":111,"kind":262144,"name":"sliderVelocity","url":"classes/DifficultyPoint.html#sliderVelocity","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"DifficultyPoint"},{"id":112,"kind":1024,"name":"bpmMultiplier","url":"classes/DifficultyPoint.html#bpmMultiplier","classes":"tsd-kind-property tsd-parent-kind-class","parent":"DifficultyPoint"},{"id":113,"kind":2048,"name":"isRedundant","url":"classes/DifficultyPoint.html#isRedundant","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"DifficultyPoint"},{"id":114,"kind":1024,"name":"group","url":"classes/DifficultyPoint.html#group","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"DifficultyPoint"},{"id":115,"kind":2048,"name":"attachGroup","url":"classes/DifficultyPoint.html#attachGroup","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"DifficultyPoint"},{"id":116,"kind":2048,"name":"dettachGroup","url":"classes/DifficultyPoint.html#dettachGroup","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"DifficultyPoint"},{"id":117,"kind":262144,"name":"startTime","url":"classes/DifficultyPoint.html#startTime","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"DifficultyPoint"},{"id":118,"kind":128,"name":"EffectPoint","url":"classes/EffectPoint.html","classes":"tsd-kind-class"},{"id":119,"kind":1024,"name":"default","url":"classes/EffectPoint.html#default","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"EffectPoint"},{"id":120,"kind":512,"name":"constructor","url":"classes/EffectPoint.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"EffectPoint"},{"id":121,"kind":1024,"name":"pointType","url":"classes/EffectPoint.html#pointType","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"EffectPoint"},{"id":122,"kind":1024,"name":"kiai","url":"classes/EffectPoint.html#kiai","classes":"tsd-kind-property tsd-parent-kind-class","parent":"EffectPoint"},{"id":123,"kind":1024,"name":"omitFirstBarLine","url":"classes/EffectPoint.html#omitFirstBarLine","classes":"tsd-kind-property tsd-parent-kind-class","parent":"EffectPoint"},{"id":124,"kind":262144,"name":"scrollSpeed","url":"classes/EffectPoint.html#scrollSpeed","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"EffectPoint"},{"id":125,"kind":2048,"name":"isRedundant","url":"classes/EffectPoint.html#isRedundant","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"EffectPoint"},{"id":126,"kind":1024,"name":"group","url":"classes/EffectPoint.html#group","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"EffectPoint"},{"id":127,"kind":2048,"name":"attachGroup","url":"classes/EffectPoint.html#attachGroup","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EffectPoint"},{"id":128,"kind":2048,"name":"dettachGroup","url":"classes/EffectPoint.html#dettachGroup","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EffectPoint"},{"id":129,"kind":262144,"name":"startTime","url":"classes/EffectPoint.html#startTime","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"EffectPoint"},{"id":130,"kind":128,"name":"SamplePoint","url":"classes/SamplePoint.html","classes":"tsd-kind-class"},{"id":131,"kind":1024,"name":"default","url":"classes/SamplePoint.html#default","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"SamplePoint"},{"id":132,"kind":512,"name":"constructor","url":"classes/SamplePoint.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"SamplePoint"},{"id":133,"kind":1024,"name":"pointType","url":"classes/SamplePoint.html#pointType","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"SamplePoint"},{"id":134,"kind":1024,"name":"sampleSet","url":"classes/SamplePoint.html#sampleSet","classes":"tsd-kind-property tsd-parent-kind-class","parent":"SamplePoint"},{"id":135,"kind":1024,"name":"customIndex","url":"classes/SamplePoint.html#customIndex","classes":"tsd-kind-property tsd-parent-kind-class","parent":"SamplePoint"},{"id":136,"kind":1024,"name":"volume","url":"classes/SamplePoint.html#volume","classes":"tsd-kind-property tsd-parent-kind-class","parent":"SamplePoint"},{"id":137,"kind":2048,"name":"isRedundant","url":"classes/SamplePoint.html#isRedundant","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"SamplePoint"},{"id":138,"kind":1024,"name":"group","url":"classes/SamplePoint.html#group","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"SamplePoint"},{"id":139,"kind":2048,"name":"attachGroup","url":"classes/SamplePoint.html#attachGroup","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"SamplePoint"},{"id":140,"kind":2048,"name":"dettachGroup","url":"classes/SamplePoint.html#dettachGroup","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"SamplePoint"},{"id":141,"kind":262144,"name":"startTime","url":"classes/SamplePoint.html#startTime","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"SamplePoint"},{"id":142,"kind":128,"name":"TimingPoint","url":"classes/TimingPoint.html","classes":"tsd-kind-class"},{"id":143,"kind":1024,"name":"default","url":"classes/TimingPoint.html#default","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"TimingPoint"},{"id":144,"kind":512,"name":"constructor","url":"classes/TimingPoint.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"TimingPoint"},{"id":145,"kind":1024,"name":"pointType","url":"classes/TimingPoint.html#pointType","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"TimingPoint"},{"id":146,"kind":262144,"name":"beatLength","url":"classes/TimingPoint.html#beatLength","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"TimingPoint"},{"id":147,"kind":1024,"name":"timeSignature","url":"classes/TimingPoint.html#timeSignature","classes":"tsd-kind-property tsd-parent-kind-class","parent":"TimingPoint"},{"id":148,"kind":262144,"name":"bpm","url":"classes/TimingPoint.html#bpm","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"TimingPoint"},{"id":149,"kind":2048,"name":"isRedundant","url":"classes/TimingPoint.html#isRedundant","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"TimingPoint"},{"id":150,"kind":1024,"name":"group","url":"classes/TimingPoint.html#group","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"TimingPoint"},{"id":151,"kind":2048,"name":"attachGroup","url":"classes/TimingPoint.html#attachGroup","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TimingPoint"},{"id":152,"kind":2048,"name":"dettachGroup","url":"classes/TimingPoint.html#dettachGroup","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TimingPoint"},{"id":153,"kind":262144,"name":"startTime","url":"classes/TimingPoint.html#startTime","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"TimingPoint"},{"id":154,"kind":8,"name":"ControlPointType","url":"enums/ControlPointType.html","classes":"tsd-kind-enum"},{"id":155,"kind":16,"name":"TimingPoint","url":"enums/ControlPointType.html#TimingPoint","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ControlPointType"},{"id":156,"kind":16,"name":"DifficultyPoint","url":"enums/ControlPointType.html#DifficultyPoint","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ControlPointType"},{"id":157,"kind":16,"name":"EffectPoint","url":"enums/ControlPointType.html#EffectPoint","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ControlPointType"},{"id":158,"kind":16,"name":"SamplePoint","url":"enums/ControlPointType.html#SamplePoint","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ControlPointType"},{"id":159,"kind":8,"name":"EffectType","url":"enums/EffectType.html","classes":"tsd-kind-enum"},{"id":160,"kind":16,"name":"None","url":"enums/EffectType.html#None","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EffectType"},{"id":161,"kind":16,"name":"Kiai","url":"enums/EffectType.html#Kiai","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EffectType"},{"id":162,"kind":16,"name":"OmitFirstBarLine","url":"enums/EffectType.html#OmitFirstBarLine","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EffectType"},{"id":163,"kind":8,"name":"TimeSignature","url":"enums/TimeSignature.html","classes":"tsd-kind-enum"},{"id":164,"kind":16,"name":"SimpleTriple","url":"enums/TimeSignature.html#SimpleTriple","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"TimeSignature"},{"id":165,"kind":16,"name":"SimpleQuadruple","url":"enums/TimeSignature.html#SimpleQuadruple","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"TimeSignature"},{"id":166,"kind":128,"name":"BeatmapBreakEvent","url":"classes/BeatmapBreakEvent.html","classes":"tsd-kind-class"},{"id":167,"kind":512,"name":"constructor","url":"classes/BeatmapBreakEvent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"BeatmapBreakEvent"},{"id":168,"kind":1024,"name":"startTime","url":"classes/BeatmapBreakEvent.html#startTime","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapBreakEvent"},{"id":169,"kind":1024,"name":"endTime","url":"classes/BeatmapBreakEvent.html#endTime","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapBreakEvent"},{"id":170,"kind":262144,"name":"duration","url":"classes/BeatmapBreakEvent.html#duration","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"BeatmapBreakEvent"},{"id":171,"kind":262144,"name":"hasEffect","url":"classes/BeatmapBreakEvent.html#hasEffect","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"BeatmapBreakEvent"},{"id":172,"kind":2048,"name":"contains","url":"classes/BeatmapBreakEvent.html#contains","classes":"tsd-kind-method tsd-parent-kind-class","parent":"BeatmapBreakEvent"},{"id":173,"kind":256,"name":"IBeatmap","url":"interfaces/IBeatmap.html","classes":"tsd-kind-interface"},{"id":174,"kind":1024,"name":"base","url":"interfaces/IBeatmap.html#base","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmap"},{"id":175,"kind":1024,"name":"general","url":"interfaces/IBeatmap.html#general","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmap"},{"id":176,"kind":1024,"name":"editor","url":"interfaces/IBeatmap.html#editor","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmap"},{"id":177,"kind":1024,"name":"difficulty","url":"interfaces/IBeatmap.html#difficulty","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmap"},{"id":178,"kind":1024,"name":"metadata","url":"interfaces/IBeatmap.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmap"},{"id":179,"kind":1024,"name":"colors","url":"interfaces/IBeatmap.html#colors","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmap"},{"id":180,"kind":1024,"name":"events","url":"interfaces/IBeatmap.html#events","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmap"},{"id":181,"kind":1024,"name":"controlPoints","url":"interfaces/IBeatmap.html#controlPoints","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmap"},{"id":182,"kind":1024,"name":"hitObjects","url":"interfaces/IBeatmap.html#hitObjects","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmap"},{"id":183,"kind":1024,"name":"mode","url":"interfaces/IBeatmap.html#mode","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmap"},{"id":184,"kind":1024,"name":"originalMode","url":"interfaces/IBeatmap.html#originalMode","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmap"},{"id":185,"kind":1024,"name":"fileFormat","url":"interfaces/IBeatmap.html#fileFormat","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmap"},{"id":186,"kind":1024,"name":"length","url":"interfaces/IBeatmap.html#length","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmap"},{"id":187,"kind":1024,"name":"bpmMin","url":"interfaces/IBeatmap.html#bpmMin","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmap"},{"id":188,"kind":1024,"name":"bpmMax","url":"interfaces/IBeatmap.html#bpmMax","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmap"},{"id":189,"kind":1024,"name":"bpmMode","url":"interfaces/IBeatmap.html#bpmMode","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmap"},{"id":190,"kind":1024,"name":"totalBreakTime","url":"interfaces/IBeatmap.html#totalBreakTime","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmap"},{"id":191,"kind":2048,"name":"clone","url":"interfaces/IBeatmap.html#clone","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"IBeatmap"},{"id":192,"kind":256,"name":"IBeatmapInfo","url":"interfaces/IBeatmapInfo.html","classes":"tsd-kind-interface"},{"id":193,"kind":1024,"name":"id","url":"interfaces/IBeatmapInfo.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmapInfo"},{"id":194,"kind":1024,"name":"beatmapsetId","url":"interfaces/IBeatmapInfo.html#beatmapsetId","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmapInfo"},{"id":195,"kind":1024,"name":"creatorId","url":"interfaces/IBeatmapInfo.html#creatorId","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmapInfo"},{"id":196,"kind":1024,"name":"creator","url":"interfaces/IBeatmapInfo.html#creator","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmapInfo"},{"id":197,"kind":1024,"name":"favourites","url":"interfaces/IBeatmapInfo.html#favourites","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmapInfo"},{"id":198,"kind":1024,"name":"passcount","url":"interfaces/IBeatmapInfo.html#passcount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmapInfo"},{"id":199,"kind":1024,"name":"playcount","url":"interfaces/IBeatmapInfo.html#playcount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmapInfo"},{"id":200,"kind":1024,"name":"status","url":"interfaces/IBeatmapInfo.html#status","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmapInfo"},{"id":201,"kind":1024,"name":"title","url":"interfaces/IBeatmapInfo.html#title","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmapInfo"},{"id":202,"kind":1024,"name":"artist","url":"interfaces/IBeatmapInfo.html#artist","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmapInfo"},{"id":203,"kind":1024,"name":"version","url":"interfaces/IBeatmapInfo.html#version","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmapInfo"},{"id":204,"kind":1024,"name":"hittable","url":"interfaces/IBeatmapInfo.html#hittable","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmapInfo"},{"id":205,"kind":1024,"name":"slidable","url":"interfaces/IBeatmapInfo.html#slidable","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmapInfo"},{"id":206,"kind":1024,"name":"spinnable","url":"interfaces/IBeatmapInfo.html#spinnable","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmapInfo"},{"id":207,"kind":1024,"name":"holdable","url":"interfaces/IBeatmapInfo.html#holdable","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmapInfo"},{"id":208,"kind":1024,"name":"totalHits","url":"interfaces/IBeatmapInfo.html#totalHits","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmapInfo"},{"id":209,"kind":1024,"name":"length","url":"interfaces/IBeatmapInfo.html#length","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmapInfo"},{"id":210,"kind":1024,"name":"bpmMin","url":"interfaces/IBeatmapInfo.html#bpmMin","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmapInfo"},{"id":211,"kind":1024,"name":"bpmMax","url":"interfaces/IBeatmapInfo.html#bpmMax","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmapInfo"},{"id":212,"kind":1024,"name":"bpmMode","url":"interfaces/IBeatmapInfo.html#bpmMode","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmapInfo"},{"id":213,"kind":1024,"name":"circleSize","url":"interfaces/IBeatmapInfo.html#circleSize","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmapInfo"},{"id":214,"kind":1024,"name":"approachRate","url":"interfaces/IBeatmapInfo.html#approachRate","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmapInfo"},{"id":215,"kind":1024,"name":"overallDifficulty","url":"interfaces/IBeatmapInfo.html#overallDifficulty","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmapInfo"},{"id":216,"kind":1024,"name":"drainRate","url":"interfaces/IBeatmapInfo.html#drainRate","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmapInfo"},{"id":217,"kind":1024,"name":"ruleset","url":"interfaces/IBeatmapInfo.html#ruleset","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmapInfo"},{"id":218,"kind":1024,"name":"rulesetId","url":"interfaces/IBeatmapInfo.html#rulesetId","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmapInfo"},{"id":219,"kind":1024,"name":"mods","url":"interfaces/IBeatmapInfo.html#mods","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmapInfo"},{"id":220,"kind":1024,"name":"rawMods","url":"interfaces/IBeatmapInfo.html#rawMods","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmapInfo"},{"id":221,"kind":1024,"name":"starRating","url":"interfaces/IBeatmapInfo.html#starRating","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmapInfo"},{"id":222,"kind":1024,"name":"maxCombo","url":"interfaces/IBeatmapInfo.html#maxCombo","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmapInfo"},{"id":223,"kind":1024,"name":"isConvert","url":"interfaces/IBeatmapInfo.html#isConvert","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmapInfo"},{"id":224,"kind":1024,"name":"deletedAt","url":"interfaces/IBeatmapInfo.html#deletedAt","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmapInfo"},{"id":225,"kind":1024,"name":"updatedAt","url":"interfaces/IBeatmapInfo.html#updatedAt","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmapInfo"},{"id":226,"kind":1024,"name":"md5","url":"interfaces/IBeatmapInfo.html#md5","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IBeatmapInfo"},{"id":227,"kind":2048,"name":"toJSON","url":"interfaces/IBeatmapInfo.html#toJSON","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"IBeatmapInfo"},{"id":228,"kind":4194304,"name":"JsonableBeatmapInfo","url":"modules.html#JsonableBeatmapInfo","classes":"tsd-kind-type-alias"},{"id":229,"kind":256,"name":"IJsonableBeatmapInfo","url":"interfaces/IJsonableBeatmapInfo.html","classes":"tsd-kind-interface"},{"id":230,"kind":1024,"name":"mods","url":"interfaces/IJsonableBeatmapInfo.html#mods","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IJsonableBeatmapInfo"},{"id":231,"kind":1024,"name":"id","url":"interfaces/IJsonableBeatmapInfo.html#id","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableBeatmapInfo"},{"id":232,"kind":1024,"name":"beatmapsetId","url":"interfaces/IJsonableBeatmapInfo.html#beatmapsetId","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableBeatmapInfo"},{"id":233,"kind":1024,"name":"creatorId","url":"interfaces/IJsonableBeatmapInfo.html#creatorId","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableBeatmapInfo"},{"id":234,"kind":1024,"name":"creator","url":"interfaces/IJsonableBeatmapInfo.html#creator","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableBeatmapInfo"},{"id":235,"kind":1024,"name":"favourites","url":"interfaces/IJsonableBeatmapInfo.html#favourites","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableBeatmapInfo"},{"id":236,"kind":1024,"name":"passcount","url":"interfaces/IJsonableBeatmapInfo.html#passcount","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableBeatmapInfo"},{"id":237,"kind":1024,"name":"playcount","url":"interfaces/IJsonableBeatmapInfo.html#playcount","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableBeatmapInfo"},{"id":238,"kind":1024,"name":"status","url":"interfaces/IJsonableBeatmapInfo.html#status","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableBeatmapInfo"},{"id":239,"kind":1024,"name":"title","url":"interfaces/IJsonableBeatmapInfo.html#title","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableBeatmapInfo"},{"id":240,"kind":1024,"name":"artist","url":"interfaces/IJsonableBeatmapInfo.html#artist","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableBeatmapInfo"},{"id":241,"kind":1024,"name":"version","url":"interfaces/IJsonableBeatmapInfo.html#version","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableBeatmapInfo"},{"id":242,"kind":1024,"name":"hittable","url":"interfaces/IJsonableBeatmapInfo.html#hittable","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableBeatmapInfo"},{"id":243,"kind":1024,"name":"slidable","url":"interfaces/IJsonableBeatmapInfo.html#slidable","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableBeatmapInfo"},{"id":244,"kind":1024,"name":"spinnable","url":"interfaces/IJsonableBeatmapInfo.html#spinnable","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableBeatmapInfo"},{"id":245,"kind":1024,"name":"holdable","url":"interfaces/IJsonableBeatmapInfo.html#holdable","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableBeatmapInfo"},{"id":246,"kind":1024,"name":"totalHits","url":"interfaces/IJsonableBeatmapInfo.html#totalHits","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableBeatmapInfo"},{"id":247,"kind":1024,"name":"length","url":"interfaces/IJsonableBeatmapInfo.html#length","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableBeatmapInfo"},{"id":248,"kind":1024,"name":"bpmMin","url":"interfaces/IJsonableBeatmapInfo.html#bpmMin","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableBeatmapInfo"},{"id":249,"kind":1024,"name":"bpmMax","url":"interfaces/IJsonableBeatmapInfo.html#bpmMax","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableBeatmapInfo"},{"id":250,"kind":1024,"name":"bpmMode","url":"interfaces/IJsonableBeatmapInfo.html#bpmMode","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableBeatmapInfo"},{"id":251,"kind":1024,"name":"circleSize","url":"interfaces/IJsonableBeatmapInfo.html#circleSize","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableBeatmapInfo"},{"id":252,"kind":1024,"name":"approachRate","url":"interfaces/IJsonableBeatmapInfo.html#approachRate","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableBeatmapInfo"},{"id":253,"kind":1024,"name":"overallDifficulty","url":"interfaces/IJsonableBeatmapInfo.html#overallDifficulty","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableBeatmapInfo"},{"id":254,"kind":1024,"name":"drainRate","url":"interfaces/IJsonableBeatmapInfo.html#drainRate","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableBeatmapInfo"},{"id":255,"kind":1024,"name":"rulesetId","url":"interfaces/IJsonableBeatmapInfo.html#rulesetId","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableBeatmapInfo"},{"id":256,"kind":1024,"name":"starRating","url":"interfaces/IJsonableBeatmapInfo.html#starRating","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableBeatmapInfo"},{"id":257,"kind":1024,"name":"maxCombo","url":"interfaces/IJsonableBeatmapInfo.html#maxCombo","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableBeatmapInfo"},{"id":258,"kind":1024,"name":"isConvert","url":"interfaces/IJsonableBeatmapInfo.html#isConvert","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableBeatmapInfo"},{"id":259,"kind":1024,"name":"deletedAt","url":"interfaces/IJsonableBeatmapInfo.html#deletedAt","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableBeatmapInfo"},{"id":260,"kind":1024,"name":"updatedAt","url":"interfaces/IJsonableBeatmapInfo.html#updatedAt","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableBeatmapInfo"},{"id":261,"kind":1024,"name":"md5","url":"interfaces/IJsonableBeatmapInfo.html#md5","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableBeatmapInfo"},{"id":262,"kind":2048,"name":"toJSON","url":"interfaces/IJsonableBeatmapInfo.html#toJSON","classes":"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableBeatmapInfo"},{"id":263,"kind":128,"name":"ProgressiveCalculationBeatmap","url":"classes/ProgressiveCalculationBeatmap.html","classes":"tsd-kind-class"},{"id":264,"kind":512,"name":"constructor","url":"classes/ProgressiveCalculationBeatmap.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"ProgressiveCalculationBeatmap"},{"id":265,"kind":1024,"name":"hitObjects","url":"classes/ProgressiveCalculationBeatmap.html#hitObjects","classes":"tsd-kind-property tsd-parent-kind-class","parent":"ProgressiveCalculationBeatmap"},{"id":266,"kind":262144,"name":"general","url":"classes/ProgressiveCalculationBeatmap.html#general","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"ProgressiveCalculationBeatmap"},{"id":267,"kind":262144,"name":"editor","url":"classes/ProgressiveCalculationBeatmap.html#editor","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"ProgressiveCalculationBeatmap"},{"id":268,"kind":262144,"name":"difficulty","url":"classes/ProgressiveCalculationBeatmap.html#difficulty","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"ProgressiveCalculationBeatmap"},{"id":269,"kind":262144,"name":"metadata","url":"classes/ProgressiveCalculationBeatmap.html#metadata","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"ProgressiveCalculationBeatmap"},{"id":270,"kind":262144,"name":"colors","url":"classes/ProgressiveCalculationBeatmap.html#colors","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"ProgressiveCalculationBeatmap"},{"id":271,"kind":262144,"name":"events","url":"classes/ProgressiveCalculationBeatmap.html#events","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"ProgressiveCalculationBeatmap"},{"id":272,"kind":262144,"name":"controlPoints","url":"classes/ProgressiveCalculationBeatmap.html#controlPoints","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"ProgressiveCalculationBeatmap"},{"id":273,"kind":262144,"name":"mode","url":"classes/ProgressiveCalculationBeatmap.html#mode","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"ProgressiveCalculationBeatmap"},{"id":274,"kind":262144,"name":"originalMode","url":"classes/ProgressiveCalculationBeatmap.html#originalMode","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"ProgressiveCalculationBeatmap"},{"id":275,"kind":262144,"name":"fileFormat","url":"classes/ProgressiveCalculationBeatmap.html#fileFormat","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"ProgressiveCalculationBeatmap"},{"id":276,"kind":262144,"name":"length","url":"classes/ProgressiveCalculationBeatmap.html#length","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"ProgressiveCalculationBeatmap"},{"id":277,"kind":262144,"name":"bpmMin","url":"classes/ProgressiveCalculationBeatmap.html#bpmMin","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"ProgressiveCalculationBeatmap"},{"id":278,"kind":262144,"name":"bpmMax","url":"classes/ProgressiveCalculationBeatmap.html#bpmMax","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"ProgressiveCalculationBeatmap"},{"id":279,"kind":262144,"name":"bpmMode","url":"classes/ProgressiveCalculationBeatmap.html#bpmMode","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"ProgressiveCalculationBeatmap"},{"id":280,"kind":262144,"name":"totalBreakTime","url":"classes/ProgressiveCalculationBeatmap.html#totalBreakTime","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"ProgressiveCalculationBeatmap"},{"id":281,"kind":2048,"name":"clone","url":"classes/ProgressiveCalculationBeatmap.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ProgressiveCalculationBeatmap"},{"id":282,"kind":128,"name":"RulesetBeatmap","url":"classes/RulesetBeatmap.html","classes":"tsd-kind-class"},{"id":283,"kind":512,"name":"constructor","url":"classes/RulesetBeatmap.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"RulesetBeatmap"},{"id":284,"kind":262144,"name":"maxCombo","url":"classes/RulesetBeatmap.html#maxCombo","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"RulesetBeatmap"},{"id":285,"kind":1024,"name":"mods","url":"classes/RulesetBeatmap.html#mods","classes":"tsd-kind-property tsd-parent-kind-class","parent":"RulesetBeatmap"},{"id":286,"kind":2048,"name":"clone","url":"classes/RulesetBeatmap.html#clone","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"RulesetBeatmap"},{"id":287,"kind":1024,"name":"base","url":"classes/RulesetBeatmap.html#base","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"RulesetBeatmap"},{"id":288,"kind":1024,"name":"general","url":"classes/RulesetBeatmap.html#general","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"RulesetBeatmap"},{"id":289,"kind":1024,"name":"editor","url":"classes/RulesetBeatmap.html#editor","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"RulesetBeatmap"},{"id":290,"kind":1024,"name":"difficulty","url":"classes/RulesetBeatmap.html#difficulty","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"RulesetBeatmap"},{"id":291,"kind":1024,"name":"metadata","url":"classes/RulesetBeatmap.html#metadata","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"RulesetBeatmap"},{"id":292,"kind":1024,"name":"colors","url":"classes/RulesetBeatmap.html#colors","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"RulesetBeatmap"},{"id":293,"kind":1024,"name":"events","url":"classes/RulesetBeatmap.html#events","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"RulesetBeatmap"},{"id":294,"kind":1024,"name":"controlPoints","url":"classes/RulesetBeatmap.html#controlPoints","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"RulesetBeatmap"},{"id":295,"kind":1024,"name":"hitObjects","url":"classes/RulesetBeatmap.html#hitObjects","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"RulesetBeatmap"},{"id":296,"kind":1024,"name":"fileFormat","url":"classes/RulesetBeatmap.html#fileFormat","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"RulesetBeatmap"},{"id":297,"kind":1024,"name":"fileUpdateDate","url":"classes/RulesetBeatmap.html#fileUpdateDate","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"RulesetBeatmap"},{"id":298,"kind":1024,"name":"originalMode","url":"classes/RulesetBeatmap.html#originalMode","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"RulesetBeatmap"},{"id":299,"kind":262144,"name":"mode","url":"classes/RulesetBeatmap.html#mode","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"RulesetBeatmap"},{"id":300,"kind":262144,"name":"length","url":"classes/RulesetBeatmap.html#length","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"RulesetBeatmap"},{"id":301,"kind":262144,"name":"totalLength","url":"classes/RulesetBeatmap.html#totalLength","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"RulesetBeatmap"},{"id":302,"kind":262144,"name":"bpmMin","url":"classes/RulesetBeatmap.html#bpmMin","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"RulesetBeatmap"},{"id":303,"kind":262144,"name":"bpmMax","url":"classes/RulesetBeatmap.html#bpmMax","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"RulesetBeatmap"},{"id":304,"kind":262144,"name":"bpm","url":"classes/RulesetBeatmap.html#bpm","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"RulesetBeatmap"},{"id":305,"kind":262144,"name":"bpmMode","url":"classes/RulesetBeatmap.html#bpmMode","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"RulesetBeatmap"},{"id":306,"kind":262144,"name":"totalBreakTime","url":"classes/RulesetBeatmap.html#totalBreakTime","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"RulesetBeatmap"},{"id":307,"kind":128,"name":"BeatmapColorSection","url":"classes/BeatmapColorSection.html","classes":"tsd-kind-class"},{"id":308,"kind":512,"name":"constructor","url":"classes/BeatmapColorSection.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"BeatmapColorSection"},{"id":309,"kind":1024,"name":"comboColors","url":"classes/BeatmapColorSection.html#comboColors","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapColorSection"},{"id":310,"kind":1024,"name":"sliderTrackColor","url":"classes/BeatmapColorSection.html#sliderTrackColor","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapColorSection"},{"id":311,"kind":1024,"name":"sliderBorderColor","url":"classes/BeatmapColorSection.html#sliderBorderColor","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapColorSection"},{"id":312,"kind":2048,"name":"clone","url":"classes/BeatmapColorSection.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"BeatmapColorSection"},{"id":313,"kind":128,"name":"BeatmapDifficultySection","url":"classes/BeatmapDifficultySection.html","classes":"tsd-kind-class"},{"id":314,"kind":1024,"name":"BASE_DIFFICULTY","url":"classes/BeatmapDifficultySection.html#BASE_DIFFICULTY","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"BeatmapDifficultySection"},{"id":315,"kind":2048,"name":"range","url":"classes/BeatmapDifficultySection.html#range","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"BeatmapDifficultySection"},{"id":316,"kind":512,"name":"constructor","url":"classes/BeatmapDifficultySection.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"BeatmapDifficultySection"},{"id":317,"kind":262144,"name":"circleSize","url":"classes/BeatmapDifficultySection.html#circleSize","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"BeatmapDifficultySection"},{"id":318,"kind":262144,"name":"drainRate","url":"classes/BeatmapDifficultySection.html#drainRate","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"BeatmapDifficultySection"},{"id":319,"kind":262144,"name":"overallDifficulty","url":"classes/BeatmapDifficultySection.html#overallDifficulty","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"BeatmapDifficultySection"},{"id":320,"kind":262144,"name":"approachRate","url":"classes/BeatmapDifficultySection.html#approachRate","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"BeatmapDifficultySection"},{"id":321,"kind":262144,"name":"sliderMultiplier","url":"classes/BeatmapDifficultySection.html#sliderMultiplier","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"BeatmapDifficultySection"},{"id":322,"kind":262144,"name":"sliderTickRate","url":"classes/BeatmapDifficultySection.html#sliderTickRate","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"BeatmapDifficultySection"},{"id":323,"kind":262144,"name":"clockRate","url":"classes/BeatmapDifficultySection.html#clockRate","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"BeatmapDifficultySection"},{"id":324,"kind":2048,"name":"clone","url":"classes/BeatmapDifficultySection.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"BeatmapDifficultySection"},{"id":325,"kind":128,"name":"BeatmapEditorSection","url":"classes/BeatmapEditorSection.html","classes":"tsd-kind-class"},{"id":326,"kind":512,"name":"constructor","url":"classes/BeatmapEditorSection.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"BeatmapEditorSection"},{"id":327,"kind":1024,"name":"bookmarks","url":"classes/BeatmapEditorSection.html#bookmarks","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapEditorSection"},{"id":328,"kind":1024,"name":"distanceSpacing","url":"classes/BeatmapEditorSection.html#distanceSpacing","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapEditorSection"},{"id":329,"kind":1024,"name":"beatDivisor","url":"classes/BeatmapEditorSection.html#beatDivisor","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapEditorSection"},{"id":330,"kind":1024,"name":"gridSize","url":"classes/BeatmapEditorSection.html#gridSize","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapEditorSection"},{"id":331,"kind":1024,"name":"timelineZoom","url":"classes/BeatmapEditorSection.html#timelineZoom","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapEditorSection"},{"id":332,"kind":2048,"name":"clone","url":"classes/BeatmapEditorSection.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"BeatmapEditorSection"},{"id":333,"kind":128,"name":"BeatmapEventSection","url":"classes/BeatmapEventSection.html","classes":"tsd-kind-class"},{"id":334,"kind":512,"name":"constructor","url":"classes/BeatmapEventSection.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"BeatmapEventSection"},{"id":335,"kind":1024,"name":"backgroundPath","url":"classes/BeatmapEventSection.html#backgroundPath","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapEventSection"},{"id":336,"kind":1024,"name":"breaks","url":"classes/BeatmapEventSection.html#breaks","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapEventSection"},{"id":337,"kind":1024,"name":"storyboard","url":"classes/BeatmapEventSection.html#storyboard","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapEventSection"},{"id":338,"kind":262144,"name":"isBackgroundReplaced","url":"classes/BeatmapEventSection.html#isBackgroundReplaced","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"BeatmapEventSection"},{"id":339,"kind":2048,"name":"clone","url":"classes/BeatmapEventSection.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"BeatmapEventSection"},{"id":340,"kind":128,"name":"BeatmapGeneralSection","url":"classes/BeatmapGeneralSection.html","classes":"tsd-kind-class"},{"id":341,"kind":512,"name":"constructor","url":"classes/BeatmapGeneralSection.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"BeatmapGeneralSection"},{"id":342,"kind":1024,"name":"audioFilename","url":"classes/BeatmapGeneralSection.html#audioFilename","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapGeneralSection"},{"id":343,"kind":1024,"name":"audioHash","url":"classes/BeatmapGeneralSection.html#audioHash","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapGeneralSection"},{"id":344,"kind":1024,"name":"overlayPosition","url":"classes/BeatmapGeneralSection.html#overlayPosition","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapGeneralSection"},{"id":345,"kind":1024,"name":"skinPreference","url":"classes/BeatmapGeneralSection.html#skinPreference","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapGeneralSection"},{"id":346,"kind":1024,"name":"audioLeadIn","url":"classes/BeatmapGeneralSection.html#audioLeadIn","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapGeneralSection"},{"id":347,"kind":1024,"name":"previewTime","url":"classes/BeatmapGeneralSection.html#previewTime","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapGeneralSection"},{"id":348,"kind":1024,"name":"countdown","url":"classes/BeatmapGeneralSection.html#countdown","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapGeneralSection"},{"id":349,"kind":1024,"name":"stackLeniency","url":"classes/BeatmapGeneralSection.html#stackLeniency","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapGeneralSection"},{"id":350,"kind":1024,"name":"countdownOffset","url":"classes/BeatmapGeneralSection.html#countdownOffset","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapGeneralSection"},{"id":351,"kind":1024,"name":"sampleSet","url":"classes/BeatmapGeneralSection.html#sampleSet","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapGeneralSection"},{"id":352,"kind":1024,"name":"letterboxInBreaks","url":"classes/BeatmapGeneralSection.html#letterboxInBreaks","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapGeneralSection"},{"id":353,"kind":1024,"name":"storyFireInFront","url":"classes/BeatmapGeneralSection.html#storyFireInFront","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapGeneralSection"},{"id":354,"kind":1024,"name":"useSkinSprites","url":"classes/BeatmapGeneralSection.html#useSkinSprites","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapGeneralSection"},{"id":355,"kind":1024,"name":"alwaysShowPlayfield","url":"classes/BeatmapGeneralSection.html#alwaysShowPlayfield","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapGeneralSection"},{"id":356,"kind":1024,"name":"epilepsyWarning","url":"classes/BeatmapGeneralSection.html#epilepsyWarning","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapGeneralSection"},{"id":357,"kind":1024,"name":"specialStyle","url":"classes/BeatmapGeneralSection.html#specialStyle","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapGeneralSection"},{"id":358,"kind":1024,"name":"widescreenStoryboard","url":"classes/BeatmapGeneralSection.html#widescreenStoryboard","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapGeneralSection"},{"id":359,"kind":1024,"name":"samplesMatchPlaybackRate","url":"classes/BeatmapGeneralSection.html#samplesMatchPlaybackRate","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapGeneralSection"},{"id":360,"kind":2048,"name":"clone","url":"classes/BeatmapGeneralSection.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"BeatmapGeneralSection"},{"id":361,"kind":128,"name":"BeatmapMetadataSection","url":"classes/BeatmapMetadataSection.html","classes":"tsd-kind-class"},{"id":362,"kind":512,"name":"constructor","url":"classes/BeatmapMetadataSection.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"BeatmapMetadataSection"},{"id":363,"kind":1024,"name":"title","url":"classes/BeatmapMetadataSection.html#title","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapMetadataSection"},{"id":364,"kind":1024,"name":"artist","url":"classes/BeatmapMetadataSection.html#artist","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapMetadataSection"},{"id":365,"kind":1024,"name":"creator","url":"classes/BeatmapMetadataSection.html#creator","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapMetadataSection"},{"id":366,"kind":1024,"name":"version","url":"classes/BeatmapMetadataSection.html#version","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapMetadataSection"},{"id":367,"kind":1024,"name":"source","url":"classes/BeatmapMetadataSection.html#source","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapMetadataSection"},{"id":368,"kind":1024,"name":"tags","url":"classes/BeatmapMetadataSection.html#tags","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapMetadataSection"},{"id":369,"kind":1024,"name":"beatmapId","url":"classes/BeatmapMetadataSection.html#beatmapId","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapMetadataSection"},{"id":370,"kind":1024,"name":"beatmapSetId","url":"classes/BeatmapMetadataSection.html#beatmapSetId","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BeatmapMetadataSection"},{"id":371,"kind":262144,"name":"titleUnicode","url":"classes/BeatmapMetadataSection.html#titleUnicode","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"BeatmapMetadataSection"},{"id":372,"kind":262144,"name":"artistUnicode","url":"classes/BeatmapMetadataSection.html#artistUnicode","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"BeatmapMetadataSection"},{"id":373,"kind":2048,"name":"clone","url":"classes/BeatmapMetadataSection.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"BeatmapMetadataSection"},{"id":374,"kind":128,"name":"DifficultyAttributes","url":"classes/DifficultyAttributes.html","classes":"tsd-kind-class"},{"id":375,"kind":512,"name":"constructor","url":"classes/DifficultyAttributes.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"DifficultyAttributes"},{"id":376,"kind":1024,"name":"mods","url":"classes/DifficultyAttributes.html#mods","classes":"tsd-kind-property tsd-parent-kind-class","parent":"DifficultyAttributes"},{"id":377,"kind":1024,"name":"starRating","url":"classes/DifficultyAttributes.html#starRating","classes":"tsd-kind-property tsd-parent-kind-class","parent":"DifficultyAttributes"},{"id":378,"kind":1024,"name":"maxCombo","url":"classes/DifficultyAttributes.html#maxCombo","classes":"tsd-kind-property tsd-parent-kind-class","parent":"DifficultyAttributes"},{"id":379,"kind":128,"name":"PerformanceAttributes","url":"classes/PerformanceAttributes.html","classes":"tsd-kind-class"},{"id":380,"kind":512,"name":"constructor","url":"classes/PerformanceAttributes.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"PerformanceAttributes"},{"id":381,"kind":1024,"name":"mods","url":"classes/PerformanceAttributes.html#mods","classes":"tsd-kind-property tsd-parent-kind-class","parent":"PerformanceAttributes"},{"id":382,"kind":1024,"name":"totalPerformance","url":"classes/PerformanceAttributes.html#totalPerformance","classes":"tsd-kind-property tsd-parent-kind-class","parent":"PerformanceAttributes"},{"id":383,"kind":128,"name":"TimedDifficultyAttributes","url":"classes/TimedDifficultyAttributes.html","classes":"tsd-kind-class tsd-has-type-parameter"},{"id":384,"kind":512,"name":"constructor","url":"classes/TimedDifficultyAttributes.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-has-type-parameter","parent":"TimedDifficultyAttributes"},{"id":385,"kind":1024,"name":"time","url":"classes/TimedDifficultyAttributes.html#time","classes":"tsd-kind-property tsd-parent-kind-class","parent":"TimedDifficultyAttributes"},{"id":386,"kind":1024,"name":"attributes","url":"classes/TimedDifficultyAttributes.html#attributes","classes":"tsd-kind-property tsd-parent-kind-class","parent":"TimedDifficultyAttributes"},{"id":387,"kind":2048,"name":"compareTo","url":"classes/TimedDifficultyAttributes.html#compareTo","classes":"tsd-kind-method tsd-parent-kind-class","parent":"TimedDifficultyAttributes"},{"id":388,"kind":128,"name":"DifficultyCalculator","url":"classes/DifficultyCalculator.html","classes":"tsd-kind-class tsd-has-type-parameter"},{"id":389,"kind":512,"name":"constructor","url":"classes/DifficultyCalculator.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-has-type-parameter","parent":"DifficultyCalculator"},{"id":390,"kind":2048,"name":"calculate","url":"classes/DifficultyCalculator.html#calculate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"DifficultyCalculator"},{"id":391,"kind":2048,"name":"calculateAll","url":"classes/DifficultyCalculator.html#calculateAll","classes":"tsd-kind-method tsd-parent-kind-class","parent":"DifficultyCalculator"},{"id":392,"kind":2048,"name":"calculateWithMods","url":"classes/DifficultyCalculator.html#calculateWithMods","classes":"tsd-kind-method tsd-parent-kind-class","parent":"DifficultyCalculator"},{"id":393,"kind":2048,"name":"calculateAt","url":"classes/DifficultyCalculator.html#calculateAt","classes":"tsd-kind-method tsd-parent-kind-class","parent":"DifficultyCalculator"},{"id":394,"kind":2048,"name":"calculateWithModsAt","url":"classes/DifficultyCalculator.html#calculateWithModsAt","classes":"tsd-kind-method tsd-parent-kind-class","parent":"DifficultyCalculator"},{"id":395,"kind":2048,"name":"calculateTimed","url":"classes/DifficultyCalculator.html#calculateTimed","classes":"tsd-kind-method tsd-parent-kind-class","parent":"DifficultyCalculator"},{"id":396,"kind":2048,"name":"calculateTimedWithMods","url":"classes/DifficultyCalculator.html#calculateTimedWithMods","classes":"tsd-kind-method tsd-parent-kind-class","parent":"DifficultyCalculator"},{"id":397,"kind":262144,"name":"difficultyMods","url":"classes/DifficultyCalculator.html#difficultyMods","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"DifficultyCalculator"},{"id":398,"kind":128,"name":"PerformanceCalculator","url":"classes/PerformanceCalculator.html","classes":"tsd-kind-class"},{"id":399,"kind":512,"name":"constructor","url":"classes/PerformanceCalculator.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"PerformanceCalculator"},{"id":400,"kind":1024,"name":"attributes","url":"classes/PerformanceCalculator.html#attributes","classes":"tsd-kind-property tsd-parent-kind-class","parent":"PerformanceCalculator"},{"id":401,"kind":2048,"name":"calculate","url":"classes/PerformanceCalculator.html#calculate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PerformanceCalculator"},{"id":402,"kind":2048,"name":"calculateAttributes","url":"classes/PerformanceCalculator.html#calculateAttributes","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PerformanceCalculator"},{"id":403,"kind":128,"name":"DifficultyHitObject","url":"classes/DifficultyHitObject.html","classes":"tsd-kind-class"},{"id":404,"kind":512,"name":"constructor","url":"classes/DifficultyHitObject.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"DifficultyHitObject"},{"id":405,"kind":1024,"name":"index","url":"classes/DifficultyHitObject.html#index","classes":"tsd-kind-property tsd-parent-kind-class","parent":"DifficultyHitObject"},{"id":406,"kind":1024,"name":"baseObject","url":"classes/DifficultyHitObject.html#baseObject","classes":"tsd-kind-property tsd-parent-kind-class","parent":"DifficultyHitObject"},{"id":407,"kind":1024,"name":"lastObject","url":"classes/DifficultyHitObject.html#lastObject","classes":"tsd-kind-property tsd-parent-kind-class","parent":"DifficultyHitObject"},{"id":408,"kind":1024,"name":"deltaTime","url":"classes/DifficultyHitObject.html#deltaTime","classes":"tsd-kind-property tsd-parent-kind-class","parent":"DifficultyHitObject"},{"id":409,"kind":1024,"name":"startTime","url":"classes/DifficultyHitObject.html#startTime","classes":"tsd-kind-property tsd-parent-kind-class","parent":"DifficultyHitObject"},{"id":410,"kind":1024,"name":"endTime","url":"classes/DifficultyHitObject.html#endTime","classes":"tsd-kind-property tsd-parent-kind-class","parent":"DifficultyHitObject"},{"id":411,"kind":2048,"name":"previous","url":"classes/DifficultyHitObject.html#previous","classes":"tsd-kind-method tsd-parent-kind-class","parent":"DifficultyHitObject"},{"id":412,"kind":2048,"name":"next","url":"classes/DifficultyHitObject.html#next","classes":"tsd-kind-method tsd-parent-kind-class","parent":"DifficultyHitObject"},{"id":413,"kind":128,"name":"Skill","url":"classes/Skill.html","classes":"tsd-kind-class"},{"id":414,"kind":512,"name":"constructor","url":"classes/Skill.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Skill"},{"id":415,"kind":2048,"name":"process","url":"classes/Skill.html#process","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Skill"},{"id":416,"kind":262144,"name":"difficultyValue","url":"classes/Skill.html#difficultyValue","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Skill"},{"id":417,"kind":128,"name":"StrainDecaySkill","url":"classes/StrainDecaySkill.html","classes":"tsd-kind-class"},{"id":418,"kind":512,"name":"constructor","url":"classes/StrainDecaySkill.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"StrainDecaySkill"},{"id":419,"kind":2048,"name":"process","url":"classes/StrainDecaySkill.html#process","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"StrainDecaySkill"},{"id":420,"kind":2048,"name":"getCurrentStrainPeaks","url":"classes/StrainDecaySkill.html#getCurrentStrainPeaks","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"StrainDecaySkill"},{"id":421,"kind":262144,"name":"difficultyValue","url":"classes/StrainDecaySkill.html#difficultyValue","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"StrainDecaySkill"},{"id":422,"kind":128,"name":"StrainSkill","url":"classes/StrainSkill.html","classes":"tsd-kind-class"},{"id":423,"kind":512,"name":"constructor","url":"classes/StrainSkill.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"StrainSkill"},{"id":424,"kind":2048,"name":"process","url":"classes/StrainSkill.html#process","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"StrainSkill"},{"id":425,"kind":2048,"name":"getCurrentStrainPeaks","url":"classes/StrainSkill.html#getCurrentStrainPeaks","classes":"tsd-kind-method tsd-parent-kind-class","parent":"StrainSkill"},{"id":426,"kind":262144,"name":"difficultyValue","url":"classes/StrainSkill.html#difficultyValue","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"StrainSkill"},{"id":427,"kind":128,"name":"LimitedCapacityQueue","url":"classes/LimitedCapacityQueue.html","classes":"tsd-kind-class tsd-has-type-parameter"},{"id":428,"kind":512,"name":"constructor","url":"classes/LimitedCapacityQueue.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-has-type-parameter","parent":"LimitedCapacityQueue"},{"id":429,"kind":1024,"name":"count","url":"classes/LimitedCapacityQueue.html#count","classes":"tsd-kind-property tsd-parent-kind-class","parent":"LimitedCapacityQueue"},{"id":430,"kind":262144,"name":"full","url":"classes/LimitedCapacityQueue.html#full","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"LimitedCapacityQueue"},{"id":431,"kind":2048,"name":"clear","url":"classes/LimitedCapacityQueue.html#clear","classes":"tsd-kind-method tsd-parent-kind-class","parent":"LimitedCapacityQueue"},{"id":432,"kind":2048,"name":"dequeue","url":"classes/LimitedCapacityQueue.html#dequeue","classes":"tsd-kind-method tsd-parent-kind-class","parent":"LimitedCapacityQueue"},{"id":433,"kind":2048,"name":"enqueue","url":"classes/LimitedCapacityQueue.html#enqueue","classes":"tsd-kind-method tsd-parent-kind-class","parent":"LimitedCapacityQueue"},{"id":434,"kind":2048,"name":"get","url":"classes/LimitedCapacityQueue.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"LimitedCapacityQueue"},{"id":435,"kind":2048,"name":"enumerate","url":"classes/LimitedCapacityQueue.html#enumerate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"LimitedCapacityQueue"},{"id":436,"kind":128,"name":"ReverseQueue","url":"classes/ReverseQueue.html","classes":"tsd-kind-class tsd-has-type-parameter"},{"id":437,"kind":512,"name":"constructor","url":"classes/ReverseQueue.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-has-type-parameter","parent":"ReverseQueue"},{"id":438,"kind":1024,"name":"count","url":"classes/ReverseQueue.html#count","classes":"tsd-kind-property tsd-parent-kind-class","parent":"ReverseQueue"},{"id":439,"kind":2048,"name":"get","url":"classes/ReverseQueue.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ReverseQueue"},{"id":440,"kind":2048,"name":"enqueue","url":"classes/ReverseQueue.html#enqueue","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ReverseQueue"},{"id":441,"kind":2048,"name":"dequeue","url":"classes/ReverseQueue.html#dequeue","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ReverseQueue"},{"id":442,"kind":2048,"name":"clear","url":"classes/ReverseQueue.html#clear","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ReverseQueue"},{"id":443,"kind":2048,"name":"enumerate","url":"classes/ReverseQueue.html#enumerate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ReverseQueue"},{"id":444,"kind":8,"name":"ModBitwise","url":"enums/ModBitwise.html","classes":"tsd-kind-enum"},{"id":445,"kind":16,"name":"None","url":"enums/ModBitwise.html#None","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ModBitwise"},{"id":446,"kind":16,"name":"NoFail","url":"enums/ModBitwise.html#NoFail","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ModBitwise"},{"id":447,"kind":16,"name":"Easy","url":"enums/ModBitwise.html#Easy","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ModBitwise"},{"id":448,"kind":16,"name":"TouchDevice","url":"enums/ModBitwise.html#TouchDevice","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ModBitwise"},{"id":449,"kind":16,"name":"Hidden","url":"enums/ModBitwise.html#Hidden","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ModBitwise"},{"id":450,"kind":16,"name":"HardRock","url":"enums/ModBitwise.html#HardRock","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ModBitwise"},{"id":451,"kind":16,"name":"SuddenDeath","url":"enums/ModBitwise.html#SuddenDeath","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ModBitwise"},{"id":452,"kind":16,"name":"DoubleTime","url":"enums/ModBitwise.html#DoubleTime","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ModBitwise"},{"id":453,"kind":16,"name":"Relax","url":"enums/ModBitwise.html#Relax","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ModBitwise"},{"id":454,"kind":16,"name":"HalfTime","url":"enums/ModBitwise.html#HalfTime","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ModBitwise"},{"id":455,"kind":16,"name":"Nightcore","url":"enums/ModBitwise.html#Nightcore","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ModBitwise"},{"id":456,"kind":16,"name":"Flashlight","url":"enums/ModBitwise.html#Flashlight","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ModBitwise"},{"id":457,"kind":16,"name":"Autoplay","url":"enums/ModBitwise.html#Autoplay","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ModBitwise"},{"id":458,"kind":16,"name":"SpunOut","url":"enums/ModBitwise.html#SpunOut","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ModBitwise"},{"id":459,"kind":16,"name":"Relax2","url":"enums/ModBitwise.html#Relax2","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ModBitwise"},{"id":460,"kind":16,"name":"Perfect","url":"enums/ModBitwise.html#Perfect","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ModBitwise"},{"id":461,"kind":16,"name":"Key4","url":"enums/ModBitwise.html#Key4","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ModBitwise"},{"id":462,"kind":16,"name":"Key5","url":"enums/ModBitwise.html#Key5","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ModBitwise"},{"id":463,"kind":16,"name":"Key6","url":"enums/ModBitwise.html#Key6","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ModBitwise"},{"id":464,"kind":16,"name":"Key7","url":"enums/ModBitwise.html#Key7","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ModBitwise"},{"id":465,"kind":16,"name":"Key8","url":"enums/ModBitwise.html#Key8","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ModBitwise"},{"id":466,"kind":16,"name":"FadeIn","url":"enums/ModBitwise.html#FadeIn","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ModBitwise"},{"id":467,"kind":16,"name":"Random","url":"enums/ModBitwise.html#Random","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ModBitwise"},{"id":468,"kind":16,"name":"Cinema","url":"enums/ModBitwise.html#Cinema","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ModBitwise"},{"id":469,"kind":16,"name":"Target","url":"enums/ModBitwise.html#Target","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ModBitwise"},{"id":470,"kind":16,"name":"Key9","url":"enums/ModBitwise.html#Key9","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ModBitwise"},{"id":471,"kind":16,"name":"KeyCoop","url":"enums/ModBitwise.html#KeyCoop","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ModBitwise"},{"id":472,"kind":16,"name":"Key1","url":"enums/ModBitwise.html#Key1","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ModBitwise"},{"id":473,"kind":16,"name":"Key3","url":"enums/ModBitwise.html#Key3","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ModBitwise"},{"id":474,"kind":16,"name":"Key2","url":"enums/ModBitwise.html#Key2","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ModBitwise"},{"id":475,"kind":16,"name":"ScoreV2","url":"enums/ModBitwise.html#ScoreV2","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ModBitwise"},{"id":476,"kind":16,"name":"Mirror","url":"enums/ModBitwise.html#Mirror","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ModBitwise"},{"id":477,"kind":16,"name":"KeyMod","url":"enums/ModBitwise.html#KeyMod","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ModBitwise"},{"id":478,"kind":16,"name":"DifficultyDecrease","url":"enums/ModBitwise.html#DifficultyDecrease","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ModBitwise"},{"id":479,"kind":16,"name":"DifficultyIncrease","url":"enums/ModBitwise.html#DifficultyIncrease","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ModBitwise"},{"id":480,"kind":8,"name":"ModType","url":"enums/ModType.html","classes":"tsd-kind-enum"},{"id":481,"kind":16,"name":"DifficultyReduction","url":"enums/ModType.html#DifficultyReduction","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ModType"},{"id":482,"kind":16,"name":"DifficultyIncrease","url":"enums/ModType.html#DifficultyIncrease","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ModType"},{"id":483,"kind":16,"name":"Conversion","url":"enums/ModType.html#Conversion","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ModType"},{"id":484,"kind":16,"name":"Automation","url":"enums/ModType.html#Automation","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ModType"},{"id":485,"kind":16,"name":"Fun","url":"enums/ModType.html#Fun","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ModType"},{"id":486,"kind":16,"name":"System","url":"enums/ModType.html#System","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ModType"},{"id":487,"kind":256,"name":"IApplicableToConverter","url":"interfaces/IApplicableToConverter.html","classes":"tsd-kind-interface"},{"id":488,"kind":2048,"name":"applyToConverter","url":"interfaces/IApplicableToConverter.html#applyToConverter","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"IApplicableToConverter"},{"id":489,"kind":1024,"name":"name","url":"interfaces/IApplicableToConverter.html#name","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IApplicableToConverter"},{"id":490,"kind":1024,"name":"acronym","url":"interfaces/IApplicableToConverter.html#acronym","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IApplicableToConverter"},{"id":491,"kind":1024,"name":"bitwise","url":"interfaces/IApplicableToConverter.html#bitwise","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IApplicableToConverter"},{"id":492,"kind":1024,"name":"type","url":"interfaces/IApplicableToConverter.html#type","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IApplicableToConverter"},{"id":493,"kind":1024,"name":"multiplier","url":"interfaces/IApplicableToConverter.html#multiplier","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IApplicableToConverter"},{"id":494,"kind":1024,"name":"isRanked","url":"interfaces/IApplicableToConverter.html#isRanked","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IApplicableToConverter"},{"id":495,"kind":1024,"name":"incompatibles","url":"interfaces/IApplicableToConverter.html#incompatibles","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IApplicableToConverter"},{"id":496,"kind":256,"name":"IApplicableToDifficulty","url":"interfaces/IApplicableToDifficulty.html","classes":"tsd-kind-interface"},{"id":497,"kind":2048,"name":"applyToDifficulty","url":"interfaces/IApplicableToDifficulty.html#applyToDifficulty","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"IApplicableToDifficulty"},{"id":498,"kind":1024,"name":"name","url":"interfaces/IApplicableToDifficulty.html#name","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IApplicableToDifficulty"},{"id":499,"kind":1024,"name":"acronym","url":"interfaces/IApplicableToDifficulty.html#acronym","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IApplicableToDifficulty"},{"id":500,"kind":1024,"name":"bitwise","url":"interfaces/IApplicableToDifficulty.html#bitwise","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IApplicableToDifficulty"},{"id":501,"kind":1024,"name":"type","url":"interfaces/IApplicableToDifficulty.html#type","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IApplicableToDifficulty"},{"id":502,"kind":1024,"name":"multiplier","url":"interfaces/IApplicableToDifficulty.html#multiplier","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IApplicableToDifficulty"},{"id":503,"kind":1024,"name":"isRanked","url":"interfaces/IApplicableToDifficulty.html#isRanked","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IApplicableToDifficulty"},{"id":504,"kind":1024,"name":"incompatibles","url":"interfaces/IApplicableToDifficulty.html#incompatibles","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IApplicableToDifficulty"},{"id":505,"kind":256,"name":"IApplicableToHitObjects","url":"interfaces/IApplicableToHitObjects.html","classes":"tsd-kind-interface"},{"id":506,"kind":2048,"name":"applyToHitObjects","url":"interfaces/IApplicableToHitObjects.html#applyToHitObjects","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"IApplicableToHitObjects"},{"id":507,"kind":1024,"name":"name","url":"interfaces/IApplicableToHitObjects.html#name","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IApplicableToHitObjects"},{"id":508,"kind":1024,"name":"acronym","url":"interfaces/IApplicableToHitObjects.html#acronym","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IApplicableToHitObjects"},{"id":509,"kind":1024,"name":"bitwise","url":"interfaces/IApplicableToHitObjects.html#bitwise","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IApplicableToHitObjects"},{"id":510,"kind":1024,"name":"type","url":"interfaces/IApplicableToHitObjects.html#type","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IApplicableToHitObjects"},{"id":511,"kind":1024,"name":"multiplier","url":"interfaces/IApplicableToHitObjects.html#multiplier","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IApplicableToHitObjects"},{"id":512,"kind":1024,"name":"isRanked","url":"interfaces/IApplicableToHitObjects.html#isRanked","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IApplicableToHitObjects"},{"id":513,"kind":1024,"name":"incompatibles","url":"interfaces/IApplicableToHitObjects.html#incompatibles","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IApplicableToHitObjects"},{"id":514,"kind":256,"name":"IApplicableToBeatmap","url":"interfaces/IApplicableToBeatmap.html","classes":"tsd-kind-interface"},{"id":515,"kind":2048,"name":"applyToBeatmap","url":"interfaces/IApplicableToBeatmap.html#applyToBeatmap","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"IApplicableToBeatmap"},{"id":516,"kind":1024,"name":"name","url":"interfaces/IApplicableToBeatmap.html#name","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IApplicableToBeatmap"},{"id":517,"kind":1024,"name":"acronym","url":"interfaces/IApplicableToBeatmap.html#acronym","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IApplicableToBeatmap"},{"id":518,"kind":1024,"name":"bitwise","url":"interfaces/IApplicableToBeatmap.html#bitwise","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IApplicableToBeatmap"},{"id":519,"kind":1024,"name":"type","url":"interfaces/IApplicableToBeatmap.html#type","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IApplicableToBeatmap"},{"id":520,"kind":1024,"name":"multiplier","url":"interfaces/IApplicableToBeatmap.html#multiplier","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IApplicableToBeatmap"},{"id":521,"kind":1024,"name":"isRanked","url":"interfaces/IApplicableToBeatmap.html#isRanked","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IApplicableToBeatmap"},{"id":522,"kind":1024,"name":"incompatibles","url":"interfaces/IApplicableToBeatmap.html#incompatibles","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IApplicableToBeatmap"},{"id":523,"kind":128,"name":"Autoplay","url":"classes/Autoplay.html","classes":"tsd-kind-class"},{"id":524,"kind":512,"name":"constructor","url":"classes/Autoplay.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Autoplay"},{"id":525,"kind":1024,"name":"name","url":"classes/Autoplay.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Autoplay"},{"id":526,"kind":1024,"name":"acronym","url":"classes/Autoplay.html#acronym","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Autoplay"},{"id":527,"kind":1024,"name":"bitwise","url":"classes/Autoplay.html#bitwise","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Autoplay"},{"id":528,"kind":1024,"name":"type","url":"classes/Autoplay.html#type","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Autoplay"},{"id":529,"kind":1024,"name":"multiplier","url":"classes/Autoplay.html#multiplier","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Autoplay"},{"id":530,"kind":1024,"name":"isRanked","url":"classes/Autoplay.html#isRanked","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Autoplay"},{"id":531,"kind":1024,"name":"incompatibles","url":"classes/Autoplay.html#incompatibles","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Autoplay"},{"id":532,"kind":128,"name":"Cinema","url":"classes/Cinema.html","classes":"tsd-kind-class"},{"id":533,"kind":512,"name":"constructor","url":"classes/Cinema.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Cinema"},{"id":534,"kind":1024,"name":"name","url":"classes/Cinema.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Cinema"},{"id":535,"kind":1024,"name":"acronym","url":"classes/Cinema.html#acronym","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Cinema"},{"id":536,"kind":1024,"name":"bitwise","url":"classes/Cinema.html#bitwise","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Cinema"},{"id":537,"kind":1024,"name":"type","url":"classes/Cinema.html#type","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Cinema"},{"id":538,"kind":1024,"name":"multiplier","url":"classes/Cinema.html#multiplier","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Cinema"},{"id":539,"kind":1024,"name":"isRanked","url":"classes/Cinema.html#isRanked","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Cinema"},{"id":540,"kind":1024,"name":"incompatibles","url":"classes/Cinema.html#incompatibles","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Cinema"},{"id":541,"kind":128,"name":"DoubleTime","url":"classes/DoubleTime.html","classes":"tsd-kind-class"},{"id":542,"kind":512,"name":"constructor","url":"classes/DoubleTime.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"DoubleTime"},{"id":543,"kind":1024,"name":"name","url":"classes/DoubleTime.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"DoubleTime"},{"id":544,"kind":1024,"name":"acronym","url":"classes/DoubleTime.html#acronym","classes":"tsd-kind-property tsd-parent-kind-class","parent":"DoubleTime"},{"id":545,"kind":1024,"name":"bitwise","url":"classes/DoubleTime.html#bitwise","classes":"tsd-kind-property tsd-parent-kind-class","parent":"DoubleTime"},{"id":546,"kind":1024,"name":"type","url":"classes/DoubleTime.html#type","classes":"tsd-kind-property tsd-parent-kind-class","parent":"DoubleTime"},{"id":547,"kind":1024,"name":"multiplier","url":"classes/DoubleTime.html#multiplier","classes":"tsd-kind-property tsd-parent-kind-class","parent":"DoubleTime"},{"id":548,"kind":1024,"name":"isRanked","url":"classes/DoubleTime.html#isRanked","classes":"tsd-kind-property tsd-parent-kind-class","parent":"DoubleTime"},{"id":549,"kind":1024,"name":"incompatibles","url":"classes/DoubleTime.html#incompatibles","classes":"tsd-kind-property tsd-parent-kind-class","parent":"DoubleTime"},{"id":550,"kind":2048,"name":"applyToDifficulty","url":"classes/DoubleTime.html#applyToDifficulty","classes":"tsd-kind-method tsd-parent-kind-class","parent":"DoubleTime"},{"id":551,"kind":128,"name":"Easy","url":"classes/Easy.html","classes":"tsd-kind-class"},{"id":552,"kind":512,"name":"constructor","url":"classes/Easy.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Easy"},{"id":553,"kind":1024,"name":"name","url":"classes/Easy.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Easy"},{"id":554,"kind":1024,"name":"acronym","url":"classes/Easy.html#acronym","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Easy"},{"id":555,"kind":1024,"name":"bitwise","url":"classes/Easy.html#bitwise","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Easy"},{"id":556,"kind":1024,"name":"type","url":"classes/Easy.html#type","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Easy"},{"id":557,"kind":1024,"name":"multiplier","url":"classes/Easy.html#multiplier","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Easy"},{"id":558,"kind":1024,"name":"isRanked","url":"classes/Easy.html#isRanked","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Easy"},{"id":559,"kind":1024,"name":"incompatibles","url":"classes/Easy.html#incompatibles","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Easy"},{"id":560,"kind":2048,"name":"applyToDifficulty","url":"classes/Easy.html#applyToDifficulty","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Easy"},{"id":561,"kind":128,"name":"Flashlight","url":"classes/Flashlight.html","classes":"tsd-kind-class"},{"id":562,"kind":512,"name":"constructor","url":"classes/Flashlight.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Flashlight"},{"id":563,"kind":1024,"name":"name","url":"classes/Flashlight.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Flashlight"},{"id":564,"kind":1024,"name":"acronym","url":"classes/Flashlight.html#acronym","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Flashlight"},{"id":565,"kind":1024,"name":"bitwise","url":"classes/Flashlight.html#bitwise","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Flashlight"},{"id":566,"kind":1024,"name":"type","url":"classes/Flashlight.html#type","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Flashlight"},{"id":567,"kind":1024,"name":"multiplier","url":"classes/Flashlight.html#multiplier","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Flashlight"},{"id":568,"kind":1024,"name":"isRanked","url":"classes/Flashlight.html#isRanked","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Flashlight"},{"id":569,"kind":1024,"name":"incompatibles","url":"classes/Flashlight.html#incompatibles","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Flashlight"},{"id":570,"kind":128,"name":"HalfTime","url":"classes/HalfTime.html","classes":"tsd-kind-class"},{"id":571,"kind":512,"name":"constructor","url":"classes/HalfTime.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"HalfTime"},{"id":572,"kind":1024,"name":"name","url":"classes/HalfTime.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"HalfTime"},{"id":573,"kind":1024,"name":"acronym","url":"classes/HalfTime.html#acronym","classes":"tsd-kind-property tsd-parent-kind-class","parent":"HalfTime"},{"id":574,"kind":1024,"name":"bitwise","url":"classes/HalfTime.html#bitwise","classes":"tsd-kind-property tsd-parent-kind-class","parent":"HalfTime"},{"id":575,"kind":1024,"name":"type","url":"classes/HalfTime.html#type","classes":"tsd-kind-property tsd-parent-kind-class","parent":"HalfTime"},{"id":576,"kind":1024,"name":"multiplier","url":"classes/HalfTime.html#multiplier","classes":"tsd-kind-property tsd-parent-kind-class","parent":"HalfTime"},{"id":577,"kind":1024,"name":"isRanked","url":"classes/HalfTime.html#isRanked","classes":"tsd-kind-property tsd-parent-kind-class","parent":"HalfTime"},{"id":578,"kind":1024,"name":"incompatibles","url":"classes/HalfTime.html#incompatibles","classes":"tsd-kind-property tsd-parent-kind-class","parent":"HalfTime"},{"id":579,"kind":2048,"name":"applyToDifficulty","url":"classes/HalfTime.html#applyToDifficulty","classes":"tsd-kind-method tsd-parent-kind-class","parent":"HalfTime"},{"id":580,"kind":128,"name":"HardRock","url":"classes/HardRock.html","classes":"tsd-kind-class"},{"id":581,"kind":512,"name":"constructor","url":"classes/HardRock.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"HardRock"},{"id":582,"kind":1024,"name":"name","url":"classes/HardRock.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"HardRock"},{"id":583,"kind":1024,"name":"acronym","url":"classes/HardRock.html#acronym","classes":"tsd-kind-property tsd-parent-kind-class","parent":"HardRock"},{"id":584,"kind":1024,"name":"bitwise","url":"classes/HardRock.html#bitwise","classes":"tsd-kind-property tsd-parent-kind-class","parent":"HardRock"},{"id":585,"kind":1024,"name":"type","url":"classes/HardRock.html#type","classes":"tsd-kind-property tsd-parent-kind-class","parent":"HardRock"},{"id":586,"kind":1024,"name":"multiplier","url":"classes/HardRock.html#multiplier","classes":"tsd-kind-property tsd-parent-kind-class","parent":"HardRock"},{"id":587,"kind":1024,"name":"isRanked","url":"classes/HardRock.html#isRanked","classes":"tsd-kind-property tsd-parent-kind-class","parent":"HardRock"},{"id":588,"kind":1024,"name":"incompatibles","url":"classes/HardRock.html#incompatibles","classes":"tsd-kind-property tsd-parent-kind-class","parent":"HardRock"},{"id":589,"kind":2048,"name":"applyToDifficulty","url":"classes/HardRock.html#applyToDifficulty","classes":"tsd-kind-method tsd-parent-kind-class","parent":"HardRock"},{"id":590,"kind":128,"name":"Hidden","url":"classes/Hidden.html","classes":"tsd-kind-class"},{"id":591,"kind":512,"name":"constructor","url":"classes/Hidden.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Hidden"},{"id":592,"kind":1024,"name":"name","url":"classes/Hidden.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Hidden"},{"id":593,"kind":1024,"name":"acronym","url":"classes/Hidden.html#acronym","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Hidden"},{"id":594,"kind":1024,"name":"bitwise","url":"classes/Hidden.html#bitwise","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Hidden"},{"id":595,"kind":1024,"name":"type","url":"classes/Hidden.html#type","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Hidden"},{"id":596,"kind":1024,"name":"multiplier","url":"classes/Hidden.html#multiplier","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Hidden"},{"id":597,"kind":1024,"name":"isRanked","url":"classes/Hidden.html#isRanked","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Hidden"},{"id":598,"kind":1024,"name":"incompatibles","url":"classes/Hidden.html#incompatibles","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Hidden"},{"id":599,"kind":128,"name":"Nightcore","url":"classes/Nightcore.html","classes":"tsd-kind-class"},{"id":600,"kind":512,"name":"constructor","url":"classes/Nightcore.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"Nightcore"},{"id":601,"kind":1024,"name":"name","url":"classes/Nightcore.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"Nightcore"},{"id":602,"kind":1024,"name":"acronym","url":"classes/Nightcore.html#acronym","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"Nightcore"},{"id":603,"kind":1024,"name":"bitwise","url":"classes/Nightcore.html#bitwise","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"Nightcore"},{"id":604,"kind":1024,"name":"incompatibles","url":"classes/Nightcore.html#incompatibles","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"Nightcore"},{"id":605,"kind":1024,"name":"type","url":"classes/Nightcore.html#type","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Nightcore"},{"id":606,"kind":1024,"name":"multiplier","url":"classes/Nightcore.html#multiplier","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Nightcore"},{"id":607,"kind":1024,"name":"isRanked","url":"classes/Nightcore.html#isRanked","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"Nightcore"},{"id":608,"kind":2048,"name":"applyToDifficulty","url":"classes/Nightcore.html#applyToDifficulty","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Nightcore"},{"id":609,"kind":128,"name":"NoFail","url":"classes/NoFail.html","classes":"tsd-kind-class"},{"id":610,"kind":512,"name":"constructor","url":"classes/NoFail.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"NoFail"},{"id":611,"kind":1024,"name":"name","url":"classes/NoFail.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"NoFail"},{"id":612,"kind":1024,"name":"acronym","url":"classes/NoFail.html#acronym","classes":"tsd-kind-property tsd-parent-kind-class","parent":"NoFail"},{"id":613,"kind":1024,"name":"bitwise","url":"classes/NoFail.html#bitwise","classes":"tsd-kind-property tsd-parent-kind-class","parent":"NoFail"},{"id":614,"kind":1024,"name":"type","url":"classes/NoFail.html#type","classes":"tsd-kind-property tsd-parent-kind-class","parent":"NoFail"},{"id":615,"kind":1024,"name":"multiplier","url":"classes/NoFail.html#multiplier","classes":"tsd-kind-property tsd-parent-kind-class","parent":"NoFail"},{"id":616,"kind":1024,"name":"isRanked","url":"classes/NoFail.html#isRanked","classes":"tsd-kind-property tsd-parent-kind-class","parent":"NoFail"},{"id":617,"kind":1024,"name":"incompatibles","url":"classes/NoFail.html#incompatibles","classes":"tsd-kind-property tsd-parent-kind-class","parent":"NoFail"},{"id":618,"kind":128,"name":"NoMod","url":"classes/NoMod.html","classes":"tsd-kind-class"},{"id":619,"kind":512,"name":"constructor","url":"classes/NoMod.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"NoMod"},{"id":620,"kind":1024,"name":"name","url":"classes/NoMod.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"NoMod"},{"id":621,"kind":1024,"name":"acronym","url":"classes/NoMod.html#acronym","classes":"tsd-kind-property tsd-parent-kind-class","parent":"NoMod"},{"id":622,"kind":1024,"name":"bitwise","url":"classes/NoMod.html#bitwise","classes":"tsd-kind-property tsd-parent-kind-class","parent":"NoMod"},{"id":623,"kind":1024,"name":"type","url":"classes/NoMod.html#type","classes":"tsd-kind-property tsd-parent-kind-class","parent":"NoMod"},{"id":624,"kind":1024,"name":"multiplier","url":"classes/NoMod.html#multiplier","classes":"tsd-kind-property tsd-parent-kind-class","parent":"NoMod"},{"id":625,"kind":1024,"name":"isRanked","url":"classes/NoMod.html#isRanked","classes":"tsd-kind-property tsd-parent-kind-class","parent":"NoMod"},{"id":626,"kind":1024,"name":"incompatibles","url":"classes/NoMod.html#incompatibles","classes":"tsd-kind-property tsd-parent-kind-class","parent":"NoMod"},{"id":627,"kind":128,"name":"Perfect","url":"classes/Perfect.html","classes":"tsd-kind-class"},{"id":628,"kind":512,"name":"constructor","url":"classes/Perfect.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Perfect"},{"id":629,"kind":1024,"name":"name","url":"classes/Perfect.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Perfect"},{"id":630,"kind":1024,"name":"acronym","url":"classes/Perfect.html#acronym","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Perfect"},{"id":631,"kind":1024,"name":"bitwise","url":"classes/Perfect.html#bitwise","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Perfect"},{"id":632,"kind":1024,"name":"type","url":"classes/Perfect.html#type","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Perfect"},{"id":633,"kind":1024,"name":"multiplier","url":"classes/Perfect.html#multiplier","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Perfect"},{"id":634,"kind":1024,"name":"isRanked","url":"classes/Perfect.html#isRanked","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Perfect"},{"id":635,"kind":1024,"name":"incompatibles","url":"classes/Perfect.html#incompatibles","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Perfect"},{"id":636,"kind":128,"name":"Relax","url":"classes/Relax.html","classes":"tsd-kind-class"},{"id":637,"kind":512,"name":"constructor","url":"classes/Relax.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Relax"},{"id":638,"kind":1024,"name":"name","url":"classes/Relax.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Relax"},{"id":639,"kind":1024,"name":"acronym","url":"classes/Relax.html#acronym","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Relax"},{"id":640,"kind":1024,"name":"bitwise","url":"classes/Relax.html#bitwise","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Relax"},{"id":641,"kind":1024,"name":"type","url":"classes/Relax.html#type","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Relax"},{"id":642,"kind":1024,"name":"multiplier","url":"classes/Relax.html#multiplier","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Relax"},{"id":643,"kind":1024,"name":"isRanked","url":"classes/Relax.html#isRanked","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Relax"},{"id":644,"kind":1024,"name":"incompatibles","url":"classes/Relax.html#incompatibles","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Relax"},{"id":645,"kind":128,"name":"SuddenDeath","url":"classes/SuddenDeath.html","classes":"tsd-kind-class"},{"id":646,"kind":512,"name":"constructor","url":"classes/SuddenDeath.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"SuddenDeath"},{"id":647,"kind":1024,"name":"name","url":"classes/SuddenDeath.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"SuddenDeath"},{"id":648,"kind":1024,"name":"acronym","url":"classes/SuddenDeath.html#acronym","classes":"tsd-kind-property tsd-parent-kind-class","parent":"SuddenDeath"},{"id":649,"kind":1024,"name":"bitwise","url":"classes/SuddenDeath.html#bitwise","classes":"tsd-kind-property tsd-parent-kind-class","parent":"SuddenDeath"},{"id":650,"kind":1024,"name":"type","url":"classes/SuddenDeath.html#type","classes":"tsd-kind-property tsd-parent-kind-class","parent":"SuddenDeath"},{"id":651,"kind":1024,"name":"multiplier","url":"classes/SuddenDeath.html#multiplier","classes":"tsd-kind-property tsd-parent-kind-class","parent":"SuddenDeath"},{"id":652,"kind":1024,"name":"isRanked","url":"classes/SuddenDeath.html#isRanked","classes":"tsd-kind-property tsd-parent-kind-class","parent":"SuddenDeath"},{"id":653,"kind":1024,"name":"incompatibles","url":"classes/SuddenDeath.html#incompatibles","classes":"tsd-kind-property tsd-parent-kind-class","parent":"SuddenDeath"},{"id":654,"kind":128,"name":"ModCombination","url":"classes/ModCombination.html","classes":"tsd-kind-class"},{"id":655,"kind":512,"name":"constructor","url":"classes/ModCombination.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"ModCombination"},{"id":656,"kind":262144,"name":"mode","url":"classes/ModCombination.html#mode","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"ModCombination"},{"id":657,"kind":262144,"name":"all","url":"classes/ModCombination.html#all","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"ModCombination"},{"id":658,"kind":262144,"name":"beatmapMods","url":"classes/ModCombination.html#beatmapMods","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"ModCombination"},{"id":659,"kind":262144,"name":"hitObjectMods","url":"classes/ModCombination.html#hitObjectMods","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"ModCombination"},{"id":660,"kind":262144,"name":"difficultyMods","url":"classes/ModCombination.html#difficultyMods","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"ModCombination"},{"id":661,"kind":262144,"name":"converterMods","url":"classes/ModCombination.html#converterMods","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"ModCombination"},{"id":662,"kind":262144,"name":"names","url":"classes/ModCombination.html#names","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"ModCombination"},{"id":663,"kind":262144,"name":"acronyms","url":"classes/ModCombination.html#acronyms","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"ModCombination"},{"id":664,"kind":262144,"name":"bitwise","url":"classes/ModCombination.html#bitwise","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"ModCombination"},{"id":665,"kind":262144,"name":"multiplier","url":"classes/ModCombination.html#multiplier","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"ModCombination"},{"id":666,"kind":262144,"name":"isRanked","url":"classes/ModCombination.html#isRanked","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"ModCombination"},{"id":667,"kind":262144,"name":"incompatibles","url":"classes/ModCombination.html#incompatibles","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"ModCombination"},{"id":668,"kind":2048,"name":"has","url":"classes/ModCombination.html#has","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ModCombination"},{"id":669,"kind":2048,"name":"any","url":"classes/ModCombination.html#any","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ModCombination"},{"id":670,"kind":2048,"name":"beatmapModsAt","url":"classes/ModCombination.html#beatmapModsAt","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ModCombination"},{"id":671,"kind":2048,"name":"beatmapModAt","url":"classes/ModCombination.html#beatmapModAt","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ModCombination"},{"id":672,"kind":2048,"name":"hitObjectModsAt","url":"classes/ModCombination.html#hitObjectModsAt","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ModCombination"},{"id":673,"kind":2048,"name":"hitObjectModAt","url":"classes/ModCombination.html#hitObjectModAt","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ModCombination"},{"id":674,"kind":2048,"name":"difficultyModsAt","url":"classes/ModCombination.html#difficultyModsAt","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ModCombination"},{"id":675,"kind":2048,"name":"difficultyModAt","url":"classes/ModCombination.html#difficultyModAt","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ModCombination"},{"id":676,"kind":2048,"name":"converterModsAt","url":"classes/ModCombination.html#converterModsAt","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ModCombination"},{"id":677,"kind":2048,"name":"converterModAt","url":"classes/ModCombination.html#converterModAt","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ModCombination"},{"id":678,"kind":2048,"name":"modsAt","url":"classes/ModCombination.html#modsAt","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ModCombination"},{"id":679,"kind":2048,"name":"modAt","url":"classes/ModCombination.html#modAt","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ModCombination"},{"id":680,"kind":2048,"name":"toString","url":"classes/ModCombination.html#toString","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ModCombination"},{"id":681,"kind":2048,"name":"toJSON","url":"classes/ModCombination.html#toJSON","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ModCombination"},{"id":682,"kind":2048,"name":"toBitwise","url":"classes/ModCombination.html#toBitwise","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ModCombination"},{"id":683,"kind":2048,"name":"clone","url":"classes/ModCombination.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ModCombination"},{"id":684,"kind":2048,"name":"equals","url":"classes/ModCombination.html#equals","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ModCombination"},{"id":685,"kind":256,"name":"IMod","url":"interfaces/IMod.html","classes":"tsd-kind-interface"},{"id":686,"kind":1024,"name":"name","url":"interfaces/IMod.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IMod"},{"id":687,"kind":1024,"name":"acronym","url":"interfaces/IMod.html#acronym","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IMod"},{"id":688,"kind":1024,"name":"bitwise","url":"interfaces/IMod.html#bitwise","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IMod"},{"id":689,"kind":1024,"name":"type","url":"interfaces/IMod.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IMod"},{"id":690,"kind":1024,"name":"multiplier","url":"interfaces/IMod.html#multiplier","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IMod"},{"id":691,"kind":1024,"name":"isRanked","url":"interfaces/IMod.html#isRanked","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IMod"},{"id":692,"kind":1024,"name":"incompatibles","url":"interfaces/IMod.html#incompatibles","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IMod"},{"id":693,"kind":8,"name":"HitSound","url":"enums/HitSound.html","classes":"tsd-kind-enum"},{"id":694,"kind":16,"name":"None","url":"enums/HitSound.html#None","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"HitSound"},{"id":695,"kind":16,"name":"Normal","url":"enums/HitSound.html#Normal","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"HitSound"},{"id":696,"kind":16,"name":"Whistle","url":"enums/HitSound.html#Whistle","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"HitSound"},{"id":697,"kind":16,"name":"Finish","url":"enums/HitSound.html#Finish","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"HitSound"},{"id":698,"kind":16,"name":"Clap","url":"enums/HitSound.html#Clap","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"HitSound"},{"id":699,"kind":8,"name":"HitType","url":"enums/HitType.html","classes":"tsd-kind-enum"},{"id":700,"kind":16,"name":"Normal","url":"enums/HitType.html#Normal","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"HitType"},{"id":701,"kind":16,"name":"Slider","url":"enums/HitType.html#Slider","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"HitType"},{"id":702,"kind":16,"name":"NewCombo","url":"enums/HitType.html#NewCombo","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"HitType"},{"id":703,"kind":16,"name":"Spinner","url":"enums/HitType.html#Spinner","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"HitType"},{"id":704,"kind":16,"name":"ComboSkip1","url":"enums/HitType.html#ComboSkip1","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"HitType"},{"id":705,"kind":16,"name":"ComboSkip2","url":"enums/HitType.html#ComboSkip2","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"HitType"},{"id":706,"kind":16,"name":"ComboSkip3","url":"enums/HitType.html#ComboSkip3","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"HitType"},{"id":707,"kind":16,"name":"ComboOffset","url":"enums/HitType.html#ComboOffset","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"HitType"},{"id":708,"kind":16,"name":"Hold","url":"enums/HitType.html#Hold","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"HitType"},{"id":709,"kind":8,"name":"PathType","url":"enums/PathType.html","classes":"tsd-kind-enum"},{"id":710,"kind":16,"name":"Catmull","url":"enums/PathType.html#Catmull","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"PathType"},{"id":711,"kind":16,"name":"Bezier","url":"enums/PathType.html#Bezier","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"PathType"},{"id":712,"kind":16,"name":"Linear","url":"enums/PathType.html#Linear","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"PathType"},{"id":713,"kind":16,"name":"PerfectCurve","url":"enums/PathType.html#PerfectCurve","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"PathType"},{"id":714,"kind":8,"name":"SampleSet","url":"enums/SampleSet.html","classes":"tsd-kind-enum"},{"id":715,"kind":16,"name":"None","url":"enums/SampleSet.html#None","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"SampleSet"},{"id":716,"kind":16,"name":"Normal","url":"enums/SampleSet.html#Normal","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"SampleSet"},{"id":717,"kind":16,"name":"Soft","url":"enums/SampleSet.html#Soft","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"SampleSet"},{"id":718,"kind":16,"name":"Drum","url":"enums/SampleSet.html#Drum","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"SampleSet"},{"id":719,"kind":8,"name":"SliderEventType","url":"enums/SliderEventType.html","classes":"tsd-kind-enum"},{"id":720,"kind":16,"name":"Tick","url":"enums/SliderEventType.html#Tick","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"SliderEventType"},{"id":721,"kind":16,"name":"LegacyLastTick","url":"enums/SliderEventType.html#LegacyLastTick","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"SliderEventType"},{"id":722,"kind":16,"name":"Head","url":"enums/SliderEventType.html#Head","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"SliderEventType"},{"id":723,"kind":16,"name":"Tail","url":"enums/SliderEventType.html#Tail","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"SliderEventType"},{"id":724,"kind":16,"name":"Repeat","url":"enums/SliderEventType.html#Repeat","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"SliderEventType"},{"id":725,"kind":128,"name":"EventGenerator","url":"classes/EventGenerator.html","classes":"tsd-kind-class"},{"id":726,"kind":1024,"name":"SLIDER_MAX_DISTANCE","url":"classes/EventGenerator.html#SLIDER_MAX_DISTANCE","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"EventGenerator"},{"id":727,"kind":2048,"name":"generate","url":"classes/EventGenerator.html#generate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"EventGenerator"},{"id":728,"kind":512,"name":"constructor","url":"classes/EventGenerator.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"EventGenerator"},{"id":729,"kind":256,"name":"ISliderEventDescriptor","url":"interfaces/ISliderEventDescriptor.html","classes":"tsd-kind-interface"},{"id":730,"kind":1024,"name":"eventType","url":"interfaces/ISliderEventDescriptor.html#eventType","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ISliderEventDescriptor"},{"id":731,"kind":1024,"name":"spanIndex","url":"interfaces/ISliderEventDescriptor.html#spanIndex","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ISliderEventDescriptor"},{"id":732,"kind":1024,"name":"spanStartTime","url":"interfaces/ISliderEventDescriptor.html#spanStartTime","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ISliderEventDescriptor"},{"id":733,"kind":1024,"name":"startTime","url":"interfaces/ISliderEventDescriptor.html#startTime","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ISliderEventDescriptor"},{"id":734,"kind":1024,"name":"progress","url":"interfaces/ISliderEventDescriptor.html#progress","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ISliderEventDescriptor"},{"id":735,"kind":128,"name":"HitObject","url":"classes/HitObject.html","classes":"tsd-kind-class"},{"id":736,"kind":512,"name":"constructor","url":"classes/HitObject.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"HitObject"},{"id":737,"kind":1024,"name":"kiai","url":"classes/HitObject.html#kiai","classes":"tsd-kind-property tsd-parent-kind-class","parent":"HitObject"},{"id":738,"kind":1024,"name":"nestedHitObjects","url":"classes/HitObject.html#nestedHitObjects","classes":"tsd-kind-property tsd-parent-kind-class","parent":"HitObject"},{"id":739,"kind":1024,"name":"startTime","url":"classes/HitObject.html#startTime","classes":"tsd-kind-property tsd-parent-kind-class","parent":"HitObject"},{"id":740,"kind":1024,"name":"hitType","url":"classes/HitObject.html#hitType","classes":"tsd-kind-property tsd-parent-kind-class","parent":"HitObject"},{"id":741,"kind":1024,"name":"hitSound","url":"classes/HitObject.html#hitSound","classes":"tsd-kind-property tsd-parent-kind-class","parent":"HitObject"},{"id":742,"kind":1024,"name":"samples","url":"classes/HitObject.html#samples","classes":"tsd-kind-property tsd-parent-kind-class","parent":"HitObject"},{"id":743,"kind":1024,"name":"startPosition","url":"classes/HitObject.html#startPosition","classes":"tsd-kind-property tsd-parent-kind-class","parent":"HitObject"},{"id":744,"kind":1024,"name":"hitWindows","url":"classes/HitObject.html#hitWindows","classes":"tsd-kind-property tsd-parent-kind-class","parent":"HitObject"},{"id":745,"kind":262144,"name":"startX","url":"classes/HitObject.html#startX","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"HitObject"},{"id":746,"kind":262144,"name":"startY","url":"classes/HitObject.html#startY","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"HitObject"},{"id":747,"kind":2048,"name":"createNestedHitObjects","url":"classes/HitObject.html#createNestedHitObjects","classes":"tsd-kind-method tsd-parent-kind-class","parent":"HitObject"},{"id":748,"kind":2048,"name":"applyDefaultsToSelf","url":"classes/HitObject.html#applyDefaultsToSelf","classes":"tsd-kind-method tsd-parent-kind-class","parent":"HitObject"},{"id":749,"kind":2048,"name":"applyDefaultsToNested","url":"classes/HitObject.html#applyDefaultsToNested","classes":"tsd-kind-method tsd-parent-kind-class","parent":"HitObject"},{"id":750,"kind":2048,"name":"applyDefaults","url":"classes/HitObject.html#applyDefaults","classes":"tsd-kind-method tsd-parent-kind-class","parent":"HitObject"},{"id":751,"kind":2048,"name":"clone","url":"classes/HitObject.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"HitObject"},{"id":752,"kind":256,"name":"IHitObject","url":"interfaces/IHitObject.html","classes":"tsd-kind-interface"},{"id":753,"kind":1024,"name":"startTime","url":"interfaces/IHitObject.html#startTime","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IHitObject"},{"id":754,"kind":1024,"name":"hitType","url":"interfaces/IHitObject.html#hitType","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IHitObject"},{"id":755,"kind":1024,"name":"hitSound","url":"interfaces/IHitObject.html#hitSound","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IHitObject"},{"id":756,"kind":1024,"name":"samples","url":"interfaces/IHitObject.html#samples","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IHitObject"},{"id":757,"kind":1024,"name":"hitWindows","url":"interfaces/IHitObject.html#hitWindows","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IHitObject"},{"id":758,"kind":2048,"name":"clone","url":"interfaces/IHitObject.html#clone","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"IHitObject"},{"id":759,"kind":256,"name":"IHoldableObject","url":"interfaces/IHoldableObject.html","classes":"tsd-kind-interface"},{"id":760,"kind":1024,"name":"startTime","url":"interfaces/IHoldableObject.html#startTime","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IHoldableObject"},{"id":761,"kind":1024,"name":"hitType","url":"interfaces/IHoldableObject.html#hitType","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IHoldableObject"},{"id":762,"kind":1024,"name":"hitSound","url":"interfaces/IHoldableObject.html#hitSound","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IHoldableObject"},{"id":763,"kind":1024,"name":"samples","url":"interfaces/IHoldableObject.html#samples","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IHoldableObject"},{"id":764,"kind":1024,"name":"hitWindows","url":"interfaces/IHoldableObject.html#hitWindows","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IHoldableObject"},{"id":765,"kind":2048,"name":"clone","url":"interfaces/IHoldableObject.html#clone","classes":"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited","parent":"IHoldableObject"},{"id":766,"kind":1024,"name":"endTime","url":"interfaces/IHoldableObject.html#endTime","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IHoldableObject"},{"id":767,"kind":1024,"name":"duration","url":"interfaces/IHoldableObject.html#duration","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IHoldableObject"},{"id":768,"kind":1024,"name":"nodeSamples","url":"interfaces/IHoldableObject.html#nodeSamples","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IHoldableObject"},{"id":769,"kind":256,"name":"ISlidableObject","url":"interfaces/ISlidableObject.html","classes":"tsd-kind-interface"},{"id":770,"kind":1024,"name":"tickDistance","url":"interfaces/ISlidableObject.html#tickDistance","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ISlidableObject"},{"id":771,"kind":1024,"name":"tickInterval","url":"interfaces/ISlidableObject.html#tickInterval","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ISlidableObject"},{"id":772,"kind":1024,"name":"tickRate","url":"interfaces/ISlidableObject.html#tickRate","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ISlidableObject"},{"id":773,"kind":1024,"name":"velocity","url":"interfaces/ISlidableObject.html#velocity","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ISlidableObject"},{"id":774,"kind":1024,"name":"path","url":"interfaces/ISlidableObject.html#path","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"ISlidableObject"},{"id":775,"kind":1024,"name":"distance","url":"interfaces/ISlidableObject.html#distance","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"ISlidableObject"},{"id":776,"kind":1024,"name":"endTime","url":"interfaces/ISlidableObject.html#endTime","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"ISlidableObject"},{"id":777,"kind":1024,"name":"duration","url":"interfaces/ISlidableObject.html#duration","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"ISlidableObject"},{"id":778,"kind":1024,"name":"repeats","url":"interfaces/ISlidableObject.html#repeats","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"ISlidableObject"},{"id":779,"kind":1024,"name":"spans","url":"interfaces/ISlidableObject.html#spans","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"ISlidableObject"},{"id":780,"kind":1024,"name":"spanDuration","url":"interfaces/ISlidableObject.html#spanDuration","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"ISlidableObject"},{"id":781,"kind":1024,"name":"nodeSamples","url":"interfaces/ISlidableObject.html#nodeSamples","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"ISlidableObject"},{"id":782,"kind":1024,"name":"startTime","url":"interfaces/ISlidableObject.html#startTime","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"ISlidableObject"},{"id":783,"kind":1024,"name":"hitType","url":"interfaces/ISlidableObject.html#hitType","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"ISlidableObject"},{"id":784,"kind":1024,"name":"hitSound","url":"interfaces/ISlidableObject.html#hitSound","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"ISlidableObject"},{"id":785,"kind":1024,"name":"samples","url":"interfaces/ISlidableObject.html#samples","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"ISlidableObject"},{"id":786,"kind":1024,"name":"hitWindows","url":"interfaces/ISlidableObject.html#hitWindows","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"ISlidableObject"},{"id":787,"kind":2048,"name":"clone","url":"interfaces/ISlidableObject.html#clone","classes":"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited","parent":"ISlidableObject"},{"id":788,"kind":1024,"name":"legacyLastTickOffset","url":"interfaces/ISlidableObject.html#legacyLastTickOffset","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"ISlidableObject"},{"id":789,"kind":256,"name":"ISpinnableObject","url":"interfaces/ISpinnableObject.html","classes":"tsd-kind-interface"},{"id":790,"kind":1024,"name":"startTime","url":"interfaces/ISpinnableObject.html#startTime","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"ISpinnableObject"},{"id":791,"kind":1024,"name":"hitType","url":"interfaces/ISpinnableObject.html#hitType","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"ISpinnableObject"},{"id":792,"kind":1024,"name":"hitSound","url":"interfaces/ISpinnableObject.html#hitSound","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"ISpinnableObject"},{"id":793,"kind":1024,"name":"samples","url":"interfaces/ISpinnableObject.html#samples","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"ISpinnableObject"},{"id":794,"kind":1024,"name":"hitWindows","url":"interfaces/ISpinnableObject.html#hitWindows","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"ISpinnableObject"},{"id":795,"kind":2048,"name":"clone","url":"interfaces/ISpinnableObject.html#clone","classes":"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited","parent":"ISpinnableObject"},{"id":796,"kind":1024,"name":"endTime","url":"interfaces/ISpinnableObject.html#endTime","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"ISpinnableObject"},{"id":797,"kind":1024,"name":"duration","url":"interfaces/ISpinnableObject.html#duration","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"ISpinnableObject"},{"id":798,"kind":128,"name":"PathApproximator","url":"classes/PathApproximator.html","classes":"tsd-kind-class"},{"id":799,"kind":1024,"name":"BEZIER_TOLERANCE","url":"classes/PathApproximator.html#BEZIER_TOLERANCE","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"PathApproximator"},{"id":800,"kind":1024,"name":"CIRCULAR_ARC_TOLERANCE","url":"classes/PathApproximator.html#CIRCULAR_ARC_TOLERANCE","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"PathApproximator"},{"id":801,"kind":1024,"name":"CATMULL_DETAIL","url":"classes/PathApproximator.html#CATMULL_DETAIL","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"PathApproximator"},{"id":802,"kind":2048,"name":"approximateBezier","url":"classes/PathApproximator.html#approximateBezier","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"PathApproximator"},{"id":803,"kind":2048,"name":"approximateBSpline","url":"classes/PathApproximator.html#approximateBSpline","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"PathApproximator"},{"id":804,"kind":2048,"name":"approximateCatmull","url":"classes/PathApproximator.html#approximateCatmull","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"PathApproximator"},{"id":805,"kind":2048,"name":"approximateCircularArc","url":"classes/PathApproximator.html#approximateCircularArc","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"PathApproximator"},{"id":806,"kind":2048,"name":"_circularArcProperties","url":"classes/PathApproximator.html#_circularArcProperties","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"PathApproximator"},{"id":807,"kind":2048,"name":"approximateLinear","url":"classes/PathApproximator.html#approximateLinear","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"PathApproximator"},{"id":808,"kind":2048,"name":"approximateLagrangePolynomial","url":"classes/PathApproximator.html#approximateLagrangePolynomial","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"PathApproximator"},{"id":809,"kind":512,"name":"constructor","url":"classes/PathApproximator.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"PathApproximator"},{"id":810,"kind":128,"name":"CircularArcProperties","url":"classes/CircularArcProperties.html","classes":"tsd-kind-class"},{"id":811,"kind":512,"name":"constructor","url":"classes/CircularArcProperties.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"CircularArcProperties"},{"id":812,"kind":1024,"name":"isValid","url":"classes/CircularArcProperties.html#isValid","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CircularArcProperties"},{"id":813,"kind":1024,"name":"thetaStart","url":"classes/CircularArcProperties.html#thetaStart","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CircularArcProperties"},{"id":814,"kind":1024,"name":"thetaRange","url":"classes/CircularArcProperties.html#thetaRange","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CircularArcProperties"},{"id":815,"kind":1024,"name":"direction","url":"classes/CircularArcProperties.html#direction","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CircularArcProperties"},{"id":816,"kind":1024,"name":"radius","url":"classes/CircularArcProperties.html#radius","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CircularArcProperties"},{"id":817,"kind":1024,"name":"centre","url":"classes/CircularArcProperties.html#centre","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CircularArcProperties"},{"id":818,"kind":262144,"name":"thetaEnd","url":"classes/CircularArcProperties.html#thetaEnd","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"CircularArcProperties"},{"id":819,"kind":128,"name":"PathPoint","url":"classes/PathPoint.html","classes":"tsd-kind-class"},{"id":820,"kind":512,"name":"constructor","url":"classes/PathPoint.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"PathPoint"},{"id":821,"kind":1024,"name":"position","url":"classes/PathPoint.html#position","classes":"tsd-kind-property tsd-parent-kind-class","parent":"PathPoint"},{"id":822,"kind":1024,"name":"type","url":"classes/PathPoint.html#type","classes":"tsd-kind-property tsd-parent-kind-class","parent":"PathPoint"},{"id":823,"kind":128,"name":"SliderPath","url":"classes/SliderPath.html","classes":"tsd-kind-class"},{"id":824,"kind":512,"name":"constructor","url":"classes/SliderPath.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"SliderPath"},{"id":825,"kind":262144,"name":"curveType","url":"classes/SliderPath.html#curveType","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"SliderPath"},{"id":826,"kind":262144,"name":"controlPoints","url":"classes/SliderPath.html#controlPoints","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"SliderPath"},{"id":827,"kind":262144,"name":"expectedDistance","url":"classes/SliderPath.html#expectedDistance","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"SliderPath"},{"id":828,"kind":262144,"name":"distance","url":"classes/SliderPath.html#distance","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"SliderPath"},{"id":829,"kind":262144,"name":"calculatedDistance","url":"classes/SliderPath.html#calculatedDistance","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"SliderPath"},{"id":830,"kind":262144,"name":"path","url":"classes/SliderPath.html#path","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"SliderPath"},{"id":831,"kind":262144,"name":"calculatedPath","url":"classes/SliderPath.html#calculatedPath","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"SliderPath"},{"id":832,"kind":2048,"name":"invalidate","url":"classes/SliderPath.html#invalidate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"SliderPath"},{"id":833,"kind":2048,"name":"calculatePathToProgress","url":"classes/SliderPath.html#calculatePathToProgress","classes":"tsd-kind-method tsd-parent-kind-class","parent":"SliderPath"},{"id":834,"kind":2048,"name":"progressAt","url":"classes/SliderPath.html#progressAt","classes":"tsd-kind-method tsd-parent-kind-class","parent":"SliderPath"},{"id":835,"kind":2048,"name":"positionAt","url":"classes/SliderPath.html#positionAt","classes":"tsd-kind-method tsd-parent-kind-class","parent":"SliderPath"},{"id":836,"kind":2048,"name":"curvePositionAt","url":"classes/SliderPath.html#curvePositionAt","classes":"tsd-kind-method tsd-parent-kind-class","parent":"SliderPath"},{"id":837,"kind":2048,"name":"clone","url":"classes/SliderPath.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"SliderPath"},{"id":838,"kind":128,"name":"HitSample","url":"classes/HitSample.html","classes":"tsd-kind-class"},{"id":839,"kind":512,"name":"constructor","url":"classes/HitSample.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"HitSample"},{"id":840,"kind":1024,"name":"sampleSet","url":"classes/HitSample.html#sampleSet","classes":"tsd-kind-property tsd-parent-kind-class","parent":"HitSample"},{"id":841,"kind":1024,"name":"hitSound","url":"classes/HitSample.html#hitSound","classes":"tsd-kind-property tsd-parent-kind-class","parent":"HitSample"},{"id":842,"kind":1024,"name":"customIndex","url":"classes/HitSample.html#customIndex","classes":"tsd-kind-property tsd-parent-kind-class","parent":"HitSample"},{"id":843,"kind":1024,"name":"suffix","url":"classes/HitSample.html#suffix","classes":"tsd-kind-property tsd-parent-kind-class","parent":"HitSample"},{"id":844,"kind":1024,"name":"volume","url":"classes/HitSample.html#volume","classes":"tsd-kind-property tsd-parent-kind-class","parent":"HitSample"},{"id":845,"kind":1024,"name":"isLayered","url":"classes/HitSample.html#isLayered","classes":"tsd-kind-property tsd-parent-kind-class","parent":"HitSample"},{"id":846,"kind":1024,"name":"filename","url":"classes/HitSample.html#filename","classes":"tsd-kind-property tsd-parent-kind-class","parent":"HitSample"},{"id":847,"kind":2048,"name":"clone","url":"classes/HitSample.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"HitSample"},{"id":848,"kind":128,"name":"SampleBank","url":"classes/SampleBank.html","classes":"tsd-kind-class"},{"id":849,"kind":512,"name":"constructor","url":"classes/SampleBank.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"SampleBank"},{"id":850,"kind":1024,"name":"filename","url":"classes/SampleBank.html#filename","classes":"tsd-kind-property tsd-parent-kind-class","parent":"SampleBank"},{"id":851,"kind":1024,"name":"volume","url":"classes/SampleBank.html#volume","classes":"tsd-kind-property tsd-parent-kind-class","parent":"SampleBank"},{"id":852,"kind":1024,"name":"normalSet","url":"classes/SampleBank.html#normalSet","classes":"tsd-kind-property tsd-parent-kind-class","parent":"SampleBank"},{"id":853,"kind":1024,"name":"additionSet","url":"classes/SampleBank.html#additionSet","classes":"tsd-kind-property tsd-parent-kind-class","parent":"SampleBank"},{"id":854,"kind":1024,"name":"customIndex","url":"classes/SampleBank.html#customIndex","classes":"tsd-kind-property tsd-parent-kind-class","parent":"SampleBank"},{"id":855,"kind":2048,"name":"clone","url":"classes/SampleBank.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"SampleBank"},{"id":856,"kind":256,"name":"IHasColumn","url":"interfaces/IHasColumn.html","classes":"tsd-kind-interface"},{"id":857,"kind":1024,"name":"column","url":"interfaces/IHasColumn.html#column","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IHasColumn"},{"id":858,"kind":256,"name":"IHasCombo","url":"interfaces/IHasCombo.html","classes":"tsd-kind-interface"},{"id":859,"kind":1024,"name":"isNewCombo","url":"interfaces/IHasCombo.html#isNewCombo","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IHasCombo"},{"id":860,"kind":1024,"name":"comboOffset","url":"interfaces/IHasCombo.html#comboOffset","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IHasCombo"},{"id":861,"kind":256,"name":"IHasComboInformation","url":"interfaces/IHasComboInformation.html","classes":"tsd-kind-interface"},{"id":862,"kind":1024,"name":"currentComboIndex","url":"interfaces/IHasComboInformation.html#currentComboIndex","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IHasComboInformation"},{"id":863,"kind":1024,"name":"comboIndex","url":"interfaces/IHasComboInformation.html#comboIndex","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IHasComboInformation"},{"id":864,"kind":1024,"name":"comboIndexWithOffsets","url":"interfaces/IHasComboInformation.html#comboIndexWithOffsets","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IHasComboInformation"},{"id":865,"kind":1024,"name":"lastInCombo","url":"interfaces/IHasComboInformation.html#lastInCombo","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IHasComboInformation"},{"id":866,"kind":1024,"name":"isNewCombo","url":"interfaces/IHasComboInformation.html#isNewCombo","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IHasComboInformation"},{"id":867,"kind":1024,"name":"comboOffset","url":"interfaces/IHasComboInformation.html#comboOffset","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IHasComboInformation"},{"id":868,"kind":256,"name":"IHasDistance","url":"interfaces/IHasDistance.html","classes":"tsd-kind-interface"},{"id":869,"kind":1024,"name":"distance","url":"interfaces/IHasDistance.html#distance","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IHasDistance"},{"id":870,"kind":1024,"name":"endTime","url":"interfaces/IHasDistance.html#endTime","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IHasDistance"},{"id":871,"kind":1024,"name":"duration","url":"interfaces/IHasDistance.html#duration","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IHasDistance"},{"id":872,"kind":256,"name":"IHasDuration","url":"interfaces/IHasDuration.html","classes":"tsd-kind-interface"},{"id":873,"kind":1024,"name":"endTime","url":"interfaces/IHasDuration.html#endTime","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IHasDuration"},{"id":874,"kind":1024,"name":"duration","url":"interfaces/IHasDuration.html#duration","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IHasDuration"},{"id":875,"kind":256,"name":"IHasLegacyLastTickOffset","url":"interfaces/IHasLegacyLastTickOffset.html","classes":"tsd-kind-interface"},{"id":876,"kind":1024,"name":"legacyLastTickOffset","url":"interfaces/IHasLegacyLastTickOffset.html#legacyLastTickOffset","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IHasLegacyLastTickOffset"},{"id":877,"kind":256,"name":"IHasNodeSamples","url":"interfaces/IHasNodeSamples.html","classes":"tsd-kind-interface"},{"id":878,"kind":1024,"name":"nodeSamples","url":"interfaces/IHasNodeSamples.html#nodeSamples","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IHasNodeSamples"},{"id":879,"kind":256,"name":"IHasPath","url":"interfaces/IHasPath.html","classes":"tsd-kind-interface"},{"id":880,"kind":1024,"name":"path","url":"interfaces/IHasPath.html#path","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IHasPath"},{"id":881,"kind":1024,"name":"distance","url":"interfaces/IHasPath.html#distance","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IHasPath"},{"id":882,"kind":1024,"name":"endTime","url":"interfaces/IHasPath.html#endTime","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IHasPath"},{"id":883,"kind":1024,"name":"duration","url":"interfaces/IHasPath.html#duration","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IHasPath"},{"id":884,"kind":256,"name":"IHasPathWithRepeats","url":"interfaces/IHasPathWithRepeats.html","classes":"tsd-kind-interface"},{"id":885,"kind":1024,"name":"path","url":"interfaces/IHasPathWithRepeats.html#path","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IHasPathWithRepeats"},{"id":886,"kind":1024,"name":"distance","url":"interfaces/IHasPathWithRepeats.html#distance","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IHasPathWithRepeats"},{"id":887,"kind":1024,"name":"endTime","url":"interfaces/IHasPathWithRepeats.html#endTime","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IHasPathWithRepeats"},{"id":888,"kind":1024,"name":"duration","url":"interfaces/IHasPathWithRepeats.html#duration","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IHasPathWithRepeats"},{"id":889,"kind":1024,"name":"repeats","url":"interfaces/IHasPathWithRepeats.html#repeats","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IHasPathWithRepeats"},{"id":890,"kind":1024,"name":"spans","url":"interfaces/IHasPathWithRepeats.html#spans","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IHasPathWithRepeats"},{"id":891,"kind":1024,"name":"spanDuration","url":"interfaces/IHasPathWithRepeats.html#spanDuration","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IHasPathWithRepeats"},{"id":892,"kind":1024,"name":"nodeSamples","url":"interfaces/IHasPathWithRepeats.html#nodeSamples","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IHasPathWithRepeats"},{"id":893,"kind":256,"name":"IHasPosition","url":"interfaces/IHasPosition.html","classes":"tsd-kind-interface"},{"id":894,"kind":1024,"name":"startPosition","url":"interfaces/IHasPosition.html#startPosition","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IHasPosition"},{"id":895,"kind":1024,"name":"endPosition","url":"interfaces/IHasPosition.html#endPosition","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IHasPosition"},{"id":896,"kind":1024,"name":"startX","url":"interfaces/IHasPosition.html#startX","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IHasPosition"},{"id":897,"kind":1024,"name":"endX","url":"interfaces/IHasPosition.html#endX","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IHasPosition"},{"id":898,"kind":1024,"name":"startY","url":"interfaces/IHasPosition.html#startY","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IHasPosition"},{"id":899,"kind":256,"name":"IHasRepeats","url":"interfaces/IHasRepeats.html","classes":"tsd-kind-interface"},{"id":900,"kind":1024,"name":"repeats","url":"interfaces/IHasRepeats.html#repeats","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IHasRepeats"},{"id":901,"kind":1024,"name":"spans","url":"interfaces/IHasRepeats.html#spans","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IHasRepeats"},{"id":902,"kind":1024,"name":"spanDuration","url":"interfaces/IHasRepeats.html#spanDuration","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IHasRepeats"},{"id":903,"kind":1024,"name":"endTime","url":"interfaces/IHasRepeats.html#endTime","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IHasRepeats"},{"id":904,"kind":1024,"name":"duration","url":"interfaces/IHasRepeats.html#duration","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IHasRepeats"},{"id":905,"kind":1024,"name":"nodeSamples","url":"interfaces/IHasRepeats.html#nodeSamples","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IHasRepeats"},{"id":906,"kind":256,"name":"IHasX","url":"interfaces/IHasX.html","classes":"tsd-kind-interface"},{"id":907,"kind":1024,"name":"startX","url":"interfaces/IHasX.html#startX","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IHasX"},{"id":908,"kind":1024,"name":"endX","url":"interfaces/IHasX.html#endX","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IHasX"},{"id":909,"kind":256,"name":"IHasY","url":"interfaces/IHasY.html","classes":"tsd-kind-interface"},{"id":910,"kind":1024,"name":"startY","url":"interfaces/IHasY.html#startY","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IHasY"},{"id":911,"kind":1024,"name":"endX","url":"interfaces/IHasY.html#endX","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IHasY"},{"id":912,"kind":8,"name":"ReplayButtonState","url":"enums/ReplayButtonState.html","classes":"tsd-kind-enum"},{"id":913,"kind":16,"name":"None","url":"enums/ReplayButtonState.html#None","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ReplayButtonState"},{"id":914,"kind":16,"name":"Left1","url":"enums/ReplayButtonState.html#Left1","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ReplayButtonState"},{"id":915,"kind":16,"name":"Right1","url":"enums/ReplayButtonState.html#Right1","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ReplayButtonState"},{"id":916,"kind":16,"name":"Left2","url":"enums/ReplayButtonState.html#Left2","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ReplayButtonState"},{"id":917,"kind":16,"name":"Right2","url":"enums/ReplayButtonState.html#Right2","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ReplayButtonState"},{"id":918,"kind":16,"name":"Smoke","url":"enums/ReplayButtonState.html#Smoke","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ReplayButtonState"},{"id":919,"kind":256,"name":"ILifeBarFrame","url":"interfaces/ILifeBarFrame.html","classes":"tsd-kind-interface"},{"id":920,"kind":1024,"name":"startTime","url":"interfaces/ILifeBarFrame.html#startTime","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ILifeBarFrame"},{"id":921,"kind":1024,"name":"health","url":"interfaces/ILifeBarFrame.html#health","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"ILifeBarFrame"},{"id":922,"kind":2048,"name":"clone","url":"interfaces/ILifeBarFrame.html#clone","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"ILifeBarFrame"},{"id":923,"kind":256,"name":"IReplay","url":"interfaces/IReplay.html","classes":"tsd-kind-interface"},{"id":924,"kind":1024,"name":"gameVersion","url":"interfaces/IReplay.html#gameVersion","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IReplay"},{"id":925,"kind":1024,"name":"mode","url":"interfaces/IReplay.html#mode","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IReplay"},{"id":926,"kind":1024,"name":"hashMD5","url":"interfaces/IReplay.html#hashMD5","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IReplay"},{"id":927,"kind":1024,"name":"frames","url":"interfaces/IReplay.html#frames","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IReplay"},{"id":928,"kind":1024,"name":"lifeBar","url":"interfaces/IReplay.html#lifeBar","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IReplay"},{"id":929,"kind":256,"name":"IReplayFrame","url":"interfaces/IReplayFrame.html","classes":"tsd-kind-interface"},{"id":930,"kind":1024,"name":"startTime","url":"interfaces/IReplayFrame.html#startTime","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IReplayFrame"},{"id":931,"kind":1024,"name":"interval","url":"interfaces/IReplayFrame.html#interval","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IReplayFrame"},{"id":932,"kind":1024,"name":"buttonState","url":"interfaces/IReplayFrame.html#buttonState","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IReplayFrame"},{"id":933,"kind":1024,"name":"mouseX","url":"interfaces/IReplayFrame.html#mouseX","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IReplayFrame"},{"id":934,"kind":1024,"name":"mouseY","url":"interfaces/IReplayFrame.html#mouseY","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IReplayFrame"},{"id":935,"kind":2048,"name":"clone","url":"interfaces/IReplayFrame.html#clone","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"IReplayFrame"},{"id":936,"kind":128,"name":"LifeBarFrame","url":"classes/LifeBarFrame.html","classes":"tsd-kind-class"},{"id":937,"kind":512,"name":"constructor","url":"classes/LifeBarFrame.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"LifeBarFrame"},{"id":938,"kind":1024,"name":"startTime","url":"classes/LifeBarFrame.html#startTime","classes":"tsd-kind-property tsd-parent-kind-class","parent":"LifeBarFrame"},{"id":939,"kind":1024,"name":"health","url":"classes/LifeBarFrame.html#health","classes":"tsd-kind-property tsd-parent-kind-class","parent":"LifeBarFrame"},{"id":940,"kind":2048,"name":"clone","url":"classes/LifeBarFrame.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"LifeBarFrame"},{"id":941,"kind":128,"name":"Replay","url":"classes/Replay.html","classes":"tsd-kind-class"},{"id":942,"kind":512,"name":"constructor","url":"classes/Replay.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Replay"},{"id":943,"kind":1024,"name":"gameVersion","url":"classes/Replay.html#gameVersion","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Replay"},{"id":944,"kind":1024,"name":"mode","url":"classes/Replay.html#mode","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Replay"},{"id":945,"kind":1024,"name":"hashMD5","url":"classes/Replay.html#hashMD5","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Replay"},{"id":946,"kind":1024,"name":"frames","url":"classes/Replay.html#frames","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Replay"},{"id":947,"kind":1024,"name":"lifeBar","url":"classes/Replay.html#lifeBar","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Replay"},{"id":948,"kind":262144,"name":"length","url":"classes/Replay.html#length","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Replay"},{"id":949,"kind":2048,"name":"clone","url":"classes/Replay.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Replay"},{"id":950,"kind":2048,"name":"equals","url":"classes/Replay.html#equals","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Replay"},{"id":951,"kind":128,"name":"ReplayFrame","url":"classes/ReplayFrame.html","classes":"tsd-kind-class"},{"id":952,"kind":512,"name":"constructor","url":"classes/ReplayFrame.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"ReplayFrame"},{"id":953,"kind":1024,"name":"startTime","url":"classes/ReplayFrame.html#startTime","classes":"tsd-kind-property tsd-parent-kind-class","parent":"ReplayFrame"},{"id":954,"kind":1024,"name":"interval","url":"classes/ReplayFrame.html#interval","classes":"tsd-kind-property tsd-parent-kind-class","parent":"ReplayFrame"},{"id":955,"kind":1024,"name":"buttonState","url":"classes/ReplayFrame.html#buttonState","classes":"tsd-kind-property tsd-parent-kind-class","parent":"ReplayFrame"},{"id":956,"kind":1024,"name":"mouseX","url":"classes/ReplayFrame.html#mouseX","classes":"tsd-kind-property tsd-parent-kind-class","parent":"ReplayFrame"},{"id":957,"kind":1024,"name":"mouseY","url":"classes/ReplayFrame.html#mouseY","classes":"tsd-kind-property tsd-parent-kind-class","parent":"ReplayFrame"},{"id":958,"kind":262144,"name":"mousePosition","url":"classes/ReplayFrame.html#mousePosition","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"ReplayFrame"},{"id":959,"kind":262144,"name":"mouseLeft","url":"classes/ReplayFrame.html#mouseLeft","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"ReplayFrame"},{"id":960,"kind":262144,"name":"mouseRight","url":"classes/ReplayFrame.html#mouseRight","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"ReplayFrame"},{"id":961,"kind":262144,"name":"mouseLeft1","url":"classes/ReplayFrame.html#mouseLeft1","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"ReplayFrame"},{"id":962,"kind":262144,"name":"mouseRight1","url":"classes/ReplayFrame.html#mouseRight1","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"ReplayFrame"},{"id":963,"kind":262144,"name":"mouseLeft2","url":"classes/ReplayFrame.html#mouseLeft2","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"ReplayFrame"},{"id":964,"kind":262144,"name":"mouseRight2","url":"classes/ReplayFrame.html#mouseRight2","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"ReplayFrame"},{"id":965,"kind":2048,"name":"clone","url":"classes/ReplayFrame.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ReplayFrame"},{"id":966,"kind":128,"name":"Ruleset","url":"classes/Ruleset.html","classes":"tsd-kind-class"},{"id":967,"kind":512,"name":"constructor","url":"classes/Ruleset.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Ruleset"},{"id":968,"kind":1024,"name":"id","url":"classes/Ruleset.html#id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Ruleset"},{"id":969,"kind":2048,"name":"applyToBeatmap","url":"classes/Ruleset.html#applyToBeatmap","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Ruleset"},{"id":970,"kind":2048,"name":"applyToBeatmapWithMods","url":"classes/Ruleset.html#applyToBeatmapWithMods","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Ruleset"},{"id":971,"kind":2048,"name":"resetMods","url":"classes/Ruleset.html#resetMods","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Ruleset"},{"id":972,"kind":2048,"name":"createModCombination","url":"classes/Ruleset.html#createModCombination","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Ruleset"},{"id":973,"kind":2048,"name":"createBeatmapProcessor","url":"classes/Ruleset.html#createBeatmapProcessor","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Ruleset"},{"id":974,"kind":2048,"name":"createBeatmapConverter","url":"classes/Ruleset.html#createBeatmapConverter","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Ruleset"},{"id":975,"kind":2048,"name":"createDifficultyCalculator","url":"classes/Ruleset.html#createDifficultyCalculator","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Ruleset"},{"id":976,"kind":2048,"name":"createPerformanceCalculator","url":"classes/Ruleset.html#createPerformanceCalculator","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Ruleset"},{"id":977,"kind":256,"name":"IRuleset","url":"interfaces/IRuleset.html","classes":"tsd-kind-interface"},{"id":978,"kind":1024,"name":"id","url":"interfaces/IRuleset.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IRuleset"},{"id":979,"kind":2048,"name":"applyToBeatmap","url":"interfaces/IRuleset.html#applyToBeatmap","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"IRuleset"},{"id":980,"kind":2048,"name":"applyToBeatmapWithMods","url":"interfaces/IRuleset.html#applyToBeatmapWithMods","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"IRuleset"},{"id":981,"kind":2048,"name":"resetMods","url":"interfaces/IRuleset.html#resetMods","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"IRuleset"},{"id":982,"kind":2048,"name":"createModCombination","url":"interfaces/IRuleset.html#createModCombination","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"IRuleset"},{"id":983,"kind":2048,"name":"createBeatmapProcessor","url":"interfaces/IRuleset.html#createBeatmapProcessor","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"IRuleset"},{"id":984,"kind":2048,"name":"createBeatmapConverter","url":"interfaces/IRuleset.html#createBeatmapConverter","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"IRuleset"},{"id":985,"kind":2048,"name":"createDifficultyCalculator","url":"interfaces/IRuleset.html#createDifficultyCalculator","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"IRuleset"},{"id":986,"kind":2048,"name":"createPerformanceCalculator","url":"interfaces/IRuleset.html#createPerformanceCalculator","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"IRuleset"},{"id":987,"kind":4,"name":"ScoreUtils","url":"modules/ScoreUtils.html","classes":"tsd-kind-namespace"},{"id":988,"kind":64,"name":"calculateAccuracy","url":"modules/ScoreUtils.html#calculateAccuracy","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"ScoreUtils"},{"id":989,"kind":64,"name":"calculateRank","url":"modules/ScoreUtils.html#calculateRank","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"ScoreUtils"},{"id":990,"kind":128,"name":"DifficultyRange","url":"classes/DifficultyRange.html","classes":"tsd-kind-class"},{"id":991,"kind":2048,"name":"map","url":"classes/DifficultyRange.html#map","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DifficultyRange"},{"id":992,"kind":512,"name":"constructor","url":"classes/DifficultyRange.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"DifficultyRange"},{"id":993,"kind":1024,"name":"result","url":"classes/DifficultyRange.html#result","classes":"tsd-kind-property tsd-parent-kind-class","parent":"DifficultyRange"},{"id":994,"kind":1024,"name":"min","url":"classes/DifficultyRange.html#min","classes":"tsd-kind-property tsd-parent-kind-class","parent":"DifficultyRange"},{"id":995,"kind":1024,"name":"average","url":"classes/DifficultyRange.html#average","classes":"tsd-kind-property tsd-parent-kind-class","parent":"DifficultyRange"},{"id":996,"kind":1024,"name":"max","url":"classes/DifficultyRange.html#max","classes":"tsd-kind-property tsd-parent-kind-class","parent":"DifficultyRange"},{"id":997,"kind":8,"name":"HitResult","url":"enums/HitResult.html","classes":"tsd-kind-enum"},{"id":998,"kind":16,"name":"None","url":"enums/HitResult.html#None","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"HitResult"},{"id":999,"kind":16,"name":"Miss","url":"enums/HitResult.html#Miss","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"HitResult"},{"id":1000,"kind":16,"name":"Meh","url":"enums/HitResult.html#Meh","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"HitResult"},{"id":1001,"kind":16,"name":"Ok","url":"enums/HitResult.html#Ok","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"HitResult"},{"id":1002,"kind":16,"name":"Good","url":"enums/HitResult.html#Good","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"HitResult"},{"id":1003,"kind":16,"name":"Great","url":"enums/HitResult.html#Great","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"HitResult"},{"id":1004,"kind":16,"name":"Perfect","url":"enums/HitResult.html#Perfect","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"HitResult"},{"id":1005,"kind":16,"name":"SmallTickMiss","url":"enums/HitResult.html#SmallTickMiss","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"HitResult"},{"id":1006,"kind":16,"name":"SmallTickHit","url":"enums/HitResult.html#SmallTickHit","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"HitResult"},{"id":1007,"kind":16,"name":"LargeTickMiss","url":"enums/HitResult.html#LargeTickMiss","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"HitResult"},{"id":1008,"kind":16,"name":"LargeTickHit","url":"enums/HitResult.html#LargeTickHit","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"HitResult"},{"id":1009,"kind":16,"name":"SmallBonus","url":"enums/HitResult.html#SmallBonus","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"HitResult"},{"id":1010,"kind":16,"name":"LargeBonus","url":"enums/HitResult.html#LargeBonus","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"HitResult"},{"id":1011,"kind":16,"name":"IgnoreMiss","url":"enums/HitResult.html#IgnoreMiss","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"HitResult"},{"id":1012,"kind":16,"name":"IgnoreHit","url":"enums/HitResult.html#IgnoreHit","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"HitResult"},{"id":1013,"kind":8,"name":"ScoreRank","url":"enums/ScoreRank.html","classes":"tsd-kind-enum"},{"id":1014,"kind":16,"name":"F","url":"enums/ScoreRank.html#F","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ScoreRank"},{"id":1015,"kind":16,"name":"D","url":"enums/ScoreRank.html#D","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ScoreRank"},{"id":1016,"kind":16,"name":"C","url":"enums/ScoreRank.html#C","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ScoreRank"},{"id":1017,"kind":16,"name":"B","url":"enums/ScoreRank.html#B","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ScoreRank"},{"id":1018,"kind":16,"name":"A","url":"enums/ScoreRank.html#A","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ScoreRank"},{"id":1019,"kind":16,"name":"S","url":"enums/ScoreRank.html#S","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ScoreRank"},{"id":1020,"kind":16,"name":"SH","url":"enums/ScoreRank.html#SH","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ScoreRank"},{"id":1021,"kind":16,"name":"X","url":"enums/ScoreRank.html#X","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ScoreRank"},{"id":1022,"kind":16,"name":"XH","url":"enums/ScoreRank.html#XH","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ScoreRank"},{"id":1023,"kind":128,"name":"HitWindows","url":"classes/HitWindows.html","classes":"tsd-kind-class"},{"id":1024,"kind":1024,"name":"empty","url":"classes/HitWindows.html#empty","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"HitWindows"},{"id":1025,"kind":512,"name":"constructor","url":"classes/HitWindows.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"HitWindows"},{"id":1026,"kind":2048,"name":"getAllAvailableWindows","url":"classes/HitWindows.html#getAllAvailableWindows","classes":"tsd-kind-method tsd-parent-kind-class","parent":"HitWindows"},{"id":1027,"kind":2048,"name":"isHitResultAllowed","url":"classes/HitWindows.html#isHitResultAllowed","classes":"tsd-kind-method tsd-parent-kind-class","parent":"HitWindows"},{"id":1028,"kind":2048,"name":"setDifficulty","url":"classes/HitWindows.html#setDifficulty","classes":"tsd-kind-method tsd-parent-kind-class","parent":"HitWindows"},{"id":1029,"kind":2048,"name":"resultFor","url":"classes/HitWindows.html#resultFor","classes":"tsd-kind-method tsd-parent-kind-class","parent":"HitWindows"},{"id":1030,"kind":2048,"name":"windowFor","url":"classes/HitWindows.html#windowFor","classes":"tsd-kind-method tsd-parent-kind-class","parent":"HitWindows"},{"id":1031,"kind":2048,"name":"canBeHit","url":"classes/HitWindows.html#canBeHit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"HitWindows"},{"id":1032,"kind":256,"name":"IHitStatistics","url":"interfaces/IHitStatistics.html","classes":"tsd-kind-interface"},{"id":1033,"kind":1024,"name":"none","url":"interfaces/IHitStatistics.html#none","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IHitStatistics"},{"id":1034,"kind":1024,"name":"miss","url":"interfaces/IHitStatistics.html#miss","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IHitStatistics"},{"id":1035,"kind":1024,"name":"meh","url":"interfaces/IHitStatistics.html#meh","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IHitStatistics"},{"id":1036,"kind":1024,"name":"ok","url":"interfaces/IHitStatistics.html#ok","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IHitStatistics"},{"id":1037,"kind":1024,"name":"good","url":"interfaces/IHitStatistics.html#good","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IHitStatistics"},{"id":1038,"kind":1024,"name":"great","url":"interfaces/IHitStatistics.html#great","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IHitStatistics"},{"id":1039,"kind":1024,"name":"perfect","url":"interfaces/IHitStatistics.html#perfect","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IHitStatistics"},{"id":1040,"kind":1024,"name":"smallTickMiss","url":"interfaces/IHitStatistics.html#smallTickMiss","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IHitStatistics"},{"id":1041,"kind":1024,"name":"smallTickHit","url":"interfaces/IHitStatistics.html#smallTickHit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IHitStatistics"},{"id":1042,"kind":1024,"name":"largeTickMiss","url":"interfaces/IHitStatistics.html#largeTickMiss","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IHitStatistics"},{"id":1043,"kind":1024,"name":"largeTickHit","url":"interfaces/IHitStatistics.html#largeTickHit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IHitStatistics"},{"id":1044,"kind":1024,"name":"smallBonus","url":"interfaces/IHitStatistics.html#smallBonus","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IHitStatistics"},{"id":1045,"kind":1024,"name":"largeBonus","url":"interfaces/IHitStatistics.html#largeBonus","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IHitStatistics"},{"id":1046,"kind":1024,"name":"ignoreMiss","url":"interfaces/IHitStatistics.html#ignoreMiss","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IHitStatistics"},{"id":1047,"kind":1024,"name":"ignoreHit","url":"interfaces/IHitStatistics.html#ignoreHit","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IHitStatistics"},{"id":1048,"kind":4194304,"name":"JsonableScoreInfo","url":"modules.html#JsonableScoreInfo","classes":"tsd-kind-type-alias"},{"id":1049,"kind":256,"name":"IJsonableScoreInfo","url":"interfaces/IJsonableScoreInfo.html","classes":"tsd-kind-interface"},{"id":1050,"kind":1024,"name":"mods","url":"interfaces/IJsonableScoreInfo.html#mods","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IJsonableScoreInfo"},{"id":1051,"kind":1024,"name":"beatmap","url":"interfaces/IJsonableScoreInfo.html#beatmap","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IJsonableScoreInfo"},{"id":1052,"kind":1024,"name":"id","url":"interfaces/IJsonableScoreInfo.html#id","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableScoreInfo"},{"id":1053,"kind":1024,"name":"totalHits","url":"interfaces/IJsonableScoreInfo.html#totalHits","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableScoreInfo"},{"id":1054,"kind":1024,"name":"rulesetId","url":"interfaces/IJsonableScoreInfo.html#rulesetId","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableScoreInfo"},{"id":1055,"kind":1024,"name":"maxCombo","url":"interfaces/IJsonableScoreInfo.html#maxCombo","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableScoreInfo"},{"id":1056,"kind":2048,"name":"toJSON","url":"interfaces/IJsonableScoreInfo.html#toJSON","classes":"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableScoreInfo"},{"id":1057,"kind":1024,"name":"rank","url":"interfaces/IJsonableScoreInfo.html#rank","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableScoreInfo"},{"id":1058,"kind":1024,"name":"totalScore","url":"interfaces/IJsonableScoreInfo.html#totalScore","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableScoreInfo"},{"id":1059,"kind":1024,"name":"accuracy","url":"interfaces/IJsonableScoreInfo.html#accuracy","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableScoreInfo"},{"id":1060,"kind":1024,"name":"pp","url":"interfaces/IJsonableScoreInfo.html#pp","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableScoreInfo"},{"id":1061,"kind":1024,"name":"passed","url":"interfaces/IJsonableScoreInfo.html#passed","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableScoreInfo"},{"id":1062,"kind":1024,"name":"perfect","url":"interfaces/IJsonableScoreInfo.html#perfect","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableScoreInfo"},{"id":1063,"kind":1024,"name":"username","url":"interfaces/IJsonableScoreInfo.html#username","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableScoreInfo"},{"id":1064,"kind":1024,"name":"userId","url":"interfaces/IJsonableScoreInfo.html#userId","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableScoreInfo"},{"id":1065,"kind":1024,"name":"beatmapId","url":"interfaces/IJsonableScoreInfo.html#beatmapId","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableScoreInfo"},{"id":1066,"kind":1024,"name":"date","url":"interfaces/IJsonableScoreInfo.html#date","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableScoreInfo"},{"id":1067,"kind":1024,"name":"statistics","url":"interfaces/IJsonableScoreInfo.html#statistics","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableScoreInfo"},{"id":1068,"kind":1024,"name":"beatmapHashMD5","url":"interfaces/IJsonableScoreInfo.html#beatmapHashMD5","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableScoreInfo"},{"id":1069,"kind":1024,"name":"countGeki","url":"interfaces/IJsonableScoreInfo.html#countGeki","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableScoreInfo"},{"id":1070,"kind":1024,"name":"count300","url":"interfaces/IJsonableScoreInfo.html#count300","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableScoreInfo"},{"id":1071,"kind":1024,"name":"countKatu","url":"interfaces/IJsonableScoreInfo.html#countKatu","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableScoreInfo"},{"id":1072,"kind":1024,"name":"count100","url":"interfaces/IJsonableScoreInfo.html#count100","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableScoreInfo"},{"id":1073,"kind":1024,"name":"count50","url":"interfaces/IJsonableScoreInfo.html#count50","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableScoreInfo"},{"id":1074,"kind":1024,"name":"countMiss","url":"interfaces/IJsonableScoreInfo.html#countMiss","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IJsonableScoreInfo"},{"id":1075,"kind":256,"name":"IScore","url":"interfaces/IScore.html","classes":"tsd-kind-interface"},{"id":1076,"kind":1024,"name":"info","url":"interfaces/IScore.html#info","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IScore"},{"id":1077,"kind":1024,"name":"replay","url":"interfaces/IScore.html#replay","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IScore"},{"id":1078,"kind":256,"name":"IScoreInfo","url":"interfaces/IScoreInfo.html","classes":"tsd-kind-interface"},{"id":1079,"kind":1024,"name":"id","url":"interfaces/IScoreInfo.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IScoreInfo"},{"id":1080,"kind":1024,"name":"rank","url":"interfaces/IScoreInfo.html#rank","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IScoreInfo"},{"id":1081,"kind":1024,"name":"totalScore","url":"interfaces/IScoreInfo.html#totalScore","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IScoreInfo"},{"id":1082,"kind":1024,"name":"accuracy","url":"interfaces/IScoreInfo.html#accuracy","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IScoreInfo"},{"id":1083,"kind":1024,"name":"pp","url":"interfaces/IScoreInfo.html#pp","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IScoreInfo"},{"id":1084,"kind":1024,"name":"maxCombo","url":"interfaces/IScoreInfo.html#maxCombo","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IScoreInfo"},{"id":1085,"kind":1024,"name":"passed","url":"interfaces/IScoreInfo.html#passed","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IScoreInfo"},{"id":1086,"kind":1024,"name":"perfect","url":"interfaces/IScoreInfo.html#perfect","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IScoreInfo"},{"id":1087,"kind":1024,"name":"ruleset","url":"interfaces/IScoreInfo.html#ruleset","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IScoreInfo"},{"id":1088,"kind":1024,"name":"rulesetId","url":"interfaces/IScoreInfo.html#rulesetId","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IScoreInfo"},{"id":1089,"kind":1024,"name":"mods","url":"interfaces/IScoreInfo.html#mods","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IScoreInfo"},{"id":1090,"kind":1024,"name":"rawMods","url":"interfaces/IScoreInfo.html#rawMods","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IScoreInfo"},{"id":1091,"kind":1024,"name":"username","url":"interfaces/IScoreInfo.html#username","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IScoreInfo"},{"id":1092,"kind":1024,"name":"userId","url":"interfaces/IScoreInfo.html#userId","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IScoreInfo"},{"id":1093,"kind":1024,"name":"beatmap","url":"interfaces/IScoreInfo.html#beatmap","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IScoreInfo"},{"id":1094,"kind":1024,"name":"beatmapId","url":"interfaces/IScoreInfo.html#beatmapId","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IScoreInfo"},{"id":1095,"kind":1024,"name":"date","url":"interfaces/IScoreInfo.html#date","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IScoreInfo"},{"id":1096,"kind":1024,"name":"statistics","url":"interfaces/IScoreInfo.html#statistics","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IScoreInfo"},{"id":1097,"kind":1024,"name":"beatmapHashMD5","url":"interfaces/IScoreInfo.html#beatmapHashMD5","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IScoreInfo"},{"id":1098,"kind":1024,"name":"countGeki","url":"interfaces/IScoreInfo.html#countGeki","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IScoreInfo"},{"id":1099,"kind":1024,"name":"count300","url":"interfaces/IScoreInfo.html#count300","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IScoreInfo"},{"id":1100,"kind":1024,"name":"countKatu","url":"interfaces/IScoreInfo.html#countKatu","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IScoreInfo"},{"id":1101,"kind":1024,"name":"count100","url":"interfaces/IScoreInfo.html#count100","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IScoreInfo"},{"id":1102,"kind":1024,"name":"count50","url":"interfaces/IScoreInfo.html#count50","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IScoreInfo"},{"id":1103,"kind":1024,"name":"countMiss","url":"interfaces/IScoreInfo.html#countMiss","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IScoreInfo"},{"id":1104,"kind":1024,"name":"totalHits","url":"interfaces/IScoreInfo.html#totalHits","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IScoreInfo"},{"id":1105,"kind":2048,"name":"toJSON","url":"interfaces/IScoreInfo.html#toJSON","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"IScoreInfo"},{"id":1106,"kind":128,"name":"LegacyScoreExtensions","url":"classes/LegacyScoreExtensions.html","classes":"tsd-kind-class"},{"id":1107,"kind":512,"name":"constructor","url":"classes/LegacyScoreExtensions.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"LegacyScoreExtensions"},{"id":1108,"kind":1024,"name":"rulesetId","url":"classes/LegacyScoreExtensions.html#rulesetId","classes":"tsd-kind-property tsd-parent-kind-class","parent":"LegacyScoreExtensions"},{"id":1109,"kind":1024,"name":"statistics","url":"classes/LegacyScoreExtensions.html#statistics","classes":"tsd-kind-property tsd-parent-kind-class","parent":"LegacyScoreExtensions"},{"id":1110,"kind":262144,"name":"countGeki","url":"classes/LegacyScoreExtensions.html#countGeki","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"LegacyScoreExtensions"},{"id":1111,"kind":262144,"name":"count300","url":"classes/LegacyScoreExtensions.html#count300","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"LegacyScoreExtensions"},{"id":1112,"kind":262144,"name":"countKatu","url":"classes/LegacyScoreExtensions.html#countKatu","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"LegacyScoreExtensions"},{"id":1113,"kind":262144,"name":"count100","url":"classes/LegacyScoreExtensions.html#count100","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"LegacyScoreExtensions"},{"id":1114,"kind":262144,"name":"count50","url":"classes/LegacyScoreExtensions.html#count50","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"LegacyScoreExtensions"},{"id":1115,"kind":262144,"name":"countMiss","url":"classes/LegacyScoreExtensions.html#countMiss","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"LegacyScoreExtensions"},{"id":1116,"kind":262144,"name":"totalHits","url":"classes/LegacyScoreExtensions.html#totalHits","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"LegacyScoreExtensions"},{"id":1117,"kind":128,"name":"Score","url":"classes/Score.html","classes":"tsd-kind-class"},{"id":1118,"kind":512,"name":"constructor","url":"classes/Score.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Score"},{"id":1119,"kind":1024,"name":"info","url":"classes/Score.html#info","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Score"},{"id":1120,"kind":1024,"name":"replay","url":"classes/Score.html#replay","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Score"},{"id":1121,"kind":2048,"name":"clone","url":"classes/Score.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Score"},{"id":1122,"kind":2048,"name":"equals","url":"classes/Score.html#equals","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Score"},{"id":1123,"kind":128,"name":"ScoreInfo","url":"classes/ScoreInfo.html","classes":"tsd-kind-class"},{"id":1124,"kind":512,"name":"constructor","url":"classes/ScoreInfo.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"ScoreInfo"},{"id":1125,"kind":1024,"name":"id","url":"classes/ScoreInfo.html#id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"ScoreInfo"},{"id":1126,"kind":1024,"name":"totalScore","url":"classes/ScoreInfo.html#totalScore","classes":"tsd-kind-property tsd-parent-kind-class","parent":"ScoreInfo"},{"id":1127,"kind":1024,"name":"pp","url":"classes/ScoreInfo.html#pp","classes":"tsd-kind-property tsd-parent-kind-class","parent":"ScoreInfo"},{"id":1128,"kind":1024,"name":"maxCombo","url":"classes/ScoreInfo.html#maxCombo","classes":"tsd-kind-property tsd-parent-kind-class","parent":"ScoreInfo"},{"id":1129,"kind":1024,"name":"passed","url":"classes/ScoreInfo.html#passed","classes":"tsd-kind-property tsd-parent-kind-class","parent":"ScoreInfo"},{"id":1130,"kind":1024,"name":"perfect","url":"classes/ScoreInfo.html#perfect","classes":"tsd-kind-property tsd-parent-kind-class","parent":"ScoreInfo"},{"id":1131,"kind":262144,"name":"accuracy","url":"classes/ScoreInfo.html#accuracy","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"ScoreInfo"},{"id":1132,"kind":262144,"name":"rank","url":"classes/ScoreInfo.html#rank","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"ScoreInfo"},{"id":1133,"kind":262144,"name":"ruleset","url":"classes/ScoreInfo.html#ruleset","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"ScoreInfo"},{"id":1134,"kind":262144,"name":"rulesetId","url":"classes/ScoreInfo.html#rulesetId","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"ScoreInfo"},{"id":1135,"kind":262144,"name":"mods","url":"classes/ScoreInfo.html#mods","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"ScoreInfo"},{"id":1136,"kind":262144,"name":"rawMods","url":"classes/ScoreInfo.html#rawMods","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"ScoreInfo"},{"id":1137,"kind":1024,"name":"username","url":"classes/ScoreInfo.html#username","classes":"tsd-kind-property tsd-parent-kind-class","parent":"ScoreInfo"},{"id":1138,"kind":1024,"name":"userId","url":"classes/ScoreInfo.html#userId","classes":"tsd-kind-property tsd-parent-kind-class","parent":"ScoreInfo"},{"id":1139,"kind":1024,"name":"beatmap","url":"classes/ScoreInfo.html#beatmap","classes":"tsd-kind-property tsd-parent-kind-class","parent":"ScoreInfo"},{"id":1140,"kind":1024,"name":"beatmapId","url":"classes/ScoreInfo.html#beatmapId","classes":"tsd-kind-property tsd-parent-kind-class","parent":"ScoreInfo"},{"id":1141,"kind":1024,"name":"date","url":"classes/ScoreInfo.html#date","classes":"tsd-kind-property tsd-parent-kind-class","parent":"ScoreInfo"},{"id":1142,"kind":1024,"name":"statistics","url":"classes/ScoreInfo.html#statistics","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"ScoreInfo"},{"id":1143,"kind":1024,"name":"beatmapHashMD5","url":"classes/ScoreInfo.html#beatmapHashMD5","classes":"tsd-kind-property tsd-parent-kind-class","parent":"ScoreInfo"},{"id":1144,"kind":2048,"name":"toJSON","url":"classes/ScoreInfo.html#toJSON","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ScoreInfo"},{"id":1145,"kind":2048,"name":"clone","url":"classes/ScoreInfo.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ScoreInfo"},{"id":1146,"kind":2048,"name":"equals","url":"classes/ScoreInfo.html#equals","classes":"tsd-kind-method tsd-parent-kind-class","parent":"ScoreInfo"},{"id":1147,"kind":262144,"name":"countGeki","url":"classes/ScoreInfo.html#countGeki","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"ScoreInfo"},{"id":1148,"kind":262144,"name":"count300","url":"classes/ScoreInfo.html#count300","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"ScoreInfo"},{"id":1149,"kind":262144,"name":"countKatu","url":"classes/ScoreInfo.html#countKatu","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"ScoreInfo"},{"id":1150,"kind":262144,"name":"count100","url":"classes/ScoreInfo.html#count100","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"ScoreInfo"},{"id":1151,"kind":262144,"name":"count50","url":"classes/ScoreInfo.html#count50","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"ScoreInfo"},{"id":1152,"kind":262144,"name":"countMiss","url":"classes/ScoreInfo.html#countMiss","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"ScoreInfo"},{"id":1153,"kind":262144,"name":"totalHits","url":"classes/ScoreInfo.html#totalHits","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"ScoreInfo"},{"id":1154,"kind":8,"name":"BlendingEquation","url":"enums/BlendingEquation.html","classes":"tsd-kind-enum"},{"id":1155,"kind":16,"name":"Inherit","url":"enums/BlendingEquation.html#Inherit","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingEquation"},{"id":1156,"kind":16,"name":"Add","url":"enums/BlendingEquation.html#Add","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingEquation"},{"id":1157,"kind":16,"name":"Min","url":"enums/BlendingEquation.html#Min","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingEquation"},{"id":1158,"kind":16,"name":"Max","url":"enums/BlendingEquation.html#Max","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingEquation"},{"id":1159,"kind":16,"name":"Subtract","url":"enums/BlendingEquation.html#Subtract","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingEquation"},{"id":1160,"kind":16,"name":"ReverseSubtract","url":"enums/BlendingEquation.html#ReverseSubtract","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingEquation"},{"id":1161,"kind":8,"name":"BlendEquationMode","url":"enums/BlendEquationMode.html","classes":"tsd-kind-enum"},{"id":1162,"kind":16,"name":"FuncAdd","url":"enums/BlendEquationMode.html#FuncAdd","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendEquationMode"},{"id":1163,"kind":16,"name":"Min","url":"enums/BlendEquationMode.html#Min","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendEquationMode"},{"id":1164,"kind":16,"name":"Max","url":"enums/BlendEquationMode.html#Max","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendEquationMode"},{"id":1165,"kind":16,"name":"FuncSubtract","url":"enums/BlendEquationMode.html#FuncSubtract","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendEquationMode"},{"id":1166,"kind":16,"name":"FuncReverseSubtract","url":"enums/BlendEquationMode.html#FuncReverseSubtract","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendEquationMode"},{"id":1167,"kind":8,"name":"BlendingFactorDest","url":"enums/BlendingFactorDest.html","classes":"tsd-kind-enum"},{"id":1168,"kind":16,"name":"Zero","url":"enums/BlendingFactorDest.html#Zero","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingFactorDest"},{"id":1169,"kind":16,"name":"SrcColor","url":"enums/BlendingFactorDest.html#SrcColor","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingFactorDest"},{"id":1170,"kind":16,"name":"OneMinusSrcColor","url":"enums/BlendingFactorDest.html#OneMinusSrcColor","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingFactorDest"},{"id":1171,"kind":16,"name":"SrcAlpha","url":"enums/BlendingFactorDest.html#SrcAlpha","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingFactorDest"},{"id":1172,"kind":16,"name":"OneMinusSrcAlpha","url":"enums/BlendingFactorDest.html#OneMinusSrcAlpha","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingFactorDest"},{"id":1173,"kind":16,"name":"DstAlpha","url":"enums/BlendingFactorDest.html#DstAlpha","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingFactorDest"},{"id":1174,"kind":16,"name":"OneMinusDstAlpha","url":"enums/BlendingFactorDest.html#OneMinusDstAlpha","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingFactorDest"},{"id":1175,"kind":16,"name":"DstColor","url":"enums/BlendingFactorDest.html#DstColor","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingFactorDest"},{"id":1176,"kind":16,"name":"OneMinusDstColor","url":"enums/BlendingFactorDest.html#OneMinusDstColor","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingFactorDest"},{"id":1177,"kind":16,"name":"SrcAlphaSaturate","url":"enums/BlendingFactorDest.html#SrcAlphaSaturate","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingFactorDest"},{"id":1178,"kind":16,"name":"ConstantColor","url":"enums/BlendingFactorDest.html#ConstantColor","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingFactorDest"},{"id":1179,"kind":16,"name":"OneMinusConstantColor","url":"enums/BlendingFactorDest.html#OneMinusConstantColor","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingFactorDest"},{"id":1180,"kind":16,"name":"ConstantAlpha","url":"enums/BlendingFactorDest.html#ConstantAlpha","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingFactorDest"},{"id":1181,"kind":16,"name":"OneMinusConstantAlpha","url":"enums/BlendingFactorDest.html#OneMinusConstantAlpha","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingFactorDest"},{"id":1182,"kind":16,"name":"One","url":"enums/BlendingFactorDest.html#One","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingFactorDest"},{"id":1183,"kind":8,"name":"BlendingFactorSrc","url":"enums/BlendingFactorSrc.html","classes":"tsd-kind-enum"},{"id":1184,"kind":16,"name":"Zero","url":"enums/BlendingFactorSrc.html#Zero","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingFactorSrc"},{"id":1185,"kind":16,"name":"SrcColor","url":"enums/BlendingFactorSrc.html#SrcColor","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingFactorSrc"},{"id":1186,"kind":16,"name":"OneMinusSrcColor","url":"enums/BlendingFactorSrc.html#OneMinusSrcColor","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingFactorSrc"},{"id":1187,"kind":16,"name":"SrcAlpha","url":"enums/BlendingFactorSrc.html#SrcAlpha","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingFactorSrc"},{"id":1188,"kind":16,"name":"OneMinusSrcAlpha","url":"enums/BlendingFactorSrc.html#OneMinusSrcAlpha","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingFactorSrc"},{"id":1189,"kind":16,"name":"DstAlpha","url":"enums/BlendingFactorSrc.html#DstAlpha","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingFactorSrc"},{"id":1190,"kind":16,"name":"OneMinusDstAlpha","url":"enums/BlendingFactorSrc.html#OneMinusDstAlpha","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingFactorSrc"},{"id":1191,"kind":16,"name":"DstColor","url":"enums/BlendingFactorSrc.html#DstColor","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingFactorSrc"},{"id":1192,"kind":16,"name":"OneMinusDstColor","url":"enums/BlendingFactorSrc.html#OneMinusDstColor","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingFactorSrc"},{"id":1193,"kind":16,"name":"SrcAlphaSaturate","url":"enums/BlendingFactorSrc.html#SrcAlphaSaturate","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingFactorSrc"},{"id":1194,"kind":16,"name":"ConstantColor","url":"enums/BlendingFactorSrc.html#ConstantColor","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingFactorSrc"},{"id":1195,"kind":16,"name":"OneMinusConstantColor","url":"enums/BlendingFactorSrc.html#OneMinusConstantColor","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingFactorSrc"},{"id":1196,"kind":16,"name":"ConstantAlpha","url":"enums/BlendingFactorSrc.html#ConstantAlpha","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingFactorSrc"},{"id":1197,"kind":16,"name":"OneMinusConstantAlpha","url":"enums/BlendingFactorSrc.html#OneMinusConstantAlpha","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingFactorSrc"},{"id":1198,"kind":16,"name":"One","url":"enums/BlendingFactorSrc.html#One","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingFactorSrc"},{"id":1199,"kind":8,"name":"BlendingMode","url":"enums/BlendingMode.html","classes":"tsd-kind-enum"},{"id":1200,"kind":16,"name":"AdditiveBlending","url":"enums/BlendingMode.html#AdditiveBlending","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingMode"},{"id":1201,"kind":16,"name":"AlphaBlending","url":"enums/BlendingMode.html#AlphaBlending","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingMode"},{"id":1202,"kind":128,"name":"BlendingParameters","url":"classes/BlendingParameters.html","classes":"tsd-kind-class"},{"id":1203,"kind":1024,"name":"None","url":"classes/BlendingParameters.html#None","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"BlendingParameters"},{"id":1204,"kind":1024,"name":"Inherit","url":"classes/BlendingParameters.html#Inherit","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"BlendingParameters"},{"id":1205,"kind":1024,"name":"Mixture","url":"classes/BlendingParameters.html#Mixture","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"BlendingParameters"},{"id":1206,"kind":1024,"name":"Additive","url":"classes/BlendingParameters.html#Additive","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"BlendingParameters"},{"id":1207,"kind":512,"name":"constructor","url":"classes/BlendingParameters.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"BlendingParameters"},{"id":1208,"kind":1024,"name":"source","url":"classes/BlendingParameters.html#source","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BlendingParameters"},{"id":1209,"kind":1024,"name":"destination","url":"classes/BlendingParameters.html#destination","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BlendingParameters"},{"id":1210,"kind":1024,"name":"sourceAlpha","url":"classes/BlendingParameters.html#sourceAlpha","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BlendingParameters"},{"id":1211,"kind":1024,"name":"destinationAlpha","url":"classes/BlendingParameters.html#destinationAlpha","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BlendingParameters"},{"id":1212,"kind":1024,"name":"rgbEquation","url":"classes/BlendingParameters.html#rgbEquation","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BlendingParameters"},{"id":1213,"kind":1024,"name":"alphaEquation","url":"classes/BlendingParameters.html#alphaEquation","classes":"tsd-kind-property tsd-parent-kind-class","parent":"BlendingParameters"},{"id":1214,"kind":2048,"name":"copyFromParent","url":"classes/BlendingParameters.html#copyFromParent","classes":"tsd-kind-method tsd-parent-kind-class","parent":"BlendingParameters"},{"id":1215,"kind":2048,"name":"applyDefaultToInherited","url":"classes/BlendingParameters.html#applyDefaultToInherited","classes":"tsd-kind-method tsd-parent-kind-class","parent":"BlendingParameters"},{"id":1216,"kind":2048,"name":"equals","url":"classes/BlendingParameters.html#equals","classes":"tsd-kind-method tsd-parent-kind-class","parent":"BlendingParameters"},{"id":1217,"kind":262144,"name":"isDisabled","url":"classes/BlendingParameters.html#isDisabled","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"BlendingParameters"},{"id":1218,"kind":262144,"name":"rgbEquationMode","url":"classes/BlendingParameters.html#rgbEquationMode","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"BlendingParameters"},{"id":1219,"kind":262144,"name":"alphaEquationMode","url":"classes/BlendingParameters.html#alphaEquationMode","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"BlendingParameters"},{"id":1220,"kind":262144,"name":"sourceBlendingFactor","url":"classes/BlendingParameters.html#sourceBlendingFactor","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"BlendingParameters"},{"id":1221,"kind":262144,"name":"destinationBlendingFactor","url":"classes/BlendingParameters.html#destinationBlendingFactor","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"BlendingParameters"},{"id":1222,"kind":262144,"name":"sourceAlphaBlendingFactor","url":"classes/BlendingParameters.html#sourceAlphaBlendingFactor","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"BlendingParameters"},{"id":1223,"kind":262144,"name":"destinationAlphaBlendingFactor","url":"classes/BlendingParameters.html#destinationAlphaBlendingFactor","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"BlendingParameters"},{"id":1224,"kind":8,"name":"BlendingType","url":"enums/BlendingType.html","classes":"tsd-kind-enum"},{"id":1225,"kind":16,"name":"Inherit","url":"enums/BlendingType.html#Inherit","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingType"},{"id":1226,"kind":16,"name":"ConstantAlpha","url":"enums/BlendingType.html#ConstantAlpha","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingType"},{"id":1227,"kind":16,"name":"ConstantColor","url":"enums/BlendingType.html#ConstantColor","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingType"},{"id":1228,"kind":16,"name":"DstAlpha","url":"enums/BlendingType.html#DstAlpha","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingType"},{"id":1229,"kind":16,"name":"DstColor","url":"enums/BlendingType.html#DstColor","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingType"},{"id":1230,"kind":16,"name":"One","url":"enums/BlendingType.html#One","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingType"},{"id":1231,"kind":16,"name":"OneMinusConstantAlpha","url":"enums/BlendingType.html#OneMinusConstantAlpha","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingType"},{"id":1232,"kind":16,"name":"OneMinusConstantColor","url":"enums/BlendingType.html#OneMinusConstantColor","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingType"},{"id":1233,"kind":16,"name":"OneMinusDstAlpha","url":"enums/BlendingType.html#OneMinusDstAlpha","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingType"},{"id":1234,"kind":16,"name":"OneMinusDstColor","url":"enums/BlendingType.html#OneMinusDstColor","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingType"},{"id":1235,"kind":16,"name":"OneMinusSrcAlpha","url":"enums/BlendingType.html#OneMinusSrcAlpha","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingType"},{"id":1236,"kind":16,"name":"OneMinusSrcColor","url":"enums/BlendingType.html#OneMinusSrcColor","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingType"},{"id":1237,"kind":16,"name":"SrcAlpha","url":"enums/BlendingType.html#SrcAlpha","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingType"},{"id":1238,"kind":16,"name":"SrcAlphaSaturate","url":"enums/BlendingType.html#SrcAlphaSaturate","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingType"},{"id":1239,"kind":16,"name":"SrcColor","url":"enums/BlendingType.html#SrcColor","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingType"},{"id":1240,"kind":16,"name":"Zero","url":"enums/BlendingType.html#Zero","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"BlendingType"},{"id":1241,"kind":128,"name":"Command","url":"classes/Command.html","classes":"tsd-kind-class tsd-has-type-parameter"},{"id":1242,"kind":512,"name":"constructor","url":"classes/Command.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-has-type-parameter","parent":"Command"},{"id":1243,"kind":1024,"name":"type","url":"classes/Command.html#type","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Command"},{"id":1244,"kind":1024,"name":"parameter","url":"classes/Command.html#parameter","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Command"},{"id":1245,"kind":1024,"name":"easing","url":"classes/Command.html#easing","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Command"},{"id":1246,"kind":1024,"name":"startTime","url":"classes/Command.html#startTime","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Command"},{"id":1247,"kind":1024,"name":"endTime","url":"classes/Command.html#endTime","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Command"},{"id":1248,"kind":1024,"name":"startValue","url":"classes/Command.html#startValue","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Command"},{"id":1249,"kind":1024,"name":"endValue","url":"classes/Command.html#endValue","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Command"},{"id":1250,"kind":262144,"name":"duration","url":"classes/Command.html#duration","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Command"},{"id":1251,"kind":2048,"name":"getProgress","url":"classes/Command.html#getProgress","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Command"},{"id":1252,"kind":2048,"name":"getValueAtProgress","url":"classes/Command.html#getValueAtProgress","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Command"},{"id":1253,"kind":2048,"name":"getValueAtTime","url":"classes/Command.html#getValueAtTime","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Command"},{"id":1254,"kind":2048,"name":"equals","url":"classes/Command.html#equals","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Command"},{"id":1255,"kind":128,"name":"CommandLoop","url":"classes/CommandLoop.html","classes":"tsd-kind-class"},{"id":1256,"kind":512,"name":"constructor","url":"classes/CommandLoop.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"CommandLoop"},{"id":1257,"kind":1024,"name":"type","url":"classes/CommandLoop.html#type","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CommandLoop"},{"id":1258,"kind":1024,"name":"loopStartTime","url":"classes/CommandLoop.html#loopStartTime","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CommandLoop"},{"id":1259,"kind":1024,"name":"loopCount","url":"classes/CommandLoop.html#loopCount","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CommandLoop"},{"id":1260,"kind":262144,"name":"totalIterations","url":"classes/CommandLoop.html#totalIterations","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"CommandLoop"},{"id":1261,"kind":262144,"name":"startTime","url":"classes/CommandLoop.html#startTime","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"CommandLoop"},{"id":1262,"kind":262144,"name":"endTime","url":"classes/CommandLoop.html#endTime","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"CommandLoop"},{"id":1263,"kind":2048,"name":"unrollCommands","url":"classes/CommandLoop.html#unrollCommands","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CommandLoop"},{"id":1264,"kind":1024,"name":"x","url":"classes/CommandLoop.html#x","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"CommandLoop"},{"id":1265,"kind":1024,"name":"y","url":"classes/CommandLoop.html#y","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"CommandLoop"},{"id":1266,"kind":1024,"name":"scale","url":"classes/CommandLoop.html#scale","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"CommandLoop"},{"id":1267,"kind":1024,"name":"vectorScale","url":"classes/CommandLoop.html#vectorScale","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"CommandLoop"},{"id":1268,"kind":1024,"name":"rotation","url":"classes/CommandLoop.html#rotation","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"CommandLoop"},{"id":1269,"kind":1024,"name":"color","url":"classes/CommandLoop.html#color","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"CommandLoop"},{"id":1270,"kind":1024,"name":"alpha","url":"classes/CommandLoop.html#alpha","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"CommandLoop"},{"id":1271,"kind":1024,"name":"blendingParameters","url":"classes/CommandLoop.html#blendingParameters","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"CommandLoop"},{"id":1272,"kind":1024,"name":"flipH","url":"classes/CommandLoop.html#flipH","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"CommandLoop"},{"id":1273,"kind":1024,"name":"flipV","url":"classes/CommandLoop.html#flipV","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"CommandLoop"},{"id":1274,"kind":1024,"name":"_timelines","url":"classes/CommandLoop.html#_timelines","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"CommandLoop"},{"id":1275,"kind":262144,"name":"timelines","url":"classes/CommandLoop.html#timelines","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"CommandLoop"},{"id":1276,"kind":262144,"name":"totalCommands","url":"classes/CommandLoop.html#totalCommands","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"CommandLoop"},{"id":1277,"kind":262144,"name":"commands","url":"classes/CommandLoop.html#commands","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"CommandLoop"},{"id":1278,"kind":262144,"name":"commandsStartTime","url":"classes/CommandLoop.html#commandsStartTime","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"CommandLoop"},{"id":1279,"kind":262144,"name":"commandsEndTime","url":"classes/CommandLoop.html#commandsEndTime","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"CommandLoop"},{"id":1280,"kind":262144,"name":"commandsDuration","url":"classes/CommandLoop.html#commandsDuration","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"CommandLoop"},{"id":1281,"kind":262144,"name":"duration","url":"classes/CommandLoop.html#duration","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"CommandLoop"},{"id":1282,"kind":262144,"name":"hasCommands","url":"classes/CommandLoop.html#hasCommands","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"CommandLoop"},{"id":1283,"kind":128,"name":"CommandTimeline","url":"classes/CommandTimeline.html","classes":"tsd-kind-class tsd-has-type-parameter"},{"id":1284,"kind":512,"name":"constructor","url":"classes/CommandTimeline.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-has-type-parameter","parent":"CommandTimeline"},{"id":1285,"kind":1024,"name":"startTime","url":"classes/CommandTimeline.html#startTime","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CommandTimeline"},{"id":1286,"kind":1024,"name":"endTime","url":"classes/CommandTimeline.html#endTime","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CommandTimeline"},{"id":1287,"kind":1024,"name":"startValue","url":"classes/CommandTimeline.html#startValue","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CommandTimeline"},{"id":1288,"kind":1024,"name":"endValue","url":"classes/CommandTimeline.html#endValue","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CommandTimeline"},{"id":1289,"kind":2048,"name":"[Symbol.iterator]","url":"classes/CommandTimeline.html#_Symbol_iterator_","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CommandTimeline"},{"id":1290,"kind":262144,"name":"commands","url":"classes/CommandTimeline.html#commands","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"CommandTimeline"},{"id":1291,"kind":2048,"name":"add","url":"classes/CommandTimeline.html#add","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CommandTimeline"},{"id":1292,"kind":262144,"name":"hasCommands","url":"classes/CommandTimeline.html#hasCommands","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"CommandTimeline"},{"id":1293,"kind":128,"name":"CommandTimelineGroup","url":"classes/CommandTimelineGroup.html","classes":"tsd-kind-class"},{"id":1294,"kind":512,"name":"constructor","url":"classes/CommandTimelineGroup.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"CommandTimelineGroup"},{"id":1295,"kind":1024,"name":"x","url":"classes/CommandTimelineGroup.html#x","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CommandTimelineGroup"},{"id":1296,"kind":1024,"name":"y","url":"classes/CommandTimelineGroup.html#y","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CommandTimelineGroup"},{"id":1297,"kind":1024,"name":"scale","url":"classes/CommandTimelineGroup.html#scale","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CommandTimelineGroup"},{"id":1298,"kind":1024,"name":"vectorScale","url":"classes/CommandTimelineGroup.html#vectorScale","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CommandTimelineGroup"},{"id":1299,"kind":1024,"name":"rotation","url":"classes/CommandTimelineGroup.html#rotation","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CommandTimelineGroup"},{"id":1300,"kind":1024,"name":"color","url":"classes/CommandTimelineGroup.html#color","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CommandTimelineGroup"},{"id":1301,"kind":1024,"name":"alpha","url":"classes/CommandTimelineGroup.html#alpha","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CommandTimelineGroup"},{"id":1302,"kind":1024,"name":"blendingParameters","url":"classes/CommandTimelineGroup.html#blendingParameters","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CommandTimelineGroup"},{"id":1303,"kind":1024,"name":"flipH","url":"classes/CommandTimelineGroup.html#flipH","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CommandTimelineGroup"},{"id":1304,"kind":1024,"name":"flipV","url":"classes/CommandTimelineGroup.html#flipV","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CommandTimelineGroup"},{"id":1305,"kind":1024,"name":"_timelines","url":"classes/CommandTimelineGroup.html#_timelines","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CommandTimelineGroup"},{"id":1306,"kind":262144,"name":"timelines","url":"classes/CommandTimelineGroup.html#timelines","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"CommandTimelineGroup"},{"id":1307,"kind":262144,"name":"totalCommands","url":"classes/CommandTimelineGroup.html#totalCommands","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"CommandTimelineGroup"},{"id":1308,"kind":262144,"name":"commands","url":"classes/CommandTimelineGroup.html#commands","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"CommandTimelineGroup"},{"id":1309,"kind":262144,"name":"commandsStartTime","url":"classes/CommandTimelineGroup.html#commandsStartTime","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"CommandTimelineGroup"},{"id":1310,"kind":262144,"name":"commandsEndTime","url":"classes/CommandTimelineGroup.html#commandsEndTime","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"CommandTimelineGroup"},{"id":1311,"kind":262144,"name":"commandsDuration","url":"classes/CommandTimelineGroup.html#commandsDuration","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"CommandTimelineGroup"},{"id":1312,"kind":262144,"name":"startTime","url":"classes/CommandTimelineGroup.html#startTime","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"CommandTimelineGroup"},{"id":1313,"kind":262144,"name":"endTime","url":"classes/CommandTimelineGroup.html#endTime","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"CommandTimelineGroup"},{"id":1314,"kind":262144,"name":"duration","url":"classes/CommandTimelineGroup.html#duration","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"CommandTimelineGroup"},{"id":1315,"kind":262144,"name":"hasCommands","url":"classes/CommandTimelineGroup.html#hasCommands","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"CommandTimelineGroup"},{"id":1316,"kind":128,"name":"CommandTrigger","url":"classes/CommandTrigger.html","classes":"tsd-kind-class"},{"id":1317,"kind":512,"name":"constructor","url":"classes/CommandTrigger.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"CommandTrigger"},{"id":1318,"kind":1024,"name":"type","url":"classes/CommandTrigger.html#type","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CommandTrigger"},{"id":1319,"kind":1024,"name":"triggerName","url":"classes/CommandTrigger.html#triggerName","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CommandTrigger"},{"id":1320,"kind":1024,"name":"triggerStartTime","url":"classes/CommandTrigger.html#triggerStartTime","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CommandTrigger"},{"id":1321,"kind":1024,"name":"triggerEndTime","url":"classes/CommandTrigger.html#triggerEndTime","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CommandTrigger"},{"id":1322,"kind":1024,"name":"groupNumber","url":"classes/CommandTrigger.html#groupNumber","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CommandTrigger"},{"id":1323,"kind":2048,"name":"unrollCommands","url":"classes/CommandTrigger.html#unrollCommands","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CommandTrigger"},{"id":1324,"kind":1024,"name":"x","url":"classes/CommandTrigger.html#x","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"CommandTrigger"},{"id":1325,"kind":1024,"name":"y","url":"classes/CommandTrigger.html#y","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"CommandTrigger"},{"id":1326,"kind":1024,"name":"scale","url":"classes/CommandTrigger.html#scale","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"CommandTrigger"},{"id":1327,"kind":1024,"name":"vectorScale","url":"classes/CommandTrigger.html#vectorScale","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"CommandTrigger"},{"id":1328,"kind":1024,"name":"rotation","url":"classes/CommandTrigger.html#rotation","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"CommandTrigger"},{"id":1329,"kind":1024,"name":"color","url":"classes/CommandTrigger.html#color","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"CommandTrigger"},{"id":1330,"kind":1024,"name":"alpha","url":"classes/CommandTrigger.html#alpha","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"CommandTrigger"},{"id":1331,"kind":1024,"name":"blendingParameters","url":"classes/CommandTrigger.html#blendingParameters","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"CommandTrigger"},{"id":1332,"kind":1024,"name":"flipH","url":"classes/CommandTrigger.html#flipH","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"CommandTrigger"},{"id":1333,"kind":1024,"name":"flipV","url":"classes/CommandTrigger.html#flipV","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"CommandTrigger"},{"id":1334,"kind":1024,"name":"_timelines","url":"classes/CommandTrigger.html#_timelines","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"CommandTrigger"},{"id":1335,"kind":262144,"name":"timelines","url":"classes/CommandTrigger.html#timelines","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"CommandTrigger"},{"id":1336,"kind":262144,"name":"totalCommands","url":"classes/CommandTrigger.html#totalCommands","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"CommandTrigger"},{"id":1337,"kind":262144,"name":"commands","url":"classes/CommandTrigger.html#commands","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"CommandTrigger"},{"id":1338,"kind":262144,"name":"commandsStartTime","url":"classes/CommandTrigger.html#commandsStartTime","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"CommandTrigger"},{"id":1339,"kind":262144,"name":"commandsEndTime","url":"classes/CommandTrigger.html#commandsEndTime","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"CommandTrigger"},{"id":1340,"kind":262144,"name":"commandsDuration","url":"classes/CommandTrigger.html#commandsDuration","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"CommandTrigger"},{"id":1341,"kind":262144,"name":"startTime","url":"classes/CommandTrigger.html#startTime","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"CommandTrigger"},{"id":1342,"kind":262144,"name":"endTime","url":"classes/CommandTrigger.html#endTime","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"CommandTrigger"},{"id":1343,"kind":262144,"name":"duration","url":"classes/CommandTrigger.html#duration","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"CommandTrigger"},{"id":1344,"kind":262144,"name":"hasCommands","url":"classes/CommandTrigger.html#hasCommands","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"CommandTrigger"},{"id":1345,"kind":4,"name":"Easing","url":"modules/Easing.html","classes":"tsd-kind-namespace"},{"id":1346,"kind":64,"name":"getEasingFn","url":"modules/Easing.html#getEasingFn","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"Easing"},{"id":1347,"kind":4194304,"name":"EasingFn","url":"modules/Easing.html#EasingFn","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"Easing"},{"id":1348,"kind":65536,"name":"__type","url":"modules/Easing.html#EasingFn.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"Easing.EasingFn"},{"id":1349,"kind":64,"name":"linear","url":"modules/Easing.html#linear","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"Easing"},{"id":1350,"kind":64,"name":"inQuad","url":"modules/Easing.html#inQuad","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"Easing"},{"id":1351,"kind":64,"name":"outQuad","url":"modules/Easing.html#outQuad","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"Easing"},{"id":1352,"kind":64,"name":"inOutQuad","url":"modules/Easing.html#inOutQuad","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"Easing"},{"id":1353,"kind":64,"name":"inCubic","url":"modules/Easing.html#inCubic","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"Easing"},{"id":1354,"kind":64,"name":"outCubic","url":"modules/Easing.html#outCubic","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"Easing"},{"id":1355,"kind":64,"name":"inOutCubic","url":"modules/Easing.html#inOutCubic","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"Easing"},{"id":1356,"kind":64,"name":"inQuart","url":"modules/Easing.html#inQuart","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"Easing"},{"id":1357,"kind":64,"name":"outQuart","url":"modules/Easing.html#outQuart","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"Easing"},{"id":1358,"kind":64,"name":"inOutQuart","url":"modules/Easing.html#inOutQuart","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"Easing"},{"id":1359,"kind":64,"name":"inQuint","url":"modules/Easing.html#inQuint","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"Easing"},{"id":1360,"kind":64,"name":"outQuint","url":"modules/Easing.html#outQuint","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"Easing"},{"id":1361,"kind":64,"name":"inOutQuint","url":"modules/Easing.html#inOutQuint","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"Easing"},{"id":1362,"kind":64,"name":"inSine","url":"modules/Easing.html#inSine","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"Easing"},{"id":1363,"kind":64,"name":"outSine","url":"modules/Easing.html#outSine","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"Easing"},{"id":1364,"kind":64,"name":"inOutSine","url":"modules/Easing.html#inOutSine","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"Easing"},{"id":1365,"kind":64,"name":"inExpo","url":"modules/Easing.html#inExpo","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"Easing"},{"id":1366,"kind":64,"name":"outExpo","url":"modules/Easing.html#outExpo","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"Easing"},{"id":1367,"kind":64,"name":"inOutExpo","url":"modules/Easing.html#inOutExpo","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"Easing"},{"id":1368,"kind":64,"name":"inCirc","url":"modules/Easing.html#inCirc","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"Easing"},{"id":1369,"kind":64,"name":"outCirc","url":"modules/Easing.html#outCirc","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"Easing"},{"id":1370,"kind":64,"name":"inOutCirc","url":"modules/Easing.html#inOutCirc","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"Easing"},{"id":1371,"kind":64,"name":"inElastic","url":"modules/Easing.html#inElastic","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"Easing"},{"id":1372,"kind":64,"name":"outElastic","url":"modules/Easing.html#outElastic","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"Easing"},{"id":1373,"kind":64,"name":"outElasticHalf","url":"modules/Easing.html#outElasticHalf","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"Easing"},{"id":1374,"kind":64,"name":"outElasticQuarter","url":"modules/Easing.html#outElasticQuarter","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"Easing"},{"id":1375,"kind":64,"name":"inOutElastic","url":"modules/Easing.html#inOutElastic","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"Easing"},{"id":1376,"kind":64,"name":"inBack","url":"modules/Easing.html#inBack","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"Easing"},{"id":1377,"kind":64,"name":"outBack","url":"modules/Easing.html#outBack","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"Easing"},{"id":1378,"kind":64,"name":"inOutBack","url":"modules/Easing.html#inOutBack","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"Easing"},{"id":1379,"kind":64,"name":"inBounce","url":"modules/Easing.html#inBounce","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"Easing"},{"id":1380,"kind":64,"name":"outBounce","url":"modules/Easing.html#outBounce","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"Easing"},{"id":1381,"kind":64,"name":"inOutBounce","url":"modules/Easing.html#inOutBounce","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"Easing"},{"id":1382,"kind":64,"name":"outPow10","url":"modules/Easing.html#outPow10","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"Easing"},{"id":1383,"kind":8,"name":"EasingType","url":"enums/EasingType.html","classes":"tsd-kind-enum"},{"id":1384,"kind":16,"name":"None","url":"enums/EasingType.html#None","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EasingType"},{"id":1385,"kind":16,"name":"Out","url":"enums/EasingType.html#Out","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EasingType"},{"id":1386,"kind":16,"name":"In","url":"enums/EasingType.html#In","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EasingType"},{"id":1387,"kind":16,"name":"InQuad","url":"enums/EasingType.html#InQuad","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EasingType"},{"id":1388,"kind":16,"name":"OutQuad","url":"enums/EasingType.html#OutQuad","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EasingType"},{"id":1389,"kind":16,"name":"InOutQuad","url":"enums/EasingType.html#InOutQuad","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EasingType"},{"id":1390,"kind":16,"name":"InCubic","url":"enums/EasingType.html#InCubic","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EasingType"},{"id":1391,"kind":16,"name":"OutCubic","url":"enums/EasingType.html#OutCubic","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EasingType"},{"id":1392,"kind":16,"name":"InOutCubic","url":"enums/EasingType.html#InOutCubic","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EasingType"},{"id":1393,"kind":16,"name":"InQuart","url":"enums/EasingType.html#InQuart","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EasingType"},{"id":1394,"kind":16,"name":"OutQuart","url":"enums/EasingType.html#OutQuart","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EasingType"},{"id":1395,"kind":16,"name":"InOutQuart","url":"enums/EasingType.html#InOutQuart","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EasingType"},{"id":1396,"kind":16,"name":"InQuint","url":"enums/EasingType.html#InQuint","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EasingType"},{"id":1397,"kind":16,"name":"OutQuint","url":"enums/EasingType.html#OutQuint","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EasingType"},{"id":1398,"kind":16,"name":"InOutQuint","url":"enums/EasingType.html#InOutQuint","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EasingType"},{"id":1399,"kind":16,"name":"InSine","url":"enums/EasingType.html#InSine","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EasingType"},{"id":1400,"kind":16,"name":"OutSine","url":"enums/EasingType.html#OutSine","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EasingType"},{"id":1401,"kind":16,"name":"InOutSine","url":"enums/EasingType.html#InOutSine","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EasingType"},{"id":1402,"kind":16,"name":"InExpo","url":"enums/EasingType.html#InExpo","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EasingType"},{"id":1403,"kind":16,"name":"OutExpo","url":"enums/EasingType.html#OutExpo","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EasingType"},{"id":1404,"kind":16,"name":"InOutExpo","url":"enums/EasingType.html#InOutExpo","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EasingType"},{"id":1405,"kind":16,"name":"InCirc","url":"enums/EasingType.html#InCirc","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EasingType"},{"id":1406,"kind":16,"name":"OutCirc","url":"enums/EasingType.html#OutCirc","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EasingType"},{"id":1407,"kind":16,"name":"InOutCirc","url":"enums/EasingType.html#InOutCirc","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EasingType"},{"id":1408,"kind":16,"name":"InElastic","url":"enums/EasingType.html#InElastic","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EasingType"},{"id":1409,"kind":16,"name":"OutElastic","url":"enums/EasingType.html#OutElastic","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EasingType"},{"id":1410,"kind":16,"name":"OutElasticHalf","url":"enums/EasingType.html#OutElasticHalf","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EasingType"},{"id":1411,"kind":16,"name":"OutElasticQuarter","url":"enums/EasingType.html#OutElasticQuarter","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EasingType"},{"id":1412,"kind":16,"name":"InOutElastic","url":"enums/EasingType.html#InOutElastic","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EasingType"},{"id":1413,"kind":16,"name":"InBack","url":"enums/EasingType.html#InBack","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EasingType"},{"id":1414,"kind":16,"name":"OutBack","url":"enums/EasingType.html#OutBack","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EasingType"},{"id":1415,"kind":16,"name":"InOutBack","url":"enums/EasingType.html#InOutBack","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EasingType"},{"id":1416,"kind":16,"name":"InBounce","url":"enums/EasingType.html#InBounce","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EasingType"},{"id":1417,"kind":16,"name":"OutBounce","url":"enums/EasingType.html#OutBounce","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EasingType"},{"id":1418,"kind":16,"name":"InOutBounce","url":"enums/EasingType.html#InOutBounce","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EasingType"},{"id":1419,"kind":16,"name":"OutPow10","url":"enums/EasingType.html#OutPow10","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EasingType"},{"id":1420,"kind":128,"name":"StoryboardAnimation","url":"classes/StoryboardAnimation.html","classes":"tsd-kind-class"},{"id":1421,"kind":512,"name":"constructor","url":"classes/StoryboardAnimation.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"StoryboardAnimation"},{"id":1422,"kind":1024,"name":"frameCount","url":"classes/StoryboardAnimation.html#frameCount","classes":"tsd-kind-property tsd-parent-kind-class","parent":"StoryboardAnimation"},{"id":1423,"kind":1024,"name":"frameDelay","url":"classes/StoryboardAnimation.html#frameDelay","classes":"tsd-kind-property tsd-parent-kind-class","parent":"StoryboardAnimation"},{"id":1424,"kind":1024,"name":"loopType","url":"classes/StoryboardAnimation.html#loopType","classes":"tsd-kind-property tsd-parent-kind-class","parent":"StoryboardAnimation"},{"id":1425,"kind":1024,"name":"origin","url":"classes/StoryboardAnimation.html#origin","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"StoryboardAnimation"},{"id":1426,"kind":1024,"name":"anchor","url":"classes/StoryboardAnimation.html#anchor","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"StoryboardAnimation"},{"id":1427,"kind":1024,"name":"startTime","url":"classes/StoryboardAnimation.html#startTime","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"StoryboardAnimation"},{"id":1428,"kind":1024,"name":"endTime","url":"classes/StoryboardAnimation.html#endTime","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"StoryboardAnimation"},{"id":1429,"kind":1024,"name":"filePath","url":"classes/StoryboardAnimation.html#filePath","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"StoryboardAnimation"},{"id":1430,"kind":1024,"name":"commands","url":"classes/StoryboardAnimation.html#commands","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"StoryboardAnimation"},{"id":1431,"kind":1024,"name":"timelineGroup","url":"classes/StoryboardAnimation.html#timelineGroup","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"StoryboardAnimation"},{"id":1432,"kind":1024,"name":"loops","url":"classes/StoryboardAnimation.html#loops","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"StoryboardAnimation"},{"id":1433,"kind":1024,"name":"triggers","url":"classes/StoryboardAnimation.html#triggers","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"StoryboardAnimation"},{"id":1434,"kind":1024,"name":"startPosition","url":"classes/StoryboardAnimation.html#startPosition","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"StoryboardAnimation"},{"id":1435,"kind":1024,"name":"scale","url":"classes/StoryboardAnimation.html#scale","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"StoryboardAnimation"},{"id":1436,"kind":1024,"name":"color","url":"classes/StoryboardAnimation.html#color","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"StoryboardAnimation"},{"id":1437,"kind":1024,"name":"rotation","url":"classes/StoryboardAnimation.html#rotation","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"StoryboardAnimation"},{"id":1438,"kind":1024,"name":"flipX","url":"classes/StoryboardAnimation.html#flipX","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"StoryboardAnimation"},{"id":1439,"kind":1024,"name":"flipY","url":"classes/StoryboardAnimation.html#flipY","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"StoryboardAnimation"},{"id":1440,"kind":1024,"name":"isAdditive","url":"classes/StoryboardAnimation.html#isAdditive","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"StoryboardAnimation"},{"id":1441,"kind":262144,"name":"startX","url":"classes/StoryboardAnimation.html#startX","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"StoryboardAnimation"},{"id":1442,"kind":262144,"name":"startY","url":"classes/StoryboardAnimation.html#startY","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"StoryboardAnimation"},{"id":1443,"kind":262144,"name":"duration","url":"classes/StoryboardAnimation.html#duration","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"StoryboardAnimation"},{"id":1444,"kind":262144,"name":"hasCommands","url":"classes/StoryboardAnimation.html#hasCommands","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"StoryboardAnimation"},{"id":1445,"kind":262144,"name":"isDrawable","url":"classes/StoryboardAnimation.html#isDrawable","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"StoryboardAnimation"},{"id":1446,"kind":2048,"name":"addLoop","url":"classes/StoryboardAnimation.html#addLoop","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"StoryboardAnimation"},{"id":1447,"kind":2048,"name":"addTrigger","url":"classes/StoryboardAnimation.html#addTrigger","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"StoryboardAnimation"},{"id":1448,"kind":2048,"name":"updateCommands","url":"classes/StoryboardAnimation.html#updateCommands","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"StoryboardAnimation"},{"id":1449,"kind":2048,"name":"adjustTimesToCommands","url":"classes/StoryboardAnimation.html#adjustTimesToCommands","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"StoryboardAnimation"},{"id":1450,"kind":2048,"name":"resetValuesToCommands","url":"classes/StoryboardAnimation.html#resetValuesToCommands","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"StoryboardAnimation"},{"id":1451,"kind":2048,"name":"setValueFromCommand","url":"classes/StoryboardAnimation.html#setValueFromCommand","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"StoryboardAnimation"},{"id":1452,"kind":128,"name":"StoryboardSample","url":"classes/StoryboardSample.html","classes":"tsd-kind-class"},{"id":1453,"kind":512,"name":"constructor","url":"classes/StoryboardSample.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"StoryboardSample"},{"id":1454,"kind":1024,"name":"startTime","url":"classes/StoryboardSample.html#startTime","classes":"tsd-kind-property tsd-parent-kind-class","parent":"StoryboardSample"},{"id":1455,"kind":1024,"name":"volume","url":"classes/StoryboardSample.html#volume","classes":"tsd-kind-property tsd-parent-kind-class","parent":"StoryboardSample"},{"id":1456,"kind":1024,"name":"filePath","url":"classes/StoryboardSample.html#filePath","classes":"tsd-kind-property tsd-parent-kind-class","parent":"StoryboardSample"},{"id":1457,"kind":262144,"name":"isDrawable","url":"classes/StoryboardSample.html#isDrawable","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"StoryboardSample"},{"id":1458,"kind":128,"name":"StoryboardSprite","url":"classes/StoryboardSprite.html","classes":"tsd-kind-class"},{"id":1459,"kind":512,"name":"constructor","url":"classes/StoryboardSprite.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"StoryboardSprite"},{"id":1460,"kind":1024,"name":"origin","url":"classes/StoryboardSprite.html#origin","classes":"tsd-kind-property tsd-parent-kind-class","parent":"StoryboardSprite"},{"id":1461,"kind":1024,"name":"anchor","url":"classes/StoryboardSprite.html#anchor","classes":"tsd-kind-property tsd-parent-kind-class","parent":"StoryboardSprite"},{"id":1462,"kind":1024,"name":"startTime","url":"classes/StoryboardSprite.html#startTime","classes":"tsd-kind-property tsd-parent-kind-class","parent":"StoryboardSprite"},{"id":1463,"kind":1024,"name":"endTime","url":"classes/StoryboardSprite.html#endTime","classes":"tsd-kind-property tsd-parent-kind-class","parent":"StoryboardSprite"},{"id":1464,"kind":1024,"name":"filePath","url":"classes/StoryboardSprite.html#filePath","classes":"tsd-kind-property tsd-parent-kind-class","parent":"StoryboardSprite"},{"id":1465,"kind":1024,"name":"commands","url":"classes/StoryboardSprite.html#commands","classes":"tsd-kind-property tsd-parent-kind-class","parent":"StoryboardSprite"},{"id":1466,"kind":1024,"name":"timelineGroup","url":"classes/StoryboardSprite.html#timelineGroup","classes":"tsd-kind-property tsd-parent-kind-class","parent":"StoryboardSprite"},{"id":1467,"kind":1024,"name":"loops","url":"classes/StoryboardSprite.html#loops","classes":"tsd-kind-property tsd-parent-kind-class","parent":"StoryboardSprite"},{"id":1468,"kind":1024,"name":"triggers","url":"classes/StoryboardSprite.html#triggers","classes":"tsd-kind-property tsd-parent-kind-class","parent":"StoryboardSprite"},{"id":1469,"kind":1024,"name":"startPosition","url":"classes/StoryboardSprite.html#startPosition","classes":"tsd-kind-property tsd-parent-kind-class","parent":"StoryboardSprite"},{"id":1470,"kind":1024,"name":"scale","url":"classes/StoryboardSprite.html#scale","classes":"tsd-kind-property tsd-parent-kind-class","parent":"StoryboardSprite"},{"id":1471,"kind":1024,"name":"color","url":"classes/StoryboardSprite.html#color","classes":"tsd-kind-property tsd-parent-kind-class","parent":"StoryboardSprite"},{"id":1472,"kind":1024,"name":"rotation","url":"classes/StoryboardSprite.html#rotation","classes":"tsd-kind-property tsd-parent-kind-class","parent":"StoryboardSprite"},{"id":1473,"kind":1024,"name":"flipX","url":"classes/StoryboardSprite.html#flipX","classes":"tsd-kind-property tsd-parent-kind-class","parent":"StoryboardSprite"},{"id":1474,"kind":1024,"name":"flipY","url":"classes/StoryboardSprite.html#flipY","classes":"tsd-kind-property tsd-parent-kind-class","parent":"StoryboardSprite"},{"id":1475,"kind":1024,"name":"isAdditive","url":"classes/StoryboardSprite.html#isAdditive","classes":"tsd-kind-property tsd-parent-kind-class","parent":"StoryboardSprite"},{"id":1476,"kind":262144,"name":"startX","url":"classes/StoryboardSprite.html#startX","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"StoryboardSprite"},{"id":1477,"kind":262144,"name":"startY","url":"classes/StoryboardSprite.html#startY","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"StoryboardSprite"},{"id":1478,"kind":262144,"name":"duration","url":"classes/StoryboardSprite.html#duration","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"StoryboardSprite"},{"id":1479,"kind":262144,"name":"hasCommands","url":"classes/StoryboardSprite.html#hasCommands","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"StoryboardSprite"},{"id":1480,"kind":262144,"name":"isDrawable","url":"classes/StoryboardSprite.html#isDrawable","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"StoryboardSprite"},{"id":1481,"kind":2048,"name":"addLoop","url":"classes/StoryboardSprite.html#addLoop","classes":"tsd-kind-method tsd-parent-kind-class","parent":"StoryboardSprite"},{"id":1482,"kind":2048,"name":"addTrigger","url":"classes/StoryboardSprite.html#addTrigger","classes":"tsd-kind-method tsd-parent-kind-class","parent":"StoryboardSprite"},{"id":1483,"kind":2048,"name":"updateCommands","url":"classes/StoryboardSprite.html#updateCommands","classes":"tsd-kind-method tsd-parent-kind-class","parent":"StoryboardSprite"},{"id":1484,"kind":2048,"name":"adjustTimesToCommands","url":"classes/StoryboardSprite.html#adjustTimesToCommands","classes":"tsd-kind-method tsd-parent-kind-class","parent":"StoryboardSprite"},{"id":1485,"kind":2048,"name":"resetValuesToCommands","url":"classes/StoryboardSprite.html#resetValuesToCommands","classes":"tsd-kind-method tsd-parent-kind-class","parent":"StoryboardSprite"},{"id":1486,"kind":2048,"name":"setValueFromCommand","url":"classes/StoryboardSprite.html#setValueFromCommand","classes":"tsd-kind-method tsd-parent-kind-class","parent":"StoryboardSprite"},{"id":1487,"kind":128,"name":"StoryboardVideo","url":"classes/StoryboardVideo.html","classes":"tsd-kind-class"},{"id":1488,"kind":512,"name":"constructor","url":"classes/StoryboardVideo.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"StoryboardVideo"},{"id":1489,"kind":1024,"name":"startTime","url":"classes/StoryboardVideo.html#startTime","classes":"tsd-kind-property tsd-parent-kind-class","parent":"StoryboardVideo"},{"id":1490,"kind":1024,"name":"filePath","url":"classes/StoryboardVideo.html#filePath","classes":"tsd-kind-property tsd-parent-kind-class","parent":"StoryboardVideo"},{"id":1491,"kind":262144,"name":"isDrawable","url":"classes/StoryboardVideo.html#isDrawable","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"StoryboardVideo"},{"id":1492,"kind":256,"name":"IHasCommands","url":"interfaces/IHasCommands.html","classes":"tsd-kind-interface"},{"id":1493,"kind":1024,"name":"commands","url":"interfaces/IHasCommands.html#commands","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IHasCommands"},{"id":1494,"kind":1024,"name":"timelineGroup","url":"interfaces/IHasCommands.html#timelineGroup","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IHasCommands"},{"id":1495,"kind":1024,"name":"loops","url":"interfaces/IHasCommands.html#loops","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IHasCommands"},{"id":1496,"kind":1024,"name":"triggers","url":"interfaces/IHasCommands.html#triggers","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IHasCommands"},{"id":1497,"kind":2048,"name":"updateCommands","url":"interfaces/IHasCommands.html#updateCommands","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"IHasCommands"},{"id":1498,"kind":1024,"name":"hasCommands","url":"interfaces/IHasCommands.html#hasCommands","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IHasCommands"},{"id":1499,"kind":1024,"name":"startTime","url":"interfaces/IHasCommands.html#startTime","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IHasCommands"},{"id":1500,"kind":1024,"name":"filePath","url":"interfaces/IHasCommands.html#filePath","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IHasCommands"},{"id":1501,"kind":1024,"name":"isDrawable","url":"interfaces/IHasCommands.html#isDrawable","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IHasCommands"},{"id":1502,"kind":256,"name":"IStoryboardElement","url":"interfaces/IStoryboardElement.html","classes":"tsd-kind-interface"},{"id":1503,"kind":1024,"name":"startTime","url":"interfaces/IStoryboardElement.html#startTime","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IStoryboardElement"},{"id":1504,"kind":1024,"name":"filePath","url":"interfaces/IStoryboardElement.html#filePath","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IStoryboardElement"},{"id":1505,"kind":1024,"name":"isDrawable","url":"interfaces/IStoryboardElement.html#isDrawable","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IStoryboardElement"},{"id":1506,"kind":256,"name":"IStoryboardElementWithDuration","url":"interfaces/IStoryboardElementWithDuration.html","classes":"tsd-kind-interface"},{"id":1507,"kind":1024,"name":"endTime","url":"interfaces/IStoryboardElementWithDuration.html#endTime","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IStoryboardElementWithDuration"},{"id":1508,"kind":1024,"name":"duration","url":"interfaces/IStoryboardElementWithDuration.html#duration","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IStoryboardElementWithDuration"},{"id":1509,"kind":1024,"name":"startTime","url":"interfaces/IStoryboardElementWithDuration.html#startTime","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IStoryboardElementWithDuration"},{"id":1510,"kind":1024,"name":"filePath","url":"interfaces/IStoryboardElementWithDuration.html#filePath","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IStoryboardElementWithDuration"},{"id":1511,"kind":1024,"name":"isDrawable","url":"interfaces/IStoryboardElementWithDuration.html#isDrawable","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"IStoryboardElementWithDuration"},{"id":1512,"kind":8,"name":"Anchor","url":"enums/Anchor.html","classes":"tsd-kind-enum"},{"id":1513,"kind":16,"name":"y0","url":"enums/Anchor.html#y0","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"Anchor"},{"id":1514,"kind":16,"name":"y1","url":"enums/Anchor.html#y1","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"Anchor"},{"id":1515,"kind":16,"name":"y2","url":"enums/Anchor.html#y2","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"Anchor"},{"id":1516,"kind":16,"name":"x0","url":"enums/Anchor.html#x0","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"Anchor"},{"id":1517,"kind":16,"name":"x1","url":"enums/Anchor.html#x1","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"Anchor"},{"id":1518,"kind":16,"name":"x2","url":"enums/Anchor.html#x2","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"Anchor"},{"id":1519,"kind":16,"name":"Custom","url":"enums/Anchor.html#Custom","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"Anchor"},{"id":1520,"kind":16,"name":"TopLeft","url":"enums/Anchor.html#TopLeft","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"Anchor"},{"id":1521,"kind":16,"name":"TopCentre","url":"enums/Anchor.html#TopCentre","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"Anchor"},{"id":1522,"kind":16,"name":"TopRight","url":"enums/Anchor.html#TopRight","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"Anchor"},{"id":1523,"kind":16,"name":"CentreLeft","url":"enums/Anchor.html#CentreLeft","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"Anchor"},{"id":1524,"kind":16,"name":"Centre","url":"enums/Anchor.html#Centre","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"Anchor"},{"id":1525,"kind":16,"name":"CentreRight","url":"enums/Anchor.html#CentreRight","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"Anchor"},{"id":1526,"kind":16,"name":"BottomLeft","url":"enums/Anchor.html#BottomLeft","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"Anchor"},{"id":1527,"kind":16,"name":"BottomCentre","url":"enums/Anchor.html#BottomCentre","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"Anchor"},{"id":1528,"kind":16,"name":"BottomRight","url":"enums/Anchor.html#BottomRight","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"Anchor"},{"id":1529,"kind":8,"name":"CommandType","url":"enums/CommandType.html","classes":"tsd-kind-enum"},{"id":1530,"kind":16,"name":"None","url":"enums/CommandType.html#None","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"CommandType"},{"id":1531,"kind":16,"name":"Movement","url":"enums/CommandType.html#Movement","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"CommandType"},{"id":1532,"kind":16,"name":"MovementX","url":"enums/CommandType.html#MovementX","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"CommandType"},{"id":1533,"kind":16,"name":"MovementY","url":"enums/CommandType.html#MovementY","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"CommandType"},{"id":1534,"kind":16,"name":"Fade","url":"enums/CommandType.html#Fade","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"CommandType"},{"id":1535,"kind":16,"name":"Scale","url":"enums/CommandType.html#Scale","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"CommandType"},{"id":1536,"kind":16,"name":"VectorScale","url":"enums/CommandType.html#VectorScale","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"CommandType"},{"id":1537,"kind":16,"name":"Rotation","url":"enums/CommandType.html#Rotation","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"CommandType"},{"id":1538,"kind":16,"name":"Color","url":"enums/CommandType.html#Color","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"CommandType"},{"id":1539,"kind":16,"name":"Parameter","url":"enums/CommandType.html#Parameter","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"CommandType"},{"id":1540,"kind":8,"name":"CompoundType","url":"enums/CompoundType.html","classes":"tsd-kind-enum"},{"id":1541,"kind":16,"name":"None","url":"enums/CompoundType.html#None","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"CompoundType"},{"id":1542,"kind":16,"name":"Loop","url":"enums/CompoundType.html#Loop","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"CompoundType"},{"id":1543,"kind":16,"name":"Trigger","url":"enums/CompoundType.html#Trigger","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"CompoundType"},{"id":1544,"kind":8,"name":"EventType","url":"enums/EventType.html","classes":"tsd-kind-enum"},{"id":1545,"kind":16,"name":"Background","url":"enums/EventType.html#Background","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EventType"},{"id":1546,"kind":16,"name":"Video","url":"enums/EventType.html#Video","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EventType"},{"id":1547,"kind":16,"name":"Break","url":"enums/EventType.html#Break","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EventType"},{"id":1548,"kind":16,"name":"Colour","url":"enums/EventType.html#Colour","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EventType"},{"id":1549,"kind":16,"name":"Sprite","url":"enums/EventType.html#Sprite","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EventType"},{"id":1550,"kind":16,"name":"Sample","url":"enums/EventType.html#Sample","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EventType"},{"id":1551,"kind":16,"name":"Animation","url":"enums/EventType.html#Animation","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EventType"},{"id":1552,"kind":16,"name":"StoryboardCommand","url":"enums/EventType.html#StoryboardCommand","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"EventType"},{"id":1553,"kind":8,"name":"LayerType","url":"enums/LayerType.html","classes":"tsd-kind-enum"},{"id":1554,"kind":16,"name":"Background","url":"enums/LayerType.html#Background","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"LayerType"},{"id":1555,"kind":16,"name":"Fail","url":"enums/LayerType.html#Fail","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"LayerType"},{"id":1556,"kind":16,"name":"Pass","url":"enums/LayerType.html#Pass","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"LayerType"},{"id":1557,"kind":16,"name":"Foreground","url":"enums/LayerType.html#Foreground","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"LayerType"},{"id":1558,"kind":16,"name":"Overlay","url":"enums/LayerType.html#Overlay","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"LayerType"},{"id":1559,"kind":16,"name":"Video","url":"enums/LayerType.html#Video","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"LayerType"},{"id":1560,"kind":8,"name":"LoopType","url":"enums/LoopType.html","classes":"tsd-kind-enum"},{"id":1561,"kind":16,"name":"LoopForever","url":"enums/LoopType.html#LoopForever","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"LoopType"},{"id":1562,"kind":16,"name":"LoopOnce","url":"enums/LoopType.html#LoopOnce","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"LoopType"},{"id":1563,"kind":8,"name":"Origins","url":"enums/Origins.html","classes":"tsd-kind-enum"},{"id":1564,"kind":16,"name":"TopLeft","url":"enums/Origins.html#TopLeft","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"Origins"},{"id":1565,"kind":16,"name":"Centre","url":"enums/Origins.html#Centre","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"Origins"},{"id":1566,"kind":16,"name":"CentreLeft","url":"enums/Origins.html#CentreLeft","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"Origins"},{"id":1567,"kind":16,"name":"TopRight","url":"enums/Origins.html#TopRight","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"Origins"},{"id":1568,"kind":16,"name":"BottomCentre","url":"enums/Origins.html#BottomCentre","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"Origins"},{"id":1569,"kind":16,"name":"TopCentre","url":"enums/Origins.html#TopCentre","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"Origins"},{"id":1570,"kind":16,"name":"Custom","url":"enums/Origins.html#Custom","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"Origins"},{"id":1571,"kind":16,"name":"CentreRight","url":"enums/Origins.html#CentreRight","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"Origins"},{"id":1572,"kind":16,"name":"BottomLeft","url":"enums/Origins.html#BottomLeft","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"Origins"},{"id":1573,"kind":16,"name":"BottomRight","url":"enums/Origins.html#BottomRight","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"Origins"},{"id":1574,"kind":8,"name":"ParameterType","url":"enums/ParameterType.html","classes":"tsd-kind-enum"},{"id":1575,"kind":16,"name":"None","url":"enums/ParameterType.html#None","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ParameterType"},{"id":1576,"kind":16,"name":"HorizontalFlip","url":"enums/ParameterType.html#HorizontalFlip","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ParameterType"},{"id":1577,"kind":16,"name":"VerticalFlip","url":"enums/ParameterType.html#VerticalFlip","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ParameterType"},{"id":1578,"kind":16,"name":"BlendingMode","url":"enums/ParameterType.html#BlendingMode","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ParameterType"},{"id":1579,"kind":128,"name":"Storyboard","url":"classes/Storyboard.html","classes":"tsd-kind-class"},{"id":1580,"kind":512,"name":"constructor","url":"classes/Storyboard.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Storyboard"},{"id":1581,"kind":1024,"name":"variables","url":"classes/Storyboard.html#variables","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Storyboard"},{"id":1582,"kind":1024,"name":"colors","url":"classes/Storyboard.html#colors","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Storyboard"},{"id":1583,"kind":1024,"name":"useSkinSprites","url":"classes/Storyboard.html#useSkinSprites","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Storyboard"},{"id":1584,"kind":1024,"name":"minimumLayerDepth","url":"classes/Storyboard.html#minimumLayerDepth","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Storyboard"},{"id":1585,"kind":1024,"name":"fileFormat","url":"classes/Storyboard.html#fileFormat","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Storyboard"},{"id":1586,"kind":262144,"name":"layers","url":"classes/Storyboard.html#layers","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Storyboard"},{"id":1587,"kind":262144,"name":"hasDrawable","url":"classes/Storyboard.html#hasDrawable","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Storyboard"},{"id":1588,"kind":262144,"name":"hasVariables","url":"classes/Storyboard.html#hasVariables","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Storyboard"},{"id":1589,"kind":262144,"name":"earliestEventTime","url":"classes/Storyboard.html#earliestEventTime","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Storyboard"},{"id":1590,"kind":262144,"name":"latestEventTime","url":"classes/Storyboard.html#latestEventTime","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Storyboard"},{"id":1591,"kind":2048,"name":"addLayer","url":"classes/Storyboard.html#addLayer","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Storyboard"},{"id":1592,"kind":2048,"name":"getLayerByType","url":"classes/Storyboard.html#getLayerByType","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Storyboard"},{"id":1593,"kind":2048,"name":"getLayerByName","url":"classes/Storyboard.html#getLayerByName","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Storyboard"},{"id":1594,"kind":128,"name":"StoryboardLayer","url":"classes/StoryboardLayer.html","classes":"tsd-kind-class"},{"id":1595,"kind":512,"name":"constructor","url":"classes/StoryboardLayer.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"StoryboardLayer"},{"id":1596,"kind":1024,"name":"name","url":"classes/StoryboardLayer.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"StoryboardLayer"},{"id":1597,"kind":1024,"name":"depth","url":"classes/StoryboardLayer.html#depth","classes":"tsd-kind-property tsd-parent-kind-class","parent":"StoryboardLayer"},{"id":1598,"kind":1024,"name":"masking","url":"classes/StoryboardLayer.html#masking","classes":"tsd-kind-property tsd-parent-kind-class","parent":"StoryboardLayer"},{"id":1599,"kind":1024,"name":"visibleWhenPassing","url":"classes/StoryboardLayer.html#visibleWhenPassing","classes":"tsd-kind-property tsd-parent-kind-class","parent":"StoryboardLayer"},{"id":1600,"kind":1024,"name":"visibleWhenFailing","url":"classes/StoryboardLayer.html#visibleWhenFailing","classes":"tsd-kind-property tsd-parent-kind-class","parent":"StoryboardLayer"},{"id":1601,"kind":1024,"name":"elements","url":"classes/StoryboardLayer.html#elements","classes":"tsd-kind-property tsd-parent-kind-class","parent":"StoryboardLayer"},{"id":1602,"kind":128,"name":"Color4","url":"classes/Color4.html","classes":"tsd-kind-class"},{"id":1603,"kind":512,"name":"constructor","url":"classes/Color4.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Color4"},{"id":1604,"kind":1024,"name":"red","url":"classes/Color4.html#red","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Color4"},{"id":1605,"kind":1024,"name":"green","url":"classes/Color4.html#green","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Color4"},{"id":1606,"kind":1024,"name":"blue","url":"classes/Color4.html#blue","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Color4"},{"id":1607,"kind":1024,"name":"alpha","url":"classes/Color4.html#alpha","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Color4"},{"id":1608,"kind":262144,"name":"hex","url":"classes/Color4.html#hex","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Color4"},{"id":1609,"kind":2048,"name":"equals","url":"classes/Color4.html#equals","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Color4"},{"id":1610,"kind":2048,"name":"clone","url":"classes/Color4.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Color4"},{"id":1611,"kind":2048,"name":"toString","url":"classes/Color4.html#toString","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Color4"},{"id":1612,"kind":128,"name":"Vector2","url":"classes/Vector2.html","classes":"tsd-kind-class"},{"id":1613,"kind":512,"name":"constructor","url":"classes/Vector2.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Vector2"},{"id":1614,"kind":1024,"name":"x","url":"classes/Vector2.html#x","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Vector2"},{"id":1615,"kind":1024,"name":"y","url":"classes/Vector2.html#y","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Vector2"},{"id":1616,"kind":262144,"name":"floatX","url":"classes/Vector2.html#floatX","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Vector2"},{"id":1617,"kind":262144,"name":"floatY","url":"classes/Vector2.html#floatY","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Vector2"},{"id":1618,"kind":2048,"name":"add","url":"classes/Vector2.html#add","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vector2"},{"id":1619,"kind":2048,"name":"fadd","url":"classes/Vector2.html#fadd","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vector2"},{"id":1620,"kind":2048,"name":"subtract","url":"classes/Vector2.html#subtract","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vector2"},{"id":1621,"kind":2048,"name":"fsubtract","url":"classes/Vector2.html#fsubtract","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vector2"},{"id":1622,"kind":2048,"name":"scale","url":"classes/Vector2.html#scale","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vector2"},{"id":1623,"kind":2048,"name":"fscale","url":"classes/Vector2.html#fscale","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vector2"},{"id":1624,"kind":2048,"name":"divide","url":"classes/Vector2.html#divide","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vector2"},{"id":1625,"kind":2048,"name":"fdivide","url":"classes/Vector2.html#fdivide","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vector2"},{"id":1626,"kind":2048,"name":"dot","url":"classes/Vector2.html#dot","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vector2"},{"id":1627,"kind":2048,"name":"fdot","url":"classes/Vector2.html#fdot","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vector2"},{"id":1628,"kind":2048,"name":"length","url":"classes/Vector2.html#length","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vector2"},{"id":1629,"kind":2048,"name":"flength","url":"classes/Vector2.html#flength","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vector2"},{"id":1630,"kind":2048,"name":"distance","url":"classes/Vector2.html#distance","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vector2"},{"id":1631,"kind":2048,"name":"fdistance","url":"classes/Vector2.html#fdistance","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vector2"},{"id":1632,"kind":2048,"name":"normalize","url":"classes/Vector2.html#normalize","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vector2"},{"id":1633,"kind":2048,"name":"fnormalize","url":"classes/Vector2.html#fnormalize","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vector2"},{"id":1634,"kind":2048,"name":"equals","url":"classes/Vector2.html#equals","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vector2"},{"id":1635,"kind":2048,"name":"clone","url":"classes/Vector2.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vector2"},{"id":1636,"kind":2048,"name":"toString","url":"classes/Vector2.html#toString","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Vector2"},{"id":1637,"kind":256,"name":"IUserInfo","url":"interfaces/IUserInfo.html","classes":"tsd-kind-interface"},{"id":1638,"kind":1024,"name":"countryCode","url":"interfaces/IUserInfo.html#countryCode","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IUserInfo"},{"id":1639,"kind":1024,"name":"id","url":"interfaces/IUserInfo.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IUserInfo"},{"id":1640,"kind":1024,"name":"isActive","url":"interfaces/IUserInfo.html#isActive","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IUserInfo"},{"id":1641,"kind":1024,"name":"isBot","url":"interfaces/IUserInfo.html#isBot","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IUserInfo"},{"id":1642,"kind":1024,"name":"isDeleted","url":"interfaces/IUserInfo.html#isDeleted","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IUserInfo"},{"id":1643,"kind":1024,"name":"isOnline","url":"interfaces/IUserInfo.html#isOnline","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IUserInfo"},{"id":1644,"kind":1024,"name":"isSupporter","url":"interfaces/IUserInfo.html#isSupporter","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IUserInfo"},{"id":1645,"kind":1024,"name":"lastVisitAt","url":"interfaces/IUserInfo.html#lastVisitAt","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IUserInfo"},{"id":1646,"kind":1024,"name":"username","url":"interfaces/IUserInfo.html#username","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IUserInfo"},{"id":1647,"kind":1024,"name":"playmode","url":"interfaces/IUserInfo.html#playmode","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IUserInfo"},{"id":1648,"kind":1024,"name":"totalPerformance","url":"interfaces/IUserInfo.html#totalPerformance","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IUserInfo"},{"id":1649,"kind":1024,"name":"globalRank","url":"interfaces/IUserInfo.html#globalRank","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IUserInfo"},{"id":1650,"kind":1024,"name":"countryRank","url":"interfaces/IUserInfo.html#countryRank","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"IUserInfo"},{"id":1651,"kind":128,"name":"UserInfo","url":"classes/UserInfo.html","classes":"tsd-kind-class"},{"id":1652,"kind":512,"name":"constructor","url":"classes/UserInfo.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"UserInfo"},{"id":1653,"kind":1024,"name":"countryCode","url":"classes/UserInfo.html#countryCode","classes":"tsd-kind-property tsd-parent-kind-class","parent":"UserInfo"},{"id":1654,"kind":1024,"name":"id","url":"classes/UserInfo.html#id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"UserInfo"},{"id":1655,"kind":1024,"name":"isActive","url":"classes/UserInfo.html#isActive","classes":"tsd-kind-property tsd-parent-kind-class","parent":"UserInfo"},{"id":1656,"kind":1024,"name":"isBot","url":"classes/UserInfo.html#isBot","classes":"tsd-kind-property tsd-parent-kind-class","parent":"UserInfo"},{"id":1657,"kind":1024,"name":"isDeleted","url":"classes/UserInfo.html#isDeleted","classes":"tsd-kind-property tsd-parent-kind-class","parent":"UserInfo"},{"id":1658,"kind":1024,"name":"isOnline","url":"classes/UserInfo.html#isOnline","classes":"tsd-kind-property tsd-parent-kind-class","parent":"UserInfo"},{"id":1659,"kind":1024,"name":"isSupporter","url":"classes/UserInfo.html#isSupporter","classes":"tsd-kind-property tsd-parent-kind-class","parent":"UserInfo"},{"id":1660,"kind":1024,"name":"lastVisitAt","url":"classes/UserInfo.html#lastVisitAt","classes":"tsd-kind-property tsd-parent-kind-class","parent":"UserInfo"},{"id":1661,"kind":1024,"name":"username","url":"classes/UserInfo.html#username","classes":"tsd-kind-property tsd-parent-kind-class","parent":"UserInfo"},{"id":1662,"kind":1024,"name":"playmode","url":"classes/UserInfo.html#playmode","classes":"tsd-kind-property tsd-parent-kind-class","parent":"UserInfo"},{"id":1663,"kind":1024,"name":"totalPerformance","url":"classes/UserInfo.html#totalPerformance","classes":"tsd-kind-property tsd-parent-kind-class","parent":"UserInfo"},{"id":1664,"kind":1024,"name":"globalRank","url":"classes/UserInfo.html#globalRank","classes":"tsd-kind-property tsd-parent-kind-class","parent":"UserInfo"},{"id":1665,"kind":1024,"name":"countryRank","url":"classes/UserInfo.html#countryRank","classes":"tsd-kind-property tsd-parent-kind-class","parent":"UserInfo"},{"id":1666,"kind":2048,"name":"clone","url":"classes/UserInfo.html#clone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"UserInfo"},{"id":1667,"kind":2048,"name":"equals","url":"classes/UserInfo.html#equals","classes":"tsd-kind-method tsd-parent-kind-class","parent":"UserInfo"},{"id":1668,"kind":4,"name":"BinarySearch","url":"modules/BinarySearch.html","classes":"tsd-kind-namespace"},{"id":1669,"kind":64,"name":"findNumber","url":"modules/BinarySearch.html#findNumber","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"BinarySearch"},{"id":1670,"kind":64,"name":"findControlPointIndex","url":"modules/BinarySearch.html#findControlPointIndex","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"BinarySearch"},{"id":1671,"kind":64,"name":"findControlPoint","url":"modules/BinarySearch.html#findControlPoint","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"BinarySearch"},{"id":1672,"kind":64,"name":"findIndex","url":"modules/BinarySearch.html#findIndex","classes":"tsd-kind-function tsd-parent-kind-namespace tsd-has-type-parameter","parent":"BinarySearch"},{"id":1673,"kind":4194304,"name":"BinarySearchPredicate","url":"modules/BinarySearch.html#BinarySearchPredicate","classes":"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter","parent":"BinarySearch"},{"id":1674,"kind":65536,"name":"__type","url":"modules/BinarySearch.html#BinarySearchPredicate.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"BinarySearch.BinarySearchPredicate"},{"id":1675,"kind":4,"name":"Interpolation","url":"modules/Interpolation.html","classes":"tsd-kind-namespace"},{"id":1676,"kind":64,"name":"barycentricWeights","url":"modules/Interpolation.html#barycentricWeights","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"Interpolation"},{"id":1677,"kind":64,"name":"barycentricLagrange","url":"modules/Interpolation.html#barycentricLagrange","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"Interpolation"},{"id":1678,"kind":4,"name":"MathUtils","url":"modules/MathUtils.html","classes":"tsd-kind-namespace"},{"id":1679,"kind":64,"name":"clamp","url":"modules/MathUtils.html#clamp","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"MathUtils"},{"id":1680,"kind":64,"name":"clamp01","url":"modules/MathUtils.html#clamp01","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"MathUtils"},{"id":1681,"kind":64,"name":"map","url":"modules/MathUtils.html#map","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"MathUtils"},{"id":1682,"kind":64,"name":"map01","url":"modules/MathUtils.html#map01","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"MathUtils"},{"id":1683,"kind":64,"name":"lerp","url":"modules/MathUtils.html#lerp","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"MathUtils"},{"id":1684,"kind":64,"name":"lerpClamped01","url":"modules/MathUtils.html#lerpClamped01","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"MathUtils"},{"id":1685,"kind":64,"name":"lerpVector2","url":"modules/MathUtils.html#lerpVector2","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"MathUtils"},{"id":1686,"kind":64,"name":"lerpColor4","url":"modules/MathUtils.html#lerpColor4","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"MathUtils"},{"id":1687,"kind":128,"name":"FastRandom","url":"classes/FastRandom.html","classes":"tsd-kind-class"},{"id":1688,"kind":1024,"name":"MAX_INT32","url":"classes/FastRandom.html#MAX_INT32","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"FastRandom"},{"id":1689,"kind":1024,"name":"MAX_UINT32","url":"classes/FastRandom.html#MAX_UINT32","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"FastRandom"},{"id":1690,"kind":1024,"name":"INT_MASK","url":"classes/FastRandom.html#INT_MASK","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"FastRandom"},{"id":1691,"kind":1024,"name":"INT_TO_REAL","url":"classes/FastRandom.html#INT_TO_REAL","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"FastRandom"},{"id":1692,"kind":512,"name":"constructor","url":"classes/FastRandom.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"FastRandom"},{"id":1693,"kind":2048,"name":"next","url":"classes/FastRandom.html#next","classes":"tsd-kind-method tsd-parent-kind-class","parent":"FastRandom"},{"id":1694,"kind":2048,"name":"nextUInt","url":"classes/FastRandom.html#nextUInt","classes":"tsd-kind-method tsd-parent-kind-class","parent":"FastRandom"},{"id":1695,"kind":2048,"name":"nextInt","url":"classes/FastRandom.html#nextInt","classes":"tsd-kind-method tsd-parent-kind-class","parent":"FastRandom"},{"id":1696,"kind":2048,"name":"nextDouble","url":"classes/FastRandom.html#nextDouble","classes":"tsd-kind-method tsd-parent-kind-class","parent":"FastRandom"},{"id":1697,"kind":2048,"name":"nextBool","url":"classes/FastRandom.html#nextBool","classes":"tsd-kind-method tsd-parent-kind-class","parent":"FastRandom"},{"id":1698,"kind":128,"name":"RoundHelper","url":"classes/RoundHelper.html","classes":"tsd-kind-class"},{"id":1699,"kind":1024,"name":"PRECISION_ERROR","url":"classes/RoundHelper.html#PRECISION_ERROR","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"RoundHelper"},{"id":1700,"kind":2048,"name":"round","url":"classes/RoundHelper.html#round","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"RoundHelper"},{"id":1701,"kind":2048,"name":"roundToEven","url":"classes/RoundHelper.html#roundToEven","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"RoundHelper"},{"id":1702,"kind":2048,"name":"roundAwayFromZero","url":"classes/RoundHelper.html#roundAwayFromZero","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"RoundHelper"},{"id":1703,"kind":2048,"name":"isAtMidPoint","url":"classes/RoundHelper.html#isAtMidPoint","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"RoundHelper"},{"id":1704,"kind":512,"name":"constructor","url":"classes/RoundHelper.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"RoundHelper"},{"id":1705,"kind":128,"name":"SortHelper","url":"classes/SortHelper.html","classes":"tsd-kind-class"},{"id":1706,"kind":2048,"name":"depthSort","url":"classes/SortHelper.html#depthSort","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"SortHelper"},{"id":1707,"kind":2048,"name":"introSort","url":"classes/SortHelper.html#introSort","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"SortHelper"},{"id":1708,"kind":2048,"name":"defaultCompare","url":"classes/SortHelper.html#defaultCompare","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"SortHelper"},{"id":1709,"kind":2048,"name":"toString","url":"classes/SortHelper.html#toString","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"SortHelper"},{"id":1710,"kind":512,"name":"constructor","url":"classes/SortHelper.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"SortHelper"}],"index":{"version":"2.3.9","fields":["name","parent"],"fieldVectors":[["name/0",[0,41.683]],["parent/0",[]],["name/1",[1,30.448]],["parent/1",[0,4.006]],["name/2",[2,61.927]],["parent/2",[0,4.006]],["name/3",[3,59.413]],["parent/3",[0,4.006]],["name/4",[4,59.413]],["parent/4",[0,4.006]],["name/5",[5,59.413]],["parent/5",[0,4.006]],["name/6",[6,59.413]],["parent/6",[0,4.006]],["name/7",[7,57.407]],["parent/7",[0,4.006]],["name/8",[8,59.413]],["parent/8",[0,4.006]],["name/9",[9,55.736]],["parent/9",[0,4.006]],["name/10",[10,59.413]],["parent/10",[0,4.006]],["name/11",[11,57.407]],["parent/11",[0,4.006]],["name/12",[12,65.291]],["parent/12",[0,4.006]],["name/13",[13,59.413]],["parent/13",[0,4.006]],["name/14",[14,54.305]],["parent/14",[0,4.006]],["name/15",[15,51.941]],["parent/15",[0,4.006]],["name/16",[16,65.291]],["parent/16",[0,4.006]],["name/17",[17,54.305]],["parent/17",[0,4.006]],["name/18",[18,54.305]],["parent/18",[0,4.006]],["name/19",[19,61.927]],["parent/19",[0,4.006]],["name/20",[20,54.305]],["parent/20",[0,4.006]],["name/21",[21,59.413]],["parent/21",[0,4.006]],["name/22",[22,39.954]],["parent/22",[0,4.006]],["name/23",[23,55.736]],["parent/23",[]],["name/24",[1,30.448]],["parent/24",[23,5.357]],["name/25",[24,70.4]],["parent/25",[23,5.357]],["name/26",[25,70.4]],["parent/26",[23,5.357]],["name/27",[26,70.4]],["parent/27",[23,5.357]],["name/28",[27,70.4]],["parent/28",[23,5.357]],["name/29",[28,37.691]],["parent/29",[]],["name/30",[1,30.448]],["parent/30",[28,3.623]],["name/31",[29,50.94]],["parent/31",[28,3.623]],["name/32",[30,59.413]],["parent/32",[28,3.623]],["name/33",[31,61.927]],["parent/33",[28,3.623]],["name/34",[32,59.413]],["parent/34",[28,3.623]],["name/35",[33,61.927]],["parent/35",[28,3.623]],["name/36",[34,61.927]],["parent/36",[28,3.623]],["name/37",[35,61.927]],["parent/37",[28,3.623]],["name/38",[36,61.927]],["parent/38",[28,3.623]],["name/39",[37,59.413]],["parent/39",[28,3.623]],["name/40",[38,59.413]],["parent/40",[28,3.623]],["name/41",[39,59.413]],["parent/41",[28,3.623]],["name/42",[40,61.927]],["parent/42",[28,3.623]],["name/43",[41,61.927]],["parent/43",[28,3.623]],["name/44",[42,61.927]],["parent/44",[28,3.623]],["name/45",[43,61.927]],["parent/45",[28,3.623]],["name/46",[15,51.941]],["parent/46",[28,3.623]],["name/47",[17,54.305]],["parent/47",[28,3.623]],["name/48",[18,54.305]],["parent/48",[28,3.623]],["name/49",[20,54.305]],["parent/49",[28,3.623]],["name/50",[44,59.413]],["parent/50",[28,3.623]],["name/51",[45,59.413]],["parent/51",[28,3.623]],["name/52",[46,59.413]],["parent/52",[28,3.623]],["name/53",[47,59.413]],["parent/53",[28,3.623]],["name/54",[48,47.046]],["parent/54",[28,3.623]],["name/55",[49,54.305]],["parent/55",[28,3.623]],["name/56",[50,51.941]],["parent/56",[28,3.623]],["name/57",[51,59.413]],["parent/57",[28,3.623]],["name/58",[52,59.413]],["parent/58",[28,3.623]],["name/59",[53,53.054]],["parent/59",[28,3.623]],["name/60",[54,61.927]],["parent/60",[28,3.623]],["name/61",[55,61.927]],["parent/61",[28,3.623]],["name/62",[56,61.927]],["parent/62",[28,3.623]],["name/63",[57,61.927]],["parent/63",[28,3.623]],["name/64",[58,54.305]],["parent/64",[28,3.623]],["name/65",[22,39.954]],["parent/65",[28,3.623]],["name/66",[59,50.94]],["parent/66",[28,3.623]],["name/67",[60,54.305]],["parent/67",[28,3.623]],["name/68",[61,59.413]],["parent/68",[]],["name/69",[1,30.448]],["parent/69",[61,5.71]],["name/70",[62,70.4]],["parent/70",[61,5.71]],["name/71",[63,70.4]],["parent/71",[61,5.71]],["name/72",[64,53.054]],["parent/72",[]],["name/73",[1,30.448]],["parent/73",[64,5.099]],["name/74",[65,57.407]],["parent/74",[64,5.099]],["name/75",[66,57.407]],["parent/75",[64,5.099]],["name/76",[67,57.407]],["parent/76",[64,5.099]],["name/77",[68,57.407]],["parent/77",[64,5.099]],["name/78",[69,40.277]],["parent/78",[64,5.099]],["name/79",[70,57.407]],["parent/79",[64,5.099]],["name/80",[71,55.736]],["parent/80",[]],["name/81",[1,30.448]],["parent/81",[71,5.357]],["name/82",[9,55.736]],["parent/82",[71,5.357]],["name/83",[69,40.277]],["parent/83",[71,5.357]],["name/84",[72,57.407]],["parent/84",[71,5.357]],["name/85",[73,65.291]],["parent/85",[71,5.357]],["name/86",[74,44.75]],["parent/86",[]],["name/87",[1,30.448]],["parent/87",[74,4.301]],["name/88",[75,70.4]],["parent/88",[74,4.301]],["name/89",[76,70.4]],["parent/89",[74,4.301]],["name/90",[77,70.4]],["parent/90",[74,4.301]],["name/91",[78,70.4]],["parent/91",[74,4.301]],["name/92",[79,70.4]],["parent/92",[74,4.301]],["name/93",[80,70.4]],["parent/93",[74,4.301]],["name/94",[81,70.4]],["parent/94",[74,4.301]],["name/95",[82,70.4]],["parent/95",[74,4.301]],["name/96",[83,70.4]],["parent/96",[74,4.301]],["name/97",[84,70.4]],["parent/97",[74,4.301]],["name/98",[85,70.4]],["parent/98",[74,4.301]],["name/99",[72,57.407]],["parent/99",[74,4.301]],["name/100",[86,70.4]],["parent/100",[74,4.301]],["name/101",[87,70.4]],["parent/101",[74,4.301]],["name/102",[73,65.291]],["parent/102",[74,4.301]],["name/103",[88,61.927]],["parent/103",[74,4.301]],["name/104",[22,39.954]],["parent/104",[74,4.301]],["name/105",[89,47.713]],["parent/105",[]],["name/106",[90,59.413]],["parent/106",[89,4.586]],["name/107",[1,30.448]],["parent/107",[89,4.586]],["name/108",[65,57.407]],["parent/108",[89,4.586]],["name/109",[91,70.4]],["parent/109",[89,4.586]],["name/110",[92,70.4]],["parent/110",[89,4.586]],["name/111",[93,70.4]],["parent/111",[89,4.586]],["name/112",[94,70.4]],["parent/112",[89,4.586]],["name/113",[70,57.407]],["parent/113",[89,4.586]],["name/114",[66,57.407]],["parent/114",[89,4.586]],["name/115",[67,57.407]],["parent/115",[89,4.586]],["name/116",[68,57.407]],["parent/116",[89,4.586]],["name/117",[69,40.277]],["parent/117",[89,4.586]],["name/118",[95,48.427]],["parent/118",[]],["name/119",[90,59.413]],["parent/119",[95,4.654]],["name/120",[1,30.448]],["parent/120",[95,4.654]],["name/121",[65,57.407]],["parent/121",[95,4.654]],["name/122",[96,61.927]],["parent/122",[95,4.654]],["name/123",[97,65.291]],["parent/123",[95,4.654]],["name/124",[98,70.4]],["parent/124",[95,4.654]],["name/125",[70,57.407]],["parent/125",[95,4.654]],["name/126",[66,57.407]],["parent/126",[95,4.654]],["name/127",[67,57.407]],["parent/127",[95,4.654]],["name/128",[68,57.407]],["parent/128",[95,4.654]],["name/129",[69,40.277]],["parent/129",[95,4.654]],["name/130",[99,48.427]],["parent/130",[]],["name/131",[90,59.413]],["parent/131",[99,4.654]],["name/132",[1,30.448]],["parent/132",[99,4.654]],["name/133",[65,57.407]],["parent/133",[99,4.654]],["name/134",[100,53.054]],["parent/134",[99,4.654]],["name/135",[101,61.927]],["parent/135",[99,4.654]],["name/136",[102,59.413]],["parent/136",[99,4.654]],["name/137",[70,57.407]],["parent/137",[99,4.654]],["name/138",[66,57.407]],["parent/138",[99,4.654]],["name/139",[67,57.407]],["parent/139",[99,4.654]],["name/140",[68,57.407]],["parent/140",[99,4.654]],["name/141",[69,40.277]],["parent/141",[99,4.654]],["name/142",[103,48.427]],["parent/142",[]],["name/143",[90,59.413]],["parent/143",[103,4.654]],["name/144",[1,30.448]],["parent/144",[103,4.654]],["name/145",[65,57.407]],["parent/145",[103,4.654]],["name/146",[104,70.4]],["parent/146",[103,4.654]],["name/147",[105,59.413]],["parent/147",[103,4.654]],["name/148",[19,61.927]],["parent/148",[103,4.654]],["name/149",[70,57.407]],["parent/149",[103,4.654]],["name/150",[66,57.407]],["parent/150",[103,4.654]],["name/151",[67,57.407]],["parent/151",[103,4.654]],["name/152",[68,57.407]],["parent/152",[103,4.654]],["name/153",[69,40.277]],["parent/153",[103,4.654]],["name/154",[106,57.407]],["parent/154",[]],["name/155",[103,48.427]],["parent/155",[106,5.517]],["name/156",[89,47.713]],["parent/156",[106,5.517]],["name/157",[95,48.427]],["parent/157",[106,5.517]],["name/158",[99,48.427]],["parent/158",[106,5.517]],["name/159",[107,59.413]],["parent/159",[]],["name/160",[108,49.197]],["parent/160",[107,5.71]],["name/161",[96,61.927]],["parent/161",[107,5.71]],["name/162",[97,65.291]],["parent/162",[107,5.71]],["name/163",[105,59.413]],["parent/163",[]],["name/164",[109,70.4]],["parent/164",[105,5.71]],["name/165",[110,70.4]],["parent/165",[105,5.71]],["name/166",[111,54.305]],["parent/166",[]],["name/167",[1,30.448]],["parent/167",[111,5.219]],["name/168",[69,40.277]],["parent/168",[111,5.219]],["name/169",[112,45.276]],["parent/169",[111,5.219]],["name/170",[113,46.421]],["parent/170",[111,5.219]],["name/171",[114,70.4]],["parent/171",[111,5.219]],["name/172",[115,70.4]],["parent/172",[111,5.219]],["name/173",[116,44.75]],["parent/173",[]],["name/174",[2,61.927]],["parent/174",[116,4.301]],["name/175",[3,59.413]],["parent/175",[116,4.301]],["name/176",[4,59.413]],["parent/176",[116,4.301]],["name/177",[5,59.413]],["parent/177",[116,4.301]],["name/178",[6,59.413]],["parent/178",[116,4.301]],["name/179",[7,57.407]],["parent/179",[116,4.301]],["name/180",[8,59.413]],["parent/180",[116,4.301]],["name/181",[9,55.736]],["parent/181",[116,4.301]],["name/182",[10,59.413]],["parent/182",[116,4.301]],["name/183",[14,54.305]],["parent/183",[116,4.301]],["name/184",[13,59.413]],["parent/184",[116,4.301]],["name/185",[11,57.407]],["parent/185",[116,4.301]],["name/186",[15,51.941]],["parent/186",[116,4.301]],["name/187",[17,54.305]],["parent/187",[116,4.301]],["name/188",[18,54.305]],["parent/188",[116,4.301]],["name/189",[20,54.305]],["parent/189",[116,4.301]],["name/190",[21,59.413]],["parent/190",[116,4.301]],["name/191",[22,39.954]],["parent/191",[116,4.301]],["name/192",[117,38.481]],["parent/192",[]],["name/193",[29,50.94]],["parent/193",[117,3.698]],["name/194",[30,59.413]],["parent/194",[117,3.698]],["name/195",[31,61.927]],["parent/195",[117,3.698]],["name/196",[32,59.413]],["parent/196",[117,3.698]],["name/197",[33,61.927]],["parent/197",[117,3.698]],["name/198",[34,61.927]],["parent/198",[117,3.698]],["name/199",[35,61.927]],["parent/199",[117,3.698]],["name/200",[36,61.927]],["parent/200",[117,3.698]],["name/201",[37,59.413]],["parent/201",[117,3.698]],["name/202",[38,59.413]],["parent/202",[117,3.698]],["name/203",[39,59.413]],["parent/203",[117,3.698]],["name/204",[40,61.927]],["parent/204",[117,3.698]],["name/205",[41,61.927]],["parent/205",[117,3.698]],["name/206",[42,61.927]],["parent/206",[117,3.698]],["name/207",[43,61.927]],["parent/207",[117,3.698]],["name/208",[60,54.305]],["parent/208",[117,3.698]],["name/209",[15,51.941]],["parent/209",[117,3.698]],["name/210",[17,54.305]],["parent/210",[117,3.698]],["name/211",[18,54.305]],["parent/211",[117,3.698]],["name/212",[20,54.305]],["parent/212",[117,3.698]],["name/213",[44,59.413]],["parent/213",[117,3.698]],["name/214",[45,59.413]],["parent/214",[117,3.698]],["name/215",[46,59.413]],["parent/215",[117,3.698]],["name/216",[47,59.413]],["parent/216",[117,3.698]],["name/217",[48,47.046]],["parent/217",[117,3.698]],["name/218",[49,54.305]],["parent/218",[117,3.698]],["name/219",[50,51.941]],["parent/219",[117,3.698]],["name/220",[51,59.413]],["parent/220",[117,3.698]],["name/221",[52,59.413]],["parent/221",[117,3.698]],["name/222",[53,53.054]],["parent/222",[117,3.698]],["name/223",[54,61.927]],["parent/223",[117,3.698]],["name/224",[55,61.927]],["parent/224",[117,3.698]],["name/225",[56,61.927]],["parent/225",[117,3.698]],["name/226",[57,61.927]],["parent/226",[117,3.698]],["name/227",[58,54.305]],["parent/227",[117,3.698]],["name/228",[118,70.4]],["parent/228",[]],["name/229",[119,39.045]],["parent/229",[]],["name/230",[50,51.941]],["parent/230",[119,3.753]],["name/231",[29,50.94]],["parent/231",[119,3.753]],["name/232",[30,59.413]],["parent/232",[119,3.753]],["name/233",[31,61.927]],["parent/233",[119,3.753]],["name/234",[32,59.413]],["parent/234",[119,3.753]],["name/235",[33,61.927]],["parent/235",[119,3.753]],["name/236",[34,61.927]],["parent/236",[119,3.753]],["name/237",[35,61.927]],["parent/237",[119,3.753]],["name/238",[36,61.927]],["parent/238",[119,3.753]],["name/239",[37,59.413]],["parent/239",[119,3.753]],["name/240",[38,59.413]],["parent/240",[119,3.753]],["name/241",[39,59.413]],["parent/241",[119,3.753]],["name/242",[40,61.927]],["parent/242",[119,3.753]],["name/243",[41,61.927]],["parent/243",[119,3.753]],["name/244",[42,61.927]],["parent/244",[119,3.753]],["name/245",[43,61.927]],["parent/245",[119,3.753]],["name/246",[60,54.305]],["parent/246",[119,3.753]],["name/247",[15,51.941]],["parent/247",[119,3.753]],["name/248",[17,54.305]],["parent/248",[119,3.753]],["name/249",[18,54.305]],["parent/249",[119,3.753]],["name/250",[20,54.305]],["parent/250",[119,3.753]],["name/251",[44,59.413]],["parent/251",[119,3.753]],["name/252",[45,59.413]],["parent/252",[119,3.753]],["name/253",[46,59.413]],["parent/253",[119,3.753]],["name/254",[47,59.413]],["parent/254",[119,3.753]],["name/255",[49,54.305]],["parent/255",[119,3.753]],["name/256",[52,59.413]],["parent/256",[119,3.753]],["name/257",[53,53.054]],["parent/257",[119,3.753]],["name/258",[54,61.927]],["parent/258",[119,3.753]],["name/259",[55,61.927]],["parent/259",[119,3.753]],["name/260",[56,61.927]],["parent/260",[119,3.753]],["name/261",[57,61.927]],["parent/261",[119,3.753]],["name/262",[58,54.305]],["parent/262",[119,3.753]],["name/263",[120,44.75]],["parent/263",[]],["name/264",[1,30.448]],["parent/264",[120,4.301]],["name/265",[10,59.413]],["parent/265",[120,4.301]],["name/266",[3,59.413]],["parent/266",[120,4.301]],["name/267",[4,59.413]],["parent/267",[120,4.301]],["name/268",[5,59.413]],["parent/268",[120,4.301]],["name/269",[6,59.413]],["parent/269",[120,4.301]],["name/270",[7,57.407]],["parent/270",[120,4.301]],["name/271",[8,59.413]],["parent/271",[120,4.301]],["name/272",[9,55.736]],["parent/272",[120,4.301]],["name/273",[14,54.305]],["parent/273",[120,4.301]],["name/274",[13,59.413]],["parent/274",[120,4.301]],["name/275",[11,57.407]],["parent/275",[120,4.301]],["name/276",[15,51.941]],["parent/276",[120,4.301]],["name/277",[17,54.305]],["parent/277",[120,4.301]],["name/278",[18,54.305]],["parent/278",[120,4.301]],["name/279",[20,54.305]],["parent/279",[120,4.301]],["name/280",[21,59.413]],["parent/280",[120,4.301]],["name/281",[22,39.954]],["parent/281",[120,4.301]],["name/282",[121,42.067]],["parent/282",[]],["name/283",[1,30.448]],["parent/283",[121,4.043]],["name/284",[53,53.054]],["parent/284",[121,4.043]],["name/285",[50,51.941]],["parent/285",[121,4.043]],["name/286",[22,39.954]],["parent/286",[121,4.043]],["name/287",[2,61.927]],["parent/287",[121,4.043]],["name/288",[3,59.413]],["parent/288",[121,4.043]],["name/289",[4,59.413]],["parent/289",[121,4.043]],["name/290",[5,59.413]],["parent/290",[121,4.043]],["name/291",[6,59.413]],["parent/291",[121,4.043]],["name/292",[7,57.407]],["parent/292",[121,4.043]],["name/293",[8,59.413]],["parent/293",[121,4.043]],["name/294",[9,55.736]],["parent/294",[121,4.043]],["name/295",[10,59.413]],["parent/295",[121,4.043]],["name/296",[11,57.407]],["parent/296",[121,4.043]],["name/297",[12,65.291]],["parent/297",[121,4.043]],["name/298",[13,59.413]],["parent/298",[121,4.043]],["name/299",[14,54.305]],["parent/299",[121,4.043]],["name/300",[15,51.941]],["parent/300",[121,4.043]],["name/301",[16,65.291]],["parent/301",[121,4.043]],["name/302",[17,54.305]],["parent/302",[121,4.043]],["name/303",[18,54.305]],["parent/303",[121,4.043]],["name/304",[19,61.927]],["parent/304",[121,4.043]],["name/305",[20,54.305]],["parent/305",[121,4.043]],["name/306",[21,59.413]],["parent/306",[121,4.043]],["name/307",[122,55.736]],["parent/307",[]],["name/308",[1,30.448]],["parent/308",[122,5.357]],["name/309",[123,70.4]],["parent/309",[122,5.357]],["name/310",[124,70.4]],["parent/310",[122,5.357]],["name/311",[125,70.4]],["parent/311",[122,5.357]],["name/312",[22,39.954]],["parent/312",[122,5.357]],["name/313",[126,49.197]],["parent/313",[]],["name/314",[127,70.4]],["parent/314",[126,4.728]],["name/315",[128,70.4]],["parent/315",[126,4.728]],["name/316",[1,30.448]],["parent/316",[126,4.728]],["name/317",[44,59.413]],["parent/317",[126,4.728]],["name/318",[47,59.413]],["parent/318",[126,4.728]],["name/319",[46,59.413]],["parent/319",[126,4.728]],["name/320",[45,59.413]],["parent/320",[126,4.728]],["name/321",[129,70.4]],["parent/321",[126,4.728]],["name/322",[130,70.4]],["parent/322",[126,4.728]],["name/323",[131,70.4]],["parent/323",[126,4.728]],["name/324",[22,39.954]],["parent/324",[126,4.728]],["name/325",[132,53.054]],["parent/325",[]],["name/326",[1,30.448]],["parent/326",[132,5.099]],["name/327",[133,70.4]],["parent/327",[132,5.099]],["name/328",[134,70.4]],["parent/328",[132,5.099]],["name/329",[135,70.4]],["parent/329",[132,5.099]],["name/330",[136,70.4]],["parent/330",[132,5.099]],["name/331",[137,70.4]],["parent/331",[132,5.099]],["name/332",[22,39.954]],["parent/332",[132,5.099]],["name/333",[138,54.305]],["parent/333",[]],["name/334",[1,30.448]],["parent/334",[138,5.219]],["name/335",[139,70.4]],["parent/335",[138,5.219]],["name/336",[140,70.4]],["parent/336",[138,5.219]],["name/337",[141,46.421]],["parent/337",[138,5.219]],["name/338",[142,70.4]],["parent/338",[138,5.219]],["name/339",[22,39.954]],["parent/339",[138,5.219]],["name/340",[143,43.774]],["parent/340",[]],["name/341",[1,30.448]],["parent/341",[143,4.207]],["name/342",[144,70.4]],["parent/342",[143,4.207]],["name/343",[145,70.4]],["parent/343",[143,4.207]],["name/344",[146,70.4]],["parent/344",[143,4.207]],["name/345",[147,70.4]],["parent/345",[143,4.207]],["name/346",[148,70.4]],["parent/346",[143,4.207]],["name/347",[149,70.4]],["parent/347",[143,4.207]],["name/348",[150,70.4]],["parent/348",[143,4.207]],["name/349",[151,70.4]],["parent/349",[143,4.207]],["name/350",[152,70.4]],["parent/350",[143,4.207]],["name/351",[100,53.054]],["parent/351",[143,4.207]],["name/352",[153,70.4]],["parent/352",[143,4.207]],["name/353",[154,70.4]],["parent/353",[143,4.207]],["name/354",[155,65.291]],["parent/354",[143,4.207]],["name/355",[156,70.4]],["parent/355",[143,4.207]],["name/356",[157,70.4]],["parent/356",[143,4.207]],["name/357",[158,70.4]],["parent/357",[143,4.207]],["name/358",[159,70.4]],["parent/358",[143,4.207]],["name/359",[160,70.4]],["parent/359",[143,4.207]],["name/360",[22,39.954]],["parent/360",[143,4.207]],["name/361",[161,48.427]],["parent/361",[]],["name/362",[1,30.448]],["parent/362",[161,4.654]],["name/363",[37,59.413]],["parent/363",[161,4.654]],["name/364",[38,59.413]],["parent/364",[161,4.654]],["name/365",[32,59.413]],["parent/365",[161,4.654]],["name/366",[39,59.413]],["parent/366",[161,4.654]],["name/367",[162,65.291]],["parent/367",[161,4.654]],["name/368",[163,70.4]],["parent/368",[161,4.654]],["name/369",[164,59.413]],["parent/369",[161,4.654]],["name/370",[30,59.413]],["parent/370",[161,4.654]],["name/371",[165,70.4]],["parent/371",[161,4.654]],["name/372",[166,70.4]],["parent/372",[161,4.654]],["name/373",[22,39.954]],["parent/373",[161,4.654]],["name/374",[167,57.407]],["parent/374",[]],["name/375",[1,30.448]],["parent/375",[167,5.517]],["name/376",[50,51.941]],["parent/376",[167,5.517]],["name/377",[52,59.413]],["parent/377",[167,5.517]],["name/378",[53,53.054]],["parent/378",[167,5.517]],["name/379",[168,59.413]],["parent/379",[]],["name/380",[1,30.448]],["parent/380",[168,5.71]],["name/381",[50,51.941]],["parent/381",[168,5.71]],["name/382",[169,61.927]],["parent/382",[168,5.71]],["name/383",[170,57.407]],["parent/383",[]],["name/384",[1,30.448]],["parent/384",[170,5.517]],["name/385",[171,70.4]],["parent/385",[170,5.517]],["name/386",[172,65.291]],["parent/386",[170,5.517]],["name/387",[173,70.4]],["parent/387",[170,5.517]],["name/388",[174,50.94]],["parent/388",[]],["name/389",[1,30.448]],["parent/389",[174,4.896]],["name/390",[175,65.291]],["parent/390",[174,4.896]],["name/391",[176,70.4]],["parent/391",[174,4.896]],["name/392",[177,70.4]],["parent/392",[174,4.896]],["name/393",[178,70.4]],["parent/393",[174,4.896]],["name/394",[179,70.4]],["parent/394",[174,4.896]],["name/395",[180,70.4]],["parent/395",[174,4.896]],["name/396",[181,70.4]],["parent/396",[174,4.896]],["name/397",[182,65.291]],["parent/397",[174,4.896]],["name/398",[183,57.407]],["parent/398",[]],["name/399",[1,30.448]],["parent/399",[183,5.517]],["name/400",[172,65.291]],["parent/400",[183,5.517]],["name/401",[175,65.291]],["parent/401",[183,5.517]],["name/402",[184,70.4]],["parent/402",[183,5.517]],["name/403",[185,50.94]],["parent/403",[]],["name/404",[1,30.448]],["parent/404",[185,4.896]],["name/405",[186,70.4]],["parent/405",[185,4.896]],["name/406",[187,70.4]],["parent/406",[185,4.896]],["name/407",[188,70.4]],["parent/407",[185,4.896]],["name/408",[189,70.4]],["parent/408",[185,4.896]],["name/409",[69,40.277]],["parent/409",[185,4.896]],["name/410",[112,45.276]],["parent/410",[185,4.896]],["name/411",[190,70.4]],["parent/411",[185,4.896]],["name/412",[191,65.291]],["parent/412",[185,4.896]],["name/413",[192,59.413]],["parent/413",[]],["name/414",[1,30.448]],["parent/414",[192,5.71]],["name/415",[193,61.927]],["parent/415",[192,5.71]],["name/416",[194,61.927]],["parent/416",[192,5.71]],["name/417",[195,57.407]],["parent/417",[]],["name/418",[1,30.448]],["parent/418",[195,5.517]],["name/419",[193,61.927]],["parent/419",[195,5.517]],["name/420",[196,65.291]],["parent/420",[195,5.517]],["name/421",[194,61.927]],["parent/421",[195,5.517]],["name/422",[197,57.407]],["parent/422",[]],["name/423",[1,30.448]],["parent/423",[197,5.517]],["name/424",[193,61.927]],["parent/424",[197,5.517]],["name/425",[196,65.291]],["parent/425",[197,5.517]],["name/426",[194,61.927]],["parent/426",[197,5.517]],["name/427",[198,51.941]],["parent/427",[]],["name/428",[1,30.448]],["parent/428",[198,4.992]],["name/429",[199,65.291]],["parent/429",[198,4.992]],["name/430",[200,70.4]],["parent/430",[198,4.992]],["name/431",[88,61.927]],["parent/431",[198,4.992]],["name/432",[201,65.291]],["parent/432",[198,4.992]],["name/433",[202,65.291]],["parent/433",[198,4.992]],["name/434",[203,65.291]],["parent/434",[198,4.992]],["name/435",[204,65.291]],["parent/435",[198,4.992]],["name/436",[205,53.054]],["parent/436",[]],["name/437",[1,30.448]],["parent/437",[205,5.099]],["name/438",[199,65.291]],["parent/438",[205,5.099]],["name/439",[203,65.291]],["parent/439",[205,5.099]],["name/440",[202,65.291]],["parent/440",[205,5.099]],["name/441",[201,65.291]],["parent/441",[205,5.099]],["name/442",[88,61.927]],["parent/442",[205,5.099]],["name/443",[204,65.291]],["parent/443",[205,5.099]],["name/444",[206,38.481]],["parent/444",[]],["name/445",[108,49.197]],["parent/445",[206,3.698]],["name/446",[207,50.94]],["parent/446",[206,3.698]],["name/447",[208,50.031]],["parent/447",[206,3.698]],["name/448",[209,70.4]],["parent/448",[206,3.698]],["name/449",[210,50.94]],["parent/449",[206,3.698]],["name/450",[211,50.031]],["parent/450",[206,3.698]],["name/451",[212,50.94]],["parent/451",[206,3.698]],["name/452",[213,50.031]],["parent/452",[206,3.698]],["name/453",[214,50.94]],["parent/453",[206,3.698]],["name/454",[215,50.031]],["parent/454",[206,3.698]],["name/455",[216,50.031]],["parent/455",[206,3.698]],["name/456",[217,50.94]],["parent/456",[206,3.698]],["name/457",[218,50.94]],["parent/457",[206,3.698]],["name/458",[219,70.4]],["parent/458",[206,3.698]],["name/459",[220,70.4]],["parent/459",[206,3.698]],["name/460",[221,47.046]],["parent/460",[206,3.698]],["name/461",[222,70.4]],["parent/461",[206,3.698]],["name/462",[223,70.4]],["parent/462",[206,3.698]],["name/463",[224,70.4]],["parent/463",[206,3.698]],["name/464",[225,70.4]],["parent/464",[206,3.698]],["name/465",[226,70.4]],["parent/465",[206,3.698]],["name/466",[227,70.4]],["parent/466",[206,3.698]],["name/467",[228,70.4]],["parent/467",[206,3.698]],["name/468",[229,50.94]],["parent/468",[206,3.698]],["name/469",[230,70.4]],["parent/469",[206,3.698]],["name/470",[231,70.4]],["parent/470",[206,3.698]],["name/471",[232,70.4]],["parent/471",[206,3.698]],["name/472",[233,70.4]],["parent/472",[206,3.698]],["name/473",[234,70.4]],["parent/473",[206,3.698]],["name/474",[235,70.4]],["parent/474",[206,3.698]],["name/475",[236,70.4]],["parent/475",[206,3.698]],["name/476",[237,70.4]],["parent/476",[206,3.698]],["name/477",[238,70.4]],["parent/477",[206,3.698]],["name/478",[239,70.4]],["parent/478",[206,3.698]],["name/479",[240,65.291]],["parent/479",[206,3.698]],["name/480",[241,54.305]],["parent/480",[]],["name/481",[242,70.4]],["parent/481",[241,5.219]],["name/482",[240,65.291]],["parent/482",[241,5.219]],["name/483",[243,70.4]],["parent/483",[241,5.219]],["name/484",[244,70.4]],["parent/484",[241,5.219]],["name/485",[245,70.4]],["parent/485",[241,5.219]],["name/486",[246,70.4]],["parent/486",[241,5.219]],["name/487",[247,51.941]],["parent/487",[]],["name/488",[248,70.4]],["parent/488",[247,4.992]],["name/489",[249,44.25]],["parent/489",[247,4.992]],["name/490",[250,44.75]],["parent/490",[247,4.992]],["name/491",[251,44.25]],["parent/491",[247,4.992]],["name/492",[252,42.884]],["parent/492",[247,4.992]],["name/493",[253,44.25]],["parent/493",[247,4.992]],["name/494",[254,44.25]],["parent/494",[247,4.992]],["name/495",[255,44.25]],["parent/495",[247,4.992]],["name/496",[256,51.941]],["parent/496",[]],["name/497",[257,55.736]],["parent/497",[256,4.992]],["name/498",[249,44.25]],["parent/498",[256,4.992]],["name/499",[250,44.75]],["parent/499",[256,4.992]],["name/500",[251,44.25]],["parent/500",[256,4.992]],["name/501",[252,42.884]],["parent/501",[256,4.992]],["name/502",[253,44.25]],["parent/502",[256,4.992]],["name/503",[254,44.25]],["parent/503",[256,4.992]],["name/504",[255,44.25]],["parent/504",[256,4.992]],["name/505",[258,51.941]],["parent/505",[]],["name/506",[259,70.4]],["parent/506",[258,4.992]],["name/507",[249,44.25]],["parent/507",[258,4.992]],["name/508",[250,44.75]],["parent/508",[258,4.992]],["name/509",[251,44.25]],["parent/509",[258,4.992]],["name/510",[252,42.884]],["parent/510",[258,4.992]],["name/511",[253,44.25]],["parent/511",[258,4.992]],["name/512",[254,44.25]],["parent/512",[258,4.992]],["name/513",[255,44.25]],["parent/513",[258,4.992]],["name/514",[260,51.941]],["parent/514",[]],["name/515",[261,61.927]],["parent/515",[260,4.992]],["name/516",[249,44.25]],["parent/516",[260,4.992]],["name/517",[250,44.75]],["parent/517",[260,4.992]],["name/518",[251,44.25]],["parent/518",[260,4.992]],["name/519",[252,42.884]],["parent/519",[260,4.992]],["name/520",[253,44.25]],["parent/520",[260,4.992]],["name/521",[254,44.25]],["parent/521",[260,4.992]],["name/522",[255,44.25]],["parent/522",[260,4.992]],["name/523",[218,50.94]],["parent/523",[]],["name/524",[1,30.448]],["parent/524",[218,4.896]],["name/525",[249,44.25]],["parent/525",[218,4.896]],["name/526",[250,44.75]],["parent/526",[218,4.896]],["name/527",[251,44.25]],["parent/527",[218,4.896]],["name/528",[252,42.884]],["parent/528",[218,4.896]],["name/529",[253,44.25]],["parent/529",[218,4.896]],["name/530",[254,44.25]],["parent/530",[218,4.896]],["name/531",[255,44.25]],["parent/531",[218,4.896]],["name/532",[229,50.94]],["parent/532",[]],["name/533",[1,30.448]],["parent/533",[229,4.896]],["name/534",[249,44.25]],["parent/534",[229,4.896]],["name/535",[250,44.75]],["parent/535",[229,4.896]],["name/536",[251,44.25]],["parent/536",[229,4.896]],["name/537",[252,42.884]],["parent/537",[229,4.896]],["name/538",[253,44.25]],["parent/538",[229,4.896]],["name/539",[254,44.25]],["parent/539",[229,4.896]],["name/540",[255,44.25]],["parent/540",[229,4.896]],["name/541",[213,50.031]],["parent/541",[]],["name/542",[1,30.448]],["parent/542",[213,4.809]],["name/543",[249,44.25]],["parent/543",[213,4.809]],["name/544",[250,44.75]],["parent/544",[213,4.809]],["name/545",[251,44.25]],["parent/545",[213,4.809]],["name/546",[252,42.884]],["parent/546",[213,4.809]],["name/547",[253,44.25]],["parent/547",[213,4.809]],["name/548",[254,44.25]],["parent/548",[213,4.809]],["name/549",[255,44.25]],["parent/549",[213,4.809]],["name/550",[257,55.736]],["parent/550",[213,4.809]],["name/551",[208,50.031]],["parent/551",[]],["name/552",[1,30.448]],["parent/552",[208,4.809]],["name/553",[249,44.25]],["parent/553",[208,4.809]],["name/554",[250,44.75]],["parent/554",[208,4.809]],["name/555",[251,44.25]],["parent/555",[208,4.809]],["name/556",[252,42.884]],["parent/556",[208,4.809]],["name/557",[253,44.25]],["parent/557",[208,4.809]],["name/558",[254,44.25]],["parent/558",[208,4.809]],["name/559",[255,44.25]],["parent/559",[208,4.809]],["name/560",[257,55.736]],["parent/560",[208,4.809]],["name/561",[217,50.94]],["parent/561",[]],["name/562",[1,30.448]],["parent/562",[217,4.896]],["name/563",[249,44.25]],["parent/563",[217,4.896]],["name/564",[250,44.75]],["parent/564",[217,4.896]],["name/565",[251,44.25]],["parent/565",[217,4.896]],["name/566",[252,42.884]],["parent/566",[217,4.896]],["name/567",[253,44.25]],["parent/567",[217,4.896]],["name/568",[254,44.25]],["parent/568",[217,4.896]],["name/569",[255,44.25]],["parent/569",[217,4.896]],["name/570",[215,50.031]],["parent/570",[]],["name/571",[1,30.448]],["parent/571",[215,4.809]],["name/572",[249,44.25]],["parent/572",[215,4.809]],["name/573",[250,44.75]],["parent/573",[215,4.809]],["name/574",[251,44.25]],["parent/574",[215,4.809]],["name/575",[252,42.884]],["parent/575",[215,4.809]],["name/576",[253,44.25]],["parent/576",[215,4.809]],["name/577",[254,44.25]],["parent/577",[215,4.809]],["name/578",[255,44.25]],["parent/578",[215,4.809]],["name/579",[257,55.736]],["parent/579",[215,4.809]],["name/580",[211,50.031]],["parent/580",[]],["name/581",[1,30.448]],["parent/581",[211,4.809]],["name/582",[249,44.25]],["parent/582",[211,4.809]],["name/583",[250,44.75]],["parent/583",[211,4.809]],["name/584",[251,44.25]],["parent/584",[211,4.809]],["name/585",[252,42.884]],["parent/585",[211,4.809]],["name/586",[253,44.25]],["parent/586",[211,4.809]],["name/587",[254,44.25]],["parent/587",[211,4.809]],["name/588",[255,44.25]],["parent/588",[211,4.809]],["name/589",[257,55.736]],["parent/589",[211,4.809]],["name/590",[210,50.94]],["parent/590",[]],["name/591",[1,30.448]],["parent/591",[210,4.896]],["name/592",[249,44.25]],["parent/592",[210,4.896]],["name/593",[250,44.75]],["parent/593",[210,4.896]],["name/594",[251,44.25]],["parent/594",[210,4.896]],["name/595",[252,42.884]],["parent/595",[210,4.896]],["name/596",[253,44.25]],["parent/596",[210,4.896]],["name/597",[254,44.25]],["parent/597",[210,4.896]],["name/598",[255,44.25]],["parent/598",[210,4.896]],["name/599",[216,50.031]],["parent/599",[]],["name/600",[1,30.448]],["parent/600",[216,4.809]],["name/601",[249,44.25]],["parent/601",[216,4.809]],["name/602",[250,44.75]],["parent/602",[216,4.809]],["name/603",[251,44.25]],["parent/603",[216,4.809]],["name/604",[255,44.25]],["parent/604",[216,4.809]],["name/605",[252,42.884]],["parent/605",[216,4.809]],["name/606",[253,44.25]],["parent/606",[216,4.809]],["name/607",[254,44.25]],["parent/607",[216,4.809]],["name/608",[257,55.736]],["parent/608",[216,4.809]],["name/609",[207,50.94]],["parent/609",[]],["name/610",[1,30.448]],["parent/610",[207,4.896]],["name/611",[249,44.25]],["parent/611",[207,4.896]],["name/612",[250,44.75]],["parent/612",[207,4.896]],["name/613",[251,44.25]],["parent/613",[207,4.896]],["name/614",[252,42.884]],["parent/614",[207,4.896]],["name/615",[253,44.25]],["parent/615",[207,4.896]],["name/616",[254,44.25]],["parent/616",[207,4.896]],["name/617",[255,44.25]],["parent/617",[207,4.896]],["name/618",[262,51.941]],["parent/618",[]],["name/619",[1,30.448]],["parent/619",[262,4.992]],["name/620",[249,44.25]],["parent/620",[262,4.992]],["name/621",[250,44.75]],["parent/621",[262,4.992]],["name/622",[251,44.25]],["parent/622",[262,4.992]],["name/623",[252,42.884]],["parent/623",[262,4.992]],["name/624",[253,44.25]],["parent/624",[262,4.992]],["name/625",[254,44.25]],["parent/625",[262,4.992]],["name/626",[255,44.25]],["parent/626",[262,4.992]],["name/627",[221,47.046]],["parent/627",[]],["name/628",[1,30.448]],["parent/628",[221,4.522]],["name/629",[249,44.25]],["parent/629",[221,4.522]],["name/630",[250,44.75]],["parent/630",[221,4.522]],["name/631",[251,44.25]],["parent/631",[221,4.522]],["name/632",[252,42.884]],["parent/632",[221,4.522]],["name/633",[253,44.25]],["parent/633",[221,4.522]],["name/634",[254,44.25]],["parent/634",[221,4.522]],["name/635",[255,44.25]],["parent/635",[221,4.522]],["name/636",[214,50.94]],["parent/636",[]],["name/637",[1,30.448]],["parent/637",[214,4.896]],["name/638",[249,44.25]],["parent/638",[214,4.896]],["name/639",[250,44.75]],["parent/639",[214,4.896]],["name/640",[251,44.25]],["parent/640",[214,4.896]],["name/641",[252,42.884]],["parent/641",[214,4.896]],["name/642",[253,44.25]],["parent/642",[214,4.896]],["name/643",[254,44.25]],["parent/643",[214,4.896]],["name/644",[255,44.25]],["parent/644",[214,4.896]],["name/645",[212,50.94]],["parent/645",[]],["name/646",[1,30.448]],["parent/646",[212,4.896]],["name/647",[249,44.25]],["parent/647",[212,4.896]],["name/648",[250,44.75]],["parent/648",[212,4.896]],["name/649",[251,44.25]],["parent/649",[212,4.896]],["name/650",[252,42.884]],["parent/650",[212,4.896]],["name/651",[253,44.25]],["parent/651",[212,4.896]],["name/652",[254,44.25]],["parent/652",[212,4.896]],["name/653",[255,44.25]],["parent/653",[212,4.896]],["name/654",[263,39.954]],["parent/654",[]],["name/655",[1,30.448]],["parent/655",[263,3.84]],["name/656",[14,54.305]],["parent/656",[263,3.84]],["name/657",[264,70.4]],["parent/657",[263,3.84]],["name/658",[265,70.4]],["parent/658",[263,3.84]],["name/659",[266,70.4]],["parent/659",[263,3.84]],["name/660",[182,65.291]],["parent/660",[263,3.84]],["name/661",[267,70.4]],["parent/661",[263,3.84]],["name/662",[268,70.4]],["parent/662",[263,3.84]],["name/663",[269,70.4]],["parent/663",[263,3.84]],["name/664",[251,44.25]],["parent/664",[263,3.84]],["name/665",[253,44.25]],["parent/665",[263,3.84]],["name/666",[254,44.25]],["parent/666",[263,3.84]],["name/667",[255,44.25]],["parent/667",[263,3.84]],["name/668",[270,70.4]],["parent/668",[263,3.84]],["name/669",[271,70.4]],["parent/669",[263,3.84]],["name/670",[272,70.4]],["parent/670",[263,3.84]],["name/671",[273,70.4]],["parent/671",[263,3.84]],["name/672",[274,70.4]],["parent/672",[263,3.84]],["name/673",[275,70.4]],["parent/673",[263,3.84]],["name/674",[276,70.4]],["parent/674",[263,3.84]],["name/675",[277,70.4]],["parent/675",[263,3.84]],["name/676",[278,70.4]],["parent/676",[263,3.84]],["name/677",[279,70.4]],["parent/677",[263,3.84]],["name/678",[280,70.4]],["parent/678",[263,3.84]],["name/679",[281,70.4]],["parent/679",[263,3.84]],["name/680",[282,59.413]],["parent/680",[263,3.84]],["name/681",[58,54.305]],["parent/681",[263,3.84]],["name/682",[283,70.4]],["parent/682",[263,3.84]],["name/683",[22,39.954]],["parent/683",[263,3.84]],["name/684",[59,50.94]],["parent/684",[263,3.84]],["name/685",[284,53.054]],["parent/685",[]],["name/686",[249,44.25]],["parent/686",[284,5.099]],["name/687",[250,44.75]],["parent/687",[284,5.099]],["name/688",[251,44.25]],["parent/688",[284,5.099]],["name/689",[252,42.884]],["parent/689",[284,5.099]],["name/690",[253,44.25]],["parent/690",[284,5.099]],["name/691",[254,44.25]],["parent/691",[284,5.099]],["name/692",[255,44.25]],["parent/692",[284,5.099]],["name/693",[285,49.197]],["parent/693",[]],["name/694",[108,49.197]],["parent/694",[285,4.728]],["name/695",[286,61.927]],["parent/695",[285,4.728]],["name/696",[287,70.4]],["parent/696",[285,4.728]],["name/697",[288,70.4]],["parent/697",[285,4.728]],["name/698",[289,70.4]],["parent/698",[285,4.728]],["name/699",[290,47.046]],["parent/699",[]],["name/700",[286,61.927]],["parent/700",[290,4.522]],["name/701",[291,70.4]],["parent/701",[290,4.522]],["name/702",[292,70.4]],["parent/702",[290,4.522]],["name/703",[293,70.4]],["parent/703",[290,4.522]],["name/704",[294,70.4]],["parent/704",[290,4.522]],["name/705",[295,70.4]],["parent/705",[290,4.522]],["name/706",[296,70.4]],["parent/706",[290,4.522]],["name/707",[297,61.927]],["parent/707",[290,4.522]],["name/708",[298,70.4]],["parent/708",[290,4.522]],["name/709",[299,57.407]],["parent/709",[]],["name/710",[300,70.4]],["parent/710",[299,5.517]],["name/711",[301,70.4]],["parent/711",[299,5.517]],["name/712",[302,65.291]],["parent/712",[299,5.517]],["name/713",[303,70.4]],["parent/713",[299,5.517]],["name/714",[100,53.054]],["parent/714",[]],["name/715",[108,49.197]],["parent/715",[100,5.099]],["name/716",[286,61.927]],["parent/716",[100,5.099]],["name/717",[304,70.4]],["parent/717",[100,5.099]],["name/718",[305,70.4]],["parent/718",[100,5.099]],["name/719",[306,55.736]],["parent/719",[]],["name/720",[307,70.4]],["parent/720",[306,5.357]],["name/721",[308,70.4]],["parent/721",[306,5.357]],["name/722",[309,70.4]],["parent/722",[306,5.357]],["name/723",[310,70.4]],["parent/723",[306,5.357]],["name/724",[311,70.4]],["parent/724",[306,5.357]],["name/725",[312,59.413]],["parent/725",[]],["name/726",[313,70.4]],["parent/726",[312,5.71]],["name/727",[314,70.4]],["parent/727",[312,5.71]],["name/728",[1,30.448]],["parent/728",[312,5.71]],["name/729",[315,55.736]],["parent/729",[]],["name/730",[316,50.94]],["parent/730",[315,5.357]],["name/731",[317,70.4]],["parent/731",[315,5.357]],["name/732",[318,70.4]],["parent/732",[315,5.357]],["name/733",[69,40.277]],["parent/733",[315,5.357]],["name/734",[319,70.4]],["parent/734",[315,5.357]],["name/735",[320,45.832]],["parent/735",[]],["name/736",[1,30.448]],["parent/736",[320,4.405]],["name/737",[96,61.927]],["parent/737",[320,4.405]],["name/738",[321,70.4]],["parent/738",[320,4.405]],["name/739",[69,40.277]],["parent/739",[320,4.405]],["name/740",[290,47.046]],["parent/740",[320,4.405]],["name/741",[285,49.197]],["parent/741",[320,4.405]],["name/742",[322,57.407]],["parent/742",[320,4.405]],["name/743",[323,59.413]],["parent/743",[320,4.405]],["name/744",[324,47.713]],["parent/744",[320,4.405]],["name/745",[325,57.407]],["parent/745",[320,4.405]],["name/746",[326,57.407]],["parent/746",[320,4.405]],["name/747",[327,70.4]],["parent/747",[320,4.405]],["name/748",[328,70.4]],["parent/748",[320,4.405]],["name/749",[329,70.4]],["parent/749",[320,4.405]],["name/750",[330,70.4]],["parent/750",[320,4.405]],["name/751",[22,39.954]],["parent/751",[320,4.405]],["name/752",[331,54.305]],["parent/752",[]],["name/753",[69,40.277]],["parent/753",[331,5.219]],["name/754",[290,47.046]],["parent/754",[331,5.219]],["name/755",[285,49.197]],["parent/755",[331,5.219]],["name/756",[322,57.407]],["parent/756",[331,5.219]],["name/757",[324,47.713]],["parent/757",[331,5.219]],["name/758",[22,39.954]],["parent/758",[331,5.219]],["name/759",[332,50.94]],["parent/759",[]],["name/760",[69,40.277]],["parent/760",[332,4.896]],["name/761",[290,47.046]],["parent/761",[332,4.896]],["name/762",[285,49.197]],["parent/762",[332,4.896]],["name/763",[322,57.407]],["parent/763",[332,4.896]],["name/764",[324,47.713]],["parent/764",[332,4.896]],["name/765",[22,39.954]],["parent/765",[332,4.896]],["name/766",[112,45.276]],["parent/766",[332,4.896]],["name/767",[113,46.421]],["parent/767",[332,4.896]],["name/768",[333,57.407]],["parent/768",[332,4.896]],["name/769",[334,44.25]],["parent/769",[]],["name/770",[335,70.4]],["parent/770",[334,4.253]],["name/771",[336,70.4]],["parent/771",[334,4.253]],["name/772",[337,70.4]],["parent/772",[334,4.253]],["name/773",[338,70.4]],["parent/773",[334,4.253]],["name/774",[339,59.413]],["parent/774",[334,4.253]],["name/775",[340,55.736]],["parent/775",[334,4.253]],["name/776",[112,45.276]],["parent/776",[334,4.253]],["name/777",[113,46.421]],["parent/777",[334,4.253]],["name/778",[341,61.927]],["parent/778",[334,4.253]],["name/779",[342,61.927]],["parent/779",[334,4.253]],["name/780",[343,61.927]],["parent/780",[334,4.253]],["name/781",[333,57.407]],["parent/781",[334,4.253]],["name/782",[69,40.277]],["parent/782",[334,4.253]],["name/783",[290,47.046]],["parent/783",[334,4.253]],["name/784",[285,49.197]],["parent/784",[334,4.253]],["name/785",[322,57.407]],["parent/785",[334,4.253]],["name/786",[324,47.713]],["parent/786",[334,4.253]],["name/787",[22,39.954]],["parent/787",[334,4.253]],["name/788",[344,65.291]],["parent/788",[334,4.253]],["name/789",[345,51.941]],["parent/789",[]],["name/790",[69,40.277]],["parent/790",[345,4.992]],["name/791",[290,47.046]],["parent/791",[345,4.992]],["name/792",[285,49.197]],["parent/792",[345,4.992]],["name/793",[322,57.407]],["parent/793",[345,4.992]],["name/794",[324,47.713]],["parent/794",[345,4.992]],["name/795",[22,39.954]],["parent/795",[345,4.992]],["name/796",[112,45.276]],["parent/796",[345,4.992]],["name/797",[113,46.421]],["parent/797",[345,4.992]],["name/798",[346,49.197]],["parent/798",[]],["name/799",[347,70.4]],["parent/799",[346,4.728]],["name/800",[348,70.4]],["parent/800",[346,4.728]],["name/801",[349,70.4]],["parent/801",[346,4.728]],["name/802",[350,70.4]],["parent/802",[346,4.728]],["name/803",[351,70.4]],["parent/803",[346,4.728]],["name/804",[352,70.4]],["parent/804",[346,4.728]],["name/805",[353,70.4]],["parent/805",[346,4.728]],["name/806",[354,70.4]],["parent/806",[346,4.728]],["name/807",[355,70.4]],["parent/807",[346,4.728]],["name/808",[356,70.4]],["parent/808",[346,4.728]],["name/809",[1,30.448]],["parent/809",[346,4.728]],["name/810",[357,51.941]],["parent/810",[]],["name/811",[1,30.448]],["parent/811",[357,4.992]],["name/812",[358,70.4]],["parent/812",[357,4.992]],["name/813",[359,70.4]],["parent/813",[357,4.992]],["name/814",[360,70.4]],["parent/814",[357,4.992]],["name/815",[361,70.4]],["parent/815",[357,4.992]],["name/816",[362,70.4]],["parent/816",[357,4.992]],["name/817",[363,61.927]],["parent/817",[357,4.992]],["name/818",[364,70.4]],["parent/818",[357,4.992]],["name/819",[365,59.413]],["parent/819",[]],["name/820",[1,30.448]],["parent/820",[365,5.71]],["name/821",[366,70.4]],["parent/821",[365,5.71]],["name/822",[252,42.884]],["parent/822",[365,5.71]],["name/823",[367,47.046]],["parent/823",[]],["name/824",[1,30.448]],["parent/824",[367,4.522]],["name/825",[368,70.4]],["parent/825",[367,4.522]],["name/826",[9,55.736]],["parent/826",[367,4.522]],["name/827",[369,70.4]],["parent/827",[367,4.522]],["name/828",[340,55.736]],["parent/828",[367,4.522]],["name/829",[370,70.4]],["parent/829",[367,4.522]],["name/830",[339,59.413]],["parent/830",[367,4.522]],["name/831",[371,70.4]],["parent/831",[367,4.522]],["name/832",[372,70.4]],["parent/832",[367,4.522]],["name/833",[373,70.4]],["parent/833",[367,4.522]],["name/834",[374,70.4]],["parent/834",[367,4.522]],["name/835",[375,70.4]],["parent/835",[367,4.522]],["name/836",[376,70.4]],["parent/836",[367,4.522]],["name/837",[22,39.954]],["parent/837",[367,4.522]],["name/838",[377,50.94]],["parent/838",[]],["name/839",[1,30.448]],["parent/839",[377,4.896]],["name/840",[100,53.054]],["parent/840",[377,4.896]],["name/841",[285,49.197]],["parent/841",[377,4.896]],["name/842",[101,61.927]],["parent/842",[377,4.896]],["name/843",[378,70.4]],["parent/843",[377,4.896]],["name/844",[102,59.413]],["parent/844",[377,4.896]],["name/845",[379,70.4]],["parent/845",[377,4.896]],["name/846",[380,65.291]],["parent/846",[377,4.896]],["name/847",[22,39.954]],["parent/847",[377,4.896]],["name/848",[381,53.054]],["parent/848",[]],["name/849",[1,30.448]],["parent/849",[381,5.099]],["name/850",[380,65.291]],["parent/850",[381,5.099]],["name/851",[102,59.413]],["parent/851",[381,5.099]],["name/852",[382,70.4]],["parent/852",[381,5.099]],["name/853",[383,70.4]],["parent/853",[381,5.099]],["name/854",[101,61.927]],["parent/854",[381,5.099]],["name/855",[22,39.954]],["parent/855",[381,5.099]],["name/856",[384,65.291]],["parent/856",[]],["name/857",[385,70.4]],["parent/857",[384,6.275]],["name/858",[386,61.927]],["parent/858",[]],["name/859",[387,65.291]],["parent/859",[386,5.952]],["name/860",[297,61.927]],["parent/860",[386,5.952]],["name/861",[388,54.305]],["parent/861",[]],["name/862",[389,70.4]],["parent/862",[388,5.219]],["name/863",[390,70.4]],["parent/863",[388,5.219]],["name/864",[391,70.4]],["parent/864",[388,5.219]],["name/865",[392,70.4]],["parent/865",[388,5.219]],["name/866",[387,65.291]],["parent/866",[388,5.219]],["name/867",[297,61.927]],["parent/867",[388,5.219]],["name/868",[393,59.413]],["parent/868",[]],["name/869",[340,55.736]],["parent/869",[393,5.71]],["name/870",[112,45.276]],["parent/870",[393,5.71]],["name/871",[113,46.421]],["parent/871",[393,5.71]],["name/872",[394,61.927]],["parent/872",[]],["name/873",[112,45.276]],["parent/873",[394,5.952]],["name/874",[113,46.421]],["parent/874",[394,5.952]],["name/875",[395,65.291]],["parent/875",[]],["name/876",[344,65.291]],["parent/876",[395,6.275]],["name/877",[396,65.291]],["parent/877",[]],["name/878",[333,57.407]],["parent/878",[396,6.275]],["name/879",[397,57.407]],["parent/879",[]],["name/880",[339,59.413]],["parent/880",[397,5.517]],["name/881",[340,55.736]],["parent/881",[397,5.517]],["name/882",[112,45.276]],["parent/882",[397,5.517]],["name/883",[113,46.421]],["parent/883",[397,5.517]],["name/884",[398,51.941]],["parent/884",[]],["name/885",[339,59.413]],["parent/885",[398,4.992]],["name/886",[340,55.736]],["parent/886",[398,4.992]],["name/887",[112,45.276]],["parent/887",[398,4.992]],["name/888",[113,46.421]],["parent/888",[398,4.992]],["name/889",[341,61.927]],["parent/889",[398,4.992]],["name/890",[342,61.927]],["parent/890",[398,4.992]],["name/891",[343,61.927]],["parent/891",[398,4.992]],["name/892",[333,57.407]],["parent/892",[398,4.992]],["name/893",[399,55.736]],["parent/893",[]],["name/894",[323,59.413]],["parent/894",[399,5.357]],["name/895",[400,70.4]],["parent/895",[399,5.357]],["name/896",[325,57.407]],["parent/896",[399,5.357]],["name/897",[401,61.927]],["parent/897",[399,5.357]],["name/898",[326,57.407]],["parent/898",[399,5.357]],["name/899",[402,54.305]],["parent/899",[]],["name/900",[341,61.927]],["parent/900",[402,5.219]],["name/901",[342,61.927]],["parent/901",[402,5.219]],["name/902",[343,61.927]],["parent/902",[402,5.219]],["name/903",[112,45.276]],["parent/903",[402,5.219]],["name/904",[113,46.421]],["parent/904",[402,5.219]],["name/905",[333,57.407]],["parent/905",[402,5.219]],["name/906",[403,61.927]],["parent/906",[]],["name/907",[325,57.407]],["parent/907",[403,5.952]],["name/908",[401,61.927]],["parent/908",[403,5.952]],["name/909",[404,61.927]],["parent/909",[]],["name/910",[326,57.407]],["parent/910",[404,5.952]],["name/911",[401,61.927]],["parent/911",[404,5.952]],["name/912",[405,54.305]],["parent/912",[]],["name/913",[108,49.197]],["parent/913",[405,5.219]],["name/914",[406,70.4]],["parent/914",[405,5.219]],["name/915",[407,70.4]],["parent/915",[405,5.219]],["name/916",[408,70.4]],["parent/916",[405,5.219]],["name/917",[409,70.4]],["parent/917",[405,5.219]],["name/918",[410,70.4]],["parent/918",[405,5.219]],["name/919",[411,59.413]],["parent/919",[]],["name/920",[69,40.277]],["parent/920",[411,5.71]],["name/921",[412,65.291]],["parent/921",[411,5.71]],["name/922",[22,39.954]],["parent/922",[411,5.71]],["name/923",[413,55.736]],["parent/923",[]],["name/924",[414,65.291]],["parent/924",[413,5.357]],["name/925",[14,54.305]],["parent/925",[413,5.357]],["name/926",[415,65.291]],["parent/926",[413,5.357]],["name/927",[416,65.291]],["parent/927",[413,5.357]],["name/928",[417,65.291]],["parent/928",[413,5.357]],["name/929",[418,54.305]],["parent/929",[]],["name/930",[69,40.277]],["parent/930",[418,5.219]],["name/931",[419,65.291]],["parent/931",[418,5.219]],["name/932",[420,65.291]],["parent/932",[418,5.219]],["name/933",[421,65.291]],["parent/933",[418,5.219]],["name/934",[422,65.291]],["parent/934",[418,5.219]],["name/935",[22,39.954]],["parent/935",[418,5.219]],["name/936",[423,57.407]],["parent/936",[]],["name/937",[1,30.448]],["parent/937",[423,5.517]],["name/938",[69,40.277]],["parent/938",[423,5.517]],["name/939",[412,65.291]],["parent/939",[423,5.517]],["name/940",[22,39.954]],["parent/940",[423,5.517]],["name/941",[424,49.197]],["parent/941",[]],["name/942",[1,30.448]],["parent/942",[424,4.728]],["name/943",[414,65.291]],["parent/943",[424,4.728]],["name/944",[14,54.305]],["parent/944",[424,4.728]],["name/945",[415,65.291]],["parent/945",[424,4.728]],["name/946",[416,65.291]],["parent/946",[424,4.728]],["name/947",[417,65.291]],["parent/947",[424,4.728]],["name/948",[15,51.941]],["parent/948",[424,4.728]],["name/949",[22,39.954]],["parent/949",[424,4.728]],["name/950",[59,50.94]],["parent/950",[424,4.728]],["name/951",[425,47.046]],["parent/951",[]],["name/952",[1,30.448]],["parent/952",[425,4.522]],["name/953",[69,40.277]],["parent/953",[425,4.522]],["name/954",[419,65.291]],["parent/954",[425,4.522]],["name/955",[420,65.291]],["parent/955",[425,4.522]],["name/956",[421,65.291]],["parent/956",[425,4.522]],["name/957",[422,65.291]],["parent/957",[425,4.522]],["name/958",[426,70.4]],["parent/958",[425,4.522]],["name/959",[427,70.4]],["parent/959",[425,4.522]],["name/960",[428,70.4]],["parent/960",[425,4.522]],["name/961",[429,70.4]],["parent/961",[425,4.522]],["name/962",[430,70.4]],["parent/962",[425,4.522]],["name/963",[431,70.4]],["parent/963",[425,4.522]],["name/964",[432,70.4]],["parent/964",[425,4.522]],["name/965",[22,39.954]],["parent/965",[425,4.522]],["name/966",[48,47.046]],["parent/966",[]],["name/967",[1,30.448]],["parent/967",[48,4.522]],["name/968",[29,50.94]],["parent/968",[48,4.522]],["name/969",[261,61.927]],["parent/969",[48,4.522]],["name/970",[433,65.291]],["parent/970",[48,4.522]],["name/971",[434,65.291]],["parent/971",[48,4.522]],["name/972",[435,65.291]],["parent/972",[48,4.522]],["name/973",[436,65.291]],["parent/973",[48,4.522]],["name/974",[437,65.291]],["parent/974",[48,4.522]],["name/975",[438,65.291]],["parent/975",[48,4.522]],["name/976",[439,65.291]],["parent/976",[48,4.522]],["name/977",[440,50.94]],["parent/977",[]],["name/978",[29,50.94]],["parent/978",[440,4.896]],["name/979",[261,61.927]],["parent/979",[440,4.896]],["name/980",[433,65.291]],["parent/980",[440,4.896]],["name/981",[434,65.291]],["parent/981",[440,4.896]],["name/982",[435,65.291]],["parent/982",[440,4.896]],["name/983",[436,65.291]],["parent/983",[440,4.896]],["name/984",[437,65.291]],["parent/984",[440,4.896]],["name/985",[438,65.291]],["parent/985",[440,4.896]],["name/986",[439,65.291]],["parent/986",[440,4.896]],["name/987",[441,61.927]],["parent/987",[]],["name/988",[442,70.4]],["parent/988",[441,5.952]],["name/989",[443,70.4]],["parent/989",[441,5.952]],["name/990",[444,54.305]],["parent/990",[]],["name/991",[445,65.291]],["parent/991",[444,5.219]],["name/992",[1,30.448]],["parent/992",[444,5.219]],["name/993",[446,70.4]],["parent/993",[444,5.219]],["name/994",[447,61.927]],["parent/994",[444,5.219]],["name/995",[448,70.4]],["parent/995",[444,5.219]],["name/996",[449,61.927]],["parent/996",[444,5.219]],["name/997",[450,46.421]],["parent/997",[]],["name/998",[108,49.197]],["parent/998",[450,4.462]],["name/999",[451,65.291]],["parent/999",[450,4.462]],["name/1000",[452,65.291]],["parent/1000",[450,4.462]],["name/1001",[453,65.291]],["parent/1001",[450,4.462]],["name/1002",[454,65.291]],["parent/1002",[450,4.462]],["name/1003",[455,65.291]],["parent/1003",[450,4.462]],["name/1004",[221,47.046]],["parent/1004",[450,4.462]],["name/1005",[456,65.291]],["parent/1005",[450,4.462]],["name/1006",[457,65.291]],["parent/1006",[450,4.462]],["name/1007",[458,65.291]],["parent/1007",[450,4.462]],["name/1008",[459,65.291]],["parent/1008",[450,4.462]],["name/1009",[460,65.291]],["parent/1009",[450,4.462]],["name/1010",[461,65.291]],["parent/1010",[450,4.462]],["name/1011",[462,65.291]],["parent/1011",[450,4.462]],["name/1012",[463,65.291]],["parent/1012",[450,4.462]],["name/1013",[464,50.94]],["parent/1013",[]],["name/1014",[465,70.4]],["parent/1014",[464,4.896]],["name/1015",[466,70.4]],["parent/1015",[464,4.896]],["name/1016",[467,70.4]],["parent/1016",[464,4.896]],["name/1017",[468,70.4]],["parent/1017",[464,4.896]],["name/1018",[469,70.4]],["parent/1018",[464,4.896]],["name/1019",[470,70.4]],["parent/1019",[464,4.896]],["name/1020",[471,70.4]],["parent/1020",[464,4.896]],["name/1021",[472,57.407]],["parent/1021",[464,4.896]],["name/1022",[473,70.4]],["parent/1022",[464,4.896]],["name/1023",[324,47.713]],["parent/1023",[]],["name/1024",[474,70.4]],["parent/1024",[324,4.586]],["name/1025",[1,30.448]],["parent/1025",[324,4.586]],["name/1026",[475,70.4]],["parent/1026",[324,4.586]],["name/1027",[476,70.4]],["parent/1027",[324,4.586]],["name/1028",[477,70.4]],["parent/1028",[324,4.586]],["name/1029",[478,70.4]],["parent/1029",[324,4.586]],["name/1030",[479,70.4]],["parent/1030",[324,4.586]],["name/1031",[480,70.4]],["parent/1031",[324,4.586]],["name/1032",[481,46.421]],["parent/1032",[]],["name/1033",[108,49.197]],["parent/1033",[481,4.462]],["name/1034",[451,65.291]],["parent/1034",[481,4.462]],["name/1035",[452,65.291]],["parent/1035",[481,4.462]],["name/1036",[453,65.291]],["parent/1036",[481,4.462]],["name/1037",[454,65.291]],["parent/1037",[481,4.462]],["name/1038",[455,65.291]],["parent/1038",[481,4.462]],["name/1039",[221,47.046]],["parent/1039",[481,4.462]],["name/1040",[456,65.291]],["parent/1040",[481,4.462]],["name/1041",[457,65.291]],["parent/1041",[481,4.462]],["name/1042",[458,65.291]],["parent/1042",[481,4.462]],["name/1043",[459,65.291]],["parent/1043",[481,4.462]],["name/1044",[460,65.291]],["parent/1044",[481,4.462]],["name/1045",[461,65.291]],["parent/1045",[481,4.462]],["name/1046",[462,65.291]],["parent/1046",[481,4.462]],["name/1047",[463,65.291]],["parent/1047",[481,4.462]],["name/1048",[482,70.4]],["parent/1048",[]],["name/1049",[483,41.683]],["parent/1049",[]],["name/1050",[50,51.941]],["parent/1050",[483,4.006]],["name/1051",[0,41.683]],["parent/1051",[483,4.006]],["name/1052",[29,50.94]],["parent/1052",[483,4.006]],["name/1053",[60,54.305]],["parent/1053",[483,4.006]],["name/1054",[49,54.305]],["parent/1054",[483,4.006]],["name/1055",[53,53.054]],["parent/1055",[483,4.006]],["name/1056",[58,54.305]],["parent/1056",[483,4.006]],["name/1057",[484,61.927]],["parent/1057",[483,4.006]],["name/1058",[485,61.927]],["parent/1058",[483,4.006]],["name/1059",[486,61.927]],["parent/1059",[483,4.006]],["name/1060",[487,61.927]],["parent/1060",[483,4.006]],["name/1061",[488,61.927]],["parent/1061",[483,4.006]],["name/1062",[221,47.046]],["parent/1062",[483,4.006]],["name/1063",[489,57.407]],["parent/1063",[483,4.006]],["name/1064",[490,61.927]],["parent/1064",[483,4.006]],["name/1065",[164,59.413]],["parent/1065",[483,4.006]],["name/1066",[491,61.927]],["parent/1066",[483,4.006]],["name/1067",[492,59.413]],["parent/1067",[483,4.006]],["name/1068",[493,61.927]],["parent/1068",[483,4.006]],["name/1069",[494,59.413]],["parent/1069",[483,4.006]],["name/1070",[495,59.413]],["parent/1070",[483,4.006]],["name/1071",[496,59.413]],["parent/1071",[483,4.006]],["name/1072",[497,59.413]],["parent/1072",[483,4.006]],["name/1073",[498,59.413]],["parent/1073",[483,4.006]],["name/1074",[499,59.413]],["parent/1074",[483,4.006]],["name/1075",[500,61.927]],["parent/1075",[]],["name/1076",[501,65.291]],["parent/1076",[500,5.952]],["name/1077",[424,49.197]],["parent/1077",[500,5.952]],["name/1078",[502,40.955]],["parent/1078",[]],["name/1079",[29,50.94]],["parent/1079",[502,3.936]],["name/1080",[484,61.927]],["parent/1080",[502,3.936]],["name/1081",[485,61.927]],["parent/1081",[502,3.936]],["name/1082",[486,61.927]],["parent/1082",[502,3.936]],["name/1083",[487,61.927]],["parent/1083",[502,3.936]],["name/1084",[53,53.054]],["parent/1084",[502,3.936]],["name/1085",[488,61.927]],["parent/1085",[502,3.936]],["name/1086",[221,47.046]],["parent/1086",[502,3.936]],["name/1087",[48,47.046]],["parent/1087",[502,3.936]],["name/1088",[49,54.305]],["parent/1088",[502,3.936]],["name/1089",[50,51.941]],["parent/1089",[502,3.936]],["name/1090",[51,59.413]],["parent/1090",[502,3.936]],["name/1091",[489,57.407]],["parent/1091",[502,3.936]],["name/1092",[490,61.927]],["parent/1092",[502,3.936]],["name/1093",[0,41.683]],["parent/1093",[502,3.936]],["name/1094",[164,59.413]],["parent/1094",[502,3.936]],["name/1095",[491,61.927]],["parent/1095",[502,3.936]],["name/1096",[492,59.413]],["parent/1096",[502,3.936]],["name/1097",[493,61.927]],["parent/1097",[502,3.936]],["name/1098",[494,59.413]],["parent/1098",[502,3.936]],["name/1099",[495,59.413]],["parent/1099",[502,3.936]],["name/1100",[496,59.413]],["parent/1100",[502,3.936]],["name/1101",[497,59.413]],["parent/1101",[502,3.936]],["name/1102",[498,59.413]],["parent/1102",[502,3.936]],["name/1103",[499,59.413]],["parent/1103",[502,3.936]],["name/1104",[60,54.305]],["parent/1104",[502,3.936]],["name/1105",[58,54.305]],["parent/1105",[502,3.936]],["name/1106",[503,50.031]],["parent/1106",[]],["name/1107",[1,30.448]],["parent/1107",[503,4.809]],["name/1108",[49,54.305]],["parent/1108",[503,4.809]],["name/1109",[492,59.413]],["parent/1109",[503,4.809]],["name/1110",[494,59.413]],["parent/1110",[503,4.809]],["name/1111",[495,59.413]],["parent/1111",[503,4.809]],["name/1112",[496,59.413]],["parent/1112",[503,4.809]],["name/1113",[497,59.413]],["parent/1113",[503,4.809]],["name/1114",[498,59.413]],["parent/1114",[503,4.809]],["name/1115",[499,59.413]],["parent/1115",[503,4.809]],["name/1116",[60,54.305]],["parent/1116",[503,4.809]],["name/1117",[504,55.736]],["parent/1117",[]],["name/1118",[1,30.448]],["parent/1118",[504,5.357]],["name/1119",[501,65.291]],["parent/1119",[504,5.357]],["name/1120",[424,49.197]],["parent/1120",[504,5.357]],["name/1121",[22,39.954]],["parent/1121",[504,5.357]],["name/1122",[59,50.94]],["parent/1122",[504,5.357]],["name/1123",[505,39.954]],["parent/1123",[]],["name/1124",[1,30.448]],["parent/1124",[505,3.84]],["name/1125",[29,50.94]],["parent/1125",[505,3.84]],["name/1126",[485,61.927]],["parent/1126",[505,3.84]],["name/1127",[487,61.927]],["parent/1127",[505,3.84]],["name/1128",[53,53.054]],["parent/1128",[505,3.84]],["name/1129",[488,61.927]],["parent/1129",[505,3.84]],["name/1130",[221,47.046]],["parent/1130",[505,3.84]],["name/1131",[486,61.927]],["parent/1131",[505,3.84]],["name/1132",[484,61.927]],["parent/1132",[505,3.84]],["name/1133",[48,47.046]],["parent/1133",[505,3.84]],["name/1134",[49,54.305]],["parent/1134",[505,3.84]],["name/1135",[50,51.941]],["parent/1135",[505,3.84]],["name/1136",[51,59.413]],["parent/1136",[505,3.84]],["name/1137",[489,57.407]],["parent/1137",[505,3.84]],["name/1138",[490,61.927]],["parent/1138",[505,3.84]],["name/1139",[0,41.683]],["parent/1139",[505,3.84]],["name/1140",[164,59.413]],["parent/1140",[505,3.84]],["name/1141",[491,61.927]],["parent/1141",[505,3.84]],["name/1142",[492,59.413]],["parent/1142",[505,3.84]],["name/1143",[493,61.927]],["parent/1143",[505,3.84]],["name/1144",[58,54.305]],["parent/1144",[505,3.84]],["name/1145",[22,39.954]],["parent/1145",[505,3.84]],["name/1146",[59,50.94]],["parent/1146",[505,3.84]],["name/1147",[494,59.413]],["parent/1147",[505,3.84]],["name/1148",[495,59.413]],["parent/1148",[505,3.84]],["name/1149",[496,59.413]],["parent/1149",[505,3.84]],["name/1150",[497,59.413]],["parent/1150",[505,3.84]],["name/1151",[498,59.413]],["parent/1151",[505,3.84]],["name/1152",[499,59.413]],["parent/1152",[505,3.84]],["name/1153",[60,54.305]],["parent/1153",[505,3.84]],["name/1154",[506,54.305]],["parent/1154",[]],["name/1155",[507,61.927]],["parent/1155",[506,5.219]],["name/1156",[72,57.407]],["parent/1156",[506,5.219]],["name/1157",[447,61.927]],["parent/1157",[506,5.219]],["name/1158",[449,61.927]],["parent/1158",[506,5.219]],["name/1159",[508,65.291]],["parent/1159",[506,5.219]],["name/1160",[509,70.4]],["parent/1160",[506,5.219]],["name/1161",[510,55.736]],["parent/1161",[]],["name/1162",[511,70.4]],["parent/1162",[510,5.357]],["name/1163",[447,61.927]],["parent/1163",[510,5.357]],["name/1164",[449,61.927]],["parent/1164",[510,5.357]],["name/1165",[512,70.4]],["parent/1165",[510,5.357]],["name/1166",[513,70.4]],["parent/1166",[510,5.357]],["name/1167",[514,46.421]],["parent/1167",[]],["name/1168",[515,61.927]],["parent/1168",[514,4.462]],["name/1169",[516,61.927]],["parent/1169",[514,4.462]],["name/1170",[517,61.927]],["parent/1170",[514,4.462]],["name/1171",[518,61.927]],["parent/1171",[514,4.462]],["name/1172",[519,61.927]],["parent/1172",[514,4.462]],["name/1173",[520,61.927]],["parent/1173",[514,4.462]],["name/1174",[521,61.927]],["parent/1174",[514,4.462]],["name/1175",[522,61.927]],["parent/1175",[514,4.462]],["name/1176",[523,61.927]],["parent/1176",[514,4.462]],["name/1177",[524,61.927]],["parent/1177",[514,4.462]],["name/1178",[525,61.927]],["parent/1178",[514,4.462]],["name/1179",[526,61.927]],["parent/1179",[514,4.462]],["name/1180",[527,61.927]],["parent/1180",[514,4.462]],["name/1181",[528,61.927]],["parent/1181",[514,4.462]],["name/1182",[529,61.927]],["parent/1182",[514,4.462]],["name/1183",[530,46.421]],["parent/1183",[]],["name/1184",[515,61.927]],["parent/1184",[530,4.462]],["name/1185",[516,61.927]],["parent/1185",[530,4.462]],["name/1186",[517,61.927]],["parent/1186",[530,4.462]],["name/1187",[518,61.927]],["parent/1187",[530,4.462]],["name/1188",[519,61.927]],["parent/1188",[530,4.462]],["name/1189",[520,61.927]],["parent/1189",[530,4.462]],["name/1190",[521,61.927]],["parent/1190",[530,4.462]],["name/1191",[522,61.927]],["parent/1191",[530,4.462]],["name/1192",[523,61.927]],["parent/1192",[530,4.462]],["name/1193",[524,61.927]],["parent/1193",[530,4.462]],["name/1194",[525,61.927]],["parent/1194",[530,4.462]],["name/1195",[526,61.927]],["parent/1195",[530,4.462]],["name/1196",[527,61.927]],["parent/1196",[530,4.462]],["name/1197",[528,61.927]],["parent/1197",[530,4.462]],["name/1198",[529,61.927]],["parent/1198",[530,4.462]],["name/1199",[531,59.413]],["parent/1199",[]],["name/1200",[532,70.4]],["parent/1200",[531,5.71]],["name/1201",[533,70.4]],["parent/1201",[531,5.71]],["name/1202",[534,42.067]],["parent/1202",[]],["name/1203",[108,49.197]],["parent/1203",[534,4.043]],["name/1204",[507,61.927]],["parent/1204",[534,4.043]],["name/1205",[535,70.4]],["parent/1205",[534,4.043]],["name/1206",[536,70.4]],["parent/1206",[534,4.043]],["name/1207",[1,30.448]],["parent/1207",[534,4.043]],["name/1208",[162,65.291]],["parent/1208",[534,4.043]],["name/1209",[537,70.4]],["parent/1209",[534,4.043]],["name/1210",[538,70.4]],["parent/1210",[534,4.043]],["name/1211",[539,70.4]],["parent/1211",[534,4.043]],["name/1212",[540,70.4]],["parent/1212",[534,4.043]],["name/1213",[541,70.4]],["parent/1213",[534,4.043]],["name/1214",[542,70.4]],["parent/1214",[534,4.043]],["name/1215",[543,70.4]],["parent/1215",[534,4.043]],["name/1216",[59,50.94]],["parent/1216",[534,4.043]],["name/1217",[544,70.4]],["parent/1217",[534,4.043]],["name/1218",[545,70.4]],["parent/1218",[534,4.043]],["name/1219",[546,70.4]],["parent/1219",[534,4.043]],["name/1220",[547,70.4]],["parent/1220",[534,4.043]],["name/1221",[548,70.4]],["parent/1221",[534,4.043]],["name/1222",[549,70.4]],["parent/1222",[534,4.043]],["name/1223",[550,70.4]],["parent/1223",[534,4.043]],["name/1224",[551,45.832]],["parent/1224",[]],["name/1225",[507,61.927]],["parent/1225",[551,4.405]],["name/1226",[527,61.927]],["parent/1226",[551,4.405]],["name/1227",[525,61.927]],["parent/1227",[551,4.405]],["name/1228",[520,61.927]],["parent/1228",[551,4.405]],["name/1229",[522,61.927]],["parent/1229",[551,4.405]],["name/1230",[529,61.927]],["parent/1230",[551,4.405]],["name/1231",[528,61.927]],["parent/1231",[551,4.405]],["name/1232",[526,61.927]],["parent/1232",[551,4.405]],["name/1233",[521,61.927]],["parent/1233",[551,4.405]],["name/1234",[523,61.927]],["parent/1234",[551,4.405]],["name/1235",[519,61.927]],["parent/1235",[551,4.405]],["name/1236",[517,61.927]],["parent/1236",[551,4.405]],["name/1237",[518,61.927]],["parent/1237",[551,4.405]],["name/1238",[524,61.927]],["parent/1238",[551,4.405]],["name/1239",[516,61.927]],["parent/1239",[551,4.405]],["name/1240",[515,61.927]],["parent/1240",[551,4.405]],["name/1241",[552,47.713]],["parent/1241",[]],["name/1242",[1,30.448]],["parent/1242",[552,4.586]],["name/1243",[252,42.884]],["parent/1243",[552,4.586]],["name/1244",[553,65.291]],["parent/1244",[552,4.586]],["name/1245",[554,37.948]],["parent/1245",[552,4.586]],["name/1246",[69,40.277]],["parent/1246",[552,4.586]],["name/1247",[112,45.276]],["parent/1247",[552,4.586]],["name/1248",[555,65.291]],["parent/1248",[552,4.586]],["name/1249",[556,65.291]],["parent/1249",[552,4.586]],["name/1250",[113,46.421]],["parent/1250",[552,4.586]],["name/1251",[557,70.4]],["parent/1251",[552,4.586]],["name/1252",[558,70.4]],["parent/1252",[552,4.586]],["name/1253",[559,70.4]],["parent/1253",[552,4.586]],["name/1254",[59,50.94]],["parent/1254",[552,4.586]],["name/1255",[560,40.955]],["parent/1255",[]],["name/1256",[1,30.448]],["parent/1256",[560,3.936]],["name/1257",[252,42.884]],["parent/1257",[560,3.936]],["name/1258",[561,70.4]],["parent/1258",[560,3.936]],["name/1259",[562,70.4]],["parent/1259",[560,3.936]],["name/1260",[563,70.4]],["parent/1260",[560,3.936]],["name/1261",[69,40.277]],["parent/1261",[560,3.936]],["name/1262",[112,45.276]],["parent/1262",[560,3.936]],["name/1263",[564,65.291]],["parent/1263",[560,3.936]],["name/1264",[472,57.407]],["parent/1264",[560,3.936]],["name/1265",[565,59.413]],["parent/1265",[560,3.936]],["name/1266",[566,54.305]],["parent/1266",[560,3.936]],["name/1267",[567,59.413]],["parent/1267",[560,3.936]],["name/1268",[568,55.736]],["parent/1268",[560,3.936]],["name/1269",[569,55.736]],["parent/1269",[560,3.936]],["name/1270",[570,59.413]],["parent/1270",[560,3.936]],["name/1271",[534,42.067]],["parent/1271",[560,3.936]],["name/1272",[571,61.927]],["parent/1272",[560,3.936]],["name/1273",[572,61.927]],["parent/1273",[560,3.936]],["name/1274",[573,61.927]],["parent/1274",[560,3.936]],["name/1275",[574,61.927]],["parent/1275",[560,3.936]],["name/1276",[575,61.927]],["parent/1276",[560,3.936]],["name/1277",[576,54.305]],["parent/1277",[560,3.936]],["name/1278",[577,61.927]],["parent/1278",[560,3.936]],["name/1279",[578,61.927]],["parent/1279",[560,3.936]],["name/1280",[579,61.927]],["parent/1280",[560,3.936]],["name/1281",[113,46.421]],["parent/1281",[560,3.936]],["name/1282",[580,54.305]],["parent/1282",[560,3.936]],["name/1283",[581,50.94]],["parent/1283",[]],["name/1284",[1,30.448]],["parent/1284",[581,4.896]],["name/1285",[69,40.277]],["parent/1285",[581,4.896]],["name/1286",[112,45.276]],["parent/1286",[581,4.896]],["name/1287",[555,65.291]],["parent/1287",[581,4.896]],["name/1288",[556,65.291]],["parent/1288",[581,4.896]],["name/1289",[582,70.4]],["parent/1289",[581,4.896]],["name/1290",[576,54.305]],["parent/1290",[581,4.896]],["name/1291",[72,57.407]],["parent/1291",[581,4.896]],["name/1292",[580,54.305]],["parent/1292",[581,4.896]],["name/1293",[583,42.884]],["parent/1293",[]],["name/1294",[1,30.448]],["parent/1294",[583,4.122]],["name/1295",[472,57.407]],["parent/1295",[583,4.122]],["name/1296",[565,59.413]],["parent/1296",[583,4.122]],["name/1297",[566,54.305]],["parent/1297",[583,4.122]],["name/1298",[567,59.413]],["parent/1298",[583,4.122]],["name/1299",[568,55.736]],["parent/1299",[583,4.122]],["name/1300",[569,55.736]],["parent/1300",[583,4.122]],["name/1301",[570,59.413]],["parent/1301",[583,4.122]],["name/1302",[534,42.067]],["parent/1302",[583,4.122]],["name/1303",[571,61.927]],["parent/1303",[583,4.122]],["name/1304",[572,61.927]],["parent/1304",[583,4.122]],["name/1305",[573,61.927]],["parent/1305",[583,4.122]],["name/1306",[574,61.927]],["parent/1306",[583,4.122]],["name/1307",[575,61.927]],["parent/1307",[583,4.122]],["name/1308",[576,54.305]],["parent/1308",[583,4.122]],["name/1309",[577,61.927]],["parent/1309",[583,4.122]],["name/1310",[578,61.927]],["parent/1310",[583,4.122]],["name/1311",[579,61.927]],["parent/1311",[583,4.122]],["name/1312",[69,40.277]],["parent/1312",[583,4.122]],["name/1313",[112,45.276]],["parent/1313",[583,4.122]],["name/1314",[113,46.421]],["parent/1314",[583,4.122]],["name/1315",[580,54.305]],["parent/1315",[583,4.122]],["name/1316",[584,40.61]],["parent/1316",[]],["name/1317",[1,30.448]],["parent/1317",[584,3.903]],["name/1318",[252,42.884]],["parent/1318",[584,3.903]],["name/1319",[585,70.4]],["parent/1319",[584,3.903]],["name/1320",[586,70.4]],["parent/1320",[584,3.903]],["name/1321",[587,70.4]],["parent/1321",[584,3.903]],["name/1322",[588,70.4]],["parent/1322",[584,3.903]],["name/1323",[564,65.291]],["parent/1323",[584,3.903]],["name/1324",[472,57.407]],["parent/1324",[584,3.903]],["name/1325",[565,59.413]],["parent/1325",[584,3.903]],["name/1326",[566,54.305]],["parent/1326",[584,3.903]],["name/1327",[567,59.413]],["parent/1327",[584,3.903]],["name/1328",[568,55.736]],["parent/1328",[584,3.903]],["name/1329",[569,55.736]],["parent/1329",[584,3.903]],["name/1330",[570,59.413]],["parent/1330",[584,3.903]],["name/1331",[534,42.067]],["parent/1331",[584,3.903]],["name/1332",[571,61.927]],["parent/1332",[584,3.903]],["name/1333",[572,61.927]],["parent/1333",[584,3.903]],["name/1334",[573,61.927]],["parent/1334",[584,3.903]],["name/1335",[574,61.927]],["parent/1335",[584,3.903]],["name/1336",[575,61.927]],["parent/1336",[584,3.903]],["name/1337",[576,54.305]],["parent/1337",[584,3.903]],["name/1338",[577,61.927]],["parent/1338",[584,3.903]],["name/1339",[578,61.927]],["parent/1339",[584,3.903]],["name/1340",[579,61.927]],["parent/1340",[584,3.903]],["name/1341",[69,40.277]],["parent/1341",[584,3.903]],["name/1342",[112,45.276]],["parent/1342",[584,3.903]],["name/1343",[113,46.421]],["parent/1343",[584,3.903]],["name/1344",[580,54.305]],["parent/1344",[584,3.903]],["name/1345",[554,37.948]],["parent/1345",[]],["name/1346",[589,70.4]],["parent/1346",[554,3.647]],["name/1347",[590,70.4]],["parent/1347",[554,3.647]],["name/1348",[591,65.291]],["parent/1348",[592,6.766]],["name/1349",[302,65.291]],["parent/1349",[554,3.647]],["name/1350",[593,65.291]],["parent/1350",[554,3.647]],["name/1351",[594,65.291]],["parent/1351",[554,3.647]],["name/1352",[595,65.291]],["parent/1352",[554,3.647]],["name/1353",[596,65.291]],["parent/1353",[554,3.647]],["name/1354",[597,65.291]],["parent/1354",[554,3.647]],["name/1355",[598,65.291]],["parent/1355",[554,3.647]],["name/1356",[599,65.291]],["parent/1356",[554,3.647]],["name/1357",[600,65.291]],["parent/1357",[554,3.647]],["name/1358",[601,65.291]],["parent/1358",[554,3.647]],["name/1359",[602,65.291]],["parent/1359",[554,3.647]],["name/1360",[603,65.291]],["parent/1360",[554,3.647]],["name/1361",[604,65.291]],["parent/1361",[554,3.647]],["name/1362",[605,65.291]],["parent/1362",[554,3.647]],["name/1363",[606,65.291]],["parent/1363",[554,3.647]],["name/1364",[607,65.291]],["parent/1364",[554,3.647]],["name/1365",[608,65.291]],["parent/1365",[554,3.647]],["name/1366",[609,65.291]],["parent/1366",[554,3.647]],["name/1367",[610,65.291]],["parent/1367",[554,3.647]],["name/1368",[611,65.291]],["parent/1368",[554,3.647]],["name/1369",[612,65.291]],["parent/1369",[554,3.647]],["name/1370",[613,65.291]],["parent/1370",[554,3.647]],["name/1371",[614,65.291]],["parent/1371",[554,3.647]],["name/1372",[615,65.291]],["parent/1372",[554,3.647]],["name/1373",[616,65.291]],["parent/1373",[554,3.647]],["name/1374",[617,65.291]],["parent/1374",[554,3.647]],["name/1375",[618,65.291]],["parent/1375",[554,3.647]],["name/1376",[619,65.291]],["parent/1376",[554,3.647]],["name/1377",[620,65.291]],["parent/1377",[554,3.647]],["name/1378",[621,65.291]],["parent/1378",[554,3.647]],["name/1379",[622,65.291]],["parent/1379",[554,3.647]],["name/1380",[623,65.291]],["parent/1380",[554,3.647]],["name/1381",[624,65.291]],["parent/1381",[554,3.647]],["name/1382",[625,65.291]],["parent/1382",[554,3.647]],["name/1383",[626,38.211]],["parent/1383",[]],["name/1384",[108,49.197]],["parent/1384",[626,3.672]],["name/1385",[627,70.4]],["parent/1385",[626,3.672]],["name/1386",[628,70.4]],["parent/1386",[626,3.672]],["name/1387",[593,65.291]],["parent/1387",[626,3.672]],["name/1388",[594,65.291]],["parent/1388",[626,3.672]],["name/1389",[595,65.291]],["parent/1389",[626,3.672]],["name/1390",[596,65.291]],["parent/1390",[626,3.672]],["name/1391",[597,65.291]],["parent/1391",[626,3.672]],["name/1392",[598,65.291]],["parent/1392",[626,3.672]],["name/1393",[599,65.291]],["parent/1393",[626,3.672]],["name/1394",[600,65.291]],["parent/1394",[626,3.672]],["name/1395",[601,65.291]],["parent/1395",[626,3.672]],["name/1396",[602,65.291]],["parent/1396",[626,3.672]],["name/1397",[603,65.291]],["parent/1397",[626,3.672]],["name/1398",[604,65.291]],["parent/1398",[626,3.672]],["name/1399",[605,65.291]],["parent/1399",[626,3.672]],["name/1400",[606,65.291]],["parent/1400",[626,3.672]],["name/1401",[607,65.291]],["parent/1401",[626,3.672]],["name/1402",[608,65.291]],["parent/1402",[626,3.672]],["name/1403",[609,65.291]],["parent/1403",[626,3.672]],["name/1404",[610,65.291]],["parent/1404",[626,3.672]],["name/1405",[611,65.291]],["parent/1405",[626,3.672]],["name/1406",[612,65.291]],["parent/1406",[626,3.672]],["name/1407",[613,65.291]],["parent/1407",[626,3.672]],["name/1408",[614,65.291]],["parent/1408",[626,3.672]],["name/1409",[615,65.291]],["parent/1409",[626,3.672]],["name/1410",[616,65.291]],["parent/1410",[626,3.672]],["name/1411",[617,65.291]],["parent/1411",[626,3.672]],["name/1412",[618,65.291]],["parent/1412",[626,3.672]],["name/1413",[619,65.291]],["parent/1413",[626,3.672]],["name/1414",[620,65.291]],["parent/1414",[626,3.672]],["name/1415",[621,65.291]],["parent/1415",[626,3.672]],["name/1416",[622,65.291]],["parent/1416",[626,3.672]],["name/1417",[623,65.291]],["parent/1417",[626,3.672]],["name/1418",[624,65.291]],["parent/1418",[626,3.672]],["name/1419",[625,65.291]],["parent/1419",[626,3.672]],["name/1420",[629,39.642]],["parent/1420",[]],["name/1421",[1,30.448]],["parent/1421",[629,3.81]],["name/1422",[630,70.4]],["parent/1422",[629,3.81]],["name/1423",[631,70.4]],["parent/1423",[629,3.81]],["name/1424",[632,59.413]],["parent/1424",[629,3.81]],["name/1425",[633,65.291]],["parent/1425",[629,3.81]],["name/1426",[634,44.75]],["parent/1426",[629,3.81]],["name/1427",[69,40.277]],["parent/1427",[629,3.81]],["name/1428",[112,45.276]],["parent/1428",[629,3.81]],["name/1429",[635,54.305]],["parent/1429",[629,3.81]],["name/1430",[576,54.305]],["parent/1430",[629,3.81]],["name/1431",[636,61.927]],["parent/1431",[629,3.81]],["name/1432",[637,61.927]],["parent/1432",[629,3.81]],["name/1433",[638,61.927]],["parent/1433",[629,3.81]],["name/1434",[323,59.413]],["parent/1434",[629,3.81]],["name/1435",[566,54.305]],["parent/1435",[629,3.81]],["name/1436",[569,55.736]],["parent/1436",[629,3.81]],["name/1437",[568,55.736]],["parent/1437",[629,3.81]],["name/1438",[639,65.291]],["parent/1438",[629,3.81]],["name/1439",[640,65.291]],["parent/1439",[629,3.81]],["name/1440",[641,65.291]],["parent/1440",[629,3.81]],["name/1441",[325,57.407]],["parent/1441",[629,3.81]],["name/1442",[326,57.407]],["parent/1442",[629,3.81]],["name/1443",[113,46.421]],["parent/1443",[629,3.81]],["name/1444",[580,54.305]],["parent/1444",[629,3.81]],["name/1445",[642,54.305]],["parent/1445",[629,3.81]],["name/1446",[643,65.291]],["parent/1446",[629,3.81]],["name/1447",[644,65.291]],["parent/1447",[629,3.81]],["name/1448",[645,61.927]],["parent/1448",[629,3.81]],["name/1449",[646,65.291]],["parent/1449",[629,3.81]],["name/1450",[647,65.291]],["parent/1450",[629,3.81]],["name/1451",[648,65.291]],["parent/1451",[629,3.81]],["name/1452",[649,55.736]],["parent/1452",[]],["name/1453",[1,30.448]],["parent/1453",[649,5.357]],["name/1454",[69,40.277]],["parent/1454",[649,5.357]],["name/1455",[102,59.413]],["parent/1455",[649,5.357]],["name/1456",[635,54.305]],["parent/1456",[649,5.357]],["name/1457",[642,54.305]],["parent/1457",[649,5.357]],["name/1458",[650,40.61]],["parent/1458",[]],["name/1459",[1,30.448]],["parent/1459",[650,3.903]],["name/1460",[633,65.291]],["parent/1460",[650,3.903]],["name/1461",[634,44.75]],["parent/1461",[650,3.903]],["name/1462",[69,40.277]],["parent/1462",[650,3.903]],["name/1463",[112,45.276]],["parent/1463",[650,3.903]],["name/1464",[635,54.305]],["parent/1464",[650,3.903]],["name/1465",[576,54.305]],["parent/1465",[650,3.903]],["name/1466",[636,61.927]],["parent/1466",[650,3.903]],["name/1467",[637,61.927]],["parent/1467",[650,3.903]],["name/1468",[638,61.927]],["parent/1468",[650,3.903]],["name/1469",[323,59.413]],["parent/1469",[650,3.903]],["name/1470",[566,54.305]],["parent/1470",[650,3.903]],["name/1471",[569,55.736]],["parent/1471",[650,3.903]],["name/1472",[568,55.736]],["parent/1472",[650,3.903]],["name/1473",[639,65.291]],["parent/1473",[650,3.903]],["name/1474",[640,65.291]],["parent/1474",[650,3.903]],["name/1475",[641,65.291]],["parent/1475",[650,3.903]],["name/1476",[325,57.407]],["parent/1476",[650,3.903]],["name/1477",[326,57.407]],["parent/1477",[650,3.903]],["name/1478",[113,46.421]],["parent/1478",[650,3.903]],["name/1479",[580,54.305]],["parent/1479",[650,3.903]],["name/1480",[642,54.305]],["parent/1480",[650,3.903]],["name/1481",[643,65.291]],["parent/1481",[650,3.903]],["name/1482",[644,65.291]],["parent/1482",[650,3.903]],["name/1483",[645,61.927]],["parent/1483",[650,3.903]],["name/1484",[646,65.291]],["parent/1484",[650,3.903]],["name/1485",[647,65.291]],["parent/1485",[650,3.903]],["name/1486",[648,65.291]],["parent/1486",[650,3.903]],["name/1487",[651,57.407]],["parent/1487",[]],["name/1488",[1,30.448]],["parent/1488",[651,5.517]],["name/1489",[69,40.277]],["parent/1489",[651,5.517]],["name/1490",[635,54.305]],["parent/1490",[651,5.517]],["name/1491",[642,54.305]],["parent/1491",[651,5.517]],["name/1492",[652,50.94]],["parent/1492",[]],["name/1493",[576,54.305]],["parent/1493",[652,4.896]],["name/1494",[636,61.927]],["parent/1494",[652,4.896]],["name/1495",[637,61.927]],["parent/1495",[652,4.896]],["name/1496",[638,61.927]],["parent/1496",[652,4.896]],["name/1497",[645,61.927]],["parent/1497",[652,4.896]],["name/1498",[580,54.305]],["parent/1498",[652,4.896]],["name/1499",[69,40.277]],["parent/1499",[652,4.896]],["name/1500",[635,54.305]],["parent/1500",[652,4.896]],["name/1501",[642,54.305]],["parent/1501",[652,4.896]],["name/1502",[653,59.413]],["parent/1502",[]],["name/1503",[69,40.277]],["parent/1503",[653,5.71]],["name/1504",[635,54.305]],["parent/1504",[653,5.71]],["name/1505",[642,54.305]],["parent/1505",[653,5.71]],["name/1506",[654,55.736]],["parent/1506",[]],["name/1507",[112,45.276]],["parent/1507",[654,5.357]],["name/1508",[113,46.421]],["parent/1508",[654,5.357]],["name/1509",[69,40.277]],["parent/1509",[654,5.357]],["name/1510",[635,54.305]],["parent/1510",[654,5.357]],["name/1511",[642,54.305]],["parent/1511",[654,5.357]],["name/1512",[634,44.75]],["parent/1512",[]],["name/1513",[655,70.4]],["parent/1513",[634,4.301]],["name/1514",[656,70.4]],["parent/1514",[634,4.301]],["name/1515",[657,70.4]],["parent/1515",[634,4.301]],["name/1516",[658,70.4]],["parent/1516",[634,4.301]],["name/1517",[659,70.4]],["parent/1517",[634,4.301]],["name/1518",[660,70.4]],["parent/1518",[634,4.301]],["name/1519",[661,65.291]],["parent/1519",[634,4.301]],["name/1520",[662,65.291]],["parent/1520",[634,4.301]],["name/1521",[663,65.291]],["parent/1521",[634,4.301]],["name/1522",[664,65.291]],["parent/1522",[634,4.301]],["name/1523",[665,65.291]],["parent/1523",[634,4.301]],["name/1524",[363,61.927]],["parent/1524",[634,4.301]],["name/1525",[666,65.291]],["parent/1525",[634,4.301]],["name/1526",[667,65.291]],["parent/1526",[634,4.301]],["name/1527",[668,65.291]],["parent/1527",[634,4.301]],["name/1528",[669,65.291]],["parent/1528",[634,4.301]],["name/1529",[670,50.031]],["parent/1529",[]],["name/1530",[108,49.197]],["parent/1530",[670,4.809]],["name/1531",[671,70.4]],["parent/1531",[670,4.809]],["name/1532",[672,70.4]],["parent/1532",[670,4.809]],["name/1533",[673,70.4]],["parent/1533",[670,4.809]],["name/1534",[674,70.4]],["parent/1534",[670,4.809]],["name/1535",[566,54.305]],["parent/1535",[670,4.809]],["name/1536",[567,59.413]],["parent/1536",[670,4.809]],["name/1537",[568,55.736]],["parent/1537",[670,4.809]],["name/1538",[569,55.736]],["parent/1538",[670,4.809]],["name/1539",[553,65.291]],["parent/1539",[670,4.809]],["name/1540",[675,59.413]],["parent/1540",[]],["name/1541",[108,49.197]],["parent/1541",[675,5.71]],["name/1542",[676,70.4]],["parent/1542",[675,5.71]],["name/1543",[677,70.4]],["parent/1543",[675,5.71]],["name/1544",[316,50.94]],["parent/1544",[]],["name/1545",[678,65.291]],["parent/1545",[316,4.896]],["name/1546",[679,65.291]],["parent/1546",[316,4.896]],["name/1547",[680,70.4]],["parent/1547",[316,4.896]],["name/1548",[681,70.4]],["parent/1548",[316,4.896]],["name/1549",[682,70.4]],["parent/1549",[316,4.896]],["name/1550",[683,70.4]],["parent/1550",[316,4.896]],["name/1551",[684,70.4]],["parent/1551",[316,4.896]],["name/1552",[685,70.4]],["parent/1552",[316,4.896]],["name/1553",[686,54.305]],["parent/1553",[]],["name/1554",[678,65.291]],["parent/1554",[686,5.219]],["name/1555",[687,70.4]],["parent/1555",[686,5.219]],["name/1556",[688,70.4]],["parent/1556",[686,5.219]],["name/1557",[689,70.4]],["parent/1557",[686,5.219]],["name/1558",[690,70.4]],["parent/1558",[686,5.219]],["name/1559",[679,65.291]],["parent/1559",[686,5.219]],["name/1560",[632,59.413]],["parent/1560",[]],["name/1561",[691,70.4]],["parent/1561",[632,5.71]],["name/1562",[692,70.4]],["parent/1562",[632,5.71]],["name/1563",[693,50.031]],["parent/1563",[]],["name/1564",[662,65.291]],["parent/1564",[693,4.809]],["name/1565",[363,61.927]],["parent/1565",[693,4.809]],["name/1566",[665,65.291]],["parent/1566",[693,4.809]],["name/1567",[664,65.291]],["parent/1567",[693,4.809]],["name/1568",[668,65.291]],["parent/1568",[693,4.809]],["name/1569",[663,65.291]],["parent/1569",[693,4.809]],["name/1570",[661,65.291]],["parent/1570",[693,4.809]],["name/1571",[666,65.291]],["parent/1571",[693,4.809]],["name/1572",[667,65.291]],["parent/1572",[693,4.809]],["name/1573",[669,65.291]],["parent/1573",[693,4.809]],["name/1574",[694,57.407]],["parent/1574",[]],["name/1575",[108,49.197]],["parent/1575",[694,5.517]],["name/1576",[695,70.4]],["parent/1576",[694,5.517]],["name/1577",[696,70.4]],["parent/1577",[694,5.517]],["name/1578",[531,59.413]],["parent/1578",[694,5.517]],["name/1579",[141,46.421]],["parent/1579",[]],["name/1580",[1,30.448]],["parent/1580",[141,4.462]],["name/1581",[697,70.4]],["parent/1581",[141,4.462]],["name/1582",[7,57.407]],["parent/1582",[141,4.462]],["name/1583",[155,65.291]],["parent/1583",[141,4.462]],["name/1584",[698,70.4]],["parent/1584",[141,4.462]],["name/1585",[11,57.407]],["parent/1585",[141,4.462]],["name/1586",[699,70.4]],["parent/1586",[141,4.462]],["name/1587",[700,70.4]],["parent/1587",[141,4.462]],["name/1588",[701,70.4]],["parent/1588",[141,4.462]],["name/1589",[702,70.4]],["parent/1589",[141,4.462]],["name/1590",[703,70.4]],["parent/1590",[141,4.462]],["name/1591",[704,70.4]],["parent/1591",[141,4.462]],["name/1592",[705,70.4]],["parent/1592",[141,4.462]],["name/1593",[706,70.4]],["parent/1593",[141,4.462]],["name/1594",[707,53.054]],["parent/1594",[]],["name/1595",[1,30.448]],["parent/1595",[707,5.099]],["name/1596",[249,44.25]],["parent/1596",[707,5.099]],["name/1597",[708,70.4]],["parent/1597",[707,5.099]],["name/1598",[709,70.4]],["parent/1598",[707,5.099]],["name/1599",[710,70.4]],["parent/1599",[707,5.099]],["name/1600",[711,70.4]],["parent/1600",[707,5.099]],["name/1601",[712,70.4]],["parent/1601",[707,5.099]],["name/1602",[713,50.94]],["parent/1602",[]],["name/1603",[1,30.448]],["parent/1603",[713,4.896]],["name/1604",[714,70.4]],["parent/1604",[713,4.896]],["name/1605",[715,70.4]],["parent/1605",[713,4.896]],["name/1606",[716,70.4]],["parent/1606",[713,4.896]],["name/1607",[570,59.413]],["parent/1607",[713,4.896]],["name/1608",[717,70.4]],["parent/1608",[713,4.896]],["name/1609",[59,50.94]],["parent/1609",[713,4.896]],["name/1610",[22,39.954]],["parent/1610",[713,4.896]],["name/1611",[282,59.413]],["parent/1611",[713,4.896]],["name/1612",[718,42.067]],["parent/1612",[]],["name/1613",[1,30.448]],["parent/1613",[718,4.043]],["name/1614",[472,57.407]],["parent/1614",[718,4.043]],["name/1615",[565,59.413]],["parent/1615",[718,4.043]],["name/1616",[719,70.4]],["parent/1616",[718,4.043]],["name/1617",[720,70.4]],["parent/1617",[718,4.043]],["name/1618",[72,57.407]],["parent/1618",[718,4.043]],["name/1619",[721,70.4]],["parent/1619",[718,4.043]],["name/1620",[508,65.291]],["parent/1620",[718,4.043]],["name/1621",[722,70.4]],["parent/1621",[718,4.043]],["name/1622",[566,54.305]],["parent/1622",[718,4.043]],["name/1623",[723,70.4]],["parent/1623",[718,4.043]],["name/1624",[724,70.4]],["parent/1624",[718,4.043]],["name/1625",[725,70.4]],["parent/1625",[718,4.043]],["name/1626",[726,70.4]],["parent/1626",[718,4.043]],["name/1627",[727,70.4]],["parent/1627",[718,4.043]],["name/1628",[15,51.941]],["parent/1628",[718,4.043]],["name/1629",[728,70.4]],["parent/1629",[718,4.043]],["name/1630",[340,55.736]],["parent/1630",[718,4.043]],["name/1631",[729,70.4]],["parent/1631",[718,4.043]],["name/1632",[730,70.4]],["parent/1632",[718,4.043]],["name/1633",[731,70.4]],["parent/1633",[718,4.043]],["name/1634",[59,50.94]],["parent/1634",[718,4.043]],["name/1635",[22,39.954]],["parent/1635",[718,4.043]],["name/1636",[282,59.413]],["parent/1636",[718,4.043]],["name/1637",[732,47.713]],["parent/1637",[]],["name/1638",[733,65.291]],["parent/1638",[732,4.586]],["name/1639",[29,50.94]],["parent/1639",[732,4.586]],["name/1640",[734,65.291]],["parent/1640",[732,4.586]],["name/1641",[735,65.291]],["parent/1641",[732,4.586]],["name/1642",[736,65.291]],["parent/1642",[732,4.586]],["name/1643",[737,65.291]],["parent/1643",[732,4.586]],["name/1644",[738,65.291]],["parent/1644",[732,4.586]],["name/1645",[739,65.291]],["parent/1645",[732,4.586]],["name/1646",[489,57.407]],["parent/1646",[732,4.586]],["name/1647",[740,65.291]],["parent/1647",[732,4.586]],["name/1648",[169,61.927]],["parent/1648",[732,4.586]],["name/1649",[741,65.291]],["parent/1649",[732,4.586]],["name/1650",[742,65.291]],["parent/1650",[732,4.586]],["name/1651",[743,45.832]],["parent/1651",[]],["name/1652",[1,30.448]],["parent/1652",[743,4.405]],["name/1653",[733,65.291]],["parent/1653",[743,4.405]],["name/1654",[29,50.94]],["parent/1654",[743,4.405]],["name/1655",[734,65.291]],["parent/1655",[743,4.405]],["name/1656",[735,65.291]],["parent/1656",[743,4.405]],["name/1657",[736,65.291]],["parent/1657",[743,4.405]],["name/1658",[737,65.291]],["parent/1658",[743,4.405]],["name/1659",[738,65.291]],["parent/1659",[743,4.405]],["name/1660",[739,65.291]],["parent/1660",[743,4.405]],["name/1661",[489,57.407]],["parent/1661",[743,4.405]],["name/1662",[740,65.291]],["parent/1662",[743,4.405]],["name/1663",[169,61.927]],["parent/1663",[743,4.405]],["name/1664",[741,65.291]],["parent/1664",[743,4.405]],["name/1665",[742,65.291]],["parent/1665",[743,4.405]],["name/1666",[22,39.954]],["parent/1666",[743,4.405]],["name/1667",[59,50.94]],["parent/1667",[743,4.405]],["name/1668",[744,55.736]],["parent/1668",[]],["name/1669",[745,70.4]],["parent/1669",[744,5.357]],["name/1670",[746,70.4]],["parent/1670",[744,5.357]],["name/1671",[747,70.4]],["parent/1671",[744,5.357]],["name/1672",[748,70.4]],["parent/1672",[744,5.357]],["name/1673",[749,70.4]],["parent/1673",[744,5.357]],["name/1674",[591,65.291]],["parent/1674",[750,6.766]],["name/1675",[751,61.927]],["parent/1675",[]],["name/1676",[752,70.4]],["parent/1676",[751,5.952]],["name/1677",[753,70.4]],["parent/1677",[751,5.952]],["name/1678",[754,51.941]],["parent/1678",[]],["name/1679",[755,70.4]],["parent/1679",[754,4.992]],["name/1680",[756,70.4]],["parent/1680",[754,4.992]],["name/1681",[445,65.291]],["parent/1681",[754,4.992]],["name/1682",[757,70.4]],["parent/1682",[754,4.992]],["name/1683",[758,70.4]],["parent/1683",[754,4.992]],["name/1684",[759,70.4]],["parent/1684",[754,4.992]],["name/1685",[760,70.4]],["parent/1685",[754,4.992]],["name/1686",[761,70.4]],["parent/1686",[754,4.992]],["name/1687",[762,50.031]],["parent/1687",[]],["name/1688",[763,70.4]],["parent/1688",[762,4.809]],["name/1689",[764,70.4]],["parent/1689",[762,4.809]],["name/1690",[765,70.4]],["parent/1690",[762,4.809]],["name/1691",[766,70.4]],["parent/1691",[762,4.809]],["name/1692",[1,30.448]],["parent/1692",[762,4.809]],["name/1693",[191,65.291]],["parent/1693",[762,4.809]],["name/1694",[767,70.4]],["parent/1694",[762,4.809]],["name/1695",[768,70.4]],["parent/1695",[762,4.809]],["name/1696",[769,70.4]],["parent/1696",[762,4.809]],["name/1697",[770,70.4]],["parent/1697",[762,4.809]],["name/1698",[771,54.305]],["parent/1698",[]],["name/1699",[772,70.4]],["parent/1699",[771,5.219]],["name/1700",[773,70.4]],["parent/1700",[771,5.219]],["name/1701",[774,70.4]],["parent/1701",[771,5.219]],["name/1702",[775,70.4]],["parent/1702",[771,5.219]],["name/1703",[776,70.4]],["parent/1703",[771,5.219]],["name/1704",[1,30.448]],["parent/1704",[771,5.219]],["name/1705",[777,55.736]],["parent/1705",[]],["name/1706",[778,70.4]],["parent/1706",[777,5.357]],["name/1707",[779,70.4]],["parent/1707",[777,5.357]],["name/1708",[780,70.4]],["parent/1708",[777,5.357]],["name/1709",[282,59.413]],["parent/1709",[777,5.357]],["name/1710",[1,30.448]],["parent/1710",[777,5.357]]],"invertedIndex":[["__type",{"_index":591,"name":{"1348":{},"1674":{}},"parent":{}}],["_circulararcproperties",{"_index":354,"name":{"806":{}},"parent":{}}],["_timelines",{"_index":573,"name":{"1274":{},"1305":{},"1334":{}},"parent":{}}],["a",{"_index":469,"name":{"1018":{}},"parent":{}}],["accuracy",{"_index":486,"name":{"1059":{},"1082":{},"1131":{}},"parent":{}}],["acronym",{"_index":250,"name":{"490":{},"499":{},"508":{},"517":{},"526":{},"535":{},"544":{},"554":{},"564":{},"573":{},"583":{},"593":{},"602":{},"612":{},"621":{},"630":{},"639":{},"648":{},"687":{}},"parent":{}}],["acronyms",{"_index":269,"name":{"663":{}},"parent":{}}],["add",{"_index":72,"name":{"84":{},"99":{},"1156":{},"1291":{},"1618":{}},"parent":{}}],["additionset",{"_index":383,"name":{"853":{}},"parent":{}}],["additive",{"_index":536,"name":{"1206":{}},"parent":{}}],["additiveblending",{"_index":532,"name":{"1200":{}},"parent":{}}],["addlayer",{"_index":704,"name":{"1591":{}},"parent":{}}],["addloop",{"_index":643,"name":{"1446":{},"1481":{}},"parent":{}}],["addtrigger",{"_index":644,"name":{"1447":{},"1482":{}},"parent":{}}],["adjusttimestocommands",{"_index":646,"name":{"1449":{},"1484":{}},"parent":{}}],["all",{"_index":264,"name":{"657":{}},"parent":{}}],["allpoints",{"_index":80,"name":{"93":{}},"parent":{}}],["alpha",{"_index":570,"name":{"1270":{},"1301":{},"1330":{},"1607":{}},"parent":{}}],["alphablending",{"_index":533,"name":{"1201":{}},"parent":{}}],["alphaequation",{"_index":541,"name":{"1213":{}},"parent":{}}],["alphaequationmode",{"_index":546,"name":{"1219":{}},"parent":{}}],["alwaysshowplayfield",{"_index":156,"name":{"355":{}},"parent":{}}],["anchor",{"_index":634,"name":{"1426":{},"1461":{},"1512":{}},"parent":{"1513":{},"1514":{},"1515":{},"1516":{},"1517":{},"1518":{},"1519":{},"1520":{},"1521":{},"1522":{},"1523":{},"1524":{},"1525":{},"1526":{},"1527":{},"1528":{}}}],["animation",{"_index":684,"name":{"1551":{}},"parent":{}}],["any",{"_index":271,"name":{"669":{}},"parent":{}}],["applydefaults",{"_index":330,"name":{"750":{}},"parent":{}}],["applydefaultstonested",{"_index":329,"name":{"749":{}},"parent":{}}],["applydefaultstoself",{"_index":328,"name":{"748":{}},"parent":{}}],["applydefaulttoinherited",{"_index":543,"name":{"1215":{}},"parent":{}}],["applytobeatmap",{"_index":261,"name":{"515":{},"969":{},"979":{}},"parent":{}}],["applytobeatmapwithmods",{"_index":433,"name":{"970":{},"980":{}},"parent":{}}],["applytoconverter",{"_index":248,"name":{"488":{}},"parent":{}}],["applytodifficulty",{"_index":257,"name":{"497":{},"550":{},"560":{},"579":{},"589":{},"608":{}},"parent":{}}],["applytohitobjects",{"_index":259,"name":{"506":{}},"parent":{}}],["approachrate",{"_index":45,"name":{"51":{},"214":{},"252":{},"320":{}},"parent":{}}],["approximatebezier",{"_index":350,"name":{"802":{}},"parent":{}}],["approximatebspline",{"_index":351,"name":{"803":{}},"parent":{}}],["approximatecatmull",{"_index":352,"name":{"804":{}},"parent":{}}],["approximatecirculararc",{"_index":353,"name":{"805":{}},"parent":{}}],["approximatelagrangepolynomial",{"_index":356,"name":{"808":{}},"parent":{}}],["approximatelinear",{"_index":355,"name":{"807":{}},"parent":{}}],["artist",{"_index":38,"name":{"40":{},"202":{},"240":{},"364":{}},"parent":{}}],["artistunicode",{"_index":166,"name":{"372":{}},"parent":{}}],["attachgroup",{"_index":67,"name":{"76":{},"115":{},"127":{},"139":{},"151":{}},"parent":{}}],["attributes",{"_index":172,"name":{"386":{},"400":{}},"parent":{}}],["audiofilename",{"_index":144,"name":{"342":{}},"parent":{}}],["audiohash",{"_index":145,"name":{"343":{}},"parent":{}}],["audioleadin",{"_index":148,"name":{"346":{}},"parent":{}}],["automation",{"_index":244,"name":{"484":{}},"parent":{}}],["autoplay",{"_index":218,"name":{"457":{},"523":{}},"parent":{"524":{},"525":{},"526":{},"527":{},"528":{},"529":{},"530":{},"531":{}}}],["average",{"_index":448,"name":{"995":{}},"parent":{}}],["b",{"_index":468,"name":{"1017":{}},"parent":{}}],["background",{"_index":678,"name":{"1545":{},"1554":{}},"parent":{}}],["backgroundpath",{"_index":139,"name":{"335":{}},"parent":{}}],["barycentriclagrange",{"_index":753,"name":{"1677":{}},"parent":{}}],["barycentricweights",{"_index":752,"name":{"1676":{}},"parent":{}}],["base",{"_index":2,"name":{"2":{},"174":{},"287":{}},"parent":{}}],["base_difficulty",{"_index":127,"name":{"314":{}},"parent":{}}],["baseobject",{"_index":187,"name":{"406":{}},"parent":{}}],["beatdivisor",{"_index":135,"name":{"329":{}},"parent":{}}],["beatlength",{"_index":104,"name":{"146":{}},"parent":{}}],["beatmap",{"_index":0,"name":{"0":{},"1051":{},"1093":{},"1139":{}},"parent":{"1":{},"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{},"22":{}}}],["beatmapbreakevent",{"_index":111,"name":{"166":{}},"parent":{"167":{},"168":{},"169":{},"170":{},"171":{},"172":{}}}],["beatmapcolorsection",{"_index":122,"name":{"307":{}},"parent":{"308":{},"309":{},"310":{},"311":{},"312":{}}}],["beatmapconverter",{"_index":23,"name":{"23":{}},"parent":{"24":{},"25":{},"26":{},"27":{},"28":{}}}],["beatmapdifficultysection",{"_index":126,"name":{"313":{}},"parent":{"314":{},"315":{},"316":{},"317":{},"318":{},"319":{},"320":{},"321":{},"322":{},"323":{},"324":{}}}],["beatmapeditorsection",{"_index":132,"name":{"325":{}},"parent":{"326":{},"327":{},"328":{},"329":{},"330":{},"331":{},"332":{}}}],["beatmapeventsection",{"_index":138,"name":{"333":{}},"parent":{"334":{},"335":{},"336":{},"337":{},"338":{},"339":{}}}],["beatmapgeneralsection",{"_index":143,"name":{"340":{}},"parent":{"341":{},"342":{},"343":{},"344":{},"345":{},"346":{},"347":{},"348":{},"349":{},"350":{},"351":{},"352":{},"353":{},"354":{},"355":{},"356":{},"357":{},"358":{},"359":{},"360":{}}}],["beatmaphashmd5",{"_index":493,"name":{"1068":{},"1097":{},"1143":{}},"parent":{}}],["beatmapid",{"_index":164,"name":{"369":{},"1065":{},"1094":{},"1140":{}},"parent":{}}],["beatmapinfo",{"_index":28,"name":{"29":{}},"parent":{"30":{},"31":{},"32":{},"33":{},"34":{},"35":{},"36":{},"37":{},"38":{},"39":{},"40":{},"41":{},"42":{},"43":{},"44":{},"45":{},"46":{},"47":{},"48":{},"49":{},"50":{},"51":{},"52":{},"53":{},"54":{},"55":{},"56":{},"57":{},"58":{},"59":{},"60":{},"61":{},"62":{},"63":{},"64":{},"65":{},"66":{},"67":{}}}],["beatmapmetadatasection",{"_index":161,"name":{"361":{}},"parent":{"362":{},"363":{},"364":{},"365":{},"366":{},"367":{},"368":{},"369":{},"370":{},"371":{},"372":{},"373":{}}}],["beatmapmodat",{"_index":273,"name":{"671":{}},"parent":{}}],["beatmapmods",{"_index":265,"name":{"658":{}},"parent":{}}],["beatmapmodsat",{"_index":272,"name":{"670":{}},"parent":{}}],["beatmapprocessor",{"_index":61,"name":{"68":{}},"parent":{"69":{},"70":{},"71":{}}}],["beatmapsetid",{"_index":30,"name":{"32":{},"194":{},"232":{},"370":{}},"parent":{}}],["bezier",{"_index":301,"name":{"711":{}},"parent":{}}],["bezier_tolerance",{"_index":347,"name":{"799":{}},"parent":{}}],["binarysearch",{"_index":744,"name":{"1668":{}},"parent":{"1669":{},"1670":{},"1671":{},"1672":{},"1673":{}}}],["binarysearch.binarysearchpredicate",{"_index":750,"name":{},"parent":{"1674":{}}}],["binarysearchpredicate",{"_index":749,"name":{"1673":{}},"parent":{}}],["bitwise",{"_index":251,"name":{"491":{},"500":{},"509":{},"518":{},"527":{},"536":{},"545":{},"555":{},"565":{},"574":{},"584":{},"594":{},"603":{},"613":{},"622":{},"631":{},"640":{},"649":{},"664":{},"688":{}},"parent":{}}],["blendequationmode",{"_index":510,"name":{"1161":{}},"parent":{"1162":{},"1163":{},"1164":{},"1165":{},"1166":{}}}],["blendingequation",{"_index":506,"name":{"1154":{}},"parent":{"1155":{},"1156":{},"1157":{},"1158":{},"1159":{},"1160":{}}}],["blendingfactordest",{"_index":514,"name":{"1167":{}},"parent":{"1168":{},"1169":{},"1170":{},"1171":{},"1172":{},"1173":{},"1174":{},"1175":{},"1176":{},"1177":{},"1178":{},"1179":{},"1180":{},"1181":{},"1182":{}}}],["blendingfactorsrc",{"_index":530,"name":{"1183":{}},"parent":{"1184":{},"1185":{},"1186":{},"1187":{},"1188":{},"1189":{},"1190":{},"1191":{},"1192":{},"1193":{},"1194":{},"1195":{},"1196":{},"1197":{},"1198":{}}}],["blendingmode",{"_index":531,"name":{"1199":{},"1578":{}},"parent":{"1200":{},"1201":{}}}],["blendingparameters",{"_index":534,"name":{"1202":{},"1271":{},"1302":{},"1331":{}},"parent":{"1203":{},"1204":{},"1205":{},"1206":{},"1207":{},"1208":{},"1209":{},"1210":{},"1211":{},"1212":{},"1213":{},"1214":{},"1215":{},"1216":{},"1217":{},"1218":{},"1219":{},"1220":{},"1221":{},"1222":{},"1223":{}}}],["blendingtype",{"_index":551,"name":{"1224":{}},"parent":{"1225":{},"1226":{},"1227":{},"1228":{},"1229":{},"1230":{},"1231":{},"1232":{},"1233":{},"1234":{},"1235":{},"1236":{},"1237":{},"1238":{},"1239":{},"1240":{}}}],["blue",{"_index":716,"name":{"1606":{}},"parent":{}}],["bookmarks",{"_index":133,"name":{"327":{}},"parent":{}}],["bottomcentre",{"_index":668,"name":{"1527":{},"1568":{}},"parent":{}}],["bottomleft",{"_index":667,"name":{"1526":{},"1572":{}},"parent":{}}],["bottomright",{"_index":669,"name":{"1528":{},"1573":{}},"parent":{}}],["bpm",{"_index":19,"name":{"19":{},"148":{},"304":{}},"parent":{}}],["bpmmax",{"_index":18,"name":{"18":{},"48":{},"188":{},"211":{},"249":{},"278":{},"303":{}},"parent":{}}],["bpmmin",{"_index":17,"name":{"17":{},"47":{},"187":{},"210":{},"248":{},"277":{},"302":{}},"parent":{}}],["bpmmode",{"_index":20,"name":{"20":{},"49":{},"189":{},"212":{},"250":{},"279":{},"305":{}},"parent":{}}],["bpmmultiplier",{"_index":94,"name":{"112":{}},"parent":{}}],["break",{"_index":680,"name":{"1547":{}},"parent":{}}],["breaks",{"_index":140,"name":{"336":{}},"parent":{}}],["buttonstate",{"_index":420,"name":{"932":{},"955":{}},"parent":{}}],["c",{"_index":467,"name":{"1016":{}},"parent":{}}],["calculate",{"_index":175,"name":{"390":{},"401":{}},"parent":{}}],["calculateaccuracy",{"_index":442,"name":{"988":{}},"parent":{}}],["calculateall",{"_index":176,"name":{"391":{}},"parent":{}}],["calculateat",{"_index":178,"name":{"393":{}},"parent":{}}],["calculateattributes",{"_index":184,"name":{"402":{}},"parent":{}}],["calculateddistance",{"_index":370,"name":{"829":{}},"parent":{}}],["calculatedpath",{"_index":371,"name":{"831":{}},"parent":{}}],["calculatepathtoprogress",{"_index":373,"name":{"833":{}},"parent":{}}],["calculaterank",{"_index":443,"name":{"989":{}},"parent":{}}],["calculatetimed",{"_index":180,"name":{"395":{}},"parent":{}}],["calculatetimedwithmods",{"_index":181,"name":{"396":{}},"parent":{}}],["calculatewithmods",{"_index":177,"name":{"392":{}},"parent":{}}],["calculatewithmodsat",{"_index":179,"name":{"394":{}},"parent":{}}],["canbehit",{"_index":480,"name":{"1031":{}},"parent":{}}],["canconvert",{"_index":27,"name":{"28":{}},"parent":{}}],["catmull",{"_index":300,"name":{"710":{}},"parent":{}}],["catmull_detail",{"_index":349,"name":{"801":{}},"parent":{}}],["centre",{"_index":363,"name":{"817":{},"1524":{},"1565":{}},"parent":{}}],["centreleft",{"_index":665,"name":{"1523":{},"1566":{}},"parent":{}}],["centreright",{"_index":666,"name":{"1525":{},"1571":{}},"parent":{}}],["checkalreadyexisting",{"_index":87,"name":{"101":{}},"parent":{}}],["cinema",{"_index":229,"name":{"468":{},"532":{}},"parent":{"533":{},"534":{},"535":{},"536":{},"537":{},"538":{},"539":{},"540":{}}}],["circlesize",{"_index":44,"name":{"50":{},"213":{},"251":{},"317":{}},"parent":{}}],["circular_arc_tolerance",{"_index":348,"name":{"800":{}},"parent":{}}],["circulararcproperties",{"_index":357,"name":{"810":{}},"parent":{"811":{},"812":{},"813":{},"814":{},"815":{},"816":{},"817":{},"818":{}}}],["clamp",{"_index":755,"name":{"1679":{}},"parent":{}}],["clamp01",{"_index":756,"name":{"1680":{}},"parent":{}}],["clap",{"_index":289,"name":{"698":{}},"parent":{}}],["clear",{"_index":88,"name":{"103":{},"431":{},"442":{}},"parent":{}}],["clockrate",{"_index":131,"name":{"323":{}},"parent":{}}],["clone",{"_index":22,"name":{"22":{},"65":{},"104":{},"191":{},"281":{},"286":{},"312":{},"324":{},"332":{},"339":{},"360":{},"373":{},"683":{},"751":{},"758":{},"765":{},"787":{},"795":{},"837":{},"847":{},"855":{},"922":{},"935":{},"940":{},"949":{},"965":{},"1121":{},"1145":{},"1610":{},"1635":{},"1666":{}},"parent":{}}],["color",{"_index":569,"name":{"1269":{},"1300":{},"1329":{},"1436":{},"1471":{},"1538":{}},"parent":{}}],["color4",{"_index":713,"name":{"1602":{}},"parent":{"1603":{},"1604":{},"1605":{},"1606":{},"1607":{},"1608":{},"1609":{},"1610":{},"1611":{}}}],["colors",{"_index":7,"name":{"7":{},"179":{},"270":{},"292":{},"1582":{}},"parent":{}}],["colour",{"_index":681,"name":{"1548":{}},"parent":{}}],["column",{"_index":385,"name":{"857":{}},"parent":{}}],["combocolors",{"_index":123,"name":{"309":{}},"parent":{}}],["comboindex",{"_index":390,"name":{"863":{}},"parent":{}}],["comboindexwithoffsets",{"_index":391,"name":{"864":{}},"parent":{}}],["combooffset",{"_index":297,"name":{"707":{},"860":{},"867":{}},"parent":{}}],["comboskip1",{"_index":294,"name":{"704":{}},"parent":{}}],["comboskip2",{"_index":295,"name":{"705":{}},"parent":{}}],["comboskip3",{"_index":296,"name":{"706":{}},"parent":{}}],["command",{"_index":552,"name":{"1241":{}},"parent":{"1242":{},"1243":{},"1244":{},"1245":{},"1246":{},"1247":{},"1248":{},"1249":{},"1250":{},"1251":{},"1252":{},"1253":{},"1254":{}}}],["commandloop",{"_index":560,"name":{"1255":{}},"parent":{"1256":{},"1257":{},"1258":{},"1259":{},"1260":{},"1261":{},"1262":{},"1263":{},"1264":{},"1265":{},"1266":{},"1267":{},"1268":{},"1269":{},"1270":{},"1271":{},"1272":{},"1273":{},"1274":{},"1275":{},"1276":{},"1277":{},"1278":{},"1279":{},"1280":{},"1281":{},"1282":{}}}],["commands",{"_index":576,"name":{"1277":{},"1290":{},"1308":{},"1337":{},"1430":{},"1465":{},"1493":{}},"parent":{}}],["commandsduration",{"_index":579,"name":{"1280":{},"1311":{},"1340":{}},"parent":{}}],["commandsendtime",{"_index":578,"name":{"1279":{},"1310":{},"1339":{}},"parent":{}}],["commandsstarttime",{"_index":577,"name":{"1278":{},"1309":{},"1338":{}},"parent":{}}],["commandtimeline",{"_index":581,"name":{"1283":{}},"parent":{"1284":{},"1285":{},"1286":{},"1287":{},"1288":{},"1289":{},"1290":{},"1291":{},"1292":{}}}],["commandtimelinegroup",{"_index":583,"name":{"1293":{}},"parent":{"1294":{},"1295":{},"1296":{},"1297":{},"1298":{},"1299":{},"1300":{},"1301":{},"1302":{},"1303":{},"1304":{},"1305":{},"1306":{},"1307":{},"1308":{},"1309":{},"1310":{},"1311":{},"1312":{},"1313":{},"1314":{},"1315":{}}}],["commandtrigger",{"_index":584,"name":{"1316":{}},"parent":{"1317":{},"1318":{},"1319":{},"1320":{},"1321":{},"1322":{},"1323":{},"1324":{},"1325":{},"1326":{},"1327":{},"1328":{},"1329":{},"1330":{},"1331":{},"1332":{},"1333":{},"1334":{},"1335":{},"1336":{},"1337":{},"1338":{},"1339":{},"1340":{},"1341":{},"1342":{},"1343":{},"1344":{}}}],["commandtype",{"_index":670,"name":{"1529":{}},"parent":{"1530":{},"1531":{},"1532":{},"1533":{},"1534":{},"1535":{},"1536":{},"1537":{},"1538":{},"1539":{}}}],["compareto",{"_index":173,"name":{"387":{}},"parent":{}}],["compoundtype",{"_index":675,"name":{"1540":{}},"parent":{"1541":{},"1542":{},"1543":{}}}],["constantalpha",{"_index":527,"name":{"1180":{},"1196":{},"1226":{}},"parent":{}}],["constantcolor",{"_index":525,"name":{"1178":{},"1194":{},"1227":{}},"parent":{}}],["constructor",{"_index":1,"name":{"1":{},"24":{},"30":{},"69":{},"73":{},"81":{},"87":{},"107":{},"120":{},"132":{},"144":{},"167":{},"264":{},"283":{},"308":{},"316":{},"326":{},"334":{},"341":{},"362":{},"375":{},"380":{},"384":{},"389":{},"399":{},"404":{},"414":{},"418":{},"423":{},"428":{},"437":{},"524":{},"533":{},"542":{},"552":{},"562":{},"571":{},"581":{},"591":{},"600":{},"610":{},"619":{},"628":{},"637":{},"646":{},"655":{},"728":{},"736":{},"809":{},"811":{},"820":{},"824":{},"839":{},"849":{},"937":{},"942":{},"952":{},"967":{},"992":{},"1025":{},"1107":{},"1118":{},"1124":{},"1207":{},"1242":{},"1256":{},"1284":{},"1294":{},"1317":{},"1421":{},"1453":{},"1459":{},"1488":{},"1580":{},"1595":{},"1603":{},"1613":{},"1652":{},"1692":{},"1704":{},"1710":{}},"parent":{}}],["contains",{"_index":115,"name":{"172":{}},"parent":{}}],["controlpoint",{"_index":64,"name":{"72":{}},"parent":{"73":{},"74":{},"75":{},"76":{},"77":{},"78":{},"79":{}}}],["controlpointgroup",{"_index":71,"name":{"80":{}},"parent":{"81":{},"82":{},"83":{},"84":{},"85":{}}}],["controlpointinfo",{"_index":74,"name":{"86":{}},"parent":{"87":{},"88":{},"89":{},"90":{},"91":{},"92":{},"93":{},"94":{},"95":{},"96":{},"97":{},"98":{},"99":{},"100":{},"101":{},"102":{},"103":{},"104":{}}}],["controlpoints",{"_index":9,"name":{"9":{},"82":{},"181":{},"272":{},"294":{},"826":{}},"parent":{}}],["controlpointtype",{"_index":106,"name":{"154":{}},"parent":{"155":{},"156":{},"157":{},"158":{}}}],["conversion",{"_index":243,"name":{"483":{}},"parent":{}}],["convertbeatmap",{"_index":24,"name":{"25":{}},"parent":{}}],["convertermodat",{"_index":279,"name":{"677":{}},"parent":{}}],["convertermods",{"_index":267,"name":{"661":{}},"parent":{}}],["convertermodsat",{"_index":278,"name":{"676":{}},"parent":{}}],["converthitobjects",{"_index":25,"name":{"26":{}},"parent":{}}],["copyfromparent",{"_index":542,"name":{"1214":{}},"parent":{}}],["count",{"_index":199,"name":{"429":{},"438":{}},"parent":{}}],["count100",{"_index":497,"name":{"1072":{},"1101":{},"1113":{},"1150":{}},"parent":{}}],["count300",{"_index":495,"name":{"1070":{},"1099":{},"1111":{},"1148":{}},"parent":{}}],["count50",{"_index":498,"name":{"1073":{},"1102":{},"1114":{},"1151":{}},"parent":{}}],["countdown",{"_index":150,"name":{"348":{}},"parent":{}}],["countdownoffset",{"_index":152,"name":{"350":{}},"parent":{}}],["countgeki",{"_index":494,"name":{"1069":{},"1098":{},"1110":{},"1147":{}},"parent":{}}],["countkatu",{"_index":496,"name":{"1071":{},"1100":{},"1112":{},"1149":{}},"parent":{}}],["countmiss",{"_index":499,"name":{"1074":{},"1103":{},"1115":{},"1152":{}},"parent":{}}],["countrycode",{"_index":733,"name":{"1638":{},"1653":{}},"parent":{}}],["countryrank",{"_index":742,"name":{"1650":{},"1665":{}},"parent":{}}],["createbeatmap",{"_index":26,"name":{"27":{}},"parent":{}}],["createbeatmapconverter",{"_index":437,"name":{"974":{},"984":{}},"parent":{}}],["createbeatmapprocessor",{"_index":436,"name":{"973":{},"983":{}},"parent":{}}],["createdifficultycalculator",{"_index":438,"name":{"975":{},"985":{}},"parent":{}}],["createmodcombination",{"_index":435,"name":{"972":{},"982":{}},"parent":{}}],["createnestedhitobjects",{"_index":327,"name":{"747":{}},"parent":{}}],["createperformancecalculator",{"_index":439,"name":{"976":{},"986":{}},"parent":{}}],["creator",{"_index":32,"name":{"34":{},"196":{},"234":{},"365":{}},"parent":{}}],["creatorid",{"_index":31,"name":{"33":{},"195":{},"233":{}},"parent":{}}],["currentcomboindex",{"_index":389,"name":{"862":{}},"parent":{}}],["curvepositionat",{"_index":376,"name":{"836":{}},"parent":{}}],["curvetype",{"_index":368,"name":{"825":{}},"parent":{}}],["custom",{"_index":661,"name":{"1519":{},"1570":{}},"parent":{}}],["customindex",{"_index":101,"name":{"135":{},"842":{},"854":{}},"parent":{}}],["d",{"_index":466,"name":{"1015":{}},"parent":{}}],["date",{"_index":491,"name":{"1066":{},"1095":{},"1141":{}},"parent":{}}],["default",{"_index":90,"name":{"106":{},"119":{},"131":{},"143":{}},"parent":{}}],["defaultcompare",{"_index":780,"name":{"1708":{}},"parent":{}}],["deletedat",{"_index":55,"name":{"61":{},"224":{},"259":{}},"parent":{}}],["deltatime",{"_index":189,"name":{"408":{}},"parent":{}}],["depth",{"_index":708,"name":{"1597":{}},"parent":{}}],["depthsort",{"_index":778,"name":{"1706":{}},"parent":{}}],["dequeue",{"_index":201,"name":{"432":{},"441":{}},"parent":{}}],["destination",{"_index":537,"name":{"1209":{}},"parent":{}}],["destinationalpha",{"_index":539,"name":{"1211":{}},"parent":{}}],["destinationalphablendingfactor",{"_index":550,"name":{"1223":{}},"parent":{}}],["destinationblendingfactor",{"_index":548,"name":{"1221":{}},"parent":{}}],["dettachgroup",{"_index":68,"name":{"77":{},"116":{},"128":{},"140":{},"152":{}},"parent":{}}],["difficulty",{"_index":5,"name":{"5":{},"177":{},"268":{},"290":{}},"parent":{}}],["difficultyattributes",{"_index":167,"name":{"374":{}},"parent":{"375":{},"376":{},"377":{},"378":{}}}],["difficultycalculator",{"_index":174,"name":{"388":{}},"parent":{"389":{},"390":{},"391":{},"392":{},"393":{},"394":{},"395":{},"396":{},"397":{}}}],["difficultydecrease",{"_index":239,"name":{"478":{}},"parent":{}}],["difficultyhitobject",{"_index":185,"name":{"403":{}},"parent":{"404":{},"405":{},"406":{},"407":{},"408":{},"409":{},"410":{},"411":{},"412":{}}}],["difficultyincrease",{"_index":240,"name":{"479":{},"482":{}},"parent":{}}],["difficultymodat",{"_index":277,"name":{"675":{}},"parent":{}}],["difficultymods",{"_index":182,"name":{"397":{},"660":{}},"parent":{}}],["difficultymodsat",{"_index":276,"name":{"674":{}},"parent":{}}],["difficultypoint",{"_index":89,"name":{"105":{},"156":{}},"parent":{"106":{},"107":{},"108":{},"109":{},"110":{},"111":{},"112":{},"113":{},"114":{},"115":{},"116":{},"117":{}}}],["difficultypointat",{"_index":82,"name":{"95":{}},"parent":{}}],["difficultypoints",{"_index":76,"name":{"89":{}},"parent":{}}],["difficultyrange",{"_index":444,"name":{"990":{}},"parent":{"991":{},"992":{},"993":{},"994":{},"995":{},"996":{}}}],["difficultyreduction",{"_index":242,"name":{"481":{}},"parent":{}}],["difficultyvalue",{"_index":194,"name":{"416":{},"421":{},"426":{}},"parent":{}}],["direction",{"_index":361,"name":{"815":{}},"parent":{}}],["distance",{"_index":340,"name":{"775":{},"828":{},"869":{},"881":{},"886":{},"1630":{}},"parent":{}}],["distancespacing",{"_index":134,"name":{"328":{}},"parent":{}}],["divide",{"_index":724,"name":{"1624":{}},"parent":{}}],["dot",{"_index":726,"name":{"1626":{}},"parent":{}}],["doubletime",{"_index":213,"name":{"452":{},"541":{}},"parent":{"542":{},"543":{},"544":{},"545":{},"546":{},"547":{},"548":{},"549":{},"550":{}}}],["drainrate",{"_index":47,"name":{"53":{},"216":{},"254":{},"318":{}},"parent":{}}],["drum",{"_index":305,"name":{"718":{}},"parent":{}}],["dstalpha",{"_index":520,"name":{"1173":{},"1189":{},"1228":{}},"parent":{}}],["dstcolor",{"_index":522,"name":{"1175":{},"1191":{},"1229":{}},"parent":{}}],["duration",{"_index":113,"name":{"170":{},"767":{},"777":{},"797":{},"871":{},"874":{},"883":{},"888":{},"904":{},"1250":{},"1281":{},"1314":{},"1343":{},"1443":{},"1478":{},"1508":{}},"parent":{}}],["earliesteventtime",{"_index":702,"name":{"1589":{}},"parent":{}}],["easing",{"_index":554,"name":{"1245":{},"1345":{}},"parent":{"1346":{},"1347":{},"1349":{},"1350":{},"1351":{},"1352":{},"1353":{},"1354":{},"1355":{},"1356":{},"1357":{},"1358":{},"1359":{},"1360":{},"1361":{},"1362":{},"1363":{},"1364":{},"1365":{},"1366":{},"1367":{},"1368":{},"1369":{},"1370":{},"1371":{},"1372":{},"1373":{},"1374":{},"1375":{},"1376":{},"1377":{},"1378":{},"1379":{},"1380":{},"1381":{},"1382":{}}}],["easing.easingfn",{"_index":592,"name":{},"parent":{"1348":{}}}],["easingfn",{"_index":590,"name":{"1347":{}},"parent":{}}],["easingtype",{"_index":626,"name":{"1383":{}},"parent":{"1384":{},"1385":{},"1386":{},"1387":{},"1388":{},"1389":{},"1390":{},"1391":{},"1392":{},"1393":{},"1394":{},"1395":{},"1396":{},"1397":{},"1398":{},"1399":{},"1400":{},"1401":{},"1402":{},"1403":{},"1404":{},"1405":{},"1406":{},"1407":{},"1408":{},"1409":{},"1410":{},"1411":{},"1412":{},"1413":{},"1414":{},"1415":{},"1416":{},"1417":{},"1418":{},"1419":{}}}],["easy",{"_index":208,"name":{"447":{},"551":{}},"parent":{"552":{},"553":{},"554":{},"555":{},"556":{},"557":{},"558":{},"559":{},"560":{}}}],["editor",{"_index":4,"name":{"4":{},"176":{},"267":{},"289":{}},"parent":{}}],["effectpoint",{"_index":95,"name":{"118":{},"157":{}},"parent":{"119":{},"120":{},"121":{},"122":{},"123":{},"124":{},"125":{},"126":{},"127":{},"128":{},"129":{}}}],["effectpointat",{"_index":83,"name":{"96":{}},"parent":{}}],["effectpoints",{"_index":77,"name":{"90":{}},"parent":{}}],["effecttype",{"_index":107,"name":{"159":{}},"parent":{"160":{},"161":{},"162":{}}}],["elements",{"_index":712,"name":{"1601":{}},"parent":{}}],["empty",{"_index":474,"name":{"1024":{}},"parent":{}}],["endposition",{"_index":400,"name":{"895":{}},"parent":{}}],["endtime",{"_index":112,"name":{"169":{},"410":{},"766":{},"776":{},"796":{},"870":{},"873":{},"882":{},"887":{},"903":{},"1247":{},"1262":{},"1286":{},"1313":{},"1342":{},"1428":{},"1463":{},"1507":{}},"parent":{}}],["endvalue",{"_index":556,"name":{"1249":{},"1288":{}},"parent":{}}],["endx",{"_index":401,"name":{"897":{},"908":{},"911":{}},"parent":{}}],["enqueue",{"_index":202,"name":{"433":{},"440":{}},"parent":{}}],["enumerate",{"_index":204,"name":{"435":{},"443":{}},"parent":{}}],["epilepsywarning",{"_index":157,"name":{"356":{}},"parent":{}}],["equals",{"_index":59,"name":{"66":{},"684":{},"950":{},"1122":{},"1146":{},"1216":{},"1254":{},"1609":{},"1634":{},"1667":{}},"parent":{}}],["eventgenerator",{"_index":312,"name":{"725":{}},"parent":{"726":{},"727":{},"728":{}}}],["events",{"_index":8,"name":{"8":{},"180":{},"271":{},"293":{}},"parent":{}}],["eventtype",{"_index":316,"name":{"730":{},"1544":{}},"parent":{"1545":{},"1546":{},"1547":{},"1548":{},"1549":{},"1550":{},"1551":{},"1552":{}}}],["expecteddistance",{"_index":369,"name":{"827":{}},"parent":{}}],["f",{"_index":465,"name":{"1014":{}},"parent":{}}],["fadd",{"_index":721,"name":{"1619":{}},"parent":{}}],["fade",{"_index":674,"name":{"1534":{}},"parent":{}}],["fadein",{"_index":227,"name":{"466":{}},"parent":{}}],["fail",{"_index":687,"name":{"1555":{}},"parent":{}}],["fastrandom",{"_index":762,"name":{"1687":{}},"parent":{"1688":{},"1689":{},"1690":{},"1691":{},"1692":{},"1693":{},"1694":{},"1695":{},"1696":{},"1697":{}}}],["favourites",{"_index":33,"name":{"35":{},"197":{},"235":{}},"parent":{}}],["fdistance",{"_index":729,"name":{"1631":{}},"parent":{}}],["fdivide",{"_index":725,"name":{"1625":{}},"parent":{}}],["fdot",{"_index":727,"name":{"1627":{}},"parent":{}}],["fileformat",{"_index":11,"name":{"11":{},"185":{},"275":{},"296":{},"1585":{}},"parent":{}}],["filename",{"_index":380,"name":{"846":{},"850":{}},"parent":{}}],["filepath",{"_index":635,"name":{"1429":{},"1456":{},"1464":{},"1490":{},"1500":{},"1504":{},"1510":{}},"parent":{}}],["fileupdatedate",{"_index":12,"name":{"12":{},"297":{}},"parent":{}}],["findcontrolpoint",{"_index":747,"name":{"1671":{}},"parent":{}}],["findcontrolpointindex",{"_index":746,"name":{"1670":{}},"parent":{}}],["findindex",{"_index":748,"name":{"1672":{}},"parent":{}}],["findnumber",{"_index":745,"name":{"1669":{}},"parent":{}}],["finish",{"_index":288,"name":{"697":{}},"parent":{}}],["flashlight",{"_index":217,"name":{"456":{},"561":{}},"parent":{"562":{},"563":{},"564":{},"565":{},"566":{},"567":{},"568":{},"569":{}}}],["flength",{"_index":728,"name":{"1629":{}},"parent":{}}],["fliph",{"_index":571,"name":{"1272":{},"1303":{},"1332":{}},"parent":{}}],["flipv",{"_index":572,"name":{"1273":{},"1304":{},"1333":{}},"parent":{}}],["flipx",{"_index":639,"name":{"1438":{},"1473":{}},"parent":{}}],["flipy",{"_index":640,"name":{"1439":{},"1474":{}},"parent":{}}],["floatx",{"_index":719,"name":{"1616":{}},"parent":{}}],["floaty",{"_index":720,"name":{"1617":{}},"parent":{}}],["fnormalize",{"_index":731,"name":{"1633":{}},"parent":{}}],["foreground",{"_index":689,"name":{"1557":{}},"parent":{}}],["framecount",{"_index":630,"name":{"1422":{}},"parent":{}}],["framedelay",{"_index":631,"name":{"1423":{}},"parent":{}}],["frames",{"_index":416,"name":{"927":{},"946":{}},"parent":{}}],["fscale",{"_index":723,"name":{"1623":{}},"parent":{}}],["fsubtract",{"_index":722,"name":{"1621":{}},"parent":{}}],["full",{"_index":200,"name":{"430":{}},"parent":{}}],["fun",{"_index":245,"name":{"485":{}},"parent":{}}],["funcadd",{"_index":511,"name":{"1162":{}},"parent":{}}],["funcreversesubtract",{"_index":513,"name":{"1166":{}},"parent":{}}],["funcsubtract",{"_index":512,"name":{"1165":{}},"parent":{}}],["gameversion",{"_index":414,"name":{"924":{},"943":{}},"parent":{}}],["general",{"_index":3,"name":{"3":{},"175":{},"266":{},"288":{}},"parent":{}}],["generate",{"_index":314,"name":{"727":{}},"parent":{}}],["generateticks",{"_index":91,"name":{"109":{}},"parent":{}}],["get",{"_index":203,"name":{"434":{},"439":{}},"parent":{}}],["getallavailablewindows",{"_index":475,"name":{"1026":{}},"parent":{}}],["getcurrentlist",{"_index":86,"name":{"100":{}},"parent":{}}],["getcurrentstrainpeaks",{"_index":196,"name":{"420":{},"425":{}},"parent":{}}],["geteasingfn",{"_index":589,"name":{"1346":{}},"parent":{}}],["getlayerbyname",{"_index":706,"name":{"1593":{}},"parent":{}}],["getlayerbytype",{"_index":705,"name":{"1592":{}},"parent":{}}],["getprogress",{"_index":557,"name":{"1251":{}},"parent":{}}],["getvalueatprogress",{"_index":558,"name":{"1252":{}},"parent":{}}],["getvalueattime",{"_index":559,"name":{"1253":{}},"parent":{}}],["globalrank",{"_index":741,"name":{"1649":{},"1664":{}},"parent":{}}],["good",{"_index":454,"name":{"1002":{},"1037":{}},"parent":{}}],["great",{"_index":455,"name":{"1003":{},"1038":{}},"parent":{}}],["green",{"_index":715,"name":{"1605":{}},"parent":{}}],["gridsize",{"_index":136,"name":{"330":{}},"parent":{}}],["group",{"_index":66,"name":{"75":{},"114":{},"126":{},"138":{},"150":{}},"parent":{}}],["groupat",{"_index":81,"name":{"94":{}},"parent":{}}],["groupnumber",{"_index":588,"name":{"1322":{}},"parent":{}}],["groups",{"_index":75,"name":{"88":{}},"parent":{}}],["halftime",{"_index":215,"name":{"454":{},"570":{}},"parent":{"571":{},"572":{},"573":{},"574":{},"575":{},"576":{},"577":{},"578":{},"579":{}}}],["hardrock",{"_index":211,"name":{"450":{},"580":{}},"parent":{"581":{},"582":{},"583":{},"584":{},"585":{},"586":{},"587":{},"588":{},"589":{}}}],["has",{"_index":270,"name":{"668":{}},"parent":{}}],["hascommands",{"_index":580,"name":{"1282":{},"1292":{},"1315":{},"1344":{},"1444":{},"1479":{},"1498":{}},"parent":{}}],["hasdrawable",{"_index":700,"name":{"1587":{}},"parent":{}}],["haseffect",{"_index":114,"name":{"171":{}},"parent":{}}],["hashmd5",{"_index":415,"name":{"926":{},"945":{}},"parent":{}}],["hasvariables",{"_index":701,"name":{"1588":{}},"parent":{}}],["head",{"_index":309,"name":{"722":{}},"parent":{}}],["health",{"_index":412,"name":{"921":{},"939":{}},"parent":{}}],["hex",{"_index":717,"name":{"1608":{}},"parent":{}}],["hidden",{"_index":210,"name":{"449":{},"590":{}},"parent":{"591":{},"592":{},"593":{},"594":{},"595":{},"596":{},"597":{},"598":{}}}],["hitobject",{"_index":320,"name":{"735":{}},"parent":{"736":{},"737":{},"738":{},"739":{},"740":{},"741":{},"742":{},"743":{},"744":{},"745":{},"746":{},"747":{},"748":{},"749":{},"750":{},"751":{}}}],["hitobjectmodat",{"_index":275,"name":{"673":{}},"parent":{}}],["hitobjectmods",{"_index":266,"name":{"659":{}},"parent":{}}],["hitobjectmodsat",{"_index":274,"name":{"672":{}},"parent":{}}],["hitobjects",{"_index":10,"name":{"10":{},"182":{},"265":{},"295":{}},"parent":{}}],["hitresult",{"_index":450,"name":{"997":{}},"parent":{"998":{},"999":{},"1000":{},"1001":{},"1002":{},"1003":{},"1004":{},"1005":{},"1006":{},"1007":{},"1008":{},"1009":{},"1010":{},"1011":{},"1012":{}}}],["hitsample",{"_index":377,"name":{"838":{}},"parent":{"839":{},"840":{},"841":{},"842":{},"843":{},"844":{},"845":{},"846":{},"847":{}}}],["hitsound",{"_index":285,"name":{"693":{},"741":{},"755":{},"762":{},"784":{},"792":{},"841":{}},"parent":{"694":{},"695":{},"696":{},"697":{},"698":{}}}],["hittable",{"_index":40,"name":{"42":{},"204":{},"242":{}},"parent":{}}],["hittype",{"_index":290,"name":{"699":{},"740":{},"754":{},"761":{},"783":{},"791":{}},"parent":{"700":{},"701":{},"702":{},"703":{},"704":{},"705":{},"706":{},"707":{},"708":{}}}],["hitwindows",{"_index":324,"name":{"744":{},"757":{},"764":{},"786":{},"794":{},"1023":{}},"parent":{"1024":{},"1025":{},"1026":{},"1027":{},"1028":{},"1029":{},"1030":{},"1031":{}}}],["hold",{"_index":298,"name":{"708":{}},"parent":{}}],["holdable",{"_index":43,"name":{"45":{},"207":{},"245":{}},"parent":{}}],["horizontalflip",{"_index":695,"name":{"1576":{}},"parent":{}}],["iapplicabletobeatmap",{"_index":260,"name":{"514":{}},"parent":{"515":{},"516":{},"517":{},"518":{},"519":{},"520":{},"521":{},"522":{}}}],["iapplicabletoconverter",{"_index":247,"name":{"487":{}},"parent":{"488":{},"489":{},"490":{},"491":{},"492":{},"493":{},"494":{},"495":{}}}],["iapplicabletodifficulty",{"_index":256,"name":{"496":{}},"parent":{"497":{},"498":{},"499":{},"500":{},"501":{},"502":{},"503":{},"504":{}}}],["iapplicabletohitobjects",{"_index":258,"name":{"505":{}},"parent":{"506":{},"507":{},"508":{},"509":{},"510":{},"511":{},"512":{},"513":{}}}],["ibeatmap",{"_index":116,"name":{"173":{}},"parent":{"174":{},"175":{},"176":{},"177":{},"178":{},"179":{},"180":{},"181":{},"182":{},"183":{},"184":{},"185":{},"186":{},"187":{},"188":{},"189":{},"190":{},"191":{}}}],["ibeatmapinfo",{"_index":117,"name":{"192":{}},"parent":{"193":{},"194":{},"195":{},"196":{},"197":{},"198":{},"199":{},"200":{},"201":{},"202":{},"203":{},"204":{},"205":{},"206":{},"207":{},"208":{},"209":{},"210":{},"211":{},"212":{},"213":{},"214":{},"215":{},"216":{},"217":{},"218":{},"219":{},"220":{},"221":{},"222":{},"223":{},"224":{},"225":{},"226":{},"227":{}}}],["id",{"_index":29,"name":{"31":{},"193":{},"231":{},"968":{},"978":{},"1052":{},"1079":{},"1125":{},"1639":{},"1654":{}},"parent":{}}],["ignorehit",{"_index":463,"name":{"1012":{},"1047":{}},"parent":{}}],["ignoremiss",{"_index":462,"name":{"1011":{},"1046":{}},"parent":{}}],["ihascolumn",{"_index":384,"name":{"856":{}},"parent":{"857":{}}}],["ihascombo",{"_index":386,"name":{"858":{}},"parent":{"859":{},"860":{}}}],["ihascomboinformation",{"_index":388,"name":{"861":{}},"parent":{"862":{},"863":{},"864":{},"865":{},"866":{},"867":{}}}],["ihascommands",{"_index":652,"name":{"1492":{}},"parent":{"1493":{},"1494":{},"1495":{},"1496":{},"1497":{},"1498":{},"1499":{},"1500":{},"1501":{}}}],["ihasdistance",{"_index":393,"name":{"868":{}},"parent":{"869":{},"870":{},"871":{}}}],["ihasduration",{"_index":394,"name":{"872":{}},"parent":{"873":{},"874":{}}}],["ihaslegacylasttickoffset",{"_index":395,"name":{"875":{}},"parent":{"876":{}}}],["ihasnodesamples",{"_index":396,"name":{"877":{}},"parent":{"878":{}}}],["ihaspath",{"_index":397,"name":{"879":{}},"parent":{"880":{},"881":{},"882":{},"883":{}}}],["ihaspathwithrepeats",{"_index":398,"name":{"884":{}},"parent":{"885":{},"886":{},"887":{},"888":{},"889":{},"890":{},"891":{},"892":{}}}],["ihasposition",{"_index":399,"name":{"893":{}},"parent":{"894":{},"895":{},"896":{},"897":{},"898":{}}}],["ihasrepeats",{"_index":402,"name":{"899":{}},"parent":{"900":{},"901":{},"902":{},"903":{},"904":{},"905":{}}}],["ihasx",{"_index":403,"name":{"906":{}},"parent":{"907":{},"908":{}}}],["ihasy",{"_index":404,"name":{"909":{}},"parent":{"910":{},"911":{}}}],["ihitobject",{"_index":331,"name":{"752":{}},"parent":{"753":{},"754":{},"755":{},"756":{},"757":{},"758":{}}}],["ihitstatistics",{"_index":481,"name":{"1032":{}},"parent":{"1033":{},"1034":{},"1035":{},"1036":{},"1037":{},"1038":{},"1039":{},"1040":{},"1041":{},"1042":{},"1043":{},"1044":{},"1045":{},"1046":{},"1047":{}}}],["iholdableobject",{"_index":332,"name":{"759":{}},"parent":{"760":{},"761":{},"762":{},"763":{},"764":{},"765":{},"766":{},"767":{},"768":{}}}],["ijsonablebeatmapinfo",{"_index":119,"name":{"229":{}},"parent":{"230":{},"231":{},"232":{},"233":{},"234":{},"235":{},"236":{},"237":{},"238":{},"239":{},"240":{},"241":{},"242":{},"243":{},"244":{},"245":{},"246":{},"247":{},"248":{},"249":{},"250":{},"251":{},"252":{},"253":{},"254":{},"255":{},"256":{},"257":{},"258":{},"259":{},"260":{},"261":{},"262":{}}}],["ijsonablescoreinfo",{"_index":483,"name":{"1049":{}},"parent":{"1050":{},"1051":{},"1052":{},"1053":{},"1054":{},"1055":{},"1056":{},"1057":{},"1058":{},"1059":{},"1060":{},"1061":{},"1062":{},"1063":{},"1064":{},"1065":{},"1066":{},"1067":{},"1068":{},"1069":{},"1070":{},"1071":{},"1072":{},"1073":{},"1074":{}}}],["ilifebarframe",{"_index":411,"name":{"919":{}},"parent":{"920":{},"921":{},"922":{}}}],["imod",{"_index":284,"name":{"685":{}},"parent":{"686":{},"687":{},"688":{},"689":{},"690":{},"691":{},"692":{}}}],["in",{"_index":628,"name":{"1386":{}},"parent":{}}],["inback",{"_index":619,"name":{"1376":{},"1413":{}},"parent":{}}],["inbounce",{"_index":622,"name":{"1379":{},"1416":{}},"parent":{}}],["incirc",{"_index":611,"name":{"1368":{},"1405":{}},"parent":{}}],["incompatibles",{"_index":255,"name":{"495":{},"504":{},"513":{},"522":{},"531":{},"540":{},"549":{},"559":{},"569":{},"578":{},"588":{},"598":{},"604":{},"617":{},"626":{},"635":{},"644":{},"653":{},"667":{},"692":{}},"parent":{}}],["incubic",{"_index":596,"name":{"1353":{},"1390":{}},"parent":{}}],["index",{"_index":186,"name":{"405":{}},"parent":{}}],["inelastic",{"_index":614,"name":{"1371":{},"1408":{}},"parent":{}}],["inexpo",{"_index":608,"name":{"1365":{},"1402":{}},"parent":{}}],["info",{"_index":501,"name":{"1076":{},"1119":{}},"parent":{}}],["inherit",{"_index":507,"name":{"1155":{},"1204":{},"1225":{}},"parent":{}}],["inoutback",{"_index":621,"name":{"1378":{},"1415":{}},"parent":{}}],["inoutbounce",{"_index":624,"name":{"1381":{},"1418":{}},"parent":{}}],["inoutcirc",{"_index":613,"name":{"1370":{},"1407":{}},"parent":{}}],["inoutcubic",{"_index":598,"name":{"1355":{},"1392":{}},"parent":{}}],["inoutelastic",{"_index":618,"name":{"1375":{},"1412":{}},"parent":{}}],["inoutexpo",{"_index":610,"name":{"1367":{},"1404":{}},"parent":{}}],["inoutquad",{"_index":595,"name":{"1352":{},"1389":{}},"parent":{}}],["inoutquart",{"_index":601,"name":{"1358":{},"1395":{}},"parent":{}}],["inoutquint",{"_index":604,"name":{"1361":{},"1398":{}},"parent":{}}],["inoutsine",{"_index":607,"name":{"1364":{},"1401":{}},"parent":{}}],["inquad",{"_index":593,"name":{"1350":{},"1387":{}},"parent":{}}],["inquart",{"_index":599,"name":{"1356":{},"1393":{}},"parent":{}}],["inquint",{"_index":602,"name":{"1359":{},"1396":{}},"parent":{}}],["insine",{"_index":605,"name":{"1362":{},"1399":{}},"parent":{}}],["int_mask",{"_index":765,"name":{"1690":{}},"parent":{}}],["int_to_real",{"_index":766,"name":{"1691":{}},"parent":{}}],["interpolation",{"_index":751,"name":{"1675":{}},"parent":{"1676":{},"1677":{}}}],["interval",{"_index":419,"name":{"931":{},"954":{}},"parent":{}}],["introsort",{"_index":779,"name":{"1707":{}},"parent":{}}],["invalidate",{"_index":372,"name":{"832":{}},"parent":{}}],["ireplay",{"_index":413,"name":{"923":{}},"parent":{"924":{},"925":{},"926":{},"927":{},"928":{}}}],["ireplayframe",{"_index":418,"name":{"929":{}},"parent":{"930":{},"931":{},"932":{},"933":{},"934":{},"935":{}}}],["iruleset",{"_index":440,"name":{"977":{}},"parent":{"978":{},"979":{},"980":{},"981":{},"982":{},"983":{},"984":{},"985":{},"986":{}}}],["isactive",{"_index":734,"name":{"1640":{},"1655":{}},"parent":{}}],["isadditive",{"_index":641,"name":{"1440":{},"1475":{}},"parent":{}}],["isatmidpoint",{"_index":776,"name":{"1703":{}},"parent":{}}],["isbackgroundreplaced",{"_index":142,"name":{"338":{}},"parent":{}}],["isbot",{"_index":735,"name":{"1641":{},"1656":{}},"parent":{}}],["isconvert",{"_index":54,"name":{"60":{},"223":{},"258":{}},"parent":{}}],["iscore",{"_index":500,"name":{"1075":{}},"parent":{"1076":{},"1077":{}}}],["iscoreinfo",{"_index":502,"name":{"1078":{}},"parent":{"1079":{},"1080":{},"1081":{},"1082":{},"1083":{},"1084":{},"1085":{},"1086":{},"1087":{},"1088":{},"1089":{},"1090":{},"1091":{},"1092":{},"1093":{},"1094":{},"1095":{},"1096":{},"1097":{},"1098":{},"1099":{},"1100":{},"1101":{},"1102":{},"1103":{},"1104":{},"1105":{}}}],["isdeleted",{"_index":736,"name":{"1642":{},"1657":{}},"parent":{}}],["isdisabled",{"_index":544,"name":{"1217":{}},"parent":{}}],["isdrawable",{"_index":642,"name":{"1445":{},"1457":{},"1480":{},"1491":{},"1501":{},"1505":{},"1511":{}},"parent":{}}],["ishitresultallowed",{"_index":476,"name":{"1027":{}},"parent":{}}],["islayered",{"_index":379,"name":{"845":{}},"parent":{}}],["islegacy",{"_index":92,"name":{"110":{}},"parent":{}}],["islidableobject",{"_index":334,"name":{"769":{}},"parent":{"770":{},"771":{},"772":{},"773":{},"774":{},"775":{},"776":{},"777":{},"778":{},"779":{},"780":{},"781":{},"782":{},"783":{},"784":{},"785":{},"786":{},"787":{},"788":{}}}],["islidereventdescriptor",{"_index":315,"name":{"729":{}},"parent":{"730":{},"731":{},"732":{},"733":{},"734":{}}}],["isnewcombo",{"_index":387,"name":{"859":{},"866":{}},"parent":{}}],["isonline",{"_index":737,"name":{"1643":{},"1658":{}},"parent":{}}],["ispinnableobject",{"_index":345,"name":{"789":{}},"parent":{"790":{},"791":{},"792":{},"793":{},"794":{},"795":{},"796":{},"797":{}}}],["isranked",{"_index":254,"name":{"494":{},"503":{},"512":{},"521":{},"530":{},"539":{},"548":{},"558":{},"568":{},"577":{},"587":{},"597":{},"607":{},"616":{},"625":{},"634":{},"643":{},"652":{},"666":{},"691":{}},"parent":{}}],["isredundant",{"_index":70,"name":{"79":{},"113":{},"125":{},"137":{},"149":{}},"parent":{}}],["issupporter",{"_index":738,"name":{"1644":{},"1659":{}},"parent":{}}],["istoryboardelement",{"_index":653,"name":{"1502":{}},"parent":{"1503":{},"1504":{},"1505":{}}}],["istoryboardelementwithduration",{"_index":654,"name":{"1506":{}},"parent":{"1507":{},"1508":{},"1509":{},"1510":{},"1511":{}}}],["isvalid",{"_index":358,"name":{"812":{}},"parent":{}}],["iuserinfo",{"_index":732,"name":{"1637":{}},"parent":{"1638":{},"1639":{},"1640":{},"1641":{},"1642":{},"1643":{},"1644":{},"1645":{},"1646":{},"1647":{},"1648":{},"1649":{},"1650":{}}}],["jsonablebeatmapinfo",{"_index":118,"name":{"228":{}},"parent":{}}],["jsonablescoreinfo",{"_index":482,"name":{"1048":{}},"parent":{}}],["key1",{"_index":233,"name":{"472":{}},"parent":{}}],["key2",{"_index":235,"name":{"474":{}},"parent":{}}],["key3",{"_index":234,"name":{"473":{}},"parent":{}}],["key4",{"_index":222,"name":{"461":{}},"parent":{}}],["key5",{"_index":223,"name":{"462":{}},"parent":{}}],["key6",{"_index":224,"name":{"463":{}},"parent":{}}],["key7",{"_index":225,"name":{"464":{}},"parent":{}}],["key8",{"_index":226,"name":{"465":{}},"parent":{}}],["key9",{"_index":231,"name":{"470":{}},"parent":{}}],["keycoop",{"_index":232,"name":{"471":{}},"parent":{}}],["keymod",{"_index":238,"name":{"477":{}},"parent":{}}],["kiai",{"_index":96,"name":{"122":{},"161":{},"737":{}},"parent":{}}],["largebonus",{"_index":461,"name":{"1010":{},"1045":{}},"parent":{}}],["largetickhit",{"_index":459,"name":{"1008":{},"1043":{}},"parent":{}}],["largetickmiss",{"_index":458,"name":{"1007":{},"1042":{}},"parent":{}}],["lastincombo",{"_index":392,"name":{"865":{}},"parent":{}}],["lastobject",{"_index":188,"name":{"407":{}},"parent":{}}],["lastvisitat",{"_index":739,"name":{"1645":{},"1660":{}},"parent":{}}],["latesteventtime",{"_index":703,"name":{"1590":{}},"parent":{}}],["layers",{"_index":699,"name":{"1586":{}},"parent":{}}],["layertype",{"_index":686,"name":{"1553":{}},"parent":{"1554":{},"1555":{},"1556":{},"1557":{},"1558":{},"1559":{}}}],["left1",{"_index":406,"name":{"914":{}},"parent":{}}],["left2",{"_index":408,"name":{"916":{}},"parent":{}}],["legacylasttick",{"_index":308,"name":{"721":{}},"parent":{}}],["legacylasttickoffset",{"_index":344,"name":{"788":{},"876":{}},"parent":{}}],["legacyscoreextensions",{"_index":503,"name":{"1106":{}},"parent":{"1107":{},"1108":{},"1109":{},"1110":{},"1111":{},"1112":{},"1113":{},"1114":{},"1115":{},"1116":{}}}],["length",{"_index":15,"name":{"15":{},"46":{},"186":{},"209":{},"247":{},"276":{},"300":{},"948":{},"1628":{}},"parent":{}}],["lerp",{"_index":758,"name":{"1683":{}},"parent":{}}],["lerpclamped01",{"_index":759,"name":{"1684":{}},"parent":{}}],["lerpcolor4",{"_index":761,"name":{"1686":{}},"parent":{}}],["lerpvector2",{"_index":760,"name":{"1685":{}},"parent":{}}],["letterboxinbreaks",{"_index":153,"name":{"352":{}},"parent":{}}],["lifebar",{"_index":417,"name":{"928":{},"947":{}},"parent":{}}],["lifebarframe",{"_index":423,"name":{"936":{}},"parent":{"937":{},"938":{},"939":{},"940":{}}}],["limitedcapacityqueue",{"_index":198,"name":{"427":{}},"parent":{"428":{},"429":{},"430":{},"431":{},"432":{},"433":{},"434":{},"435":{}}}],["linear",{"_index":302,"name":{"712":{},"1349":{}},"parent":{}}],["loop",{"_index":676,"name":{"1542":{}},"parent":{}}],["loopcount",{"_index":562,"name":{"1259":{}},"parent":{}}],["loopforever",{"_index":691,"name":{"1561":{}},"parent":{}}],["looponce",{"_index":692,"name":{"1562":{}},"parent":{}}],["loops",{"_index":637,"name":{"1432":{},"1467":{},"1495":{}},"parent":{}}],["loopstarttime",{"_index":561,"name":{"1258":{}},"parent":{}}],["looptype",{"_index":632,"name":{"1424":{},"1560":{}},"parent":{"1561":{},"1562":{}}}],["map",{"_index":445,"name":{"991":{},"1681":{}},"parent":{}}],["map01",{"_index":757,"name":{"1682":{}},"parent":{}}],["masking",{"_index":709,"name":{"1598":{}},"parent":{}}],["mathutils",{"_index":754,"name":{"1678":{}},"parent":{"1679":{},"1680":{},"1681":{},"1682":{},"1683":{},"1684":{},"1685":{},"1686":{}}}],["max",{"_index":449,"name":{"996":{},"1158":{},"1164":{}},"parent":{}}],["max_int32",{"_index":763,"name":{"1688":{}},"parent":{}}],["max_uint32",{"_index":764,"name":{"1689":{}},"parent":{}}],["maxcombo",{"_index":53,"name":{"59":{},"222":{},"257":{},"284":{},"378":{},"1055":{},"1084":{},"1128":{}},"parent":{}}],["md5",{"_index":57,"name":{"63":{},"226":{},"261":{}},"parent":{}}],["meh",{"_index":452,"name":{"1000":{},"1035":{}},"parent":{}}],["metadata",{"_index":6,"name":{"6":{},"178":{},"269":{},"291":{}},"parent":{}}],["min",{"_index":447,"name":{"994":{},"1157":{},"1163":{}},"parent":{}}],["minimumlayerdepth",{"_index":698,"name":{"1584":{}},"parent":{}}],["mirror",{"_index":237,"name":{"476":{}},"parent":{}}],["miss",{"_index":451,"name":{"999":{},"1034":{}},"parent":{}}],["mixture",{"_index":535,"name":{"1205":{}},"parent":{}}],["modat",{"_index":281,"name":{"679":{}},"parent":{}}],["modbitwise",{"_index":206,"name":{"444":{}},"parent":{"445":{},"446":{},"447":{},"448":{},"449":{},"450":{},"451":{},"452":{},"453":{},"454":{},"455":{},"456":{},"457":{},"458":{},"459":{},"460":{},"461":{},"462":{},"463":{},"464":{},"465":{},"466":{},"467":{},"468":{},"469":{},"470":{},"471":{},"472":{},"473":{},"474":{},"475":{},"476":{},"477":{},"478":{},"479":{}}}],["modcombination",{"_index":263,"name":{"654":{}},"parent":{"655":{},"656":{},"657":{},"658":{},"659":{},"660":{},"661":{},"662":{},"663":{},"664":{},"665":{},"666":{},"667":{},"668":{},"669":{},"670":{},"671":{},"672":{},"673":{},"674":{},"675":{},"676":{},"677":{},"678":{},"679":{},"680":{},"681":{},"682":{},"683":{},"684":{}}}],["mode",{"_index":14,"name":{"14":{},"183":{},"273":{},"299":{},"656":{},"925":{},"944":{}},"parent":{}}],["mods",{"_index":50,"name":{"56":{},"219":{},"230":{},"285":{},"376":{},"381":{},"1050":{},"1089":{},"1135":{}},"parent":{}}],["modsat",{"_index":280,"name":{"678":{}},"parent":{}}],["modtype",{"_index":241,"name":{"480":{}},"parent":{"481":{},"482":{},"483":{},"484":{},"485":{},"486":{}}}],["mouseleft",{"_index":427,"name":{"959":{}},"parent":{}}],["mouseleft1",{"_index":429,"name":{"961":{}},"parent":{}}],["mouseleft2",{"_index":431,"name":{"963":{}},"parent":{}}],["mouseposition",{"_index":426,"name":{"958":{}},"parent":{}}],["mouseright",{"_index":428,"name":{"960":{}},"parent":{}}],["mouseright1",{"_index":430,"name":{"962":{}},"parent":{}}],["mouseright2",{"_index":432,"name":{"964":{}},"parent":{}}],["mousex",{"_index":421,"name":{"933":{},"956":{}},"parent":{}}],["mousey",{"_index":422,"name":{"934":{},"957":{}},"parent":{}}],["movement",{"_index":671,"name":{"1531":{}},"parent":{}}],["movementx",{"_index":672,"name":{"1532":{}},"parent":{}}],["movementy",{"_index":673,"name":{"1533":{}},"parent":{}}],["multiplier",{"_index":253,"name":{"493":{},"502":{},"511":{},"520":{},"529":{},"538":{},"547":{},"557":{},"567":{},"576":{},"586":{},"596":{},"606":{},"615":{},"624":{},"633":{},"642":{},"651":{},"665":{},"690":{}},"parent":{}}],["name",{"_index":249,"name":{"489":{},"498":{},"507":{},"516":{},"525":{},"534":{},"543":{},"553":{},"563":{},"572":{},"582":{},"592":{},"601":{},"611":{},"620":{},"629":{},"638":{},"647":{},"686":{},"1596":{}},"parent":{}}],["names",{"_index":268,"name":{"662":{}},"parent":{}}],["nestedhitobjects",{"_index":321,"name":{"738":{}},"parent":{}}],["newcombo",{"_index":292,"name":{"702":{}},"parent":{}}],["next",{"_index":191,"name":{"412":{},"1693":{}},"parent":{}}],["nextbool",{"_index":770,"name":{"1697":{}},"parent":{}}],["nextdouble",{"_index":769,"name":{"1696":{}},"parent":{}}],["nextint",{"_index":768,"name":{"1695":{}},"parent":{}}],["nextuint",{"_index":767,"name":{"1694":{}},"parent":{}}],["nightcore",{"_index":216,"name":{"455":{},"599":{}},"parent":{"600":{},"601":{},"602":{},"603":{},"604":{},"605":{},"606":{},"607":{},"608":{}}}],["nodesamples",{"_index":333,"name":{"768":{},"781":{},"878":{},"892":{},"905":{}},"parent":{}}],["nofail",{"_index":207,"name":{"446":{},"609":{}},"parent":{"610":{},"611":{},"612":{},"613":{},"614":{},"615":{},"616":{},"617":{}}}],["nomod",{"_index":262,"name":{"618":{}},"parent":{"619":{},"620":{},"621":{},"622":{},"623":{},"624":{},"625":{},"626":{}}}],["none",{"_index":108,"name":{"160":{},"445":{},"694":{},"715":{},"913":{},"998":{},"1033":{},"1203":{},"1384":{},"1530":{},"1541":{},"1575":{}},"parent":{}}],["normal",{"_index":286,"name":{"695":{},"700":{},"716":{}},"parent":{}}],["normalize",{"_index":730,"name":{"1632":{}},"parent":{}}],["normalset",{"_index":382,"name":{"852":{}},"parent":{}}],["ok",{"_index":453,"name":{"1001":{},"1036":{}},"parent":{}}],["omitfirstbarline",{"_index":97,"name":{"123":{},"162":{}},"parent":{}}],["one",{"_index":529,"name":{"1182":{},"1198":{},"1230":{}},"parent":{}}],["oneminusconstantalpha",{"_index":528,"name":{"1181":{},"1197":{},"1231":{}},"parent":{}}],["oneminusconstantcolor",{"_index":526,"name":{"1179":{},"1195":{},"1232":{}},"parent":{}}],["oneminusdstalpha",{"_index":521,"name":{"1174":{},"1190":{},"1233":{}},"parent":{}}],["oneminusdstcolor",{"_index":523,"name":{"1176":{},"1192":{},"1234":{}},"parent":{}}],["oneminussrcalpha",{"_index":519,"name":{"1172":{},"1188":{},"1235":{}},"parent":{}}],["oneminussrccolor",{"_index":517,"name":{"1170":{},"1186":{},"1236":{}},"parent":{}}],["origin",{"_index":633,"name":{"1425":{},"1460":{}},"parent":{}}],["originalmode",{"_index":13,"name":{"13":{},"184":{},"274":{},"298":{}},"parent":{}}],["origins",{"_index":693,"name":{"1563":{}},"parent":{"1564":{},"1565":{},"1566":{},"1567":{},"1568":{},"1569":{},"1570":{},"1571":{},"1572":{},"1573":{}}}],["out",{"_index":627,"name":{"1385":{}},"parent":{}}],["outback",{"_index":620,"name":{"1377":{},"1414":{}},"parent":{}}],["outbounce",{"_index":623,"name":{"1380":{},"1417":{}},"parent":{}}],["outcirc",{"_index":612,"name":{"1369":{},"1406":{}},"parent":{}}],["outcubic",{"_index":597,"name":{"1354":{},"1391":{}},"parent":{}}],["outelastic",{"_index":615,"name":{"1372":{},"1409":{}},"parent":{}}],["outelastichalf",{"_index":616,"name":{"1373":{},"1410":{}},"parent":{}}],["outelasticquarter",{"_index":617,"name":{"1374":{},"1411":{}},"parent":{}}],["outexpo",{"_index":609,"name":{"1366":{},"1403":{}},"parent":{}}],["outpow10",{"_index":625,"name":{"1382":{},"1419":{}},"parent":{}}],["outquad",{"_index":594,"name":{"1351":{},"1388":{}},"parent":{}}],["outquart",{"_index":600,"name":{"1357":{},"1394":{}},"parent":{}}],["outquint",{"_index":603,"name":{"1360":{},"1397":{}},"parent":{}}],["outsine",{"_index":606,"name":{"1363":{},"1400":{}},"parent":{}}],["overalldifficulty",{"_index":46,"name":{"52":{},"215":{},"253":{},"319":{}},"parent":{}}],["overlay",{"_index":690,"name":{"1558":{}},"parent":{}}],["overlayposition",{"_index":146,"name":{"344":{}},"parent":{}}],["parameter",{"_index":553,"name":{"1244":{},"1539":{}},"parent":{}}],["parametertype",{"_index":694,"name":{"1574":{}},"parent":{"1575":{},"1576":{},"1577":{},"1578":{}}}],["pass",{"_index":688,"name":{"1556":{}},"parent":{}}],["passcount",{"_index":34,"name":{"36":{},"198":{},"236":{}},"parent":{}}],["passed",{"_index":488,"name":{"1061":{},"1085":{},"1129":{}},"parent":{}}],["path",{"_index":339,"name":{"774":{},"830":{},"880":{},"885":{}},"parent":{}}],["pathapproximator",{"_index":346,"name":{"798":{}},"parent":{"799":{},"800":{},"801":{},"802":{},"803":{},"804":{},"805":{},"806":{},"807":{},"808":{},"809":{}}}],["pathpoint",{"_index":365,"name":{"819":{}},"parent":{"820":{},"821":{},"822":{}}}],["pathtype",{"_index":299,"name":{"709":{}},"parent":{"710":{},"711":{},"712":{},"713":{}}}],["perfect",{"_index":221,"name":{"460":{},"627":{},"1004":{},"1039":{},"1062":{},"1086":{},"1130":{}},"parent":{"628":{},"629":{},"630":{},"631":{},"632":{},"633":{},"634":{},"635":{}}}],["perfectcurve",{"_index":303,"name":{"713":{}},"parent":{}}],["performanceattributes",{"_index":168,"name":{"379":{}},"parent":{"380":{},"381":{},"382":{}}}],["performancecalculator",{"_index":183,"name":{"398":{}},"parent":{"399":{},"400":{},"401":{},"402":{}}}],["playcount",{"_index":35,"name":{"37":{},"199":{},"237":{}},"parent":{}}],["playmode",{"_index":740,"name":{"1647":{},"1662":{}},"parent":{}}],["pointtype",{"_index":65,"name":{"74":{},"108":{},"121":{},"133":{},"145":{}},"parent":{}}],["position",{"_index":366,"name":{"821":{}},"parent":{}}],["positionat",{"_index":375,"name":{"835":{}},"parent":{}}],["postprocess",{"_index":63,"name":{"71":{}},"parent":{}}],["pp",{"_index":487,"name":{"1060":{},"1083":{},"1127":{}},"parent":{}}],["precision_error",{"_index":772,"name":{"1699":{}},"parent":{}}],["preprocess",{"_index":62,"name":{"70":{}},"parent":{}}],["previewtime",{"_index":149,"name":{"347":{}},"parent":{}}],["previous",{"_index":190,"name":{"411":{}},"parent":{}}],["process",{"_index":193,"name":{"415":{},"419":{},"424":{}},"parent":{}}],["progress",{"_index":319,"name":{"734":{}},"parent":{}}],["progressat",{"_index":374,"name":{"834":{}},"parent":{}}],["progressivecalculationbeatmap",{"_index":120,"name":{"263":{}},"parent":{"264":{},"265":{},"266":{},"267":{},"268":{},"269":{},"270":{},"271":{},"272":{},"273":{},"274":{},"275":{},"276":{},"277":{},"278":{},"279":{},"280":{},"281":{}}}],["radius",{"_index":362,"name":{"816":{}},"parent":{}}],["random",{"_index":228,"name":{"467":{}},"parent":{}}],["range",{"_index":128,"name":{"315":{}},"parent":{}}],["rank",{"_index":484,"name":{"1057":{},"1080":{},"1132":{}},"parent":{}}],["rawmods",{"_index":51,"name":{"57":{},"220":{},"1090":{},"1136":{}},"parent":{}}],["red",{"_index":714,"name":{"1604":{}},"parent":{}}],["relax",{"_index":214,"name":{"453":{},"636":{}},"parent":{"637":{},"638":{},"639":{},"640":{},"641":{},"642":{},"643":{},"644":{}}}],["relax2",{"_index":220,"name":{"459":{}},"parent":{}}],["remove",{"_index":73,"name":{"85":{},"102":{}},"parent":{}}],["repeat",{"_index":311,"name":{"724":{}},"parent":{}}],["repeats",{"_index":341,"name":{"778":{},"889":{},"900":{}},"parent":{}}],["replay",{"_index":424,"name":{"941":{},"1077":{},"1120":{}},"parent":{"942":{},"943":{},"944":{},"945":{},"946":{},"947":{},"948":{},"949":{},"950":{}}}],["replaybuttonstate",{"_index":405,"name":{"912":{}},"parent":{"913":{},"914":{},"915":{},"916":{},"917":{},"918":{}}}],["replayframe",{"_index":425,"name":{"951":{}},"parent":{"952":{},"953":{},"954":{},"955":{},"956":{},"957":{},"958":{},"959":{},"960":{},"961":{},"962":{},"963":{},"964":{},"965":{}}}],["resetmods",{"_index":434,"name":{"971":{},"981":{}},"parent":{}}],["resetvaluestocommands",{"_index":647,"name":{"1450":{},"1485":{}},"parent":{}}],["result",{"_index":446,"name":{"993":{}},"parent":{}}],["resultfor",{"_index":478,"name":{"1029":{}},"parent":{}}],["reversequeue",{"_index":205,"name":{"436":{}},"parent":{"437":{},"438":{},"439":{},"440":{},"441":{},"442":{},"443":{}}}],["reversesubtract",{"_index":509,"name":{"1160":{}},"parent":{}}],["rgbequation",{"_index":540,"name":{"1212":{}},"parent":{}}],["rgbequationmode",{"_index":545,"name":{"1218":{}},"parent":{}}],["right1",{"_index":407,"name":{"915":{}},"parent":{}}],["right2",{"_index":409,"name":{"917":{}},"parent":{}}],["rotation",{"_index":568,"name":{"1268":{},"1299":{},"1328":{},"1437":{},"1472":{},"1537":{}},"parent":{}}],["round",{"_index":773,"name":{"1700":{}},"parent":{}}],["roundawayfromzero",{"_index":775,"name":{"1702":{}},"parent":{}}],["roundhelper",{"_index":771,"name":{"1698":{}},"parent":{"1699":{},"1700":{},"1701":{},"1702":{},"1703":{},"1704":{}}}],["roundtoeven",{"_index":774,"name":{"1701":{}},"parent":{}}],["ruleset",{"_index":48,"name":{"54":{},"217":{},"966":{},"1087":{},"1133":{}},"parent":{"967":{},"968":{},"969":{},"970":{},"971":{},"972":{},"973":{},"974":{},"975":{},"976":{}}}],["rulesetbeatmap",{"_index":121,"name":{"282":{}},"parent":{"283":{},"284":{},"285":{},"286":{},"287":{},"288":{},"289":{},"290":{},"291":{},"292":{},"293":{},"294":{},"295":{},"296":{},"297":{},"298":{},"299":{},"300":{},"301":{},"302":{},"303":{},"304":{},"305":{},"306":{}}}],["rulesetid",{"_index":49,"name":{"55":{},"218":{},"255":{},"1054":{},"1088":{},"1108":{},"1134":{}},"parent":{}}],["s",{"_index":470,"name":{"1019":{}},"parent":{}}],["sample",{"_index":683,"name":{"1550":{}},"parent":{}}],["samplebank",{"_index":381,"name":{"848":{}},"parent":{"849":{},"850":{},"851":{},"852":{},"853":{},"854":{},"855":{}}}],["samplepoint",{"_index":99,"name":{"130":{},"158":{}},"parent":{"131":{},"132":{},"133":{},"134":{},"135":{},"136":{},"137":{},"138":{},"139":{},"140":{},"141":{}}}],["samplepointat",{"_index":84,"name":{"97":{}},"parent":{}}],["samplepoints",{"_index":78,"name":{"91":{}},"parent":{}}],["samples",{"_index":322,"name":{"742":{},"756":{},"763":{},"785":{},"793":{}},"parent":{}}],["sampleset",{"_index":100,"name":{"134":{},"351":{},"714":{},"840":{}},"parent":{"715":{},"716":{},"717":{},"718":{}}}],["samplesmatchplaybackrate",{"_index":160,"name":{"359":{}},"parent":{}}],["scale",{"_index":566,"name":{"1266":{},"1297":{},"1326":{},"1435":{},"1470":{},"1535":{},"1622":{}},"parent":{}}],["score",{"_index":504,"name":{"1117":{}},"parent":{"1118":{},"1119":{},"1120":{},"1121":{},"1122":{}}}],["scoreinfo",{"_index":505,"name":{"1123":{}},"parent":{"1124":{},"1125":{},"1126":{},"1127":{},"1128":{},"1129":{},"1130":{},"1131":{},"1132":{},"1133":{},"1134":{},"1135":{},"1136":{},"1137":{},"1138":{},"1139":{},"1140":{},"1141":{},"1142":{},"1143":{},"1144":{},"1145":{},"1146":{},"1147":{},"1148":{},"1149":{},"1150":{},"1151":{},"1152":{},"1153":{}}}],["scorerank",{"_index":464,"name":{"1013":{}},"parent":{"1014":{},"1015":{},"1016":{},"1017":{},"1018":{},"1019":{},"1020":{},"1021":{},"1022":{}}}],["scoreutils",{"_index":441,"name":{"987":{}},"parent":{"988":{},"989":{}}}],["scorev2",{"_index":236,"name":{"475":{}},"parent":{}}],["scrollspeed",{"_index":98,"name":{"124":{}},"parent":{}}],["setdifficulty",{"_index":477,"name":{"1028":{}},"parent":{}}],["setvaluefromcommand",{"_index":648,"name":{"1451":{},"1486":{}},"parent":{}}],["sh",{"_index":471,"name":{"1020":{}},"parent":{}}],["simplequadruple",{"_index":110,"name":{"165":{}},"parent":{}}],["simpletriple",{"_index":109,"name":{"164":{}},"parent":{}}],["skill",{"_index":192,"name":{"413":{}},"parent":{"414":{},"415":{},"416":{}}}],["skinpreference",{"_index":147,"name":{"345":{}},"parent":{}}],["slidable",{"_index":41,"name":{"43":{},"205":{},"243":{}},"parent":{}}],["slider",{"_index":291,"name":{"701":{}},"parent":{}}],["slider_max_distance",{"_index":313,"name":{"726":{}},"parent":{}}],["sliderbordercolor",{"_index":125,"name":{"311":{}},"parent":{}}],["slidereventtype",{"_index":306,"name":{"719":{}},"parent":{"720":{},"721":{},"722":{},"723":{},"724":{}}}],["slidermultiplier",{"_index":129,"name":{"321":{}},"parent":{}}],["sliderpath",{"_index":367,"name":{"823":{}},"parent":{"824":{},"825":{},"826":{},"827":{},"828":{},"829":{},"830":{},"831":{},"832":{},"833":{},"834":{},"835":{},"836":{},"837":{}}}],["slidertickrate",{"_index":130,"name":{"322":{}},"parent":{}}],["slidertrackcolor",{"_index":124,"name":{"310":{}},"parent":{}}],["slidervelocity",{"_index":93,"name":{"111":{}},"parent":{}}],["smallbonus",{"_index":460,"name":{"1009":{},"1044":{}},"parent":{}}],["smalltickhit",{"_index":457,"name":{"1006":{},"1041":{}},"parent":{}}],["smalltickmiss",{"_index":456,"name":{"1005":{},"1040":{}},"parent":{}}],["smoke",{"_index":410,"name":{"918":{}},"parent":{}}],["soft",{"_index":304,"name":{"717":{}},"parent":{}}],["sorthelper",{"_index":777,"name":{"1705":{}},"parent":{"1706":{},"1707":{},"1708":{},"1709":{},"1710":{}}}],["source",{"_index":162,"name":{"367":{},"1208":{}},"parent":{}}],["sourcealpha",{"_index":538,"name":{"1210":{}},"parent":{}}],["sourcealphablendingfactor",{"_index":549,"name":{"1222":{}},"parent":{}}],["sourceblendingfactor",{"_index":547,"name":{"1220":{}},"parent":{}}],["spanduration",{"_index":343,"name":{"780":{},"891":{},"902":{}},"parent":{}}],["spanindex",{"_index":317,"name":{"731":{}},"parent":{}}],["spans",{"_index":342,"name":{"779":{},"890":{},"901":{}},"parent":{}}],["spanstarttime",{"_index":318,"name":{"732":{}},"parent":{}}],["specialstyle",{"_index":158,"name":{"357":{}},"parent":{}}],["spinnable",{"_index":42,"name":{"44":{},"206":{},"244":{}},"parent":{}}],["spinner",{"_index":293,"name":{"703":{}},"parent":{}}],["sprite",{"_index":682,"name":{"1549":{}},"parent":{}}],["spunout",{"_index":219,"name":{"458":{}},"parent":{}}],["srcalpha",{"_index":518,"name":{"1171":{},"1187":{},"1237":{}},"parent":{}}],["srcalphasaturate",{"_index":524,"name":{"1177":{},"1193":{},"1238":{}},"parent":{}}],["srccolor",{"_index":516,"name":{"1169":{},"1185":{},"1239":{}},"parent":{}}],["stackleniency",{"_index":151,"name":{"349":{}},"parent":{}}],["starrating",{"_index":52,"name":{"58":{},"221":{},"256":{},"377":{}},"parent":{}}],["startposition",{"_index":323,"name":{"743":{},"894":{},"1434":{},"1469":{}},"parent":{}}],["starttime",{"_index":69,"name":{"78":{},"83":{},"117":{},"129":{},"141":{},"153":{},"168":{},"409":{},"733":{},"739":{},"753":{},"760":{},"782":{},"790":{},"920":{},"930":{},"938":{},"953":{},"1246":{},"1261":{},"1285":{},"1312":{},"1341":{},"1427":{},"1454":{},"1462":{},"1489":{},"1499":{},"1503":{},"1509":{}},"parent":{}}],["startvalue",{"_index":555,"name":{"1248":{},"1287":{}},"parent":{}}],["startx",{"_index":325,"name":{"745":{},"896":{},"907":{},"1441":{},"1476":{}},"parent":{}}],["starty",{"_index":326,"name":{"746":{},"898":{},"910":{},"1442":{},"1477":{}},"parent":{}}],["statistics",{"_index":492,"name":{"1067":{},"1096":{},"1109":{},"1142":{}},"parent":{}}],["status",{"_index":36,"name":{"38":{},"200":{},"238":{}},"parent":{}}],["storyboard",{"_index":141,"name":{"337":{},"1579":{}},"parent":{"1580":{},"1581":{},"1582":{},"1583":{},"1584":{},"1585":{},"1586":{},"1587":{},"1588":{},"1589":{},"1590":{},"1591":{},"1592":{},"1593":{}}}],["storyboardanimation",{"_index":629,"name":{"1420":{}},"parent":{"1421":{},"1422":{},"1423":{},"1424":{},"1425":{},"1426":{},"1427":{},"1428":{},"1429":{},"1430":{},"1431":{},"1432":{},"1433":{},"1434":{},"1435":{},"1436":{},"1437":{},"1438":{},"1439":{},"1440":{},"1441":{},"1442":{},"1443":{},"1444":{},"1445":{},"1446":{},"1447":{},"1448":{},"1449":{},"1450":{},"1451":{}}}],["storyboardcommand",{"_index":685,"name":{"1552":{}},"parent":{}}],["storyboardlayer",{"_index":707,"name":{"1594":{}},"parent":{"1595":{},"1596":{},"1597":{},"1598":{},"1599":{},"1600":{},"1601":{}}}],["storyboardsample",{"_index":649,"name":{"1452":{}},"parent":{"1453":{},"1454":{},"1455":{},"1456":{},"1457":{}}}],["storyboardsprite",{"_index":650,"name":{"1458":{}},"parent":{"1459":{},"1460":{},"1461":{},"1462":{},"1463":{},"1464":{},"1465":{},"1466":{},"1467":{},"1468":{},"1469":{},"1470":{},"1471":{},"1472":{},"1473":{},"1474":{},"1475":{},"1476":{},"1477":{},"1478":{},"1479":{},"1480":{},"1481":{},"1482":{},"1483":{},"1484":{},"1485":{},"1486":{}}}],["storyboardvideo",{"_index":651,"name":{"1487":{}},"parent":{"1488":{},"1489":{},"1490":{},"1491":{}}}],["storyfireinfront",{"_index":154,"name":{"353":{}},"parent":{}}],["straindecayskill",{"_index":195,"name":{"417":{}},"parent":{"418":{},"419":{},"420":{},"421":{}}}],["strainskill",{"_index":197,"name":{"422":{}},"parent":{"423":{},"424":{},"425":{},"426":{}}}],["subtract",{"_index":508,"name":{"1159":{},"1620":{}},"parent":{}}],["suddendeath",{"_index":212,"name":{"451":{},"645":{}},"parent":{"646":{},"647":{},"648":{},"649":{},"650":{},"651":{},"652":{},"653":{}}}],["suffix",{"_index":378,"name":{"843":{}},"parent":{}}],["symbol.iterator",{"_index":582,"name":{"1289":{}},"parent":{}}],["system",{"_index":246,"name":{"486":{}},"parent":{}}],["tags",{"_index":163,"name":{"368":{}},"parent":{}}],["tail",{"_index":310,"name":{"723":{}},"parent":{}}],["target",{"_index":230,"name":{"469":{}},"parent":{}}],["thetaend",{"_index":364,"name":{"818":{}},"parent":{}}],["thetarange",{"_index":360,"name":{"814":{}},"parent":{}}],["thetastart",{"_index":359,"name":{"813":{}},"parent":{}}],["tick",{"_index":307,"name":{"720":{}},"parent":{}}],["tickdistance",{"_index":335,"name":{"770":{}},"parent":{}}],["tickinterval",{"_index":336,"name":{"771":{}},"parent":{}}],["tickrate",{"_index":337,"name":{"772":{}},"parent":{}}],["time",{"_index":171,"name":{"385":{}},"parent":{}}],["timeddifficultyattributes",{"_index":170,"name":{"383":{}},"parent":{"384":{},"385":{},"386":{},"387":{}}}],["timelinegroup",{"_index":636,"name":{"1431":{},"1466":{},"1494":{}},"parent":{}}],["timelines",{"_index":574,"name":{"1275":{},"1306":{},"1335":{}},"parent":{}}],["timelinezoom",{"_index":137,"name":{"331":{}},"parent":{}}],["timesignature",{"_index":105,"name":{"147":{},"163":{}},"parent":{"164":{},"165":{}}}],["timingpoint",{"_index":103,"name":{"142":{},"155":{}},"parent":{"143":{},"144":{},"145":{},"146":{},"147":{},"148":{},"149":{},"150":{},"151":{},"152":{},"153":{}}}],["timingpointat",{"_index":85,"name":{"98":{}},"parent":{}}],["timingpoints",{"_index":79,"name":{"92":{}},"parent":{}}],["title",{"_index":37,"name":{"39":{},"201":{},"239":{},"363":{}},"parent":{}}],["titleunicode",{"_index":165,"name":{"371":{}},"parent":{}}],["tobitwise",{"_index":283,"name":{"682":{}},"parent":{}}],["tojson",{"_index":58,"name":{"64":{},"227":{},"262":{},"681":{},"1056":{},"1105":{},"1144":{}},"parent":{}}],["topcentre",{"_index":663,"name":{"1521":{},"1569":{}},"parent":{}}],["topleft",{"_index":662,"name":{"1520":{},"1564":{}},"parent":{}}],["topright",{"_index":664,"name":{"1522":{},"1567":{}},"parent":{}}],["tostring",{"_index":282,"name":{"680":{},"1611":{},"1636":{},"1709":{}},"parent":{}}],["totalbreaktime",{"_index":21,"name":{"21":{},"190":{},"280":{},"306":{}},"parent":{}}],["totalcommands",{"_index":575,"name":{"1276":{},"1307":{},"1336":{}},"parent":{}}],["totalhits",{"_index":60,"name":{"67":{},"208":{},"246":{},"1053":{},"1104":{},"1116":{},"1153":{}},"parent":{}}],["totaliterations",{"_index":563,"name":{"1260":{}},"parent":{}}],["totallength",{"_index":16,"name":{"16":{},"301":{}},"parent":{}}],["totalperformance",{"_index":169,"name":{"382":{},"1648":{},"1663":{}},"parent":{}}],["totalscore",{"_index":485,"name":{"1058":{},"1081":{},"1126":{}},"parent":{}}],["touchdevice",{"_index":209,"name":{"448":{}},"parent":{}}],["trigger",{"_index":677,"name":{"1543":{}},"parent":{}}],["triggerendtime",{"_index":587,"name":{"1321":{}},"parent":{}}],["triggername",{"_index":585,"name":{"1319":{}},"parent":{}}],["triggers",{"_index":638,"name":{"1433":{},"1468":{},"1496":{}},"parent":{}}],["triggerstarttime",{"_index":586,"name":{"1320":{}},"parent":{}}],["type",{"_index":252,"name":{"492":{},"501":{},"510":{},"519":{},"528":{},"537":{},"546":{},"556":{},"566":{},"575":{},"585":{},"595":{},"605":{},"614":{},"623":{},"632":{},"641":{},"650":{},"689":{},"822":{},"1243":{},"1257":{},"1318":{}},"parent":{}}],["unrollcommands",{"_index":564,"name":{"1263":{},"1323":{}},"parent":{}}],["updatecommands",{"_index":645,"name":{"1448":{},"1483":{},"1497":{}},"parent":{}}],["updatedat",{"_index":56,"name":{"62":{},"225":{},"260":{}},"parent":{}}],["userid",{"_index":490,"name":{"1064":{},"1092":{},"1138":{}},"parent":{}}],["userinfo",{"_index":743,"name":{"1651":{}},"parent":{"1652":{},"1653":{},"1654":{},"1655":{},"1656":{},"1657":{},"1658":{},"1659":{},"1660":{},"1661":{},"1662":{},"1663":{},"1664":{},"1665":{},"1666":{},"1667":{}}}],["username",{"_index":489,"name":{"1063":{},"1091":{},"1137":{},"1646":{},"1661":{}},"parent":{}}],["useskinsprites",{"_index":155,"name":{"354":{},"1583":{}},"parent":{}}],["variables",{"_index":697,"name":{"1581":{}},"parent":{}}],["vector2",{"_index":718,"name":{"1612":{}},"parent":{"1613":{},"1614":{},"1615":{},"1616":{},"1617":{},"1618":{},"1619":{},"1620":{},"1621":{},"1622":{},"1623":{},"1624":{},"1625":{},"1626":{},"1627":{},"1628":{},"1629":{},"1630":{},"1631":{},"1632":{},"1633":{},"1634":{},"1635":{},"1636":{}}}],["vectorscale",{"_index":567,"name":{"1267":{},"1298":{},"1327":{},"1536":{}},"parent":{}}],["velocity",{"_index":338,"name":{"773":{}},"parent":{}}],["version",{"_index":39,"name":{"41":{},"203":{},"241":{},"366":{}},"parent":{}}],["verticalflip",{"_index":696,"name":{"1577":{}},"parent":{}}],["video",{"_index":679,"name":{"1546":{},"1559":{}},"parent":{}}],["visiblewhenfailing",{"_index":711,"name":{"1600":{}},"parent":{}}],["visiblewhenpassing",{"_index":710,"name":{"1599":{}},"parent":{}}],["volume",{"_index":102,"name":{"136":{},"844":{},"851":{},"1455":{}},"parent":{}}],["whistle",{"_index":287,"name":{"696":{}},"parent":{}}],["widescreenstoryboard",{"_index":159,"name":{"358":{}},"parent":{}}],["windowfor",{"_index":479,"name":{"1030":{}},"parent":{}}],["x",{"_index":472,"name":{"1021":{},"1264":{},"1295":{},"1324":{},"1614":{}},"parent":{}}],["x0",{"_index":658,"name":{"1516":{}},"parent":{}}],["x1",{"_index":659,"name":{"1517":{}},"parent":{}}],["x2",{"_index":660,"name":{"1518":{}},"parent":{}}],["xh",{"_index":473,"name":{"1022":{}},"parent":{}}],["y",{"_index":565,"name":{"1265":{},"1296":{},"1325":{},"1615":{}},"parent":{}}],["y0",{"_index":655,"name":{"1513":{}},"parent":{}}],["y1",{"_index":656,"name":{"1514":{}},"parent":{}}],["y2",{"_index":657,"name":{"1515":{}},"parent":{}}],["zero",{"_index":515,"name":{"1168":{},"1184":{},"1240":{}},"parent":{}}]],"pipeline":[]}} \ No newline at end of file +window.searchData = JSON.parse("{\"kinds\":{\"4\":\"Namespace\",\"8\":\"Enumeration\",\"16\":\"Enumeration Member\",\"64\":\"Function\",\"128\":\"Class\",\"256\":\"Interface\",\"512\":\"Constructor\",\"1024\":\"Property\",\"2048\":\"Method\",\"65536\":\"Type literal\",\"262144\":\"Accessor\",\"4194304\":\"Type alias\"},\"rows\":[{\"id\":0,\"kind\":128,\"name\":\"Beatmap\",\"url\":\"classes/Beatmap.html\",\"classes\":\"tsd-kind-class\"},{\"id\":1,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Beatmap.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"Beatmap\"},{\"id\":2,\"kind\":1024,\"name\":\"base\",\"url\":\"classes/Beatmap.html#base\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Beatmap\"},{\"id\":3,\"kind\":1024,\"name\":\"general\",\"url\":\"classes/Beatmap.html#general\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Beatmap\"},{\"id\":4,\"kind\":1024,\"name\":\"editor\",\"url\":\"classes/Beatmap.html#editor\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Beatmap\"},{\"id\":5,\"kind\":1024,\"name\":\"difficulty\",\"url\":\"classes/Beatmap.html#difficulty\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Beatmap\"},{\"id\":6,\"kind\":1024,\"name\":\"metadata\",\"url\":\"classes/Beatmap.html#metadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Beatmap\"},{\"id\":7,\"kind\":1024,\"name\":\"colors\",\"url\":\"classes/Beatmap.html#colors\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Beatmap\"},{\"id\":8,\"kind\":1024,\"name\":\"events\",\"url\":\"classes/Beatmap.html#events\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Beatmap\"},{\"id\":9,\"kind\":1024,\"name\":\"controlPoints\",\"url\":\"classes/Beatmap.html#controlPoints\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Beatmap\"},{\"id\":10,\"kind\":1024,\"name\":\"hitObjects\",\"url\":\"classes/Beatmap.html#hitObjects\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Beatmap\"},{\"id\":11,\"kind\":1024,\"name\":\"fileFormat\",\"url\":\"classes/Beatmap.html#fileFormat\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Beatmap\"},{\"id\":12,\"kind\":1024,\"name\":\"fileUpdateDate\",\"url\":\"classes/Beatmap.html#fileUpdateDate\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Beatmap\"},{\"id\":13,\"kind\":1024,\"name\":\"originalMode\",\"url\":\"classes/Beatmap.html#originalMode\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Beatmap\"},{\"id\":14,\"kind\":262144,\"name\":\"mode\",\"url\":\"classes/Beatmap.html#mode\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"Beatmap\"},{\"id\":15,\"kind\":262144,\"name\":\"length\",\"url\":\"classes/Beatmap.html#length\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"Beatmap\"},{\"id\":16,\"kind\":262144,\"name\":\"totalLength\",\"url\":\"classes/Beatmap.html#totalLength\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"Beatmap\"},{\"id\":17,\"kind\":262144,\"name\":\"bpmMin\",\"url\":\"classes/Beatmap.html#bpmMin\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"Beatmap\"},{\"id\":18,\"kind\":262144,\"name\":\"bpmMax\",\"url\":\"classes/Beatmap.html#bpmMax\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"Beatmap\"},{\"id\":19,\"kind\":262144,\"name\":\"bpm\",\"url\":\"classes/Beatmap.html#bpm\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"Beatmap\"},{\"id\":20,\"kind\":262144,\"name\":\"totalBreakTime\",\"url\":\"classes/Beatmap.html#totalBreakTime\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"Beatmap\"},{\"id\":21,\"kind\":262144,\"name\":\"hittable\",\"url\":\"classes/Beatmap.html#hittable\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"Beatmap\"},{\"id\":22,\"kind\":262144,\"name\":\"slidable\",\"url\":\"classes/Beatmap.html#slidable\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"Beatmap\"},{\"id\":23,\"kind\":262144,\"name\":\"spinnable\",\"url\":\"classes/Beatmap.html#spinnable\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"Beatmap\"},{\"id\":24,\"kind\":262144,\"name\":\"holdable\",\"url\":\"classes/Beatmap.html#holdable\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"Beatmap\"},{\"id\":25,\"kind\":2048,\"name\":\"clone\",\"url\":\"classes/Beatmap.html#clone\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Beatmap\"},{\"id\":26,\"kind\":128,\"name\":\"BeatmapConverter\",\"url\":\"classes/BeatmapConverter.html\",\"classes\":\"tsd-kind-class\"},{\"id\":27,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/BeatmapConverter.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"BeatmapConverter\"},{\"id\":28,\"kind\":2048,\"name\":\"convertBeatmap\",\"url\":\"classes/BeatmapConverter.html#convertBeatmap\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"BeatmapConverter\"},{\"id\":29,\"kind\":2048,\"name\":\"convertHitObjects\",\"url\":\"classes/BeatmapConverter.html#convertHitObjects\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"BeatmapConverter\"},{\"id\":30,\"kind\":2048,\"name\":\"createBeatmap\",\"url\":\"classes/BeatmapConverter.html#createBeatmap\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"BeatmapConverter\"},{\"id\":31,\"kind\":2048,\"name\":\"canConvert\",\"url\":\"classes/BeatmapConverter.html#canConvert\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"BeatmapConverter\"},{\"id\":32,\"kind\":128,\"name\":\"BeatmapInfo\",\"url\":\"classes/BeatmapInfo.html\",\"classes\":\"tsd-kind-class\"},{\"id\":33,\"kind\":2048,\"name\":\"fromJSON\",\"url\":\"classes/BeatmapInfo.html#fromJSON\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"BeatmapInfo\"},{\"id\":34,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/BeatmapInfo.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"BeatmapInfo\"},{\"id\":35,\"kind\":1024,\"name\":\"id\",\"url\":\"classes/BeatmapInfo.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapInfo\"},{\"id\":36,\"kind\":1024,\"name\":\"beatmapsetId\",\"url\":\"classes/BeatmapInfo.html#beatmapsetId\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapInfo\"},{\"id\":37,\"kind\":1024,\"name\":\"creatorId\",\"url\":\"classes/BeatmapInfo.html#creatorId\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapInfo\"},{\"id\":38,\"kind\":1024,\"name\":\"creator\",\"url\":\"classes/BeatmapInfo.html#creator\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapInfo\"},{\"id\":39,\"kind\":1024,\"name\":\"favourites\",\"url\":\"classes/BeatmapInfo.html#favourites\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapInfo\"},{\"id\":40,\"kind\":1024,\"name\":\"passcount\",\"url\":\"classes/BeatmapInfo.html#passcount\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapInfo\"},{\"id\":41,\"kind\":1024,\"name\":\"playcount\",\"url\":\"classes/BeatmapInfo.html#playcount\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapInfo\"},{\"id\":42,\"kind\":1024,\"name\":\"status\",\"url\":\"classes/BeatmapInfo.html#status\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapInfo\"},{\"id\":43,\"kind\":1024,\"name\":\"title\",\"url\":\"classes/BeatmapInfo.html#title\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapInfo\"},{\"id\":44,\"kind\":1024,\"name\":\"artist\",\"url\":\"classes/BeatmapInfo.html#artist\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapInfo\"},{\"id\":45,\"kind\":1024,\"name\":\"version\",\"url\":\"classes/BeatmapInfo.html#version\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapInfo\"},{\"id\":46,\"kind\":1024,\"name\":\"hittable\",\"url\":\"classes/BeatmapInfo.html#hittable\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapInfo\"},{\"id\":47,\"kind\":1024,\"name\":\"slidable\",\"url\":\"classes/BeatmapInfo.html#slidable\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapInfo\"},{\"id\":48,\"kind\":1024,\"name\":\"spinnable\",\"url\":\"classes/BeatmapInfo.html#spinnable\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapInfo\"},{\"id\":49,\"kind\":1024,\"name\":\"holdable\",\"url\":\"classes/BeatmapInfo.html#holdable\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapInfo\"},{\"id\":50,\"kind\":1024,\"name\":\"length\",\"url\":\"classes/BeatmapInfo.html#length\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapInfo\"},{\"id\":51,\"kind\":1024,\"name\":\"bpmMin\",\"url\":\"classes/BeatmapInfo.html#bpmMin\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapInfo\"},{\"id\":52,\"kind\":1024,\"name\":\"bpmMax\",\"url\":\"classes/BeatmapInfo.html#bpmMax\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapInfo\"},{\"id\":53,\"kind\":1024,\"name\":\"bpm\",\"url\":\"classes/BeatmapInfo.html#bpm\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapInfo\"},{\"id\":54,\"kind\":1024,\"name\":\"circleSize\",\"url\":\"classes/BeatmapInfo.html#circleSize\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapInfo\"},{\"id\":55,\"kind\":1024,\"name\":\"approachRate\",\"url\":\"classes/BeatmapInfo.html#approachRate\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapInfo\"},{\"id\":56,\"kind\":1024,\"name\":\"overallDifficulty\",\"url\":\"classes/BeatmapInfo.html#overallDifficulty\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapInfo\"},{\"id\":57,\"kind\":1024,\"name\":\"drainRate\",\"url\":\"classes/BeatmapInfo.html#drainRate\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapInfo\"},{\"id\":58,\"kind\":262144,\"name\":\"ruleset\",\"url\":\"classes/BeatmapInfo.html#ruleset\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"BeatmapInfo\"},{\"id\":59,\"kind\":262144,\"name\":\"rulesetId\",\"url\":\"classes/BeatmapInfo.html#rulesetId\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"BeatmapInfo\"},{\"id\":60,\"kind\":262144,\"name\":\"mods\",\"url\":\"classes/BeatmapInfo.html#mods\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"BeatmapInfo\"},{\"id\":61,\"kind\":262144,\"name\":\"rawMods\",\"url\":\"classes/BeatmapInfo.html#rawMods\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"BeatmapInfo\"},{\"id\":62,\"kind\":1024,\"name\":\"starRating\",\"url\":\"classes/BeatmapInfo.html#starRating\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapInfo\"},{\"id\":63,\"kind\":1024,\"name\":\"maxCombo\",\"url\":\"classes/BeatmapInfo.html#maxCombo\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapInfo\"},{\"id\":64,\"kind\":1024,\"name\":\"isConvert\",\"url\":\"classes/BeatmapInfo.html#isConvert\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapInfo\"},{\"id\":65,\"kind\":1024,\"name\":\"deletedAt\",\"url\":\"classes/BeatmapInfo.html#deletedAt\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapInfo\"},{\"id\":66,\"kind\":1024,\"name\":\"updatedAt\",\"url\":\"classes/BeatmapInfo.html#updatedAt\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapInfo\"},{\"id\":67,\"kind\":1024,\"name\":\"hashMD5\",\"url\":\"classes/BeatmapInfo.html#hashMD5\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapInfo\"},{\"id\":68,\"kind\":262144,\"name\":\"totalHits\",\"url\":\"classes/BeatmapInfo.html#totalHits\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"BeatmapInfo\"},{\"id\":69,\"kind\":2048,\"name\":\"clone\",\"url\":\"classes/BeatmapInfo.html#clone\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"BeatmapInfo\"},{\"id\":70,\"kind\":2048,\"name\":\"equals\",\"url\":\"classes/BeatmapInfo.html#equals\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"BeatmapInfo\"},{\"id\":71,\"kind\":2048,\"name\":\"toJSON\",\"url\":\"classes/BeatmapInfo.html#toJSON\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"BeatmapInfo\"},{\"id\":72,\"kind\":128,\"name\":\"BeatmapProcessor\",\"url\":\"classes/BeatmapProcessor.html\",\"classes\":\"tsd-kind-class\"},{\"id\":73,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/BeatmapProcessor.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"BeatmapProcessor\"},{\"id\":74,\"kind\":2048,\"name\":\"preProcess\",\"url\":\"classes/BeatmapProcessor.html#preProcess\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"BeatmapProcessor\"},{\"id\":75,\"kind\":2048,\"name\":\"postProcess\",\"url\":\"classes/BeatmapProcessor.html#postProcess\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"BeatmapProcessor\"},{\"id\":76,\"kind\":128,\"name\":\"ControlPoint\",\"url\":\"classes/ControlPoint.html\",\"classes\":\"tsd-kind-class\"},{\"id\":77,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/ControlPoint.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"ControlPoint\"},{\"id\":78,\"kind\":1024,\"name\":\"pointType\",\"url\":\"classes/ControlPoint.html#pointType\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ControlPoint\"},{\"id\":79,\"kind\":1024,\"name\":\"group\",\"url\":\"classes/ControlPoint.html#group\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ControlPoint\"},{\"id\":80,\"kind\":2048,\"name\":\"attachGroup\",\"url\":\"classes/ControlPoint.html#attachGroup\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ControlPoint\"},{\"id\":81,\"kind\":2048,\"name\":\"dettachGroup\",\"url\":\"classes/ControlPoint.html#dettachGroup\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ControlPoint\"},{\"id\":82,\"kind\":262144,\"name\":\"startTime\",\"url\":\"classes/ControlPoint.html#startTime\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"ControlPoint\"},{\"id\":83,\"kind\":2048,\"name\":\"isRedundant\",\"url\":\"classes/ControlPoint.html#isRedundant\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ControlPoint\"},{\"id\":84,\"kind\":128,\"name\":\"ControlPointGroup\",\"url\":\"classes/ControlPointGroup.html\",\"classes\":\"tsd-kind-class\"},{\"id\":85,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/ControlPointGroup.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"ControlPointGroup\"},{\"id\":86,\"kind\":1024,\"name\":\"controlPoints\",\"url\":\"classes/ControlPointGroup.html#controlPoints\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ControlPointGroup\"},{\"id\":87,\"kind\":1024,\"name\":\"startTime\",\"url\":\"classes/ControlPointGroup.html#startTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ControlPointGroup\"},{\"id\":88,\"kind\":2048,\"name\":\"add\",\"url\":\"classes/ControlPointGroup.html#add\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ControlPointGroup\"},{\"id\":89,\"kind\":2048,\"name\":\"remove\",\"url\":\"classes/ControlPointGroup.html#remove\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ControlPointGroup\"},{\"id\":90,\"kind\":128,\"name\":\"ControlPointInfo\",\"url\":\"classes/ControlPointInfo.html\",\"classes\":\"tsd-kind-class\"},{\"id\":91,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/ControlPointInfo.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"ControlPointInfo\"},{\"id\":92,\"kind\":1024,\"name\":\"groups\",\"url\":\"classes/ControlPointInfo.html#groups\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ControlPointInfo\"},{\"id\":93,\"kind\":1024,\"name\":\"difficultyPoints\",\"url\":\"classes/ControlPointInfo.html#difficultyPoints\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ControlPointInfo\"},{\"id\":94,\"kind\":1024,\"name\":\"effectPoints\",\"url\":\"classes/ControlPointInfo.html#effectPoints\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ControlPointInfo\"},{\"id\":95,\"kind\":1024,\"name\":\"samplePoints\",\"url\":\"classes/ControlPointInfo.html#samplePoints\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ControlPointInfo\"},{\"id\":96,\"kind\":1024,\"name\":\"timingPoints\",\"url\":\"classes/ControlPointInfo.html#timingPoints\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ControlPointInfo\"},{\"id\":97,\"kind\":262144,\"name\":\"allPoints\",\"url\":\"classes/ControlPointInfo.html#allPoints\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"ControlPointInfo\"},{\"id\":98,\"kind\":2048,\"name\":\"groupAt\",\"url\":\"classes/ControlPointInfo.html#groupAt\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ControlPointInfo\"},{\"id\":99,\"kind\":2048,\"name\":\"difficultyPointAt\",\"url\":\"classes/ControlPointInfo.html#difficultyPointAt\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ControlPointInfo\"},{\"id\":100,\"kind\":2048,\"name\":\"effectPointAt\",\"url\":\"classes/ControlPointInfo.html#effectPointAt\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ControlPointInfo\"},{\"id\":101,\"kind\":2048,\"name\":\"samplePointAt\",\"url\":\"classes/ControlPointInfo.html#samplePointAt\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ControlPointInfo\"},{\"id\":102,\"kind\":2048,\"name\":\"timingPointAt\",\"url\":\"classes/ControlPointInfo.html#timingPointAt\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ControlPointInfo\"},{\"id\":103,\"kind\":2048,\"name\":\"add\",\"url\":\"classes/ControlPointInfo.html#add\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ControlPointInfo\"},{\"id\":104,\"kind\":2048,\"name\":\"getCurrentList\",\"url\":\"classes/ControlPointInfo.html#getCurrentList\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ControlPointInfo\"},{\"id\":105,\"kind\":2048,\"name\":\"checkAlreadyExisting\",\"url\":\"classes/ControlPointInfo.html#checkAlreadyExisting\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ControlPointInfo\"},{\"id\":106,\"kind\":2048,\"name\":\"remove\",\"url\":\"classes/ControlPointInfo.html#remove\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ControlPointInfo\"},{\"id\":107,\"kind\":2048,\"name\":\"clear\",\"url\":\"classes/ControlPointInfo.html#clear\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ControlPointInfo\"},{\"id\":108,\"kind\":2048,\"name\":\"clone\",\"url\":\"classes/ControlPointInfo.html#clone\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ControlPointInfo\"},{\"id\":109,\"kind\":128,\"name\":\"DifficultyPoint\",\"url\":\"classes/DifficultyPoint.html\",\"classes\":\"tsd-kind-class\"},{\"id\":110,\"kind\":1024,\"name\":\"default\",\"url\":\"classes/DifficultyPoint.html#default\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"DifficultyPoint\"},{\"id\":111,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/DifficultyPoint.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"DifficultyPoint\"},{\"id\":112,\"kind\":1024,\"name\":\"pointType\",\"url\":\"classes/DifficultyPoint.html#pointType\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"DifficultyPoint\"},{\"id\":113,\"kind\":1024,\"name\":\"generateTicks\",\"url\":\"classes/DifficultyPoint.html#generateTicks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"DifficultyPoint\"},{\"id\":114,\"kind\":1024,\"name\":\"isLegacy\",\"url\":\"classes/DifficultyPoint.html#isLegacy\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"DifficultyPoint\"},{\"id\":115,\"kind\":262144,\"name\":\"sliderVelocity\",\"url\":\"classes/DifficultyPoint.html#sliderVelocity\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"DifficultyPoint\"},{\"id\":116,\"kind\":1024,\"name\":\"bpmMultiplier\",\"url\":\"classes/DifficultyPoint.html#bpmMultiplier\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"DifficultyPoint\"},{\"id\":117,\"kind\":2048,\"name\":\"isRedundant\",\"url\":\"classes/DifficultyPoint.html#isRedundant\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"DifficultyPoint\"},{\"id\":118,\"kind\":2048,\"name\":\"equals\",\"url\":\"classes/DifficultyPoint.html#equals\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"DifficultyPoint\"},{\"id\":119,\"kind\":1024,\"name\":\"group\",\"url\":\"classes/DifficultyPoint.html#group\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"DifficultyPoint\"},{\"id\":120,\"kind\":2048,\"name\":\"attachGroup\",\"url\":\"classes/DifficultyPoint.html#attachGroup\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"DifficultyPoint\"},{\"id\":121,\"kind\":2048,\"name\":\"dettachGroup\",\"url\":\"classes/DifficultyPoint.html#dettachGroup\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"DifficultyPoint\"},{\"id\":122,\"kind\":262144,\"name\":\"startTime\",\"url\":\"classes/DifficultyPoint.html#startTime\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"DifficultyPoint\"},{\"id\":123,\"kind\":128,\"name\":\"EffectPoint\",\"url\":\"classes/EffectPoint.html\",\"classes\":\"tsd-kind-class\"},{\"id\":124,\"kind\":1024,\"name\":\"default\",\"url\":\"classes/EffectPoint.html#default\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"EffectPoint\"},{\"id\":125,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/EffectPoint.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"EffectPoint\"},{\"id\":126,\"kind\":1024,\"name\":\"pointType\",\"url\":\"classes/EffectPoint.html#pointType\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"EffectPoint\"},{\"id\":127,\"kind\":1024,\"name\":\"kiai\",\"url\":\"classes/EffectPoint.html#kiai\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"EffectPoint\"},{\"id\":128,\"kind\":1024,\"name\":\"omitFirstBarLine\",\"url\":\"classes/EffectPoint.html#omitFirstBarLine\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"EffectPoint\"},{\"id\":129,\"kind\":262144,\"name\":\"scrollSpeed\",\"url\":\"classes/EffectPoint.html#scrollSpeed\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"EffectPoint\"},{\"id\":130,\"kind\":2048,\"name\":\"isRedundant\",\"url\":\"classes/EffectPoint.html#isRedundant\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"EffectPoint\"},{\"id\":131,\"kind\":2048,\"name\":\"equals\",\"url\":\"classes/EffectPoint.html#equals\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"EffectPoint\"},{\"id\":132,\"kind\":1024,\"name\":\"group\",\"url\":\"classes/EffectPoint.html#group\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"EffectPoint\"},{\"id\":133,\"kind\":2048,\"name\":\"attachGroup\",\"url\":\"classes/EffectPoint.html#attachGroup\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"EffectPoint\"},{\"id\":134,\"kind\":2048,\"name\":\"dettachGroup\",\"url\":\"classes/EffectPoint.html#dettachGroup\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"EffectPoint\"},{\"id\":135,\"kind\":262144,\"name\":\"startTime\",\"url\":\"classes/EffectPoint.html#startTime\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"EffectPoint\"},{\"id\":136,\"kind\":128,\"name\":\"SamplePoint\",\"url\":\"classes/SamplePoint.html\",\"classes\":\"tsd-kind-class\"},{\"id\":137,\"kind\":1024,\"name\":\"default\",\"url\":\"classes/SamplePoint.html#default\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"SamplePoint\"},{\"id\":138,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/SamplePoint.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"SamplePoint\"},{\"id\":139,\"kind\":1024,\"name\":\"pointType\",\"url\":\"classes/SamplePoint.html#pointType\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"SamplePoint\"},{\"id\":140,\"kind\":1024,\"name\":\"sampleSet\",\"url\":\"classes/SamplePoint.html#sampleSet\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"SamplePoint\"},{\"id\":141,\"kind\":1024,\"name\":\"customIndex\",\"url\":\"classes/SamplePoint.html#customIndex\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"SamplePoint\"},{\"id\":142,\"kind\":1024,\"name\":\"volume\",\"url\":\"classes/SamplePoint.html#volume\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"SamplePoint\"},{\"id\":143,\"kind\":2048,\"name\":\"isRedundant\",\"url\":\"classes/SamplePoint.html#isRedundant\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"SamplePoint\"},{\"id\":144,\"kind\":2048,\"name\":\"equals\",\"url\":\"classes/SamplePoint.html#equals\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"SamplePoint\"},{\"id\":145,\"kind\":1024,\"name\":\"group\",\"url\":\"classes/SamplePoint.html#group\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"SamplePoint\"},{\"id\":146,\"kind\":2048,\"name\":\"attachGroup\",\"url\":\"classes/SamplePoint.html#attachGroup\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"SamplePoint\"},{\"id\":147,\"kind\":2048,\"name\":\"dettachGroup\",\"url\":\"classes/SamplePoint.html#dettachGroup\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"SamplePoint\"},{\"id\":148,\"kind\":262144,\"name\":\"startTime\",\"url\":\"classes/SamplePoint.html#startTime\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"SamplePoint\"},{\"id\":149,\"kind\":128,\"name\":\"TimingPoint\",\"url\":\"classes/TimingPoint.html\",\"classes\":\"tsd-kind-class\"},{\"id\":150,\"kind\":1024,\"name\":\"default\",\"url\":\"classes/TimingPoint.html#default\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"TimingPoint\"},{\"id\":151,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/TimingPoint.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"TimingPoint\"},{\"id\":152,\"kind\":1024,\"name\":\"pointType\",\"url\":\"classes/TimingPoint.html#pointType\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"TimingPoint\"},{\"id\":153,\"kind\":262144,\"name\":\"beatLength\",\"url\":\"classes/TimingPoint.html#beatLength\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"TimingPoint\"},{\"id\":154,\"kind\":1024,\"name\":\"timeSignature\",\"url\":\"classes/TimingPoint.html#timeSignature\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"TimingPoint\"},{\"id\":155,\"kind\":262144,\"name\":\"bpm\",\"url\":\"classes/TimingPoint.html#bpm\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"TimingPoint\"},{\"id\":156,\"kind\":2048,\"name\":\"isRedundant\",\"url\":\"classes/TimingPoint.html#isRedundant\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"TimingPoint\"},{\"id\":157,\"kind\":2048,\"name\":\"equals\",\"url\":\"classes/TimingPoint.html#equals\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"TimingPoint\"},{\"id\":158,\"kind\":1024,\"name\":\"group\",\"url\":\"classes/TimingPoint.html#group\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"TimingPoint\"},{\"id\":159,\"kind\":2048,\"name\":\"attachGroup\",\"url\":\"classes/TimingPoint.html#attachGroup\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"TimingPoint\"},{\"id\":160,\"kind\":2048,\"name\":\"dettachGroup\",\"url\":\"classes/TimingPoint.html#dettachGroup\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"TimingPoint\"},{\"id\":161,\"kind\":262144,\"name\":\"startTime\",\"url\":\"classes/TimingPoint.html#startTime\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"TimingPoint\"},{\"id\":162,\"kind\":8,\"name\":\"ControlPointType\",\"url\":\"enums/ControlPointType.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":163,\"kind\":16,\"name\":\"TimingPoint\",\"url\":\"enums/ControlPointType.html#TimingPoint\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ControlPointType\"},{\"id\":164,\"kind\":16,\"name\":\"DifficultyPoint\",\"url\":\"enums/ControlPointType.html#DifficultyPoint\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ControlPointType\"},{\"id\":165,\"kind\":16,\"name\":\"EffectPoint\",\"url\":\"enums/ControlPointType.html#EffectPoint\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ControlPointType\"},{\"id\":166,\"kind\":16,\"name\":\"SamplePoint\",\"url\":\"enums/ControlPointType.html#SamplePoint\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ControlPointType\"},{\"id\":167,\"kind\":8,\"name\":\"EffectType\",\"url\":\"enums/EffectType.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":168,\"kind\":16,\"name\":\"None\",\"url\":\"enums/EffectType.html#None\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"EffectType\"},{\"id\":169,\"kind\":16,\"name\":\"Kiai\",\"url\":\"enums/EffectType.html#Kiai\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"EffectType\"},{\"id\":170,\"kind\":16,\"name\":\"OmitFirstBarLine\",\"url\":\"enums/EffectType.html#OmitFirstBarLine\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"EffectType\"},{\"id\":171,\"kind\":8,\"name\":\"TimeSignature\",\"url\":\"enums/TimeSignature.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":172,\"kind\":16,\"name\":\"SimpleTriple\",\"url\":\"enums/TimeSignature.html#SimpleTriple\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"TimeSignature\"},{\"id\":173,\"kind\":16,\"name\":\"SimpleQuadruple\",\"url\":\"enums/TimeSignature.html#SimpleQuadruple\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"TimeSignature\"},{\"id\":174,\"kind\":128,\"name\":\"BeatmapBreakEvent\",\"url\":\"classes/BeatmapBreakEvent.html\",\"classes\":\"tsd-kind-class\"},{\"id\":175,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/BeatmapBreakEvent.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"BeatmapBreakEvent\"},{\"id\":176,\"kind\":1024,\"name\":\"startTime\",\"url\":\"classes/BeatmapBreakEvent.html#startTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapBreakEvent\"},{\"id\":177,\"kind\":1024,\"name\":\"endTime\",\"url\":\"classes/BeatmapBreakEvent.html#endTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapBreakEvent\"},{\"id\":178,\"kind\":262144,\"name\":\"duration\",\"url\":\"classes/BeatmapBreakEvent.html#duration\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"BeatmapBreakEvent\"},{\"id\":179,\"kind\":262144,\"name\":\"hasEffect\",\"url\":\"classes/BeatmapBreakEvent.html#hasEffect\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"BeatmapBreakEvent\"},{\"id\":180,\"kind\":2048,\"name\":\"contains\",\"url\":\"classes/BeatmapBreakEvent.html#contains\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"BeatmapBreakEvent\"},{\"id\":181,\"kind\":256,\"name\":\"IBeatmap\",\"url\":\"interfaces/IBeatmap.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":182,\"kind\":1024,\"name\":\"base\",\"url\":\"interfaces/IBeatmap.html#base\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmap\"},{\"id\":183,\"kind\":1024,\"name\":\"general\",\"url\":\"interfaces/IBeatmap.html#general\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmap\"},{\"id\":184,\"kind\":1024,\"name\":\"editor\",\"url\":\"interfaces/IBeatmap.html#editor\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmap\"},{\"id\":185,\"kind\":1024,\"name\":\"difficulty\",\"url\":\"interfaces/IBeatmap.html#difficulty\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmap\"},{\"id\":186,\"kind\":1024,\"name\":\"metadata\",\"url\":\"interfaces/IBeatmap.html#metadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmap\"},{\"id\":187,\"kind\":1024,\"name\":\"colors\",\"url\":\"interfaces/IBeatmap.html#colors\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmap\"},{\"id\":188,\"kind\":1024,\"name\":\"events\",\"url\":\"interfaces/IBeatmap.html#events\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmap\"},{\"id\":189,\"kind\":1024,\"name\":\"controlPoints\",\"url\":\"interfaces/IBeatmap.html#controlPoints\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmap\"},{\"id\":190,\"kind\":1024,\"name\":\"hitObjects\",\"url\":\"interfaces/IBeatmap.html#hitObjects\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmap\"},{\"id\":191,\"kind\":1024,\"name\":\"mode\",\"url\":\"interfaces/IBeatmap.html#mode\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmap\"},{\"id\":192,\"kind\":1024,\"name\":\"originalMode\",\"url\":\"interfaces/IBeatmap.html#originalMode\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmap\"},{\"id\":193,\"kind\":1024,\"name\":\"fileFormat\",\"url\":\"interfaces/IBeatmap.html#fileFormat\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmap\"},{\"id\":194,\"kind\":1024,\"name\":\"length\",\"url\":\"interfaces/IBeatmap.html#length\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmap\"},{\"id\":195,\"kind\":1024,\"name\":\"bpmMin\",\"url\":\"interfaces/IBeatmap.html#bpmMin\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmap\"},{\"id\":196,\"kind\":1024,\"name\":\"bpmMax\",\"url\":\"interfaces/IBeatmap.html#bpmMax\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmap\"},{\"id\":197,\"kind\":1024,\"name\":\"bpm\",\"url\":\"interfaces/IBeatmap.html#bpm\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmap\"},{\"id\":198,\"kind\":1024,\"name\":\"totalBreakTime\",\"url\":\"interfaces/IBeatmap.html#totalBreakTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmap\"},{\"id\":199,\"kind\":2048,\"name\":\"clone\",\"url\":\"interfaces/IBeatmap.html#clone\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"IBeatmap\"},{\"id\":200,\"kind\":256,\"name\":\"IBeatmapInfo\",\"url\":\"interfaces/IBeatmapInfo.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":201,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/IBeatmapInfo.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmapInfo\"},{\"id\":202,\"kind\":1024,\"name\":\"beatmapsetId\",\"url\":\"interfaces/IBeatmapInfo.html#beatmapsetId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmapInfo\"},{\"id\":203,\"kind\":1024,\"name\":\"creatorId\",\"url\":\"interfaces/IBeatmapInfo.html#creatorId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmapInfo\"},{\"id\":204,\"kind\":1024,\"name\":\"creator\",\"url\":\"interfaces/IBeatmapInfo.html#creator\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmapInfo\"},{\"id\":205,\"kind\":1024,\"name\":\"favourites\",\"url\":\"interfaces/IBeatmapInfo.html#favourites\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmapInfo\"},{\"id\":206,\"kind\":1024,\"name\":\"passcount\",\"url\":\"interfaces/IBeatmapInfo.html#passcount\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmapInfo\"},{\"id\":207,\"kind\":1024,\"name\":\"playcount\",\"url\":\"interfaces/IBeatmapInfo.html#playcount\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmapInfo\"},{\"id\":208,\"kind\":1024,\"name\":\"status\",\"url\":\"interfaces/IBeatmapInfo.html#status\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmapInfo\"},{\"id\":209,\"kind\":1024,\"name\":\"title\",\"url\":\"interfaces/IBeatmapInfo.html#title\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmapInfo\"},{\"id\":210,\"kind\":1024,\"name\":\"artist\",\"url\":\"interfaces/IBeatmapInfo.html#artist\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmapInfo\"},{\"id\":211,\"kind\":1024,\"name\":\"version\",\"url\":\"interfaces/IBeatmapInfo.html#version\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmapInfo\"},{\"id\":212,\"kind\":1024,\"name\":\"hittable\",\"url\":\"interfaces/IBeatmapInfo.html#hittable\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmapInfo\"},{\"id\":213,\"kind\":1024,\"name\":\"slidable\",\"url\":\"interfaces/IBeatmapInfo.html#slidable\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmapInfo\"},{\"id\":214,\"kind\":1024,\"name\":\"spinnable\",\"url\":\"interfaces/IBeatmapInfo.html#spinnable\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmapInfo\"},{\"id\":215,\"kind\":1024,\"name\":\"holdable\",\"url\":\"interfaces/IBeatmapInfo.html#holdable\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmapInfo\"},{\"id\":216,\"kind\":1024,\"name\":\"totalHits\",\"url\":\"interfaces/IBeatmapInfo.html#totalHits\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmapInfo\"},{\"id\":217,\"kind\":1024,\"name\":\"length\",\"url\":\"interfaces/IBeatmapInfo.html#length\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmapInfo\"},{\"id\":218,\"kind\":1024,\"name\":\"bpmMin\",\"url\":\"interfaces/IBeatmapInfo.html#bpmMin\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmapInfo\"},{\"id\":219,\"kind\":1024,\"name\":\"bpmMax\",\"url\":\"interfaces/IBeatmapInfo.html#bpmMax\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmapInfo\"},{\"id\":220,\"kind\":1024,\"name\":\"bpm\",\"url\":\"interfaces/IBeatmapInfo.html#bpm\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmapInfo\"},{\"id\":221,\"kind\":1024,\"name\":\"circleSize\",\"url\":\"interfaces/IBeatmapInfo.html#circleSize\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmapInfo\"},{\"id\":222,\"kind\":1024,\"name\":\"approachRate\",\"url\":\"interfaces/IBeatmapInfo.html#approachRate\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmapInfo\"},{\"id\":223,\"kind\":1024,\"name\":\"overallDifficulty\",\"url\":\"interfaces/IBeatmapInfo.html#overallDifficulty\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmapInfo\"},{\"id\":224,\"kind\":1024,\"name\":\"drainRate\",\"url\":\"interfaces/IBeatmapInfo.html#drainRate\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmapInfo\"},{\"id\":225,\"kind\":1024,\"name\":\"ruleset\",\"url\":\"interfaces/IBeatmapInfo.html#ruleset\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmapInfo\"},{\"id\":226,\"kind\":1024,\"name\":\"rulesetId\",\"url\":\"interfaces/IBeatmapInfo.html#rulesetId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmapInfo\"},{\"id\":227,\"kind\":1024,\"name\":\"mods\",\"url\":\"interfaces/IBeatmapInfo.html#mods\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmapInfo\"},{\"id\":228,\"kind\":1024,\"name\":\"rawMods\",\"url\":\"interfaces/IBeatmapInfo.html#rawMods\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmapInfo\"},{\"id\":229,\"kind\":1024,\"name\":\"starRating\",\"url\":\"interfaces/IBeatmapInfo.html#starRating\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmapInfo\"},{\"id\":230,\"kind\":1024,\"name\":\"maxCombo\",\"url\":\"interfaces/IBeatmapInfo.html#maxCombo\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmapInfo\"},{\"id\":231,\"kind\":1024,\"name\":\"isConvert\",\"url\":\"interfaces/IBeatmapInfo.html#isConvert\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmapInfo\"},{\"id\":232,\"kind\":1024,\"name\":\"deletedAt\",\"url\":\"interfaces/IBeatmapInfo.html#deletedAt\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmapInfo\"},{\"id\":233,\"kind\":1024,\"name\":\"updatedAt\",\"url\":\"interfaces/IBeatmapInfo.html#updatedAt\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmapInfo\"},{\"id\":234,\"kind\":1024,\"name\":\"hashMD5\",\"url\":\"interfaces/IBeatmapInfo.html#hashMD5\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IBeatmapInfo\"},{\"id\":235,\"kind\":2048,\"name\":\"toJSON\",\"url\":\"interfaces/IBeatmapInfo.html#toJSON\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"IBeatmapInfo\"},{\"id\":236,\"kind\":4194304,\"name\":\"JsonableBeatmapInfo\",\"url\":\"modules.html#JsonableBeatmapInfo\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":237,\"kind\":256,\"name\":\"IJsonableBeatmapInfo\",\"url\":\"interfaces/IJsonableBeatmapInfo.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":238,\"kind\":1024,\"name\":\"mods\",\"url\":\"interfaces/IJsonableBeatmapInfo.html#mods\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IJsonableBeatmapInfo\"},{\"id\":239,\"kind\":1024,\"name\":\"deletedAt\",\"url\":\"interfaces/IJsonableBeatmapInfo.html#deletedAt\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IJsonableBeatmapInfo\"},{\"id\":240,\"kind\":1024,\"name\":\"updatedAt\",\"url\":\"interfaces/IJsonableBeatmapInfo.html#updatedAt\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IJsonableBeatmapInfo\"},{\"id\":241,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/IJsonableBeatmapInfo.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableBeatmapInfo\"},{\"id\":242,\"kind\":1024,\"name\":\"maxCombo\",\"url\":\"interfaces/IJsonableBeatmapInfo.html#maxCombo\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableBeatmapInfo\"},{\"id\":243,\"kind\":1024,\"name\":\"rulesetId\",\"url\":\"interfaces/IJsonableBeatmapInfo.html#rulesetId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableBeatmapInfo\"},{\"id\":244,\"kind\":1024,\"name\":\"totalHits\",\"url\":\"interfaces/IJsonableBeatmapInfo.html#totalHits\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableBeatmapInfo\"},{\"id\":245,\"kind\":2048,\"name\":\"toJSON\",\"url\":\"interfaces/IJsonableBeatmapInfo.html#toJSON\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableBeatmapInfo\"},{\"id\":246,\"kind\":1024,\"name\":\"beatmapsetId\",\"url\":\"interfaces/IJsonableBeatmapInfo.html#beatmapsetId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableBeatmapInfo\"},{\"id\":247,\"kind\":1024,\"name\":\"creatorId\",\"url\":\"interfaces/IJsonableBeatmapInfo.html#creatorId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableBeatmapInfo\"},{\"id\":248,\"kind\":1024,\"name\":\"creator\",\"url\":\"interfaces/IJsonableBeatmapInfo.html#creator\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableBeatmapInfo\"},{\"id\":249,\"kind\":1024,\"name\":\"favourites\",\"url\":\"interfaces/IJsonableBeatmapInfo.html#favourites\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableBeatmapInfo\"},{\"id\":250,\"kind\":1024,\"name\":\"passcount\",\"url\":\"interfaces/IJsonableBeatmapInfo.html#passcount\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableBeatmapInfo\"},{\"id\":251,\"kind\":1024,\"name\":\"playcount\",\"url\":\"interfaces/IJsonableBeatmapInfo.html#playcount\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableBeatmapInfo\"},{\"id\":252,\"kind\":1024,\"name\":\"status\",\"url\":\"interfaces/IJsonableBeatmapInfo.html#status\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableBeatmapInfo\"},{\"id\":253,\"kind\":1024,\"name\":\"title\",\"url\":\"interfaces/IJsonableBeatmapInfo.html#title\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableBeatmapInfo\"},{\"id\":254,\"kind\":1024,\"name\":\"artist\",\"url\":\"interfaces/IJsonableBeatmapInfo.html#artist\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableBeatmapInfo\"},{\"id\":255,\"kind\":1024,\"name\":\"version\",\"url\":\"interfaces/IJsonableBeatmapInfo.html#version\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableBeatmapInfo\"},{\"id\":256,\"kind\":1024,\"name\":\"hittable\",\"url\":\"interfaces/IJsonableBeatmapInfo.html#hittable\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableBeatmapInfo\"},{\"id\":257,\"kind\":1024,\"name\":\"slidable\",\"url\":\"interfaces/IJsonableBeatmapInfo.html#slidable\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableBeatmapInfo\"},{\"id\":258,\"kind\":1024,\"name\":\"spinnable\",\"url\":\"interfaces/IJsonableBeatmapInfo.html#spinnable\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableBeatmapInfo\"},{\"id\":259,\"kind\":1024,\"name\":\"holdable\",\"url\":\"interfaces/IJsonableBeatmapInfo.html#holdable\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableBeatmapInfo\"},{\"id\":260,\"kind\":1024,\"name\":\"length\",\"url\":\"interfaces/IJsonableBeatmapInfo.html#length\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableBeatmapInfo\"},{\"id\":261,\"kind\":1024,\"name\":\"bpmMin\",\"url\":\"interfaces/IJsonableBeatmapInfo.html#bpmMin\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableBeatmapInfo\"},{\"id\":262,\"kind\":1024,\"name\":\"bpmMax\",\"url\":\"interfaces/IJsonableBeatmapInfo.html#bpmMax\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableBeatmapInfo\"},{\"id\":263,\"kind\":1024,\"name\":\"bpm\",\"url\":\"interfaces/IJsonableBeatmapInfo.html#bpm\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableBeatmapInfo\"},{\"id\":264,\"kind\":1024,\"name\":\"circleSize\",\"url\":\"interfaces/IJsonableBeatmapInfo.html#circleSize\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableBeatmapInfo\"},{\"id\":265,\"kind\":1024,\"name\":\"approachRate\",\"url\":\"interfaces/IJsonableBeatmapInfo.html#approachRate\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableBeatmapInfo\"},{\"id\":266,\"kind\":1024,\"name\":\"overallDifficulty\",\"url\":\"interfaces/IJsonableBeatmapInfo.html#overallDifficulty\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableBeatmapInfo\"},{\"id\":267,\"kind\":1024,\"name\":\"drainRate\",\"url\":\"interfaces/IJsonableBeatmapInfo.html#drainRate\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableBeatmapInfo\"},{\"id\":268,\"kind\":1024,\"name\":\"starRating\",\"url\":\"interfaces/IJsonableBeatmapInfo.html#starRating\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableBeatmapInfo\"},{\"id\":269,\"kind\":1024,\"name\":\"isConvert\",\"url\":\"interfaces/IJsonableBeatmapInfo.html#isConvert\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableBeatmapInfo\"},{\"id\":270,\"kind\":1024,\"name\":\"hashMD5\",\"url\":\"interfaces/IJsonableBeatmapInfo.html#hashMD5\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableBeatmapInfo\"},{\"id\":271,\"kind\":128,\"name\":\"ProgressiveCalculationBeatmap\",\"url\":\"classes/ProgressiveCalculationBeatmap.html\",\"classes\":\"tsd-kind-class\"},{\"id\":272,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/ProgressiveCalculationBeatmap.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"ProgressiveCalculationBeatmap\"},{\"id\":273,\"kind\":1024,\"name\":\"hitObjects\",\"url\":\"classes/ProgressiveCalculationBeatmap.html#hitObjects\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ProgressiveCalculationBeatmap\"},{\"id\":274,\"kind\":262144,\"name\":\"general\",\"url\":\"classes/ProgressiveCalculationBeatmap.html#general\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"ProgressiveCalculationBeatmap\"},{\"id\":275,\"kind\":262144,\"name\":\"editor\",\"url\":\"classes/ProgressiveCalculationBeatmap.html#editor\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"ProgressiveCalculationBeatmap\"},{\"id\":276,\"kind\":262144,\"name\":\"difficulty\",\"url\":\"classes/ProgressiveCalculationBeatmap.html#difficulty\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"ProgressiveCalculationBeatmap\"},{\"id\":277,\"kind\":262144,\"name\":\"metadata\",\"url\":\"classes/ProgressiveCalculationBeatmap.html#metadata\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"ProgressiveCalculationBeatmap\"},{\"id\":278,\"kind\":262144,\"name\":\"colors\",\"url\":\"classes/ProgressiveCalculationBeatmap.html#colors\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"ProgressiveCalculationBeatmap\"},{\"id\":279,\"kind\":262144,\"name\":\"events\",\"url\":\"classes/ProgressiveCalculationBeatmap.html#events\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"ProgressiveCalculationBeatmap\"},{\"id\":280,\"kind\":262144,\"name\":\"controlPoints\",\"url\":\"classes/ProgressiveCalculationBeatmap.html#controlPoints\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"ProgressiveCalculationBeatmap\"},{\"id\":281,\"kind\":262144,\"name\":\"mode\",\"url\":\"classes/ProgressiveCalculationBeatmap.html#mode\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"ProgressiveCalculationBeatmap\"},{\"id\":282,\"kind\":262144,\"name\":\"originalMode\",\"url\":\"classes/ProgressiveCalculationBeatmap.html#originalMode\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"ProgressiveCalculationBeatmap\"},{\"id\":283,\"kind\":262144,\"name\":\"fileFormat\",\"url\":\"classes/ProgressiveCalculationBeatmap.html#fileFormat\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"ProgressiveCalculationBeatmap\"},{\"id\":284,\"kind\":262144,\"name\":\"length\",\"url\":\"classes/ProgressiveCalculationBeatmap.html#length\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"ProgressiveCalculationBeatmap\"},{\"id\":285,\"kind\":262144,\"name\":\"bpmMin\",\"url\":\"classes/ProgressiveCalculationBeatmap.html#bpmMin\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"ProgressiveCalculationBeatmap\"},{\"id\":286,\"kind\":262144,\"name\":\"bpmMax\",\"url\":\"classes/ProgressiveCalculationBeatmap.html#bpmMax\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"ProgressiveCalculationBeatmap\"},{\"id\":287,\"kind\":262144,\"name\":\"bpm\",\"url\":\"classes/ProgressiveCalculationBeatmap.html#bpm\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"ProgressiveCalculationBeatmap\"},{\"id\":288,\"kind\":262144,\"name\":\"totalBreakTime\",\"url\":\"classes/ProgressiveCalculationBeatmap.html#totalBreakTime\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"ProgressiveCalculationBeatmap\"},{\"id\":289,\"kind\":2048,\"name\":\"clone\",\"url\":\"classes/ProgressiveCalculationBeatmap.html#clone\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ProgressiveCalculationBeatmap\"},{\"id\":290,\"kind\":128,\"name\":\"RulesetBeatmap\",\"url\":\"classes/RulesetBeatmap.html\",\"classes\":\"tsd-kind-class\"},{\"id\":291,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/RulesetBeatmap.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"RulesetBeatmap\"},{\"id\":292,\"kind\":262144,\"name\":\"maxCombo\",\"url\":\"classes/RulesetBeatmap.html#maxCombo\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"RulesetBeatmap\"},{\"id\":293,\"kind\":1024,\"name\":\"mods\",\"url\":\"classes/RulesetBeatmap.html#mods\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"RulesetBeatmap\"},{\"id\":294,\"kind\":2048,\"name\":\"clone\",\"url\":\"classes/RulesetBeatmap.html#clone\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"RulesetBeatmap\"},{\"id\":295,\"kind\":1024,\"name\":\"base\",\"url\":\"classes/RulesetBeatmap.html#base\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"RulesetBeatmap\"},{\"id\":296,\"kind\":1024,\"name\":\"general\",\"url\":\"classes/RulesetBeatmap.html#general\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"RulesetBeatmap\"},{\"id\":297,\"kind\":1024,\"name\":\"editor\",\"url\":\"classes/RulesetBeatmap.html#editor\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"RulesetBeatmap\"},{\"id\":298,\"kind\":1024,\"name\":\"difficulty\",\"url\":\"classes/RulesetBeatmap.html#difficulty\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"RulesetBeatmap\"},{\"id\":299,\"kind\":1024,\"name\":\"metadata\",\"url\":\"classes/RulesetBeatmap.html#metadata\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"RulesetBeatmap\"},{\"id\":300,\"kind\":1024,\"name\":\"colors\",\"url\":\"classes/RulesetBeatmap.html#colors\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"RulesetBeatmap\"},{\"id\":301,\"kind\":1024,\"name\":\"events\",\"url\":\"classes/RulesetBeatmap.html#events\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"RulesetBeatmap\"},{\"id\":302,\"kind\":1024,\"name\":\"controlPoints\",\"url\":\"classes/RulesetBeatmap.html#controlPoints\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"RulesetBeatmap\"},{\"id\":303,\"kind\":1024,\"name\":\"hitObjects\",\"url\":\"classes/RulesetBeatmap.html#hitObjects\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"RulesetBeatmap\"},{\"id\":304,\"kind\":1024,\"name\":\"fileFormat\",\"url\":\"classes/RulesetBeatmap.html#fileFormat\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"RulesetBeatmap\"},{\"id\":305,\"kind\":1024,\"name\":\"fileUpdateDate\",\"url\":\"classes/RulesetBeatmap.html#fileUpdateDate\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"RulesetBeatmap\"},{\"id\":306,\"kind\":1024,\"name\":\"originalMode\",\"url\":\"classes/RulesetBeatmap.html#originalMode\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"RulesetBeatmap\"},{\"id\":307,\"kind\":262144,\"name\":\"mode\",\"url\":\"classes/RulesetBeatmap.html#mode\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"RulesetBeatmap\"},{\"id\":308,\"kind\":262144,\"name\":\"length\",\"url\":\"classes/RulesetBeatmap.html#length\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"RulesetBeatmap\"},{\"id\":309,\"kind\":262144,\"name\":\"totalLength\",\"url\":\"classes/RulesetBeatmap.html#totalLength\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"RulesetBeatmap\"},{\"id\":310,\"kind\":262144,\"name\":\"bpmMin\",\"url\":\"classes/RulesetBeatmap.html#bpmMin\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"RulesetBeatmap\"},{\"id\":311,\"kind\":262144,\"name\":\"bpmMax\",\"url\":\"classes/RulesetBeatmap.html#bpmMax\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"RulesetBeatmap\"},{\"id\":312,\"kind\":262144,\"name\":\"bpm\",\"url\":\"classes/RulesetBeatmap.html#bpm\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"RulesetBeatmap\"},{\"id\":313,\"kind\":262144,\"name\":\"totalBreakTime\",\"url\":\"classes/RulesetBeatmap.html#totalBreakTime\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"RulesetBeatmap\"},{\"id\":314,\"kind\":262144,\"name\":\"hittable\",\"url\":\"classes/RulesetBeatmap.html#hittable\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"RulesetBeatmap\"},{\"id\":315,\"kind\":262144,\"name\":\"slidable\",\"url\":\"classes/RulesetBeatmap.html#slidable\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"RulesetBeatmap\"},{\"id\":316,\"kind\":262144,\"name\":\"spinnable\",\"url\":\"classes/RulesetBeatmap.html#spinnable\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"RulesetBeatmap\"},{\"id\":317,\"kind\":262144,\"name\":\"holdable\",\"url\":\"classes/RulesetBeatmap.html#holdable\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"RulesetBeatmap\"},{\"id\":318,\"kind\":128,\"name\":\"BeatmapColorSection\",\"url\":\"classes/BeatmapColorSection.html\",\"classes\":\"tsd-kind-class\"},{\"id\":319,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/BeatmapColorSection.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"BeatmapColorSection\"},{\"id\":320,\"kind\":1024,\"name\":\"comboColors\",\"url\":\"classes/BeatmapColorSection.html#comboColors\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapColorSection\"},{\"id\":321,\"kind\":1024,\"name\":\"sliderTrackColor\",\"url\":\"classes/BeatmapColorSection.html#sliderTrackColor\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapColorSection\"},{\"id\":322,\"kind\":1024,\"name\":\"sliderBorderColor\",\"url\":\"classes/BeatmapColorSection.html#sliderBorderColor\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapColorSection\"},{\"id\":323,\"kind\":2048,\"name\":\"clone\",\"url\":\"classes/BeatmapColorSection.html#clone\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"BeatmapColorSection\"},{\"id\":324,\"kind\":128,\"name\":\"BeatmapDifficultySection\",\"url\":\"classes/BeatmapDifficultySection.html\",\"classes\":\"tsd-kind-class\"},{\"id\":325,\"kind\":1024,\"name\":\"BASE_DIFFICULTY\",\"url\":\"classes/BeatmapDifficultySection.html#BASE_DIFFICULTY\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"BeatmapDifficultySection\"},{\"id\":326,\"kind\":2048,\"name\":\"range\",\"url\":\"classes/BeatmapDifficultySection.html#range\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"BeatmapDifficultySection\"},{\"id\":327,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/BeatmapDifficultySection.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"BeatmapDifficultySection\"},{\"id\":328,\"kind\":262144,\"name\":\"circleSize\",\"url\":\"classes/BeatmapDifficultySection.html#circleSize\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"BeatmapDifficultySection\"},{\"id\":329,\"kind\":262144,\"name\":\"drainRate\",\"url\":\"classes/BeatmapDifficultySection.html#drainRate\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"BeatmapDifficultySection\"},{\"id\":330,\"kind\":262144,\"name\":\"overallDifficulty\",\"url\":\"classes/BeatmapDifficultySection.html#overallDifficulty\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"BeatmapDifficultySection\"},{\"id\":331,\"kind\":262144,\"name\":\"approachRate\",\"url\":\"classes/BeatmapDifficultySection.html#approachRate\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"BeatmapDifficultySection\"},{\"id\":332,\"kind\":262144,\"name\":\"sliderMultiplier\",\"url\":\"classes/BeatmapDifficultySection.html#sliderMultiplier\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"BeatmapDifficultySection\"},{\"id\":333,\"kind\":262144,\"name\":\"sliderTickRate\",\"url\":\"classes/BeatmapDifficultySection.html#sliderTickRate\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"BeatmapDifficultySection\"},{\"id\":334,\"kind\":262144,\"name\":\"clockRate\",\"url\":\"classes/BeatmapDifficultySection.html#clockRate\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"BeatmapDifficultySection\"},{\"id\":335,\"kind\":2048,\"name\":\"clone\",\"url\":\"classes/BeatmapDifficultySection.html#clone\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"BeatmapDifficultySection\"},{\"id\":336,\"kind\":128,\"name\":\"BeatmapEditorSection\",\"url\":\"classes/BeatmapEditorSection.html\",\"classes\":\"tsd-kind-class\"},{\"id\":337,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/BeatmapEditorSection.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"BeatmapEditorSection\"},{\"id\":338,\"kind\":1024,\"name\":\"bookmarks\",\"url\":\"classes/BeatmapEditorSection.html#bookmarks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapEditorSection\"},{\"id\":339,\"kind\":1024,\"name\":\"distanceSpacing\",\"url\":\"classes/BeatmapEditorSection.html#distanceSpacing\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapEditorSection\"},{\"id\":340,\"kind\":1024,\"name\":\"beatDivisor\",\"url\":\"classes/BeatmapEditorSection.html#beatDivisor\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapEditorSection\"},{\"id\":341,\"kind\":1024,\"name\":\"gridSize\",\"url\":\"classes/BeatmapEditorSection.html#gridSize\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapEditorSection\"},{\"id\":342,\"kind\":1024,\"name\":\"timelineZoom\",\"url\":\"classes/BeatmapEditorSection.html#timelineZoom\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapEditorSection\"},{\"id\":343,\"kind\":2048,\"name\":\"clone\",\"url\":\"classes/BeatmapEditorSection.html#clone\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"BeatmapEditorSection\"},{\"id\":344,\"kind\":128,\"name\":\"BeatmapEventSection\",\"url\":\"classes/BeatmapEventSection.html\",\"classes\":\"tsd-kind-class\"},{\"id\":345,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/BeatmapEventSection.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"BeatmapEventSection\"},{\"id\":346,\"kind\":1024,\"name\":\"backgroundPath\",\"url\":\"classes/BeatmapEventSection.html#backgroundPath\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapEventSection\"},{\"id\":347,\"kind\":1024,\"name\":\"breaks\",\"url\":\"classes/BeatmapEventSection.html#breaks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapEventSection\"},{\"id\":348,\"kind\":1024,\"name\":\"storyboard\",\"url\":\"classes/BeatmapEventSection.html#storyboard\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapEventSection\"},{\"id\":349,\"kind\":262144,\"name\":\"isBackgroundReplaced\",\"url\":\"classes/BeatmapEventSection.html#isBackgroundReplaced\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"BeatmapEventSection\"},{\"id\":350,\"kind\":2048,\"name\":\"clone\",\"url\":\"classes/BeatmapEventSection.html#clone\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"BeatmapEventSection\"},{\"id\":351,\"kind\":128,\"name\":\"BeatmapGeneralSection\",\"url\":\"classes/BeatmapGeneralSection.html\",\"classes\":\"tsd-kind-class\"},{\"id\":352,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/BeatmapGeneralSection.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"BeatmapGeneralSection\"},{\"id\":353,\"kind\":1024,\"name\":\"audioFilename\",\"url\":\"classes/BeatmapGeneralSection.html#audioFilename\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapGeneralSection\"},{\"id\":354,\"kind\":1024,\"name\":\"audioHash\",\"url\":\"classes/BeatmapGeneralSection.html#audioHash\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapGeneralSection\"},{\"id\":355,\"kind\":1024,\"name\":\"overlayPosition\",\"url\":\"classes/BeatmapGeneralSection.html#overlayPosition\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapGeneralSection\"},{\"id\":356,\"kind\":1024,\"name\":\"skinPreference\",\"url\":\"classes/BeatmapGeneralSection.html#skinPreference\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapGeneralSection\"},{\"id\":357,\"kind\":1024,\"name\":\"audioLeadIn\",\"url\":\"classes/BeatmapGeneralSection.html#audioLeadIn\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapGeneralSection\"},{\"id\":358,\"kind\":1024,\"name\":\"previewTime\",\"url\":\"classes/BeatmapGeneralSection.html#previewTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapGeneralSection\"},{\"id\":359,\"kind\":1024,\"name\":\"countdown\",\"url\":\"classes/BeatmapGeneralSection.html#countdown\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapGeneralSection\"},{\"id\":360,\"kind\":1024,\"name\":\"stackLeniency\",\"url\":\"classes/BeatmapGeneralSection.html#stackLeniency\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapGeneralSection\"},{\"id\":361,\"kind\":1024,\"name\":\"countdownOffset\",\"url\":\"classes/BeatmapGeneralSection.html#countdownOffset\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapGeneralSection\"},{\"id\":362,\"kind\":1024,\"name\":\"sampleSet\",\"url\":\"classes/BeatmapGeneralSection.html#sampleSet\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapGeneralSection\"},{\"id\":363,\"kind\":1024,\"name\":\"letterboxInBreaks\",\"url\":\"classes/BeatmapGeneralSection.html#letterboxInBreaks\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapGeneralSection\"},{\"id\":364,\"kind\":1024,\"name\":\"storyFireInFront\",\"url\":\"classes/BeatmapGeneralSection.html#storyFireInFront\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapGeneralSection\"},{\"id\":365,\"kind\":1024,\"name\":\"useSkinSprites\",\"url\":\"classes/BeatmapGeneralSection.html#useSkinSprites\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapGeneralSection\"},{\"id\":366,\"kind\":1024,\"name\":\"alwaysShowPlayfield\",\"url\":\"classes/BeatmapGeneralSection.html#alwaysShowPlayfield\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapGeneralSection\"},{\"id\":367,\"kind\":1024,\"name\":\"epilepsyWarning\",\"url\":\"classes/BeatmapGeneralSection.html#epilepsyWarning\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapGeneralSection\"},{\"id\":368,\"kind\":1024,\"name\":\"specialStyle\",\"url\":\"classes/BeatmapGeneralSection.html#specialStyle\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapGeneralSection\"},{\"id\":369,\"kind\":1024,\"name\":\"widescreenStoryboard\",\"url\":\"classes/BeatmapGeneralSection.html#widescreenStoryboard\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapGeneralSection\"},{\"id\":370,\"kind\":1024,\"name\":\"samplesMatchPlaybackRate\",\"url\":\"classes/BeatmapGeneralSection.html#samplesMatchPlaybackRate\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapGeneralSection\"},{\"id\":371,\"kind\":2048,\"name\":\"clone\",\"url\":\"classes/BeatmapGeneralSection.html#clone\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"BeatmapGeneralSection\"},{\"id\":372,\"kind\":128,\"name\":\"BeatmapMetadataSection\",\"url\":\"classes/BeatmapMetadataSection.html\",\"classes\":\"tsd-kind-class\"},{\"id\":373,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/BeatmapMetadataSection.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"BeatmapMetadataSection\"},{\"id\":374,\"kind\":1024,\"name\":\"title\",\"url\":\"classes/BeatmapMetadataSection.html#title\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapMetadataSection\"},{\"id\":375,\"kind\":1024,\"name\":\"artist\",\"url\":\"classes/BeatmapMetadataSection.html#artist\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapMetadataSection\"},{\"id\":376,\"kind\":1024,\"name\":\"creator\",\"url\":\"classes/BeatmapMetadataSection.html#creator\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapMetadataSection\"},{\"id\":377,\"kind\":1024,\"name\":\"version\",\"url\":\"classes/BeatmapMetadataSection.html#version\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapMetadataSection\"},{\"id\":378,\"kind\":1024,\"name\":\"source\",\"url\":\"classes/BeatmapMetadataSection.html#source\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapMetadataSection\"},{\"id\":379,\"kind\":1024,\"name\":\"tags\",\"url\":\"classes/BeatmapMetadataSection.html#tags\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapMetadataSection\"},{\"id\":380,\"kind\":1024,\"name\":\"beatmapId\",\"url\":\"classes/BeatmapMetadataSection.html#beatmapId\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapMetadataSection\"},{\"id\":381,\"kind\":1024,\"name\":\"beatmapSetId\",\"url\":\"classes/BeatmapMetadataSection.html#beatmapSetId\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BeatmapMetadataSection\"},{\"id\":382,\"kind\":262144,\"name\":\"titleUnicode\",\"url\":\"classes/BeatmapMetadataSection.html#titleUnicode\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"BeatmapMetadataSection\"},{\"id\":383,\"kind\":262144,\"name\":\"artistUnicode\",\"url\":\"classes/BeatmapMetadataSection.html#artistUnicode\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"BeatmapMetadataSection\"},{\"id\":384,\"kind\":2048,\"name\":\"clone\",\"url\":\"classes/BeatmapMetadataSection.html#clone\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"BeatmapMetadataSection\"},{\"id\":385,\"kind\":128,\"name\":\"DifficultyAttributes\",\"url\":\"classes/DifficultyAttributes.html\",\"classes\":\"tsd-kind-class\"},{\"id\":386,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/DifficultyAttributes.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"DifficultyAttributes\"},{\"id\":387,\"kind\":1024,\"name\":\"mods\",\"url\":\"classes/DifficultyAttributes.html#mods\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"DifficultyAttributes\"},{\"id\":388,\"kind\":1024,\"name\":\"starRating\",\"url\":\"classes/DifficultyAttributes.html#starRating\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"DifficultyAttributes\"},{\"id\":389,\"kind\":1024,\"name\":\"maxCombo\",\"url\":\"classes/DifficultyAttributes.html#maxCombo\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"DifficultyAttributes\"},{\"id\":390,\"kind\":128,\"name\":\"PerformanceAttributes\",\"url\":\"classes/PerformanceAttributes.html\",\"classes\":\"tsd-kind-class\"},{\"id\":391,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/PerformanceAttributes.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"PerformanceAttributes\"},{\"id\":392,\"kind\":1024,\"name\":\"mods\",\"url\":\"classes/PerformanceAttributes.html#mods\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"PerformanceAttributes\"},{\"id\":393,\"kind\":1024,\"name\":\"totalPerformance\",\"url\":\"classes/PerformanceAttributes.html#totalPerformance\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"PerformanceAttributes\"},{\"id\":394,\"kind\":128,\"name\":\"TimedDifficultyAttributes\",\"url\":\"classes/TimedDifficultyAttributes.html\",\"classes\":\"tsd-kind-class tsd-has-type-parameter\"},{\"id\":395,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/TimedDifficultyAttributes.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-has-type-parameter\",\"parent\":\"TimedDifficultyAttributes\"},{\"id\":396,\"kind\":1024,\"name\":\"time\",\"url\":\"classes/TimedDifficultyAttributes.html#time\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"TimedDifficultyAttributes\"},{\"id\":397,\"kind\":1024,\"name\":\"attributes\",\"url\":\"classes/TimedDifficultyAttributes.html#attributes\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"TimedDifficultyAttributes\"},{\"id\":398,\"kind\":2048,\"name\":\"compareTo\",\"url\":\"classes/TimedDifficultyAttributes.html#compareTo\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"TimedDifficultyAttributes\"},{\"id\":399,\"kind\":128,\"name\":\"DifficultyCalculator\",\"url\":\"classes/DifficultyCalculator.html\",\"classes\":\"tsd-kind-class tsd-has-type-parameter\"},{\"id\":400,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/DifficultyCalculator.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-has-type-parameter\",\"parent\":\"DifficultyCalculator\"},{\"id\":401,\"kind\":2048,\"name\":\"calculate\",\"url\":\"classes/DifficultyCalculator.html#calculate\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"DifficultyCalculator\"},{\"id\":402,\"kind\":2048,\"name\":\"calculateAll\",\"url\":\"classes/DifficultyCalculator.html#calculateAll\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"DifficultyCalculator\"},{\"id\":403,\"kind\":2048,\"name\":\"calculateWithMods\",\"url\":\"classes/DifficultyCalculator.html#calculateWithMods\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"DifficultyCalculator\"},{\"id\":404,\"kind\":2048,\"name\":\"calculateAt\",\"url\":\"classes/DifficultyCalculator.html#calculateAt\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"DifficultyCalculator\"},{\"id\":405,\"kind\":2048,\"name\":\"calculateWithModsAt\",\"url\":\"classes/DifficultyCalculator.html#calculateWithModsAt\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"DifficultyCalculator\"},{\"id\":406,\"kind\":2048,\"name\":\"calculateTimed\",\"url\":\"classes/DifficultyCalculator.html#calculateTimed\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"DifficultyCalculator\"},{\"id\":407,\"kind\":2048,\"name\":\"calculateTimedWithMods\",\"url\":\"classes/DifficultyCalculator.html#calculateTimedWithMods\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"DifficultyCalculator\"},{\"id\":408,\"kind\":262144,\"name\":\"difficultyMods\",\"url\":\"classes/DifficultyCalculator.html#difficultyMods\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"DifficultyCalculator\"},{\"id\":409,\"kind\":128,\"name\":\"PerformanceCalculator\",\"url\":\"classes/PerformanceCalculator.html\",\"classes\":\"tsd-kind-class\"},{\"id\":410,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/PerformanceCalculator.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"PerformanceCalculator\"},{\"id\":411,\"kind\":1024,\"name\":\"attributes\",\"url\":\"classes/PerformanceCalculator.html#attributes\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"PerformanceCalculator\"},{\"id\":412,\"kind\":2048,\"name\":\"calculate\",\"url\":\"classes/PerformanceCalculator.html#calculate\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"PerformanceCalculator\"},{\"id\":413,\"kind\":2048,\"name\":\"calculateAttributes\",\"url\":\"classes/PerformanceCalculator.html#calculateAttributes\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"PerformanceCalculator\"},{\"id\":414,\"kind\":128,\"name\":\"DifficultyHitObject\",\"url\":\"classes/DifficultyHitObject.html\",\"classes\":\"tsd-kind-class\"},{\"id\":415,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/DifficultyHitObject.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"DifficultyHitObject\"},{\"id\":416,\"kind\":1024,\"name\":\"index\",\"url\":\"classes/DifficultyHitObject.html#index\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"DifficultyHitObject\"},{\"id\":417,\"kind\":1024,\"name\":\"baseObject\",\"url\":\"classes/DifficultyHitObject.html#baseObject\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"DifficultyHitObject\"},{\"id\":418,\"kind\":1024,\"name\":\"lastObject\",\"url\":\"classes/DifficultyHitObject.html#lastObject\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"DifficultyHitObject\"},{\"id\":419,\"kind\":1024,\"name\":\"deltaTime\",\"url\":\"classes/DifficultyHitObject.html#deltaTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"DifficultyHitObject\"},{\"id\":420,\"kind\":1024,\"name\":\"startTime\",\"url\":\"classes/DifficultyHitObject.html#startTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"DifficultyHitObject\"},{\"id\":421,\"kind\":1024,\"name\":\"endTime\",\"url\":\"classes/DifficultyHitObject.html#endTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"DifficultyHitObject\"},{\"id\":422,\"kind\":2048,\"name\":\"previous\",\"url\":\"classes/DifficultyHitObject.html#previous\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"DifficultyHitObject\"},{\"id\":423,\"kind\":2048,\"name\":\"next\",\"url\":\"classes/DifficultyHitObject.html#next\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"DifficultyHitObject\"},{\"id\":424,\"kind\":128,\"name\":\"Skill\",\"url\":\"classes/Skill.html\",\"classes\":\"tsd-kind-class\"},{\"id\":425,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Skill.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"Skill\"},{\"id\":426,\"kind\":2048,\"name\":\"process\",\"url\":\"classes/Skill.html#process\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Skill\"},{\"id\":427,\"kind\":262144,\"name\":\"difficultyValue\",\"url\":\"classes/Skill.html#difficultyValue\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"Skill\"},{\"id\":428,\"kind\":128,\"name\":\"StrainDecaySkill\",\"url\":\"classes/StrainDecaySkill.html\",\"classes\":\"tsd-kind-class\"},{\"id\":429,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/StrainDecaySkill.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"StrainDecaySkill\"},{\"id\":430,\"kind\":2048,\"name\":\"process\",\"url\":\"classes/StrainDecaySkill.html#process\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"StrainDecaySkill\"},{\"id\":431,\"kind\":2048,\"name\":\"getCurrentStrainPeaks\",\"url\":\"classes/StrainDecaySkill.html#getCurrentStrainPeaks\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"StrainDecaySkill\"},{\"id\":432,\"kind\":262144,\"name\":\"difficultyValue\",\"url\":\"classes/StrainDecaySkill.html#difficultyValue\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"StrainDecaySkill\"},{\"id\":433,\"kind\":128,\"name\":\"StrainSkill\",\"url\":\"classes/StrainSkill.html\",\"classes\":\"tsd-kind-class\"},{\"id\":434,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/StrainSkill.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"StrainSkill\"},{\"id\":435,\"kind\":2048,\"name\":\"process\",\"url\":\"classes/StrainSkill.html#process\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"StrainSkill\"},{\"id\":436,\"kind\":2048,\"name\":\"getCurrentStrainPeaks\",\"url\":\"classes/StrainSkill.html#getCurrentStrainPeaks\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"StrainSkill\"},{\"id\":437,\"kind\":262144,\"name\":\"difficultyValue\",\"url\":\"classes/StrainSkill.html#difficultyValue\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"StrainSkill\"},{\"id\":438,\"kind\":128,\"name\":\"LimitedCapacityQueue\",\"url\":\"classes/LimitedCapacityQueue.html\",\"classes\":\"tsd-kind-class tsd-has-type-parameter\"},{\"id\":439,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/LimitedCapacityQueue.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-has-type-parameter\",\"parent\":\"LimitedCapacityQueue\"},{\"id\":440,\"kind\":1024,\"name\":\"count\",\"url\":\"classes/LimitedCapacityQueue.html#count\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"LimitedCapacityQueue\"},{\"id\":441,\"kind\":262144,\"name\":\"full\",\"url\":\"classes/LimitedCapacityQueue.html#full\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"LimitedCapacityQueue\"},{\"id\":442,\"kind\":2048,\"name\":\"clear\",\"url\":\"classes/LimitedCapacityQueue.html#clear\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"LimitedCapacityQueue\"},{\"id\":443,\"kind\":2048,\"name\":\"dequeue\",\"url\":\"classes/LimitedCapacityQueue.html#dequeue\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"LimitedCapacityQueue\"},{\"id\":444,\"kind\":2048,\"name\":\"enqueue\",\"url\":\"classes/LimitedCapacityQueue.html#enqueue\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"LimitedCapacityQueue\"},{\"id\":445,\"kind\":2048,\"name\":\"get\",\"url\":\"classes/LimitedCapacityQueue.html#get\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"LimitedCapacityQueue\"},{\"id\":446,\"kind\":2048,\"name\":\"enumerate\",\"url\":\"classes/LimitedCapacityQueue.html#enumerate\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"LimitedCapacityQueue\"},{\"id\":447,\"kind\":128,\"name\":\"ReverseQueue\",\"url\":\"classes/ReverseQueue.html\",\"classes\":\"tsd-kind-class tsd-has-type-parameter\"},{\"id\":448,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/ReverseQueue.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-has-type-parameter\",\"parent\":\"ReverseQueue\"},{\"id\":449,\"kind\":1024,\"name\":\"count\",\"url\":\"classes/ReverseQueue.html#count\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ReverseQueue\"},{\"id\":450,\"kind\":2048,\"name\":\"get\",\"url\":\"classes/ReverseQueue.html#get\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ReverseQueue\"},{\"id\":451,\"kind\":2048,\"name\":\"enqueue\",\"url\":\"classes/ReverseQueue.html#enqueue\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ReverseQueue\"},{\"id\":452,\"kind\":2048,\"name\":\"dequeue\",\"url\":\"classes/ReverseQueue.html#dequeue\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ReverseQueue\"},{\"id\":453,\"kind\":2048,\"name\":\"clear\",\"url\":\"classes/ReverseQueue.html#clear\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ReverseQueue\"},{\"id\":454,\"kind\":2048,\"name\":\"enumerate\",\"url\":\"classes/ReverseQueue.html#enumerate\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ReverseQueue\"},{\"id\":455,\"kind\":8,\"name\":\"ModBitwise\",\"url\":\"enums/ModBitwise.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":456,\"kind\":16,\"name\":\"None\",\"url\":\"enums/ModBitwise.html#None\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ModBitwise\"},{\"id\":457,\"kind\":16,\"name\":\"NoFail\",\"url\":\"enums/ModBitwise.html#NoFail\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ModBitwise\"},{\"id\":458,\"kind\":16,\"name\":\"Easy\",\"url\":\"enums/ModBitwise.html#Easy\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ModBitwise\"},{\"id\":459,\"kind\":16,\"name\":\"TouchDevice\",\"url\":\"enums/ModBitwise.html#TouchDevice\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ModBitwise\"},{\"id\":460,\"kind\":16,\"name\":\"Hidden\",\"url\":\"enums/ModBitwise.html#Hidden\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ModBitwise\"},{\"id\":461,\"kind\":16,\"name\":\"HardRock\",\"url\":\"enums/ModBitwise.html#HardRock\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ModBitwise\"},{\"id\":462,\"kind\":16,\"name\":\"SuddenDeath\",\"url\":\"enums/ModBitwise.html#SuddenDeath\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ModBitwise\"},{\"id\":463,\"kind\":16,\"name\":\"DoubleTime\",\"url\":\"enums/ModBitwise.html#DoubleTime\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ModBitwise\"},{\"id\":464,\"kind\":16,\"name\":\"Relax\",\"url\":\"enums/ModBitwise.html#Relax\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ModBitwise\"},{\"id\":465,\"kind\":16,\"name\":\"HalfTime\",\"url\":\"enums/ModBitwise.html#HalfTime\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ModBitwise\"},{\"id\":466,\"kind\":16,\"name\":\"Nightcore\",\"url\":\"enums/ModBitwise.html#Nightcore\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ModBitwise\"},{\"id\":467,\"kind\":16,\"name\":\"Flashlight\",\"url\":\"enums/ModBitwise.html#Flashlight\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ModBitwise\"},{\"id\":468,\"kind\":16,\"name\":\"Autoplay\",\"url\":\"enums/ModBitwise.html#Autoplay\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ModBitwise\"},{\"id\":469,\"kind\":16,\"name\":\"SpunOut\",\"url\":\"enums/ModBitwise.html#SpunOut\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ModBitwise\"},{\"id\":470,\"kind\":16,\"name\":\"Relax2\",\"url\":\"enums/ModBitwise.html#Relax2\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ModBitwise\"},{\"id\":471,\"kind\":16,\"name\":\"Perfect\",\"url\":\"enums/ModBitwise.html#Perfect\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ModBitwise\"},{\"id\":472,\"kind\":16,\"name\":\"Key4\",\"url\":\"enums/ModBitwise.html#Key4\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ModBitwise\"},{\"id\":473,\"kind\":16,\"name\":\"Key5\",\"url\":\"enums/ModBitwise.html#Key5\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ModBitwise\"},{\"id\":474,\"kind\":16,\"name\":\"Key6\",\"url\":\"enums/ModBitwise.html#Key6\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ModBitwise\"},{\"id\":475,\"kind\":16,\"name\":\"Key7\",\"url\":\"enums/ModBitwise.html#Key7\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ModBitwise\"},{\"id\":476,\"kind\":16,\"name\":\"Key8\",\"url\":\"enums/ModBitwise.html#Key8\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ModBitwise\"},{\"id\":477,\"kind\":16,\"name\":\"FadeIn\",\"url\":\"enums/ModBitwise.html#FadeIn\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ModBitwise\"},{\"id\":478,\"kind\":16,\"name\":\"Random\",\"url\":\"enums/ModBitwise.html#Random\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ModBitwise\"},{\"id\":479,\"kind\":16,\"name\":\"Cinema\",\"url\":\"enums/ModBitwise.html#Cinema\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ModBitwise\"},{\"id\":480,\"kind\":16,\"name\":\"Target\",\"url\":\"enums/ModBitwise.html#Target\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ModBitwise\"},{\"id\":481,\"kind\":16,\"name\":\"Key9\",\"url\":\"enums/ModBitwise.html#Key9\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ModBitwise\"},{\"id\":482,\"kind\":16,\"name\":\"KeyCoop\",\"url\":\"enums/ModBitwise.html#KeyCoop\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ModBitwise\"},{\"id\":483,\"kind\":16,\"name\":\"Key1\",\"url\":\"enums/ModBitwise.html#Key1\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ModBitwise\"},{\"id\":484,\"kind\":16,\"name\":\"Key3\",\"url\":\"enums/ModBitwise.html#Key3\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ModBitwise\"},{\"id\":485,\"kind\":16,\"name\":\"Key2\",\"url\":\"enums/ModBitwise.html#Key2\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ModBitwise\"},{\"id\":486,\"kind\":16,\"name\":\"ScoreV2\",\"url\":\"enums/ModBitwise.html#ScoreV2\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ModBitwise\"},{\"id\":487,\"kind\":16,\"name\":\"Mirror\",\"url\":\"enums/ModBitwise.html#Mirror\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ModBitwise\"},{\"id\":488,\"kind\":16,\"name\":\"KeyMod\",\"url\":\"enums/ModBitwise.html#KeyMod\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ModBitwise\"},{\"id\":489,\"kind\":16,\"name\":\"DifficultyDecrease\",\"url\":\"enums/ModBitwise.html#DifficultyDecrease\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ModBitwise\"},{\"id\":490,\"kind\":16,\"name\":\"DifficultyIncrease\",\"url\":\"enums/ModBitwise.html#DifficultyIncrease\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ModBitwise\"},{\"id\":491,\"kind\":8,\"name\":\"ModType\",\"url\":\"enums/ModType.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":492,\"kind\":16,\"name\":\"DifficultyReduction\",\"url\":\"enums/ModType.html#DifficultyReduction\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ModType\"},{\"id\":493,\"kind\":16,\"name\":\"DifficultyIncrease\",\"url\":\"enums/ModType.html#DifficultyIncrease\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ModType\"},{\"id\":494,\"kind\":16,\"name\":\"Conversion\",\"url\":\"enums/ModType.html#Conversion\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ModType\"},{\"id\":495,\"kind\":16,\"name\":\"Automation\",\"url\":\"enums/ModType.html#Automation\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ModType\"},{\"id\":496,\"kind\":16,\"name\":\"Fun\",\"url\":\"enums/ModType.html#Fun\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ModType\"},{\"id\":497,\"kind\":16,\"name\":\"System\",\"url\":\"enums/ModType.html#System\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ModType\"},{\"id\":498,\"kind\":256,\"name\":\"IApplicableToConverter\",\"url\":\"interfaces/IApplicableToConverter.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":499,\"kind\":2048,\"name\":\"applyToConverter\",\"url\":\"interfaces/IApplicableToConverter.html#applyToConverter\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"IApplicableToConverter\"},{\"id\":500,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/IApplicableToConverter.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IApplicableToConverter\"},{\"id\":501,\"kind\":1024,\"name\":\"acronym\",\"url\":\"interfaces/IApplicableToConverter.html#acronym\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IApplicableToConverter\"},{\"id\":502,\"kind\":1024,\"name\":\"bitwise\",\"url\":\"interfaces/IApplicableToConverter.html#bitwise\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IApplicableToConverter\"},{\"id\":503,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/IApplicableToConverter.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IApplicableToConverter\"},{\"id\":504,\"kind\":1024,\"name\":\"multiplier\",\"url\":\"interfaces/IApplicableToConverter.html#multiplier\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IApplicableToConverter\"},{\"id\":505,\"kind\":1024,\"name\":\"isRanked\",\"url\":\"interfaces/IApplicableToConverter.html#isRanked\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IApplicableToConverter\"},{\"id\":506,\"kind\":1024,\"name\":\"incompatibles\",\"url\":\"interfaces/IApplicableToConverter.html#incompatibles\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IApplicableToConverter\"},{\"id\":507,\"kind\":256,\"name\":\"IApplicableToDifficulty\",\"url\":\"interfaces/IApplicableToDifficulty.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":508,\"kind\":2048,\"name\":\"applyToDifficulty\",\"url\":\"interfaces/IApplicableToDifficulty.html#applyToDifficulty\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"IApplicableToDifficulty\"},{\"id\":509,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/IApplicableToDifficulty.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IApplicableToDifficulty\"},{\"id\":510,\"kind\":1024,\"name\":\"acronym\",\"url\":\"interfaces/IApplicableToDifficulty.html#acronym\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IApplicableToDifficulty\"},{\"id\":511,\"kind\":1024,\"name\":\"bitwise\",\"url\":\"interfaces/IApplicableToDifficulty.html#bitwise\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IApplicableToDifficulty\"},{\"id\":512,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/IApplicableToDifficulty.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IApplicableToDifficulty\"},{\"id\":513,\"kind\":1024,\"name\":\"multiplier\",\"url\":\"interfaces/IApplicableToDifficulty.html#multiplier\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IApplicableToDifficulty\"},{\"id\":514,\"kind\":1024,\"name\":\"isRanked\",\"url\":\"interfaces/IApplicableToDifficulty.html#isRanked\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IApplicableToDifficulty\"},{\"id\":515,\"kind\":1024,\"name\":\"incompatibles\",\"url\":\"interfaces/IApplicableToDifficulty.html#incompatibles\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IApplicableToDifficulty\"},{\"id\":516,\"kind\":256,\"name\":\"IApplicableToHitObjects\",\"url\":\"interfaces/IApplicableToHitObjects.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":517,\"kind\":2048,\"name\":\"applyToHitObjects\",\"url\":\"interfaces/IApplicableToHitObjects.html#applyToHitObjects\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"IApplicableToHitObjects\"},{\"id\":518,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/IApplicableToHitObjects.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IApplicableToHitObjects\"},{\"id\":519,\"kind\":1024,\"name\":\"acronym\",\"url\":\"interfaces/IApplicableToHitObjects.html#acronym\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IApplicableToHitObjects\"},{\"id\":520,\"kind\":1024,\"name\":\"bitwise\",\"url\":\"interfaces/IApplicableToHitObjects.html#bitwise\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IApplicableToHitObjects\"},{\"id\":521,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/IApplicableToHitObjects.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IApplicableToHitObjects\"},{\"id\":522,\"kind\":1024,\"name\":\"multiplier\",\"url\":\"interfaces/IApplicableToHitObjects.html#multiplier\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IApplicableToHitObjects\"},{\"id\":523,\"kind\":1024,\"name\":\"isRanked\",\"url\":\"interfaces/IApplicableToHitObjects.html#isRanked\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IApplicableToHitObjects\"},{\"id\":524,\"kind\":1024,\"name\":\"incompatibles\",\"url\":\"interfaces/IApplicableToHitObjects.html#incompatibles\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IApplicableToHitObjects\"},{\"id\":525,\"kind\":256,\"name\":\"IApplicableToBeatmap\",\"url\":\"interfaces/IApplicableToBeatmap.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":526,\"kind\":2048,\"name\":\"applyToBeatmap\",\"url\":\"interfaces/IApplicableToBeatmap.html#applyToBeatmap\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"IApplicableToBeatmap\"},{\"id\":527,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/IApplicableToBeatmap.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IApplicableToBeatmap\"},{\"id\":528,\"kind\":1024,\"name\":\"acronym\",\"url\":\"interfaces/IApplicableToBeatmap.html#acronym\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IApplicableToBeatmap\"},{\"id\":529,\"kind\":1024,\"name\":\"bitwise\",\"url\":\"interfaces/IApplicableToBeatmap.html#bitwise\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IApplicableToBeatmap\"},{\"id\":530,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/IApplicableToBeatmap.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IApplicableToBeatmap\"},{\"id\":531,\"kind\":1024,\"name\":\"multiplier\",\"url\":\"interfaces/IApplicableToBeatmap.html#multiplier\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IApplicableToBeatmap\"},{\"id\":532,\"kind\":1024,\"name\":\"isRanked\",\"url\":\"interfaces/IApplicableToBeatmap.html#isRanked\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IApplicableToBeatmap\"},{\"id\":533,\"kind\":1024,\"name\":\"incompatibles\",\"url\":\"interfaces/IApplicableToBeatmap.html#incompatibles\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IApplicableToBeatmap\"},{\"id\":534,\"kind\":128,\"name\":\"Autoplay\",\"url\":\"classes/Autoplay.html\",\"classes\":\"tsd-kind-class\"},{\"id\":535,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Autoplay.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"Autoplay\"},{\"id\":536,\"kind\":1024,\"name\":\"name\",\"url\":\"classes/Autoplay.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Autoplay\"},{\"id\":537,\"kind\":1024,\"name\":\"acronym\",\"url\":\"classes/Autoplay.html#acronym\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Autoplay\"},{\"id\":538,\"kind\":1024,\"name\":\"bitwise\",\"url\":\"classes/Autoplay.html#bitwise\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Autoplay\"},{\"id\":539,\"kind\":1024,\"name\":\"type\",\"url\":\"classes/Autoplay.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Autoplay\"},{\"id\":540,\"kind\":1024,\"name\":\"multiplier\",\"url\":\"classes/Autoplay.html#multiplier\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Autoplay\"},{\"id\":541,\"kind\":1024,\"name\":\"isRanked\",\"url\":\"classes/Autoplay.html#isRanked\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Autoplay\"},{\"id\":542,\"kind\":1024,\"name\":\"incompatibles\",\"url\":\"classes/Autoplay.html#incompatibles\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Autoplay\"},{\"id\":543,\"kind\":128,\"name\":\"Cinema\",\"url\":\"classes/Cinema.html\",\"classes\":\"tsd-kind-class\"},{\"id\":544,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Cinema.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"Cinema\"},{\"id\":545,\"kind\":1024,\"name\":\"name\",\"url\":\"classes/Cinema.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Cinema\"},{\"id\":546,\"kind\":1024,\"name\":\"acronym\",\"url\":\"classes/Cinema.html#acronym\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Cinema\"},{\"id\":547,\"kind\":1024,\"name\":\"bitwise\",\"url\":\"classes/Cinema.html#bitwise\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Cinema\"},{\"id\":548,\"kind\":1024,\"name\":\"type\",\"url\":\"classes/Cinema.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Cinema\"},{\"id\":549,\"kind\":1024,\"name\":\"multiplier\",\"url\":\"classes/Cinema.html#multiplier\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Cinema\"},{\"id\":550,\"kind\":1024,\"name\":\"isRanked\",\"url\":\"classes/Cinema.html#isRanked\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Cinema\"},{\"id\":551,\"kind\":1024,\"name\":\"incompatibles\",\"url\":\"classes/Cinema.html#incompatibles\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Cinema\"},{\"id\":552,\"kind\":128,\"name\":\"DoubleTime\",\"url\":\"classes/DoubleTime.html\",\"classes\":\"tsd-kind-class\"},{\"id\":553,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/DoubleTime.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"DoubleTime\"},{\"id\":554,\"kind\":1024,\"name\":\"name\",\"url\":\"classes/DoubleTime.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"DoubleTime\"},{\"id\":555,\"kind\":1024,\"name\":\"acronym\",\"url\":\"classes/DoubleTime.html#acronym\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"DoubleTime\"},{\"id\":556,\"kind\":1024,\"name\":\"bitwise\",\"url\":\"classes/DoubleTime.html#bitwise\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"DoubleTime\"},{\"id\":557,\"kind\":1024,\"name\":\"type\",\"url\":\"classes/DoubleTime.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"DoubleTime\"},{\"id\":558,\"kind\":1024,\"name\":\"multiplier\",\"url\":\"classes/DoubleTime.html#multiplier\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"DoubleTime\"},{\"id\":559,\"kind\":1024,\"name\":\"isRanked\",\"url\":\"classes/DoubleTime.html#isRanked\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"DoubleTime\"},{\"id\":560,\"kind\":1024,\"name\":\"incompatibles\",\"url\":\"classes/DoubleTime.html#incompatibles\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"DoubleTime\"},{\"id\":561,\"kind\":2048,\"name\":\"applyToDifficulty\",\"url\":\"classes/DoubleTime.html#applyToDifficulty\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"DoubleTime\"},{\"id\":562,\"kind\":128,\"name\":\"Easy\",\"url\":\"classes/Easy.html\",\"classes\":\"tsd-kind-class\"},{\"id\":563,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Easy.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"Easy\"},{\"id\":564,\"kind\":1024,\"name\":\"name\",\"url\":\"classes/Easy.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Easy\"},{\"id\":565,\"kind\":1024,\"name\":\"acronym\",\"url\":\"classes/Easy.html#acronym\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Easy\"},{\"id\":566,\"kind\":1024,\"name\":\"bitwise\",\"url\":\"classes/Easy.html#bitwise\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Easy\"},{\"id\":567,\"kind\":1024,\"name\":\"type\",\"url\":\"classes/Easy.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Easy\"},{\"id\":568,\"kind\":1024,\"name\":\"multiplier\",\"url\":\"classes/Easy.html#multiplier\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Easy\"},{\"id\":569,\"kind\":1024,\"name\":\"isRanked\",\"url\":\"classes/Easy.html#isRanked\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Easy\"},{\"id\":570,\"kind\":1024,\"name\":\"incompatibles\",\"url\":\"classes/Easy.html#incompatibles\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Easy\"},{\"id\":571,\"kind\":2048,\"name\":\"applyToDifficulty\",\"url\":\"classes/Easy.html#applyToDifficulty\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Easy\"},{\"id\":572,\"kind\":128,\"name\":\"Flashlight\",\"url\":\"classes/Flashlight.html\",\"classes\":\"tsd-kind-class\"},{\"id\":573,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Flashlight.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"Flashlight\"},{\"id\":574,\"kind\":1024,\"name\":\"name\",\"url\":\"classes/Flashlight.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Flashlight\"},{\"id\":575,\"kind\":1024,\"name\":\"acronym\",\"url\":\"classes/Flashlight.html#acronym\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Flashlight\"},{\"id\":576,\"kind\":1024,\"name\":\"bitwise\",\"url\":\"classes/Flashlight.html#bitwise\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Flashlight\"},{\"id\":577,\"kind\":1024,\"name\":\"type\",\"url\":\"classes/Flashlight.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Flashlight\"},{\"id\":578,\"kind\":1024,\"name\":\"multiplier\",\"url\":\"classes/Flashlight.html#multiplier\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Flashlight\"},{\"id\":579,\"kind\":1024,\"name\":\"isRanked\",\"url\":\"classes/Flashlight.html#isRanked\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Flashlight\"},{\"id\":580,\"kind\":1024,\"name\":\"incompatibles\",\"url\":\"classes/Flashlight.html#incompatibles\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Flashlight\"},{\"id\":581,\"kind\":128,\"name\":\"HalfTime\",\"url\":\"classes/HalfTime.html\",\"classes\":\"tsd-kind-class\"},{\"id\":582,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/HalfTime.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"HalfTime\"},{\"id\":583,\"kind\":1024,\"name\":\"name\",\"url\":\"classes/HalfTime.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"HalfTime\"},{\"id\":584,\"kind\":1024,\"name\":\"acronym\",\"url\":\"classes/HalfTime.html#acronym\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"HalfTime\"},{\"id\":585,\"kind\":1024,\"name\":\"bitwise\",\"url\":\"classes/HalfTime.html#bitwise\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"HalfTime\"},{\"id\":586,\"kind\":1024,\"name\":\"type\",\"url\":\"classes/HalfTime.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"HalfTime\"},{\"id\":587,\"kind\":1024,\"name\":\"multiplier\",\"url\":\"classes/HalfTime.html#multiplier\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"HalfTime\"},{\"id\":588,\"kind\":1024,\"name\":\"isRanked\",\"url\":\"classes/HalfTime.html#isRanked\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"HalfTime\"},{\"id\":589,\"kind\":1024,\"name\":\"incompatibles\",\"url\":\"classes/HalfTime.html#incompatibles\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"HalfTime\"},{\"id\":590,\"kind\":2048,\"name\":\"applyToDifficulty\",\"url\":\"classes/HalfTime.html#applyToDifficulty\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"HalfTime\"},{\"id\":591,\"kind\":128,\"name\":\"HardRock\",\"url\":\"classes/HardRock.html\",\"classes\":\"tsd-kind-class\"},{\"id\":592,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/HardRock.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"HardRock\"},{\"id\":593,\"kind\":1024,\"name\":\"name\",\"url\":\"classes/HardRock.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"HardRock\"},{\"id\":594,\"kind\":1024,\"name\":\"acronym\",\"url\":\"classes/HardRock.html#acronym\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"HardRock\"},{\"id\":595,\"kind\":1024,\"name\":\"bitwise\",\"url\":\"classes/HardRock.html#bitwise\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"HardRock\"},{\"id\":596,\"kind\":1024,\"name\":\"type\",\"url\":\"classes/HardRock.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"HardRock\"},{\"id\":597,\"kind\":1024,\"name\":\"multiplier\",\"url\":\"classes/HardRock.html#multiplier\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"HardRock\"},{\"id\":598,\"kind\":1024,\"name\":\"isRanked\",\"url\":\"classes/HardRock.html#isRanked\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"HardRock\"},{\"id\":599,\"kind\":1024,\"name\":\"incompatibles\",\"url\":\"classes/HardRock.html#incompatibles\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"HardRock\"},{\"id\":600,\"kind\":2048,\"name\":\"applyToDifficulty\",\"url\":\"classes/HardRock.html#applyToDifficulty\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"HardRock\"},{\"id\":601,\"kind\":128,\"name\":\"Hidden\",\"url\":\"classes/Hidden.html\",\"classes\":\"tsd-kind-class\"},{\"id\":602,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Hidden.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"Hidden\"},{\"id\":603,\"kind\":1024,\"name\":\"name\",\"url\":\"classes/Hidden.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Hidden\"},{\"id\":604,\"kind\":1024,\"name\":\"acronym\",\"url\":\"classes/Hidden.html#acronym\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Hidden\"},{\"id\":605,\"kind\":1024,\"name\":\"bitwise\",\"url\":\"classes/Hidden.html#bitwise\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Hidden\"},{\"id\":606,\"kind\":1024,\"name\":\"type\",\"url\":\"classes/Hidden.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Hidden\"},{\"id\":607,\"kind\":1024,\"name\":\"multiplier\",\"url\":\"classes/Hidden.html#multiplier\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Hidden\"},{\"id\":608,\"kind\":1024,\"name\":\"isRanked\",\"url\":\"classes/Hidden.html#isRanked\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Hidden\"},{\"id\":609,\"kind\":1024,\"name\":\"incompatibles\",\"url\":\"classes/Hidden.html#incompatibles\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Hidden\"},{\"id\":610,\"kind\":128,\"name\":\"Nightcore\",\"url\":\"classes/Nightcore.html\",\"classes\":\"tsd-kind-class\"},{\"id\":611,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Nightcore.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"Nightcore\"},{\"id\":612,\"kind\":1024,\"name\":\"name\",\"url\":\"classes/Nightcore.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"Nightcore\"},{\"id\":613,\"kind\":1024,\"name\":\"acronym\",\"url\":\"classes/Nightcore.html#acronym\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"Nightcore\"},{\"id\":614,\"kind\":1024,\"name\":\"bitwise\",\"url\":\"classes/Nightcore.html#bitwise\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"Nightcore\"},{\"id\":615,\"kind\":1024,\"name\":\"incompatibles\",\"url\":\"classes/Nightcore.html#incompatibles\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"Nightcore\"},{\"id\":616,\"kind\":1024,\"name\":\"type\",\"url\":\"classes/Nightcore.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"Nightcore\"},{\"id\":617,\"kind\":1024,\"name\":\"multiplier\",\"url\":\"classes/Nightcore.html#multiplier\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"Nightcore\"},{\"id\":618,\"kind\":1024,\"name\":\"isRanked\",\"url\":\"classes/Nightcore.html#isRanked\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"Nightcore\"},{\"id\":619,\"kind\":2048,\"name\":\"applyToDifficulty\",\"url\":\"classes/Nightcore.html#applyToDifficulty\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"Nightcore\"},{\"id\":620,\"kind\":128,\"name\":\"NoFail\",\"url\":\"classes/NoFail.html\",\"classes\":\"tsd-kind-class\"},{\"id\":621,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/NoFail.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"NoFail\"},{\"id\":622,\"kind\":1024,\"name\":\"name\",\"url\":\"classes/NoFail.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"NoFail\"},{\"id\":623,\"kind\":1024,\"name\":\"acronym\",\"url\":\"classes/NoFail.html#acronym\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"NoFail\"},{\"id\":624,\"kind\":1024,\"name\":\"bitwise\",\"url\":\"classes/NoFail.html#bitwise\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"NoFail\"},{\"id\":625,\"kind\":1024,\"name\":\"type\",\"url\":\"classes/NoFail.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"NoFail\"},{\"id\":626,\"kind\":1024,\"name\":\"multiplier\",\"url\":\"classes/NoFail.html#multiplier\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"NoFail\"},{\"id\":627,\"kind\":1024,\"name\":\"isRanked\",\"url\":\"classes/NoFail.html#isRanked\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"NoFail\"},{\"id\":628,\"kind\":1024,\"name\":\"incompatibles\",\"url\":\"classes/NoFail.html#incompatibles\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"NoFail\"},{\"id\":629,\"kind\":128,\"name\":\"NoMod\",\"url\":\"classes/NoMod.html\",\"classes\":\"tsd-kind-class\"},{\"id\":630,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/NoMod.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"NoMod\"},{\"id\":631,\"kind\":1024,\"name\":\"name\",\"url\":\"classes/NoMod.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"NoMod\"},{\"id\":632,\"kind\":1024,\"name\":\"acronym\",\"url\":\"classes/NoMod.html#acronym\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"NoMod\"},{\"id\":633,\"kind\":1024,\"name\":\"bitwise\",\"url\":\"classes/NoMod.html#bitwise\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"NoMod\"},{\"id\":634,\"kind\":1024,\"name\":\"type\",\"url\":\"classes/NoMod.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"NoMod\"},{\"id\":635,\"kind\":1024,\"name\":\"multiplier\",\"url\":\"classes/NoMod.html#multiplier\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"NoMod\"},{\"id\":636,\"kind\":1024,\"name\":\"isRanked\",\"url\":\"classes/NoMod.html#isRanked\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"NoMod\"},{\"id\":637,\"kind\":1024,\"name\":\"incompatibles\",\"url\":\"classes/NoMod.html#incompatibles\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"NoMod\"},{\"id\":638,\"kind\":128,\"name\":\"Perfect\",\"url\":\"classes/Perfect.html\",\"classes\":\"tsd-kind-class\"},{\"id\":639,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Perfect.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"Perfect\"},{\"id\":640,\"kind\":1024,\"name\":\"name\",\"url\":\"classes/Perfect.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Perfect\"},{\"id\":641,\"kind\":1024,\"name\":\"acronym\",\"url\":\"classes/Perfect.html#acronym\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Perfect\"},{\"id\":642,\"kind\":1024,\"name\":\"bitwise\",\"url\":\"classes/Perfect.html#bitwise\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Perfect\"},{\"id\":643,\"kind\":1024,\"name\":\"type\",\"url\":\"classes/Perfect.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Perfect\"},{\"id\":644,\"kind\":1024,\"name\":\"multiplier\",\"url\":\"classes/Perfect.html#multiplier\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Perfect\"},{\"id\":645,\"kind\":1024,\"name\":\"isRanked\",\"url\":\"classes/Perfect.html#isRanked\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Perfect\"},{\"id\":646,\"kind\":1024,\"name\":\"incompatibles\",\"url\":\"classes/Perfect.html#incompatibles\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Perfect\"},{\"id\":647,\"kind\":128,\"name\":\"Relax\",\"url\":\"classes/Relax.html\",\"classes\":\"tsd-kind-class\"},{\"id\":648,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Relax.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"Relax\"},{\"id\":649,\"kind\":1024,\"name\":\"name\",\"url\":\"classes/Relax.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Relax\"},{\"id\":650,\"kind\":1024,\"name\":\"acronym\",\"url\":\"classes/Relax.html#acronym\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Relax\"},{\"id\":651,\"kind\":1024,\"name\":\"bitwise\",\"url\":\"classes/Relax.html#bitwise\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Relax\"},{\"id\":652,\"kind\":1024,\"name\":\"type\",\"url\":\"classes/Relax.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Relax\"},{\"id\":653,\"kind\":1024,\"name\":\"multiplier\",\"url\":\"classes/Relax.html#multiplier\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Relax\"},{\"id\":654,\"kind\":1024,\"name\":\"isRanked\",\"url\":\"classes/Relax.html#isRanked\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Relax\"},{\"id\":655,\"kind\":1024,\"name\":\"incompatibles\",\"url\":\"classes/Relax.html#incompatibles\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Relax\"},{\"id\":656,\"kind\":128,\"name\":\"SuddenDeath\",\"url\":\"classes/SuddenDeath.html\",\"classes\":\"tsd-kind-class\"},{\"id\":657,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/SuddenDeath.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"SuddenDeath\"},{\"id\":658,\"kind\":1024,\"name\":\"name\",\"url\":\"classes/SuddenDeath.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"SuddenDeath\"},{\"id\":659,\"kind\":1024,\"name\":\"acronym\",\"url\":\"classes/SuddenDeath.html#acronym\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"SuddenDeath\"},{\"id\":660,\"kind\":1024,\"name\":\"bitwise\",\"url\":\"classes/SuddenDeath.html#bitwise\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"SuddenDeath\"},{\"id\":661,\"kind\":1024,\"name\":\"type\",\"url\":\"classes/SuddenDeath.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"SuddenDeath\"},{\"id\":662,\"kind\":1024,\"name\":\"multiplier\",\"url\":\"classes/SuddenDeath.html#multiplier\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"SuddenDeath\"},{\"id\":663,\"kind\":1024,\"name\":\"isRanked\",\"url\":\"classes/SuddenDeath.html#isRanked\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"SuddenDeath\"},{\"id\":664,\"kind\":1024,\"name\":\"incompatibles\",\"url\":\"classes/SuddenDeath.html#incompatibles\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"SuddenDeath\"},{\"id\":665,\"kind\":128,\"name\":\"ModCombination\",\"url\":\"classes/ModCombination.html\",\"classes\":\"tsd-kind-class\"},{\"id\":666,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/ModCombination.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"ModCombination\"},{\"id\":667,\"kind\":262144,\"name\":\"mode\",\"url\":\"classes/ModCombination.html#mode\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"ModCombination\"},{\"id\":668,\"kind\":262144,\"name\":\"all\",\"url\":\"classes/ModCombination.html#all\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"ModCombination\"},{\"id\":669,\"kind\":262144,\"name\":\"beatmapMods\",\"url\":\"classes/ModCombination.html#beatmapMods\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"ModCombination\"},{\"id\":670,\"kind\":262144,\"name\":\"hitObjectMods\",\"url\":\"classes/ModCombination.html#hitObjectMods\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"ModCombination\"},{\"id\":671,\"kind\":262144,\"name\":\"difficultyMods\",\"url\":\"classes/ModCombination.html#difficultyMods\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"ModCombination\"},{\"id\":672,\"kind\":262144,\"name\":\"converterMods\",\"url\":\"classes/ModCombination.html#converterMods\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"ModCombination\"},{\"id\":673,\"kind\":262144,\"name\":\"names\",\"url\":\"classes/ModCombination.html#names\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"ModCombination\"},{\"id\":674,\"kind\":262144,\"name\":\"acronyms\",\"url\":\"classes/ModCombination.html#acronyms\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"ModCombination\"},{\"id\":675,\"kind\":262144,\"name\":\"bitwise\",\"url\":\"classes/ModCombination.html#bitwise\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"ModCombination\"},{\"id\":676,\"kind\":262144,\"name\":\"multiplier\",\"url\":\"classes/ModCombination.html#multiplier\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"ModCombination\"},{\"id\":677,\"kind\":262144,\"name\":\"isRanked\",\"url\":\"classes/ModCombination.html#isRanked\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"ModCombination\"},{\"id\":678,\"kind\":262144,\"name\":\"incompatibles\",\"url\":\"classes/ModCombination.html#incompatibles\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"ModCombination\"},{\"id\":679,\"kind\":2048,\"name\":\"has\",\"url\":\"classes/ModCombination.html#has\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ModCombination\"},{\"id\":680,\"kind\":2048,\"name\":\"any\",\"url\":\"classes/ModCombination.html#any\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ModCombination\"},{\"id\":681,\"kind\":2048,\"name\":\"beatmapModsAt\",\"url\":\"classes/ModCombination.html#beatmapModsAt\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ModCombination\"},{\"id\":682,\"kind\":2048,\"name\":\"beatmapModAt\",\"url\":\"classes/ModCombination.html#beatmapModAt\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ModCombination\"},{\"id\":683,\"kind\":2048,\"name\":\"hitObjectModsAt\",\"url\":\"classes/ModCombination.html#hitObjectModsAt\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ModCombination\"},{\"id\":684,\"kind\":2048,\"name\":\"hitObjectModAt\",\"url\":\"classes/ModCombination.html#hitObjectModAt\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ModCombination\"},{\"id\":685,\"kind\":2048,\"name\":\"difficultyModsAt\",\"url\":\"classes/ModCombination.html#difficultyModsAt\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ModCombination\"},{\"id\":686,\"kind\":2048,\"name\":\"difficultyModAt\",\"url\":\"classes/ModCombination.html#difficultyModAt\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ModCombination\"},{\"id\":687,\"kind\":2048,\"name\":\"converterModsAt\",\"url\":\"classes/ModCombination.html#converterModsAt\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ModCombination\"},{\"id\":688,\"kind\":2048,\"name\":\"converterModAt\",\"url\":\"classes/ModCombination.html#converterModAt\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ModCombination\"},{\"id\":689,\"kind\":2048,\"name\":\"modsAt\",\"url\":\"classes/ModCombination.html#modsAt\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ModCombination\"},{\"id\":690,\"kind\":2048,\"name\":\"modAt\",\"url\":\"classes/ModCombination.html#modAt\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ModCombination\"},{\"id\":691,\"kind\":2048,\"name\":\"toString\",\"url\":\"classes/ModCombination.html#toString\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ModCombination\"},{\"id\":692,\"kind\":2048,\"name\":\"toJSON\",\"url\":\"classes/ModCombination.html#toJSON\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ModCombination\"},{\"id\":693,\"kind\":2048,\"name\":\"toBitwise\",\"url\":\"classes/ModCombination.html#toBitwise\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ModCombination\"},{\"id\":694,\"kind\":2048,\"name\":\"clone\",\"url\":\"classes/ModCombination.html#clone\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ModCombination\"},{\"id\":695,\"kind\":2048,\"name\":\"equals\",\"url\":\"classes/ModCombination.html#equals\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ModCombination\"},{\"id\":696,\"kind\":256,\"name\":\"IMod\",\"url\":\"interfaces/IMod.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":697,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/IMod.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IMod\"},{\"id\":698,\"kind\":1024,\"name\":\"acronym\",\"url\":\"interfaces/IMod.html#acronym\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IMod\"},{\"id\":699,\"kind\":1024,\"name\":\"bitwise\",\"url\":\"interfaces/IMod.html#bitwise\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IMod\"},{\"id\":700,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/IMod.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IMod\"},{\"id\":701,\"kind\":1024,\"name\":\"multiplier\",\"url\":\"interfaces/IMod.html#multiplier\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IMod\"},{\"id\":702,\"kind\":1024,\"name\":\"isRanked\",\"url\":\"interfaces/IMod.html#isRanked\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IMod\"},{\"id\":703,\"kind\":1024,\"name\":\"incompatibles\",\"url\":\"interfaces/IMod.html#incompatibles\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IMod\"},{\"id\":704,\"kind\":8,\"name\":\"HitSound\",\"url\":\"enums/HitSound.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":705,\"kind\":16,\"name\":\"None\",\"url\":\"enums/HitSound.html#None\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"HitSound\"},{\"id\":706,\"kind\":16,\"name\":\"Normal\",\"url\":\"enums/HitSound.html#Normal\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"HitSound\"},{\"id\":707,\"kind\":16,\"name\":\"Whistle\",\"url\":\"enums/HitSound.html#Whistle\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"HitSound\"},{\"id\":708,\"kind\":16,\"name\":\"Finish\",\"url\":\"enums/HitSound.html#Finish\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"HitSound\"},{\"id\":709,\"kind\":16,\"name\":\"Clap\",\"url\":\"enums/HitSound.html#Clap\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"HitSound\"},{\"id\":710,\"kind\":8,\"name\":\"HitType\",\"url\":\"enums/HitType.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":711,\"kind\":16,\"name\":\"Normal\",\"url\":\"enums/HitType.html#Normal\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"HitType\"},{\"id\":712,\"kind\":16,\"name\":\"Slider\",\"url\":\"enums/HitType.html#Slider\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"HitType\"},{\"id\":713,\"kind\":16,\"name\":\"NewCombo\",\"url\":\"enums/HitType.html#NewCombo\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"HitType\"},{\"id\":714,\"kind\":16,\"name\":\"Spinner\",\"url\":\"enums/HitType.html#Spinner\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"HitType\"},{\"id\":715,\"kind\":16,\"name\":\"ComboSkip1\",\"url\":\"enums/HitType.html#ComboSkip1\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"HitType\"},{\"id\":716,\"kind\":16,\"name\":\"ComboSkip2\",\"url\":\"enums/HitType.html#ComboSkip2\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"HitType\"},{\"id\":717,\"kind\":16,\"name\":\"ComboSkip3\",\"url\":\"enums/HitType.html#ComboSkip3\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"HitType\"},{\"id\":718,\"kind\":16,\"name\":\"ComboOffset\",\"url\":\"enums/HitType.html#ComboOffset\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"HitType\"},{\"id\":719,\"kind\":16,\"name\":\"Hold\",\"url\":\"enums/HitType.html#Hold\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"HitType\"},{\"id\":720,\"kind\":8,\"name\":\"PathType\",\"url\":\"enums/PathType.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":721,\"kind\":16,\"name\":\"Catmull\",\"url\":\"enums/PathType.html#Catmull\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"PathType\"},{\"id\":722,\"kind\":16,\"name\":\"Bezier\",\"url\":\"enums/PathType.html#Bezier\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"PathType\"},{\"id\":723,\"kind\":16,\"name\":\"Linear\",\"url\":\"enums/PathType.html#Linear\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"PathType\"},{\"id\":724,\"kind\":16,\"name\":\"PerfectCurve\",\"url\":\"enums/PathType.html#PerfectCurve\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"PathType\"},{\"id\":725,\"kind\":8,\"name\":\"SampleSet\",\"url\":\"enums/SampleSet.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":726,\"kind\":16,\"name\":\"None\",\"url\":\"enums/SampleSet.html#None\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"SampleSet\"},{\"id\":727,\"kind\":16,\"name\":\"Normal\",\"url\":\"enums/SampleSet.html#Normal\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"SampleSet\"},{\"id\":728,\"kind\":16,\"name\":\"Soft\",\"url\":\"enums/SampleSet.html#Soft\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"SampleSet\"},{\"id\":729,\"kind\":16,\"name\":\"Drum\",\"url\":\"enums/SampleSet.html#Drum\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"SampleSet\"},{\"id\":730,\"kind\":8,\"name\":\"SliderEventType\",\"url\":\"enums/SliderEventType.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":731,\"kind\":16,\"name\":\"Tick\",\"url\":\"enums/SliderEventType.html#Tick\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"SliderEventType\"},{\"id\":732,\"kind\":16,\"name\":\"LegacyLastTick\",\"url\":\"enums/SliderEventType.html#LegacyLastTick\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"SliderEventType\"},{\"id\":733,\"kind\":16,\"name\":\"Head\",\"url\":\"enums/SliderEventType.html#Head\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"SliderEventType\"},{\"id\":734,\"kind\":16,\"name\":\"Tail\",\"url\":\"enums/SliderEventType.html#Tail\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"SliderEventType\"},{\"id\":735,\"kind\":16,\"name\":\"Repeat\",\"url\":\"enums/SliderEventType.html#Repeat\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"SliderEventType\"},{\"id\":736,\"kind\":128,\"name\":\"EventGenerator\",\"url\":\"classes/EventGenerator.html\",\"classes\":\"tsd-kind-class\"},{\"id\":737,\"kind\":1024,\"name\":\"SLIDER_MAX_DISTANCE\",\"url\":\"classes/EventGenerator.html#SLIDER_MAX_DISTANCE\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"EventGenerator\"},{\"id\":738,\"kind\":2048,\"name\":\"generate\",\"url\":\"classes/EventGenerator.html#generate\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"EventGenerator\"},{\"id\":739,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/EventGenerator.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"EventGenerator\"},{\"id\":740,\"kind\":256,\"name\":\"ISliderEventDescriptor\",\"url\":\"interfaces/ISliderEventDescriptor.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":741,\"kind\":1024,\"name\":\"eventType\",\"url\":\"interfaces/ISliderEventDescriptor.html#eventType\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ISliderEventDescriptor\"},{\"id\":742,\"kind\":1024,\"name\":\"spanIndex\",\"url\":\"interfaces/ISliderEventDescriptor.html#spanIndex\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ISliderEventDescriptor\"},{\"id\":743,\"kind\":1024,\"name\":\"spanStartTime\",\"url\":\"interfaces/ISliderEventDescriptor.html#spanStartTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ISliderEventDescriptor\"},{\"id\":744,\"kind\":1024,\"name\":\"startTime\",\"url\":\"interfaces/ISliderEventDescriptor.html#startTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ISliderEventDescriptor\"},{\"id\":745,\"kind\":1024,\"name\":\"progress\",\"url\":\"interfaces/ISliderEventDescriptor.html#progress\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ISliderEventDescriptor\"},{\"id\":746,\"kind\":128,\"name\":\"HitObject\",\"url\":\"classes/HitObject.html\",\"classes\":\"tsd-kind-class\"},{\"id\":747,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/HitObject.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"HitObject\"},{\"id\":748,\"kind\":1024,\"name\":\"kiai\",\"url\":\"classes/HitObject.html#kiai\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"HitObject\"},{\"id\":749,\"kind\":1024,\"name\":\"nestedHitObjects\",\"url\":\"classes/HitObject.html#nestedHitObjects\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"HitObject\"},{\"id\":750,\"kind\":1024,\"name\":\"startTime\",\"url\":\"classes/HitObject.html#startTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"HitObject\"},{\"id\":751,\"kind\":1024,\"name\":\"hitType\",\"url\":\"classes/HitObject.html#hitType\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"HitObject\"},{\"id\":752,\"kind\":1024,\"name\":\"hitSound\",\"url\":\"classes/HitObject.html#hitSound\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"HitObject\"},{\"id\":753,\"kind\":1024,\"name\":\"samples\",\"url\":\"classes/HitObject.html#samples\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"HitObject\"},{\"id\":754,\"kind\":1024,\"name\":\"startPosition\",\"url\":\"classes/HitObject.html#startPosition\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"HitObject\"},{\"id\":755,\"kind\":1024,\"name\":\"hitWindows\",\"url\":\"classes/HitObject.html#hitWindows\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"HitObject\"},{\"id\":756,\"kind\":262144,\"name\":\"startX\",\"url\":\"classes/HitObject.html#startX\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"HitObject\"},{\"id\":757,\"kind\":262144,\"name\":\"startY\",\"url\":\"classes/HitObject.html#startY\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"HitObject\"},{\"id\":758,\"kind\":2048,\"name\":\"createNestedHitObjects\",\"url\":\"classes/HitObject.html#createNestedHitObjects\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"HitObject\"},{\"id\":759,\"kind\":2048,\"name\":\"applyDefaultsToSelf\",\"url\":\"classes/HitObject.html#applyDefaultsToSelf\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"HitObject\"},{\"id\":760,\"kind\":2048,\"name\":\"applyDefaultsToNested\",\"url\":\"classes/HitObject.html#applyDefaultsToNested\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"HitObject\"},{\"id\":761,\"kind\":2048,\"name\":\"applyDefaults\",\"url\":\"classes/HitObject.html#applyDefaults\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"HitObject\"},{\"id\":762,\"kind\":2048,\"name\":\"clone\",\"url\":\"classes/HitObject.html#clone\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"HitObject\"},{\"id\":763,\"kind\":256,\"name\":\"IHitObject\",\"url\":\"interfaces/IHitObject.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":764,\"kind\":1024,\"name\":\"startTime\",\"url\":\"interfaces/IHitObject.html#startTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IHitObject\"},{\"id\":765,\"kind\":1024,\"name\":\"hitType\",\"url\":\"interfaces/IHitObject.html#hitType\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IHitObject\"},{\"id\":766,\"kind\":1024,\"name\":\"hitSound\",\"url\":\"interfaces/IHitObject.html#hitSound\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IHitObject\"},{\"id\":767,\"kind\":1024,\"name\":\"samples\",\"url\":\"interfaces/IHitObject.html#samples\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IHitObject\"},{\"id\":768,\"kind\":1024,\"name\":\"hitWindows\",\"url\":\"interfaces/IHitObject.html#hitWindows\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IHitObject\"},{\"id\":769,\"kind\":2048,\"name\":\"clone\",\"url\":\"interfaces/IHitObject.html#clone\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"IHitObject\"},{\"id\":770,\"kind\":256,\"name\":\"IHoldableObject\",\"url\":\"interfaces/IHoldableObject.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":771,\"kind\":1024,\"name\":\"startTime\",\"url\":\"interfaces/IHoldableObject.html#startTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IHoldableObject\"},{\"id\":772,\"kind\":1024,\"name\":\"hitType\",\"url\":\"interfaces/IHoldableObject.html#hitType\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IHoldableObject\"},{\"id\":773,\"kind\":1024,\"name\":\"hitSound\",\"url\":\"interfaces/IHoldableObject.html#hitSound\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IHoldableObject\"},{\"id\":774,\"kind\":1024,\"name\":\"samples\",\"url\":\"interfaces/IHoldableObject.html#samples\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IHoldableObject\"},{\"id\":775,\"kind\":1024,\"name\":\"hitWindows\",\"url\":\"interfaces/IHoldableObject.html#hitWindows\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IHoldableObject\"},{\"id\":776,\"kind\":2048,\"name\":\"clone\",\"url\":\"interfaces/IHoldableObject.html#clone\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IHoldableObject\"},{\"id\":777,\"kind\":1024,\"name\":\"endTime\",\"url\":\"interfaces/IHoldableObject.html#endTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IHoldableObject\"},{\"id\":778,\"kind\":1024,\"name\":\"duration\",\"url\":\"interfaces/IHoldableObject.html#duration\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IHoldableObject\"},{\"id\":779,\"kind\":1024,\"name\":\"nodeSamples\",\"url\":\"interfaces/IHoldableObject.html#nodeSamples\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IHoldableObject\"},{\"id\":780,\"kind\":256,\"name\":\"ISlidableObject\",\"url\":\"interfaces/ISlidableObject.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":781,\"kind\":1024,\"name\":\"tickDistance\",\"url\":\"interfaces/ISlidableObject.html#tickDistance\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ISlidableObject\"},{\"id\":782,\"kind\":1024,\"name\":\"tickInterval\",\"url\":\"interfaces/ISlidableObject.html#tickInterval\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ISlidableObject\"},{\"id\":783,\"kind\":1024,\"name\":\"tickRate\",\"url\":\"interfaces/ISlidableObject.html#tickRate\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ISlidableObject\"},{\"id\":784,\"kind\":1024,\"name\":\"velocity\",\"url\":\"interfaces/ISlidableObject.html#velocity\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ISlidableObject\"},{\"id\":785,\"kind\":1024,\"name\":\"path\",\"url\":\"interfaces/ISlidableObject.html#path\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"ISlidableObject\"},{\"id\":786,\"kind\":1024,\"name\":\"distance\",\"url\":\"interfaces/ISlidableObject.html#distance\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"ISlidableObject\"},{\"id\":787,\"kind\":1024,\"name\":\"endTime\",\"url\":\"interfaces/ISlidableObject.html#endTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"ISlidableObject\"},{\"id\":788,\"kind\":1024,\"name\":\"duration\",\"url\":\"interfaces/ISlidableObject.html#duration\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"ISlidableObject\"},{\"id\":789,\"kind\":1024,\"name\":\"repeats\",\"url\":\"interfaces/ISlidableObject.html#repeats\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"ISlidableObject\"},{\"id\":790,\"kind\":1024,\"name\":\"spans\",\"url\":\"interfaces/ISlidableObject.html#spans\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"ISlidableObject\"},{\"id\":791,\"kind\":1024,\"name\":\"spanDuration\",\"url\":\"interfaces/ISlidableObject.html#spanDuration\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"ISlidableObject\"},{\"id\":792,\"kind\":1024,\"name\":\"nodeSamples\",\"url\":\"interfaces/ISlidableObject.html#nodeSamples\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"ISlidableObject\"},{\"id\":793,\"kind\":1024,\"name\":\"startTime\",\"url\":\"interfaces/ISlidableObject.html#startTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"ISlidableObject\"},{\"id\":794,\"kind\":1024,\"name\":\"hitType\",\"url\":\"interfaces/ISlidableObject.html#hitType\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"ISlidableObject\"},{\"id\":795,\"kind\":1024,\"name\":\"hitSound\",\"url\":\"interfaces/ISlidableObject.html#hitSound\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"ISlidableObject\"},{\"id\":796,\"kind\":1024,\"name\":\"samples\",\"url\":\"interfaces/ISlidableObject.html#samples\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"ISlidableObject\"},{\"id\":797,\"kind\":1024,\"name\":\"hitWindows\",\"url\":\"interfaces/ISlidableObject.html#hitWindows\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"ISlidableObject\"},{\"id\":798,\"kind\":2048,\"name\":\"clone\",\"url\":\"interfaces/ISlidableObject.html#clone\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"ISlidableObject\"},{\"id\":799,\"kind\":1024,\"name\":\"legacyLastTickOffset\",\"url\":\"interfaces/ISlidableObject.html#legacyLastTickOffset\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"ISlidableObject\"},{\"id\":800,\"kind\":256,\"name\":\"ISpinnableObject\",\"url\":\"interfaces/ISpinnableObject.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":801,\"kind\":1024,\"name\":\"startTime\",\"url\":\"interfaces/ISpinnableObject.html#startTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"ISpinnableObject\"},{\"id\":802,\"kind\":1024,\"name\":\"hitType\",\"url\":\"interfaces/ISpinnableObject.html#hitType\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"ISpinnableObject\"},{\"id\":803,\"kind\":1024,\"name\":\"hitSound\",\"url\":\"interfaces/ISpinnableObject.html#hitSound\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"ISpinnableObject\"},{\"id\":804,\"kind\":1024,\"name\":\"samples\",\"url\":\"interfaces/ISpinnableObject.html#samples\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"ISpinnableObject\"},{\"id\":805,\"kind\":1024,\"name\":\"hitWindows\",\"url\":\"interfaces/ISpinnableObject.html#hitWindows\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"ISpinnableObject\"},{\"id\":806,\"kind\":2048,\"name\":\"clone\",\"url\":\"interfaces/ISpinnableObject.html#clone\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"ISpinnableObject\"},{\"id\":807,\"kind\":1024,\"name\":\"endTime\",\"url\":\"interfaces/ISpinnableObject.html#endTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"ISpinnableObject\"},{\"id\":808,\"kind\":1024,\"name\":\"duration\",\"url\":\"interfaces/ISpinnableObject.html#duration\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"ISpinnableObject\"},{\"id\":809,\"kind\":128,\"name\":\"PathApproximator\",\"url\":\"classes/PathApproximator.html\",\"classes\":\"tsd-kind-class\"},{\"id\":810,\"kind\":1024,\"name\":\"BEZIER_TOLERANCE\",\"url\":\"classes/PathApproximator.html#BEZIER_TOLERANCE\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"PathApproximator\"},{\"id\":811,\"kind\":1024,\"name\":\"CIRCULAR_ARC_TOLERANCE\",\"url\":\"classes/PathApproximator.html#CIRCULAR_ARC_TOLERANCE\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"PathApproximator\"},{\"id\":812,\"kind\":1024,\"name\":\"CATMULL_DETAIL\",\"url\":\"classes/PathApproximator.html#CATMULL_DETAIL\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"PathApproximator\"},{\"id\":813,\"kind\":2048,\"name\":\"approximateBezier\",\"url\":\"classes/PathApproximator.html#approximateBezier\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"PathApproximator\"},{\"id\":814,\"kind\":2048,\"name\":\"approximateBSpline\",\"url\":\"classes/PathApproximator.html#approximateBSpline\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"PathApproximator\"},{\"id\":815,\"kind\":2048,\"name\":\"approximateCatmull\",\"url\":\"classes/PathApproximator.html#approximateCatmull\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"PathApproximator\"},{\"id\":816,\"kind\":2048,\"name\":\"approximateCircularArc\",\"url\":\"classes/PathApproximator.html#approximateCircularArc\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"PathApproximator\"},{\"id\":817,\"kind\":2048,\"name\":\"_circularArcProperties\",\"url\":\"classes/PathApproximator.html#_circularArcProperties\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"PathApproximator\"},{\"id\":818,\"kind\":2048,\"name\":\"approximateLinear\",\"url\":\"classes/PathApproximator.html#approximateLinear\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"PathApproximator\"},{\"id\":819,\"kind\":2048,\"name\":\"approximateLagrangePolynomial\",\"url\":\"classes/PathApproximator.html#approximateLagrangePolynomial\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"PathApproximator\"},{\"id\":820,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/PathApproximator.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"PathApproximator\"},{\"id\":821,\"kind\":128,\"name\":\"CircularArcProperties\",\"url\":\"classes/CircularArcProperties.html\",\"classes\":\"tsd-kind-class\"},{\"id\":822,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/CircularArcProperties.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"CircularArcProperties\"},{\"id\":823,\"kind\":1024,\"name\":\"isValid\",\"url\":\"classes/CircularArcProperties.html#isValid\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"CircularArcProperties\"},{\"id\":824,\"kind\":1024,\"name\":\"thetaStart\",\"url\":\"classes/CircularArcProperties.html#thetaStart\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"CircularArcProperties\"},{\"id\":825,\"kind\":1024,\"name\":\"thetaRange\",\"url\":\"classes/CircularArcProperties.html#thetaRange\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"CircularArcProperties\"},{\"id\":826,\"kind\":1024,\"name\":\"direction\",\"url\":\"classes/CircularArcProperties.html#direction\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"CircularArcProperties\"},{\"id\":827,\"kind\":1024,\"name\":\"radius\",\"url\":\"classes/CircularArcProperties.html#radius\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"CircularArcProperties\"},{\"id\":828,\"kind\":1024,\"name\":\"centre\",\"url\":\"classes/CircularArcProperties.html#centre\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"CircularArcProperties\"},{\"id\":829,\"kind\":262144,\"name\":\"thetaEnd\",\"url\":\"classes/CircularArcProperties.html#thetaEnd\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"CircularArcProperties\"},{\"id\":830,\"kind\":128,\"name\":\"PathPoint\",\"url\":\"classes/PathPoint.html\",\"classes\":\"tsd-kind-class\"},{\"id\":831,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/PathPoint.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"PathPoint\"},{\"id\":832,\"kind\":1024,\"name\":\"position\",\"url\":\"classes/PathPoint.html#position\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"PathPoint\"},{\"id\":833,\"kind\":1024,\"name\":\"type\",\"url\":\"classes/PathPoint.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"PathPoint\"},{\"id\":834,\"kind\":128,\"name\":\"SliderPath\",\"url\":\"classes/SliderPath.html\",\"classes\":\"tsd-kind-class\"},{\"id\":835,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/SliderPath.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"SliderPath\"},{\"id\":836,\"kind\":262144,\"name\":\"curveType\",\"url\":\"classes/SliderPath.html#curveType\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"SliderPath\"},{\"id\":837,\"kind\":262144,\"name\":\"controlPoints\",\"url\":\"classes/SliderPath.html#controlPoints\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"SliderPath\"},{\"id\":838,\"kind\":262144,\"name\":\"expectedDistance\",\"url\":\"classes/SliderPath.html#expectedDistance\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"SliderPath\"},{\"id\":839,\"kind\":262144,\"name\":\"distance\",\"url\":\"classes/SliderPath.html#distance\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"SliderPath\"},{\"id\":840,\"kind\":262144,\"name\":\"calculatedDistance\",\"url\":\"classes/SliderPath.html#calculatedDistance\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"SliderPath\"},{\"id\":841,\"kind\":262144,\"name\":\"path\",\"url\":\"classes/SliderPath.html#path\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"SliderPath\"},{\"id\":842,\"kind\":262144,\"name\":\"calculatedPath\",\"url\":\"classes/SliderPath.html#calculatedPath\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"SliderPath\"},{\"id\":843,\"kind\":2048,\"name\":\"invalidate\",\"url\":\"classes/SliderPath.html#invalidate\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"SliderPath\"},{\"id\":844,\"kind\":2048,\"name\":\"calculatePathToProgress\",\"url\":\"classes/SliderPath.html#calculatePathToProgress\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"SliderPath\"},{\"id\":845,\"kind\":2048,\"name\":\"progressAt\",\"url\":\"classes/SliderPath.html#progressAt\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"SliderPath\"},{\"id\":846,\"kind\":2048,\"name\":\"positionAt\",\"url\":\"classes/SliderPath.html#positionAt\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"SliderPath\"},{\"id\":847,\"kind\":2048,\"name\":\"curvePositionAt\",\"url\":\"classes/SliderPath.html#curvePositionAt\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"SliderPath\"},{\"id\":848,\"kind\":2048,\"name\":\"clone\",\"url\":\"classes/SliderPath.html#clone\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"SliderPath\"},{\"id\":849,\"kind\":128,\"name\":\"HitSample\",\"url\":\"classes/HitSample.html\",\"classes\":\"tsd-kind-class\"},{\"id\":850,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/HitSample.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"HitSample\"},{\"id\":851,\"kind\":1024,\"name\":\"sampleSet\",\"url\":\"classes/HitSample.html#sampleSet\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"HitSample\"},{\"id\":852,\"kind\":1024,\"name\":\"hitSound\",\"url\":\"classes/HitSample.html#hitSound\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"HitSample\"},{\"id\":853,\"kind\":1024,\"name\":\"customIndex\",\"url\":\"classes/HitSample.html#customIndex\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"HitSample\"},{\"id\":854,\"kind\":1024,\"name\":\"suffix\",\"url\":\"classes/HitSample.html#suffix\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"HitSample\"},{\"id\":855,\"kind\":1024,\"name\":\"volume\",\"url\":\"classes/HitSample.html#volume\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"HitSample\"},{\"id\":856,\"kind\":1024,\"name\":\"isLayered\",\"url\":\"classes/HitSample.html#isLayered\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"HitSample\"},{\"id\":857,\"kind\":1024,\"name\":\"filename\",\"url\":\"classes/HitSample.html#filename\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"HitSample\"},{\"id\":858,\"kind\":2048,\"name\":\"clone\",\"url\":\"classes/HitSample.html#clone\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"HitSample\"},{\"id\":859,\"kind\":128,\"name\":\"SampleBank\",\"url\":\"classes/SampleBank.html\",\"classes\":\"tsd-kind-class\"},{\"id\":860,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/SampleBank.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"SampleBank\"},{\"id\":861,\"kind\":1024,\"name\":\"filename\",\"url\":\"classes/SampleBank.html#filename\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"SampleBank\"},{\"id\":862,\"kind\":1024,\"name\":\"volume\",\"url\":\"classes/SampleBank.html#volume\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"SampleBank\"},{\"id\":863,\"kind\":1024,\"name\":\"normalSet\",\"url\":\"classes/SampleBank.html#normalSet\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"SampleBank\"},{\"id\":864,\"kind\":1024,\"name\":\"additionSet\",\"url\":\"classes/SampleBank.html#additionSet\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"SampleBank\"},{\"id\":865,\"kind\":1024,\"name\":\"customIndex\",\"url\":\"classes/SampleBank.html#customIndex\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"SampleBank\"},{\"id\":866,\"kind\":2048,\"name\":\"clone\",\"url\":\"classes/SampleBank.html#clone\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"SampleBank\"},{\"id\":867,\"kind\":256,\"name\":\"IHasColumn\",\"url\":\"interfaces/IHasColumn.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":868,\"kind\":1024,\"name\":\"column\",\"url\":\"interfaces/IHasColumn.html#column\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IHasColumn\"},{\"id\":869,\"kind\":256,\"name\":\"IHasCombo\",\"url\":\"interfaces/IHasCombo.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":870,\"kind\":1024,\"name\":\"isNewCombo\",\"url\":\"interfaces/IHasCombo.html#isNewCombo\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IHasCombo\"},{\"id\":871,\"kind\":1024,\"name\":\"comboOffset\",\"url\":\"interfaces/IHasCombo.html#comboOffset\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IHasCombo\"},{\"id\":872,\"kind\":256,\"name\":\"IHasComboInformation\",\"url\":\"interfaces/IHasComboInformation.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":873,\"kind\":1024,\"name\":\"currentComboIndex\",\"url\":\"interfaces/IHasComboInformation.html#currentComboIndex\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IHasComboInformation\"},{\"id\":874,\"kind\":1024,\"name\":\"comboIndex\",\"url\":\"interfaces/IHasComboInformation.html#comboIndex\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IHasComboInformation\"},{\"id\":875,\"kind\":1024,\"name\":\"comboIndexWithOffsets\",\"url\":\"interfaces/IHasComboInformation.html#comboIndexWithOffsets\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IHasComboInformation\"},{\"id\":876,\"kind\":1024,\"name\":\"lastInCombo\",\"url\":\"interfaces/IHasComboInformation.html#lastInCombo\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IHasComboInformation\"},{\"id\":877,\"kind\":1024,\"name\":\"isNewCombo\",\"url\":\"interfaces/IHasComboInformation.html#isNewCombo\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IHasComboInformation\"},{\"id\":878,\"kind\":1024,\"name\":\"comboOffset\",\"url\":\"interfaces/IHasComboInformation.html#comboOffset\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IHasComboInformation\"},{\"id\":879,\"kind\":256,\"name\":\"IHasDistance\",\"url\":\"interfaces/IHasDistance.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":880,\"kind\":1024,\"name\":\"distance\",\"url\":\"interfaces/IHasDistance.html#distance\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IHasDistance\"},{\"id\":881,\"kind\":1024,\"name\":\"endTime\",\"url\":\"interfaces/IHasDistance.html#endTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IHasDistance\"},{\"id\":882,\"kind\":1024,\"name\":\"duration\",\"url\":\"interfaces/IHasDistance.html#duration\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IHasDistance\"},{\"id\":883,\"kind\":256,\"name\":\"IHasDuration\",\"url\":\"interfaces/IHasDuration.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":884,\"kind\":1024,\"name\":\"endTime\",\"url\":\"interfaces/IHasDuration.html#endTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IHasDuration\"},{\"id\":885,\"kind\":1024,\"name\":\"duration\",\"url\":\"interfaces/IHasDuration.html#duration\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IHasDuration\"},{\"id\":886,\"kind\":256,\"name\":\"IHasLegacyLastTickOffset\",\"url\":\"interfaces/IHasLegacyLastTickOffset.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":887,\"kind\":1024,\"name\":\"legacyLastTickOffset\",\"url\":\"interfaces/IHasLegacyLastTickOffset.html#legacyLastTickOffset\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IHasLegacyLastTickOffset\"},{\"id\":888,\"kind\":256,\"name\":\"IHasNodeSamples\",\"url\":\"interfaces/IHasNodeSamples.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":889,\"kind\":1024,\"name\":\"nodeSamples\",\"url\":\"interfaces/IHasNodeSamples.html#nodeSamples\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IHasNodeSamples\"},{\"id\":890,\"kind\":256,\"name\":\"IHasPath\",\"url\":\"interfaces/IHasPath.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":891,\"kind\":1024,\"name\":\"path\",\"url\":\"interfaces/IHasPath.html#path\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IHasPath\"},{\"id\":892,\"kind\":1024,\"name\":\"distance\",\"url\":\"interfaces/IHasPath.html#distance\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IHasPath\"},{\"id\":893,\"kind\":1024,\"name\":\"endTime\",\"url\":\"interfaces/IHasPath.html#endTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IHasPath\"},{\"id\":894,\"kind\":1024,\"name\":\"duration\",\"url\":\"interfaces/IHasPath.html#duration\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IHasPath\"},{\"id\":895,\"kind\":256,\"name\":\"IHasPathWithRepeats\",\"url\":\"interfaces/IHasPathWithRepeats.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":896,\"kind\":1024,\"name\":\"path\",\"url\":\"interfaces/IHasPathWithRepeats.html#path\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IHasPathWithRepeats\"},{\"id\":897,\"kind\":1024,\"name\":\"distance\",\"url\":\"interfaces/IHasPathWithRepeats.html#distance\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IHasPathWithRepeats\"},{\"id\":898,\"kind\":1024,\"name\":\"endTime\",\"url\":\"interfaces/IHasPathWithRepeats.html#endTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IHasPathWithRepeats\"},{\"id\":899,\"kind\":1024,\"name\":\"duration\",\"url\":\"interfaces/IHasPathWithRepeats.html#duration\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IHasPathWithRepeats\"},{\"id\":900,\"kind\":1024,\"name\":\"repeats\",\"url\":\"interfaces/IHasPathWithRepeats.html#repeats\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IHasPathWithRepeats\"},{\"id\":901,\"kind\":1024,\"name\":\"spans\",\"url\":\"interfaces/IHasPathWithRepeats.html#spans\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IHasPathWithRepeats\"},{\"id\":902,\"kind\":1024,\"name\":\"spanDuration\",\"url\":\"interfaces/IHasPathWithRepeats.html#spanDuration\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IHasPathWithRepeats\"},{\"id\":903,\"kind\":1024,\"name\":\"nodeSamples\",\"url\":\"interfaces/IHasPathWithRepeats.html#nodeSamples\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IHasPathWithRepeats\"},{\"id\":904,\"kind\":256,\"name\":\"IHasPosition\",\"url\":\"interfaces/IHasPosition.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":905,\"kind\":1024,\"name\":\"startPosition\",\"url\":\"interfaces/IHasPosition.html#startPosition\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IHasPosition\"},{\"id\":906,\"kind\":1024,\"name\":\"endPosition\",\"url\":\"interfaces/IHasPosition.html#endPosition\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IHasPosition\"},{\"id\":907,\"kind\":1024,\"name\":\"startX\",\"url\":\"interfaces/IHasPosition.html#startX\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IHasPosition\"},{\"id\":908,\"kind\":1024,\"name\":\"endX\",\"url\":\"interfaces/IHasPosition.html#endX\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IHasPosition\"},{\"id\":909,\"kind\":1024,\"name\":\"startY\",\"url\":\"interfaces/IHasPosition.html#startY\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IHasPosition\"},{\"id\":910,\"kind\":256,\"name\":\"IHasRepeats\",\"url\":\"interfaces/IHasRepeats.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":911,\"kind\":1024,\"name\":\"repeats\",\"url\":\"interfaces/IHasRepeats.html#repeats\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IHasRepeats\"},{\"id\":912,\"kind\":1024,\"name\":\"spans\",\"url\":\"interfaces/IHasRepeats.html#spans\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IHasRepeats\"},{\"id\":913,\"kind\":1024,\"name\":\"spanDuration\",\"url\":\"interfaces/IHasRepeats.html#spanDuration\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IHasRepeats\"},{\"id\":914,\"kind\":1024,\"name\":\"endTime\",\"url\":\"interfaces/IHasRepeats.html#endTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IHasRepeats\"},{\"id\":915,\"kind\":1024,\"name\":\"duration\",\"url\":\"interfaces/IHasRepeats.html#duration\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IHasRepeats\"},{\"id\":916,\"kind\":1024,\"name\":\"nodeSamples\",\"url\":\"interfaces/IHasRepeats.html#nodeSamples\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IHasRepeats\"},{\"id\":917,\"kind\":256,\"name\":\"IHasX\",\"url\":\"interfaces/IHasX.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":918,\"kind\":1024,\"name\":\"startX\",\"url\":\"interfaces/IHasX.html#startX\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IHasX\"},{\"id\":919,\"kind\":1024,\"name\":\"endX\",\"url\":\"interfaces/IHasX.html#endX\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IHasX\"},{\"id\":920,\"kind\":256,\"name\":\"IHasY\",\"url\":\"interfaces/IHasY.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":921,\"kind\":1024,\"name\":\"startY\",\"url\":\"interfaces/IHasY.html#startY\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IHasY\"},{\"id\":922,\"kind\":1024,\"name\":\"endX\",\"url\":\"interfaces/IHasY.html#endX\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IHasY\"},{\"id\":923,\"kind\":8,\"name\":\"ReplayButtonState\",\"url\":\"enums/ReplayButtonState.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":924,\"kind\":16,\"name\":\"None\",\"url\":\"enums/ReplayButtonState.html#None\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ReplayButtonState\"},{\"id\":925,\"kind\":16,\"name\":\"Left1\",\"url\":\"enums/ReplayButtonState.html#Left1\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ReplayButtonState\"},{\"id\":926,\"kind\":16,\"name\":\"Right1\",\"url\":\"enums/ReplayButtonState.html#Right1\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ReplayButtonState\"},{\"id\":927,\"kind\":16,\"name\":\"Left2\",\"url\":\"enums/ReplayButtonState.html#Left2\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ReplayButtonState\"},{\"id\":928,\"kind\":16,\"name\":\"Right2\",\"url\":\"enums/ReplayButtonState.html#Right2\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ReplayButtonState\"},{\"id\":929,\"kind\":16,\"name\":\"Smoke\",\"url\":\"enums/ReplayButtonState.html#Smoke\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ReplayButtonState\"},{\"id\":930,\"kind\":256,\"name\":\"ILifeBarFrame\",\"url\":\"interfaces/ILifeBarFrame.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":931,\"kind\":1024,\"name\":\"startTime\",\"url\":\"interfaces/ILifeBarFrame.html#startTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ILifeBarFrame\"},{\"id\":932,\"kind\":1024,\"name\":\"health\",\"url\":\"interfaces/ILifeBarFrame.html#health\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ILifeBarFrame\"},{\"id\":933,\"kind\":2048,\"name\":\"clone\",\"url\":\"interfaces/ILifeBarFrame.html#clone\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"ILifeBarFrame\"},{\"id\":934,\"kind\":256,\"name\":\"IReplay\",\"url\":\"interfaces/IReplay.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":935,\"kind\":1024,\"name\":\"gameVersion\",\"url\":\"interfaces/IReplay.html#gameVersion\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IReplay\"},{\"id\":936,\"kind\":1024,\"name\":\"mode\",\"url\":\"interfaces/IReplay.html#mode\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IReplay\"},{\"id\":937,\"kind\":1024,\"name\":\"hashMD5\",\"url\":\"interfaces/IReplay.html#hashMD5\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IReplay\"},{\"id\":938,\"kind\":1024,\"name\":\"frames\",\"url\":\"interfaces/IReplay.html#frames\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IReplay\"},{\"id\":939,\"kind\":1024,\"name\":\"lifeBar\",\"url\":\"interfaces/IReplay.html#lifeBar\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IReplay\"},{\"id\":940,\"kind\":256,\"name\":\"IReplayFrame\",\"url\":\"interfaces/IReplayFrame.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":941,\"kind\":1024,\"name\":\"startTime\",\"url\":\"interfaces/IReplayFrame.html#startTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IReplayFrame\"},{\"id\":942,\"kind\":1024,\"name\":\"interval\",\"url\":\"interfaces/IReplayFrame.html#interval\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IReplayFrame\"},{\"id\":943,\"kind\":2048,\"name\":\"clone\",\"url\":\"interfaces/IReplayFrame.html#clone\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"IReplayFrame\"},{\"id\":944,\"kind\":128,\"name\":\"LegacyReplayFrame\",\"url\":\"classes/LegacyReplayFrame.html\",\"classes\":\"tsd-kind-class\"},{\"id\":945,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/LegacyReplayFrame.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"LegacyReplayFrame\"},{\"id\":946,\"kind\":1024,\"name\":\"buttonState\",\"url\":\"classes/LegacyReplayFrame.html#buttonState\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"LegacyReplayFrame\"},{\"id\":947,\"kind\":1024,\"name\":\"position\",\"url\":\"classes/LegacyReplayFrame.html#position\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"LegacyReplayFrame\"},{\"id\":948,\"kind\":262144,\"name\":\"mouseX\",\"url\":\"classes/LegacyReplayFrame.html#mouseX\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"LegacyReplayFrame\"},{\"id\":949,\"kind\":262144,\"name\":\"mouseY\",\"url\":\"classes/LegacyReplayFrame.html#mouseY\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"LegacyReplayFrame\"},{\"id\":950,\"kind\":262144,\"name\":\"mousePosition\",\"url\":\"classes/LegacyReplayFrame.html#mousePosition\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"LegacyReplayFrame\"},{\"id\":951,\"kind\":262144,\"name\":\"mouseLeft\",\"url\":\"classes/LegacyReplayFrame.html#mouseLeft\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"LegacyReplayFrame\"},{\"id\":952,\"kind\":262144,\"name\":\"mouseRight\",\"url\":\"classes/LegacyReplayFrame.html#mouseRight\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"LegacyReplayFrame\"},{\"id\":953,\"kind\":262144,\"name\":\"mouseLeft1\",\"url\":\"classes/LegacyReplayFrame.html#mouseLeft1\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"LegacyReplayFrame\"},{\"id\":954,\"kind\":262144,\"name\":\"mouseRight1\",\"url\":\"classes/LegacyReplayFrame.html#mouseRight1\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"LegacyReplayFrame\"},{\"id\":955,\"kind\":262144,\"name\":\"mouseLeft2\",\"url\":\"classes/LegacyReplayFrame.html#mouseLeft2\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"LegacyReplayFrame\"},{\"id\":956,\"kind\":262144,\"name\":\"mouseRight2\",\"url\":\"classes/LegacyReplayFrame.html#mouseRight2\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"LegacyReplayFrame\"},{\"id\":957,\"kind\":262144,\"name\":\"smoke\",\"url\":\"classes/LegacyReplayFrame.html#smoke\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"LegacyReplayFrame\"},{\"id\":958,\"kind\":2048,\"name\":\"clone\",\"url\":\"classes/LegacyReplayFrame.html#clone\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"LegacyReplayFrame\"},{\"id\":959,\"kind\":1024,\"name\":\"startTime\",\"url\":\"classes/LegacyReplayFrame.html#startTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"LegacyReplayFrame\"},{\"id\":960,\"kind\":1024,\"name\":\"interval\",\"url\":\"classes/LegacyReplayFrame.html#interval\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"LegacyReplayFrame\"},{\"id\":961,\"kind\":128,\"name\":\"LifeBarFrame\",\"url\":\"classes/LifeBarFrame.html\",\"classes\":\"tsd-kind-class\"},{\"id\":962,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/LifeBarFrame.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"LifeBarFrame\"},{\"id\":963,\"kind\":1024,\"name\":\"startTime\",\"url\":\"classes/LifeBarFrame.html#startTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"LifeBarFrame\"},{\"id\":964,\"kind\":1024,\"name\":\"health\",\"url\":\"classes/LifeBarFrame.html#health\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"LifeBarFrame\"},{\"id\":965,\"kind\":2048,\"name\":\"clone\",\"url\":\"classes/LifeBarFrame.html#clone\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"LifeBarFrame\"},{\"id\":966,\"kind\":128,\"name\":\"Replay\",\"url\":\"classes/Replay.html\",\"classes\":\"tsd-kind-class\"},{\"id\":967,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Replay.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"Replay\"},{\"id\":968,\"kind\":1024,\"name\":\"gameVersion\",\"url\":\"classes/Replay.html#gameVersion\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Replay\"},{\"id\":969,\"kind\":1024,\"name\":\"mode\",\"url\":\"classes/Replay.html#mode\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Replay\"},{\"id\":970,\"kind\":1024,\"name\":\"hashMD5\",\"url\":\"classes/Replay.html#hashMD5\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Replay\"},{\"id\":971,\"kind\":1024,\"name\":\"frames\",\"url\":\"classes/Replay.html#frames\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Replay\"},{\"id\":972,\"kind\":1024,\"name\":\"lifeBar\",\"url\":\"classes/Replay.html#lifeBar\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Replay\"},{\"id\":973,\"kind\":262144,\"name\":\"length\",\"url\":\"classes/Replay.html#length\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"Replay\"},{\"id\":974,\"kind\":2048,\"name\":\"clone\",\"url\":\"classes/Replay.html#clone\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Replay\"},{\"id\":975,\"kind\":2048,\"name\":\"equals\",\"url\":\"classes/Replay.html#equals\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Replay\"},{\"id\":976,\"kind\":128,\"name\":\"ReplayConverter\",\"url\":\"classes/ReplayConverter.html\",\"classes\":\"tsd-kind-class\"},{\"id\":977,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/ReplayConverter.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"ReplayConverter\"},{\"id\":978,\"kind\":2048,\"name\":\"convertReplay\",\"url\":\"classes/ReplayConverter.html#convertReplay\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ReplayConverter\"},{\"id\":979,\"kind\":2048,\"name\":\"createReplay\",\"url\":\"classes/ReplayConverter.html#createReplay\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ReplayConverter\"},{\"id\":980,\"kind\":2048,\"name\":\"convertFrames\",\"url\":\"classes/ReplayConverter.html#convertFrames\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ReplayConverter\"},{\"id\":981,\"kind\":128,\"name\":\"ReplayFrame\",\"url\":\"classes/ReplayFrame.html\",\"classes\":\"tsd-kind-class\"},{\"id\":982,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/ReplayFrame.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"ReplayFrame\"},{\"id\":983,\"kind\":1024,\"name\":\"startTime\",\"url\":\"classes/ReplayFrame.html#startTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ReplayFrame\"},{\"id\":984,\"kind\":1024,\"name\":\"interval\",\"url\":\"classes/ReplayFrame.html#interval\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ReplayFrame\"},{\"id\":985,\"kind\":2048,\"name\":\"clone\",\"url\":\"classes/ReplayFrame.html#clone\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ReplayFrame\"},{\"id\":986,\"kind\":256,\"name\":\"IConvertibleReplayFrame\",\"url\":\"interfaces/IConvertibleReplayFrame.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":987,\"kind\":2048,\"name\":\"fromLegacy\",\"url\":\"interfaces/IConvertibleReplayFrame.html#fromLegacy\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"IConvertibleReplayFrame\"},{\"id\":988,\"kind\":2048,\"name\":\"toLegacy\",\"url\":\"interfaces/IConvertibleReplayFrame.html#toLegacy\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"IConvertibleReplayFrame\"},{\"id\":989,\"kind\":1024,\"name\":\"startTime\",\"url\":\"interfaces/IConvertibleReplayFrame.html#startTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IConvertibleReplayFrame\"},{\"id\":990,\"kind\":1024,\"name\":\"interval\",\"url\":\"interfaces/IConvertibleReplayFrame.html#interval\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IConvertibleReplayFrame\"},{\"id\":991,\"kind\":2048,\"name\":\"clone\",\"url\":\"interfaces/IConvertibleReplayFrame.html#clone\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IConvertibleReplayFrame\"},{\"id\":992,\"kind\":128,\"name\":\"Ruleset\",\"url\":\"classes/Ruleset.html\",\"classes\":\"tsd-kind-class\"},{\"id\":993,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Ruleset.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"Ruleset\"},{\"id\":994,\"kind\":1024,\"name\":\"id\",\"url\":\"classes/Ruleset.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Ruleset\"},{\"id\":995,\"kind\":2048,\"name\":\"applyToBeatmap\",\"url\":\"classes/Ruleset.html#applyToBeatmap\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Ruleset\"},{\"id\":996,\"kind\":2048,\"name\":\"applyToBeatmapWithMods\",\"url\":\"classes/Ruleset.html#applyToBeatmapWithMods\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Ruleset\"},{\"id\":997,\"kind\":2048,\"name\":\"applyToReplay\",\"url\":\"classes/Ruleset.html#applyToReplay\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Ruleset\"},{\"id\":998,\"kind\":2048,\"name\":\"resetMods\",\"url\":\"classes/Ruleset.html#resetMods\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Ruleset\"},{\"id\":999,\"kind\":2048,\"name\":\"createModCombination\",\"url\":\"classes/Ruleset.html#createModCombination\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Ruleset\"},{\"id\":1000,\"kind\":2048,\"name\":\"createDifficultyCalculator\",\"url\":\"classes/Ruleset.html#createDifficultyCalculator\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Ruleset\"},{\"id\":1001,\"kind\":2048,\"name\":\"createPerformanceCalculator\",\"url\":\"classes/Ruleset.html#createPerformanceCalculator\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Ruleset\"},{\"id\":1002,\"kind\":256,\"name\":\"IRuleset\",\"url\":\"interfaces/IRuleset.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":1003,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/IRuleset.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IRuleset\"},{\"id\":1004,\"kind\":2048,\"name\":\"applyToBeatmap\",\"url\":\"interfaces/IRuleset.html#applyToBeatmap\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"IRuleset\"},{\"id\":1005,\"kind\":2048,\"name\":\"applyToBeatmapWithMods\",\"url\":\"interfaces/IRuleset.html#applyToBeatmapWithMods\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"IRuleset\"},{\"id\":1006,\"kind\":2048,\"name\":\"applyToReplay\",\"url\":\"interfaces/IRuleset.html#applyToReplay\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"IRuleset\"},{\"id\":1007,\"kind\":2048,\"name\":\"resetMods\",\"url\":\"interfaces/IRuleset.html#resetMods\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"IRuleset\"},{\"id\":1008,\"kind\":2048,\"name\":\"createModCombination\",\"url\":\"interfaces/IRuleset.html#createModCombination\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"IRuleset\"},{\"id\":1009,\"kind\":2048,\"name\":\"createDifficultyCalculator\",\"url\":\"interfaces/IRuleset.html#createDifficultyCalculator\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"IRuleset\"},{\"id\":1010,\"kind\":2048,\"name\":\"createPerformanceCalculator\",\"url\":\"interfaces/IRuleset.html#createPerformanceCalculator\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"IRuleset\"},{\"id\":1011,\"kind\":128,\"name\":\"DifficultyRange\",\"url\":\"classes/DifficultyRange.html\",\"classes\":\"tsd-kind-class\"},{\"id\":1012,\"kind\":2048,\"name\":\"map\",\"url\":\"classes/DifficultyRange.html#map\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"DifficultyRange\"},{\"id\":1013,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/DifficultyRange.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"DifficultyRange\"},{\"id\":1014,\"kind\":1024,\"name\":\"result\",\"url\":\"classes/DifficultyRange.html#result\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"DifficultyRange\"},{\"id\":1015,\"kind\":1024,\"name\":\"min\",\"url\":\"classes/DifficultyRange.html#min\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"DifficultyRange\"},{\"id\":1016,\"kind\":1024,\"name\":\"average\",\"url\":\"classes/DifficultyRange.html#average\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"DifficultyRange\"},{\"id\":1017,\"kind\":1024,\"name\":\"max\",\"url\":\"classes/DifficultyRange.html#max\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"DifficultyRange\"},{\"id\":1018,\"kind\":8,\"name\":\"HitResult\",\"url\":\"enums/HitResult.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":1019,\"kind\":16,\"name\":\"None\",\"url\":\"enums/HitResult.html#None\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"HitResult\"},{\"id\":1020,\"kind\":16,\"name\":\"Miss\",\"url\":\"enums/HitResult.html#Miss\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"HitResult\"},{\"id\":1021,\"kind\":16,\"name\":\"Meh\",\"url\":\"enums/HitResult.html#Meh\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"HitResult\"},{\"id\":1022,\"kind\":16,\"name\":\"Ok\",\"url\":\"enums/HitResult.html#Ok\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"HitResult\"},{\"id\":1023,\"kind\":16,\"name\":\"Good\",\"url\":\"enums/HitResult.html#Good\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"HitResult\"},{\"id\":1024,\"kind\":16,\"name\":\"Great\",\"url\":\"enums/HitResult.html#Great\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"HitResult\"},{\"id\":1025,\"kind\":16,\"name\":\"Perfect\",\"url\":\"enums/HitResult.html#Perfect\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"HitResult\"},{\"id\":1026,\"kind\":16,\"name\":\"SmallTickMiss\",\"url\":\"enums/HitResult.html#SmallTickMiss\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"HitResult\"},{\"id\":1027,\"kind\":16,\"name\":\"SmallTickHit\",\"url\":\"enums/HitResult.html#SmallTickHit\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"HitResult\"},{\"id\":1028,\"kind\":16,\"name\":\"LargeTickMiss\",\"url\":\"enums/HitResult.html#LargeTickMiss\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"HitResult\"},{\"id\":1029,\"kind\":16,\"name\":\"LargeTickHit\",\"url\":\"enums/HitResult.html#LargeTickHit\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"HitResult\"},{\"id\":1030,\"kind\":16,\"name\":\"SmallBonus\",\"url\":\"enums/HitResult.html#SmallBonus\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"HitResult\"},{\"id\":1031,\"kind\":16,\"name\":\"LargeBonus\",\"url\":\"enums/HitResult.html#LargeBonus\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"HitResult\"},{\"id\":1032,\"kind\":16,\"name\":\"IgnoreMiss\",\"url\":\"enums/HitResult.html#IgnoreMiss\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"HitResult\"},{\"id\":1033,\"kind\":16,\"name\":\"IgnoreHit\",\"url\":\"enums/HitResult.html#IgnoreHit\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"HitResult\"},{\"id\":1034,\"kind\":8,\"name\":\"ScoreRank\",\"url\":\"enums/ScoreRank.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":1035,\"kind\":16,\"name\":\"F\",\"url\":\"enums/ScoreRank.html#F\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ScoreRank\"},{\"id\":1036,\"kind\":16,\"name\":\"D\",\"url\":\"enums/ScoreRank.html#D\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ScoreRank\"},{\"id\":1037,\"kind\":16,\"name\":\"C\",\"url\":\"enums/ScoreRank.html#C\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ScoreRank\"},{\"id\":1038,\"kind\":16,\"name\":\"B\",\"url\":\"enums/ScoreRank.html#B\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ScoreRank\"},{\"id\":1039,\"kind\":16,\"name\":\"A\",\"url\":\"enums/ScoreRank.html#A\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ScoreRank\"},{\"id\":1040,\"kind\":16,\"name\":\"S\",\"url\":\"enums/ScoreRank.html#S\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ScoreRank\"},{\"id\":1041,\"kind\":16,\"name\":\"SH\",\"url\":\"enums/ScoreRank.html#SH\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ScoreRank\"},{\"id\":1042,\"kind\":16,\"name\":\"X\",\"url\":\"enums/ScoreRank.html#X\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ScoreRank\"},{\"id\":1043,\"kind\":16,\"name\":\"XH\",\"url\":\"enums/ScoreRank.html#XH\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ScoreRank\"},{\"id\":1044,\"kind\":128,\"name\":\"HitStatistics\",\"url\":\"classes/HitStatistics.html\",\"classes\":\"tsd-kind-class\"},{\"id\":1045,\"kind\":2048,\"name\":\"fromJSON\",\"url\":\"classes/HitStatistics.html#fromJSON\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"HitStatistics\"},{\"id\":1046,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/HitStatistics.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"HitStatistics\"},{\"id\":1047,\"kind\":2048,\"name\":\"get\",\"url\":\"classes/HitStatistics.html#get\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"HitStatistics\"},{\"id\":1048,\"kind\":2048,\"name\":\"toJSON\",\"url\":\"classes/HitStatistics.html#toJSON\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"HitStatistics\"},{\"id\":1049,\"kind\":128,\"name\":\"HitWindows\",\"url\":\"classes/HitWindows.html\",\"classes\":\"tsd-kind-class\"},{\"id\":1050,\"kind\":1024,\"name\":\"empty\",\"url\":\"classes/HitWindows.html#empty\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"HitWindows\"},{\"id\":1051,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/HitWindows.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"HitWindows\"},{\"id\":1052,\"kind\":2048,\"name\":\"getAllAvailableWindows\",\"url\":\"classes/HitWindows.html#getAllAvailableWindows\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"HitWindows\"},{\"id\":1053,\"kind\":2048,\"name\":\"isHitResultAllowed\",\"url\":\"classes/HitWindows.html#isHitResultAllowed\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"HitWindows\"},{\"id\":1054,\"kind\":2048,\"name\":\"setDifficulty\",\"url\":\"classes/HitWindows.html#setDifficulty\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"HitWindows\"},{\"id\":1055,\"kind\":2048,\"name\":\"resultFor\",\"url\":\"classes/HitWindows.html#resultFor\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"HitWindows\"},{\"id\":1056,\"kind\":2048,\"name\":\"windowFor\",\"url\":\"classes/HitWindows.html#windowFor\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"HitWindows\"},{\"id\":1057,\"kind\":2048,\"name\":\"canBeHit\",\"url\":\"classes/HitWindows.html#canBeHit\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"HitWindows\"},{\"id\":1058,\"kind\":256,\"name\":\"IJsonableHitStatistics\",\"url\":\"interfaces/IJsonableHitStatistics.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":1059,\"kind\":1024,\"name\":\"none\",\"url\":\"interfaces/IJsonableHitStatistics.html#none\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IJsonableHitStatistics\"},{\"id\":1060,\"kind\":1024,\"name\":\"miss\",\"url\":\"interfaces/IJsonableHitStatistics.html#miss\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IJsonableHitStatistics\"},{\"id\":1061,\"kind\":1024,\"name\":\"meh\",\"url\":\"interfaces/IJsonableHitStatistics.html#meh\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IJsonableHitStatistics\"},{\"id\":1062,\"kind\":1024,\"name\":\"ok\",\"url\":\"interfaces/IJsonableHitStatistics.html#ok\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IJsonableHitStatistics\"},{\"id\":1063,\"kind\":1024,\"name\":\"good\",\"url\":\"interfaces/IJsonableHitStatistics.html#good\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IJsonableHitStatistics\"},{\"id\":1064,\"kind\":1024,\"name\":\"great\",\"url\":\"interfaces/IJsonableHitStatistics.html#great\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IJsonableHitStatistics\"},{\"id\":1065,\"kind\":1024,\"name\":\"perfect\",\"url\":\"interfaces/IJsonableHitStatistics.html#perfect\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IJsonableHitStatistics\"},{\"id\":1066,\"kind\":1024,\"name\":\"smallTickMiss\",\"url\":\"interfaces/IJsonableHitStatistics.html#smallTickMiss\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IJsonableHitStatistics\"},{\"id\":1067,\"kind\":1024,\"name\":\"smallTickHit\",\"url\":\"interfaces/IJsonableHitStatistics.html#smallTickHit\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IJsonableHitStatistics\"},{\"id\":1068,\"kind\":1024,\"name\":\"largeTickMiss\",\"url\":\"interfaces/IJsonableHitStatistics.html#largeTickMiss\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IJsonableHitStatistics\"},{\"id\":1069,\"kind\":1024,\"name\":\"largeTickHit\",\"url\":\"interfaces/IJsonableHitStatistics.html#largeTickHit\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IJsonableHitStatistics\"},{\"id\":1070,\"kind\":1024,\"name\":\"smallBonus\",\"url\":\"interfaces/IJsonableHitStatistics.html#smallBonus\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IJsonableHitStatistics\"},{\"id\":1071,\"kind\":1024,\"name\":\"largeBonus\",\"url\":\"interfaces/IJsonableHitStatistics.html#largeBonus\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IJsonableHitStatistics\"},{\"id\":1072,\"kind\":1024,\"name\":\"ignoreMiss\",\"url\":\"interfaces/IJsonableHitStatistics.html#ignoreMiss\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IJsonableHitStatistics\"},{\"id\":1073,\"kind\":1024,\"name\":\"ignoreHit\",\"url\":\"interfaces/IJsonableHitStatistics.html#ignoreHit\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IJsonableHitStatistics\"},{\"id\":1074,\"kind\":4194304,\"name\":\"JsonableScoreInfo\",\"url\":\"modules.html#JsonableScoreInfo\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":1075,\"kind\":256,\"name\":\"IJsonableScoreInfo\",\"url\":\"interfaces/IJsonableScoreInfo.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":1076,\"kind\":1024,\"name\":\"mods\",\"url\":\"interfaces/IJsonableScoreInfo.html#mods\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IJsonableScoreInfo\"},{\"id\":1077,\"kind\":1024,\"name\":\"beatmap\",\"url\":\"interfaces/IJsonableScoreInfo.html#beatmap\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IJsonableScoreInfo\"},{\"id\":1078,\"kind\":1024,\"name\":\"statistics\",\"url\":\"interfaces/IJsonableScoreInfo.html#statistics\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IJsonableScoreInfo\"},{\"id\":1079,\"kind\":1024,\"name\":\"date\",\"url\":\"interfaces/IJsonableScoreInfo.html#date\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IJsonableScoreInfo\"},{\"id\":1080,\"kind\":1024,\"name\":\"perfect\",\"url\":\"interfaces/IJsonableScoreInfo.html#perfect\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableScoreInfo\"},{\"id\":1081,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/IJsonableScoreInfo.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableScoreInfo\"},{\"id\":1082,\"kind\":1024,\"name\":\"rank\",\"url\":\"interfaces/IJsonableScoreInfo.html#rank\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableScoreInfo\"},{\"id\":1083,\"kind\":1024,\"name\":\"totalScore\",\"url\":\"interfaces/IJsonableScoreInfo.html#totalScore\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableScoreInfo\"},{\"id\":1084,\"kind\":1024,\"name\":\"accuracy\",\"url\":\"interfaces/IJsonableScoreInfo.html#accuracy\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableScoreInfo\"},{\"id\":1085,\"kind\":1024,\"name\":\"totalPerformance\",\"url\":\"interfaces/IJsonableScoreInfo.html#totalPerformance\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableScoreInfo\"},{\"id\":1086,\"kind\":1024,\"name\":\"maxCombo\",\"url\":\"interfaces/IJsonableScoreInfo.html#maxCombo\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableScoreInfo\"},{\"id\":1087,\"kind\":1024,\"name\":\"passed\",\"url\":\"interfaces/IJsonableScoreInfo.html#passed\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableScoreInfo\"},{\"id\":1088,\"kind\":1024,\"name\":\"rulesetId\",\"url\":\"interfaces/IJsonableScoreInfo.html#rulesetId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableScoreInfo\"},{\"id\":1089,\"kind\":1024,\"name\":\"username\",\"url\":\"interfaces/IJsonableScoreInfo.html#username\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableScoreInfo\"},{\"id\":1090,\"kind\":1024,\"name\":\"userId\",\"url\":\"interfaces/IJsonableScoreInfo.html#userId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableScoreInfo\"},{\"id\":1091,\"kind\":1024,\"name\":\"beatmapId\",\"url\":\"interfaces/IJsonableScoreInfo.html#beatmapId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableScoreInfo\"},{\"id\":1092,\"kind\":1024,\"name\":\"beatmapHashMD5\",\"url\":\"interfaces/IJsonableScoreInfo.html#beatmapHashMD5\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableScoreInfo\"},{\"id\":1093,\"kind\":1024,\"name\":\"countGeki\",\"url\":\"interfaces/IJsonableScoreInfo.html#countGeki\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableScoreInfo\"},{\"id\":1094,\"kind\":1024,\"name\":\"count300\",\"url\":\"interfaces/IJsonableScoreInfo.html#count300\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableScoreInfo\"},{\"id\":1095,\"kind\":1024,\"name\":\"countKatu\",\"url\":\"interfaces/IJsonableScoreInfo.html#countKatu\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableScoreInfo\"},{\"id\":1096,\"kind\":1024,\"name\":\"count100\",\"url\":\"interfaces/IJsonableScoreInfo.html#count100\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableScoreInfo\"},{\"id\":1097,\"kind\":1024,\"name\":\"count50\",\"url\":\"interfaces/IJsonableScoreInfo.html#count50\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableScoreInfo\"},{\"id\":1098,\"kind\":1024,\"name\":\"countMiss\",\"url\":\"interfaces/IJsonableScoreInfo.html#countMiss\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableScoreInfo\"},{\"id\":1099,\"kind\":1024,\"name\":\"totalHits\",\"url\":\"interfaces/IJsonableScoreInfo.html#totalHits\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableScoreInfo\"},{\"id\":1100,\"kind\":2048,\"name\":\"toJSON\",\"url\":\"interfaces/IJsonableScoreInfo.html#toJSON\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableScoreInfo\"},{\"id\":1101,\"kind\":256,\"name\":\"IScore\",\"url\":\"interfaces/IScore.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":1102,\"kind\":1024,\"name\":\"info\",\"url\":\"interfaces/IScore.html#info\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IScore\"},{\"id\":1103,\"kind\":1024,\"name\":\"replay\",\"url\":\"interfaces/IScore.html#replay\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IScore\"},{\"id\":1104,\"kind\":256,\"name\":\"IScoreInfo\",\"url\":\"interfaces/IScoreInfo.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":1105,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/IScoreInfo.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IScoreInfo\"},{\"id\":1106,\"kind\":1024,\"name\":\"rank\",\"url\":\"interfaces/IScoreInfo.html#rank\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IScoreInfo\"},{\"id\":1107,\"kind\":1024,\"name\":\"totalScore\",\"url\":\"interfaces/IScoreInfo.html#totalScore\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IScoreInfo\"},{\"id\":1108,\"kind\":1024,\"name\":\"accuracy\",\"url\":\"interfaces/IScoreInfo.html#accuracy\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IScoreInfo\"},{\"id\":1109,\"kind\":1024,\"name\":\"totalPerformance\",\"url\":\"interfaces/IScoreInfo.html#totalPerformance\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IScoreInfo\"},{\"id\":1110,\"kind\":1024,\"name\":\"maxCombo\",\"url\":\"interfaces/IScoreInfo.html#maxCombo\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IScoreInfo\"},{\"id\":1111,\"kind\":1024,\"name\":\"passed\",\"url\":\"interfaces/IScoreInfo.html#passed\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IScoreInfo\"},{\"id\":1112,\"kind\":1024,\"name\":\"perfect\",\"url\":\"interfaces/IScoreInfo.html#perfect\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IScoreInfo\"},{\"id\":1113,\"kind\":1024,\"name\":\"ruleset\",\"url\":\"interfaces/IScoreInfo.html#ruleset\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IScoreInfo\"},{\"id\":1114,\"kind\":1024,\"name\":\"rulesetId\",\"url\":\"interfaces/IScoreInfo.html#rulesetId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IScoreInfo\"},{\"id\":1115,\"kind\":1024,\"name\":\"mods\",\"url\":\"interfaces/IScoreInfo.html#mods\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IScoreInfo\"},{\"id\":1116,\"kind\":1024,\"name\":\"rawMods\",\"url\":\"interfaces/IScoreInfo.html#rawMods\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IScoreInfo\"},{\"id\":1117,\"kind\":1024,\"name\":\"username\",\"url\":\"interfaces/IScoreInfo.html#username\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IScoreInfo\"},{\"id\":1118,\"kind\":1024,\"name\":\"userId\",\"url\":\"interfaces/IScoreInfo.html#userId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IScoreInfo\"},{\"id\":1119,\"kind\":1024,\"name\":\"beatmap\",\"url\":\"interfaces/IScoreInfo.html#beatmap\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IScoreInfo\"},{\"id\":1120,\"kind\":1024,\"name\":\"beatmapId\",\"url\":\"interfaces/IScoreInfo.html#beatmapId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IScoreInfo\"},{\"id\":1121,\"kind\":1024,\"name\":\"date\",\"url\":\"interfaces/IScoreInfo.html#date\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IScoreInfo\"},{\"id\":1122,\"kind\":1024,\"name\":\"statistics\",\"url\":\"interfaces/IScoreInfo.html#statistics\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IScoreInfo\"},{\"id\":1123,\"kind\":1024,\"name\":\"beatmapHashMD5\",\"url\":\"interfaces/IScoreInfo.html#beatmapHashMD5\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IScoreInfo\"},{\"id\":1124,\"kind\":1024,\"name\":\"countGeki\",\"url\":\"interfaces/IScoreInfo.html#countGeki\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IScoreInfo\"},{\"id\":1125,\"kind\":1024,\"name\":\"count300\",\"url\":\"interfaces/IScoreInfo.html#count300\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IScoreInfo\"},{\"id\":1126,\"kind\":1024,\"name\":\"countKatu\",\"url\":\"interfaces/IScoreInfo.html#countKatu\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IScoreInfo\"},{\"id\":1127,\"kind\":1024,\"name\":\"count100\",\"url\":\"interfaces/IScoreInfo.html#count100\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IScoreInfo\"},{\"id\":1128,\"kind\":1024,\"name\":\"count50\",\"url\":\"interfaces/IScoreInfo.html#count50\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IScoreInfo\"},{\"id\":1129,\"kind\":1024,\"name\":\"countMiss\",\"url\":\"interfaces/IScoreInfo.html#countMiss\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IScoreInfo\"},{\"id\":1130,\"kind\":1024,\"name\":\"totalHits\",\"url\":\"interfaces/IScoreInfo.html#totalHits\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IScoreInfo\"},{\"id\":1131,\"kind\":2048,\"name\":\"toJSON\",\"url\":\"interfaces/IScoreInfo.html#toJSON\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"IScoreInfo\"},{\"id\":1132,\"kind\":128,\"name\":\"LegacyScoreExtensions\",\"url\":\"classes/LegacyScoreExtensions.html\",\"classes\":\"tsd-kind-class\"},{\"id\":1133,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/LegacyScoreExtensions.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"LegacyScoreExtensions\"},{\"id\":1134,\"kind\":1024,\"name\":\"rulesetId\",\"url\":\"classes/LegacyScoreExtensions.html#rulesetId\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"LegacyScoreExtensions\"},{\"id\":1135,\"kind\":1024,\"name\":\"statistics\",\"url\":\"classes/LegacyScoreExtensions.html#statistics\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"LegacyScoreExtensions\"},{\"id\":1136,\"kind\":262144,\"name\":\"countGeki\",\"url\":\"classes/LegacyScoreExtensions.html#countGeki\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"LegacyScoreExtensions\"},{\"id\":1137,\"kind\":262144,\"name\":\"count300\",\"url\":\"classes/LegacyScoreExtensions.html#count300\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"LegacyScoreExtensions\"},{\"id\":1138,\"kind\":262144,\"name\":\"countKatu\",\"url\":\"classes/LegacyScoreExtensions.html#countKatu\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"LegacyScoreExtensions\"},{\"id\":1139,\"kind\":262144,\"name\":\"count100\",\"url\":\"classes/LegacyScoreExtensions.html#count100\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"LegacyScoreExtensions\"},{\"id\":1140,\"kind\":262144,\"name\":\"count50\",\"url\":\"classes/LegacyScoreExtensions.html#count50\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"LegacyScoreExtensions\"},{\"id\":1141,\"kind\":262144,\"name\":\"countMiss\",\"url\":\"classes/LegacyScoreExtensions.html#countMiss\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"LegacyScoreExtensions\"},{\"id\":1142,\"kind\":262144,\"name\":\"totalHits\",\"url\":\"classes/LegacyScoreExtensions.html#totalHits\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"LegacyScoreExtensions\"},{\"id\":1143,\"kind\":128,\"name\":\"Score\",\"url\":\"classes/Score.html\",\"classes\":\"tsd-kind-class\"},{\"id\":1144,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Score.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"Score\"},{\"id\":1145,\"kind\":1024,\"name\":\"info\",\"url\":\"classes/Score.html#info\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Score\"},{\"id\":1146,\"kind\":1024,\"name\":\"replay\",\"url\":\"classes/Score.html#replay\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Score\"},{\"id\":1147,\"kind\":2048,\"name\":\"clone\",\"url\":\"classes/Score.html#clone\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Score\"},{\"id\":1148,\"kind\":2048,\"name\":\"equals\",\"url\":\"classes/Score.html#equals\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Score\"},{\"id\":1149,\"kind\":128,\"name\":\"ScoreInfo\",\"url\":\"classes/ScoreInfo.html\",\"classes\":\"tsd-kind-class\"},{\"id\":1150,\"kind\":2048,\"name\":\"fromJSON\",\"url\":\"classes/ScoreInfo.html#fromJSON\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"ScoreInfo\"},{\"id\":1151,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/ScoreInfo.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"ScoreInfo\"},{\"id\":1152,\"kind\":1024,\"name\":\"id\",\"url\":\"classes/ScoreInfo.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ScoreInfo\"},{\"id\":1153,\"kind\":1024,\"name\":\"totalScore\",\"url\":\"classes/ScoreInfo.html#totalScore\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ScoreInfo\"},{\"id\":1154,\"kind\":1024,\"name\":\"totalPerformance\",\"url\":\"classes/ScoreInfo.html#totalPerformance\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ScoreInfo\"},{\"id\":1155,\"kind\":1024,\"name\":\"maxCombo\",\"url\":\"classes/ScoreInfo.html#maxCombo\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ScoreInfo\"},{\"id\":1156,\"kind\":1024,\"name\":\"passed\",\"url\":\"classes/ScoreInfo.html#passed\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ScoreInfo\"},{\"id\":1157,\"kind\":1024,\"name\":\"perfect\",\"url\":\"classes/ScoreInfo.html#perfect\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ScoreInfo\"},{\"id\":1158,\"kind\":262144,\"name\":\"accuracy\",\"url\":\"classes/ScoreInfo.html#accuracy\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"ScoreInfo\"},{\"id\":1159,\"kind\":262144,\"name\":\"rank\",\"url\":\"classes/ScoreInfo.html#rank\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"ScoreInfo\"},{\"id\":1160,\"kind\":262144,\"name\":\"ruleset\",\"url\":\"classes/ScoreInfo.html#ruleset\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"ScoreInfo\"},{\"id\":1161,\"kind\":262144,\"name\":\"rulesetId\",\"url\":\"classes/ScoreInfo.html#rulesetId\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"ScoreInfo\"},{\"id\":1162,\"kind\":262144,\"name\":\"mods\",\"url\":\"classes/ScoreInfo.html#mods\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"ScoreInfo\"},{\"id\":1163,\"kind\":262144,\"name\":\"rawMods\",\"url\":\"classes/ScoreInfo.html#rawMods\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"ScoreInfo\"},{\"id\":1164,\"kind\":1024,\"name\":\"username\",\"url\":\"classes/ScoreInfo.html#username\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ScoreInfo\"},{\"id\":1165,\"kind\":1024,\"name\":\"userId\",\"url\":\"classes/ScoreInfo.html#userId\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ScoreInfo\"},{\"id\":1166,\"kind\":1024,\"name\":\"beatmap\",\"url\":\"classes/ScoreInfo.html#beatmap\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ScoreInfo\"},{\"id\":1167,\"kind\":1024,\"name\":\"beatmapId\",\"url\":\"classes/ScoreInfo.html#beatmapId\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ScoreInfo\"},{\"id\":1168,\"kind\":1024,\"name\":\"date\",\"url\":\"classes/ScoreInfo.html#date\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ScoreInfo\"},{\"id\":1169,\"kind\":1024,\"name\":\"beatmapHashMD5\",\"url\":\"classes/ScoreInfo.html#beatmapHashMD5\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"ScoreInfo\"},{\"id\":1170,\"kind\":2048,\"name\":\"clone\",\"url\":\"classes/ScoreInfo.html#clone\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ScoreInfo\"},{\"id\":1171,\"kind\":2048,\"name\":\"equals\",\"url\":\"classes/ScoreInfo.html#equals\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ScoreInfo\"},{\"id\":1172,\"kind\":2048,\"name\":\"toJSON\",\"url\":\"classes/ScoreInfo.html#toJSON\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"ScoreInfo\"},{\"id\":1173,\"kind\":1024,\"name\":\"statistics\",\"url\":\"classes/ScoreInfo.html#statistics\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"ScoreInfo\"},{\"id\":1174,\"kind\":262144,\"name\":\"countGeki\",\"url\":\"classes/ScoreInfo.html#countGeki\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"ScoreInfo\"},{\"id\":1175,\"kind\":262144,\"name\":\"count300\",\"url\":\"classes/ScoreInfo.html#count300\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"ScoreInfo\"},{\"id\":1176,\"kind\":262144,\"name\":\"countKatu\",\"url\":\"classes/ScoreInfo.html#countKatu\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"ScoreInfo\"},{\"id\":1177,\"kind\":262144,\"name\":\"count100\",\"url\":\"classes/ScoreInfo.html#count100\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"ScoreInfo\"},{\"id\":1178,\"kind\":262144,\"name\":\"count50\",\"url\":\"classes/ScoreInfo.html#count50\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"ScoreInfo\"},{\"id\":1179,\"kind\":262144,\"name\":\"countMiss\",\"url\":\"classes/ScoreInfo.html#countMiss\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"ScoreInfo\"},{\"id\":1180,\"kind\":262144,\"name\":\"totalHits\",\"url\":\"classes/ScoreInfo.html#totalHits\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"ScoreInfo\"},{\"id\":1181,\"kind\":4,\"name\":\"Accuracy\",\"url\":\"modules/Accuracy.html\",\"classes\":\"tsd-kind-namespace\"},{\"id\":1182,\"kind\":64,\"name\":\"calculate\",\"url\":\"modules/Accuracy.html#calculate\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"Accuracy\"},{\"id\":1183,\"kind\":4,\"name\":\"Rank\",\"url\":\"modules/Rank.html\",\"classes\":\"tsd-kind-namespace\"},{\"id\":1184,\"kind\":64,\"name\":\"calculate\",\"url\":\"modules/Rank.html#calculate\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"Rank\"},{\"id\":1185,\"kind\":8,\"name\":\"BlendingEquation\",\"url\":\"enums/BlendingEquation.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":1186,\"kind\":16,\"name\":\"Inherit\",\"url\":\"enums/BlendingEquation.html#Inherit\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingEquation\"},{\"id\":1187,\"kind\":16,\"name\":\"Add\",\"url\":\"enums/BlendingEquation.html#Add\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingEquation\"},{\"id\":1188,\"kind\":16,\"name\":\"Min\",\"url\":\"enums/BlendingEquation.html#Min\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingEquation\"},{\"id\":1189,\"kind\":16,\"name\":\"Max\",\"url\":\"enums/BlendingEquation.html#Max\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingEquation\"},{\"id\":1190,\"kind\":16,\"name\":\"Subtract\",\"url\":\"enums/BlendingEquation.html#Subtract\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingEquation\"},{\"id\":1191,\"kind\":16,\"name\":\"ReverseSubtract\",\"url\":\"enums/BlendingEquation.html#ReverseSubtract\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingEquation\"},{\"id\":1192,\"kind\":8,\"name\":\"BlendEquationMode\",\"url\":\"enums/BlendEquationMode.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":1193,\"kind\":16,\"name\":\"FuncAdd\",\"url\":\"enums/BlendEquationMode.html#FuncAdd\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendEquationMode\"},{\"id\":1194,\"kind\":16,\"name\":\"Min\",\"url\":\"enums/BlendEquationMode.html#Min\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendEquationMode\"},{\"id\":1195,\"kind\":16,\"name\":\"Max\",\"url\":\"enums/BlendEquationMode.html#Max\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendEquationMode\"},{\"id\":1196,\"kind\":16,\"name\":\"FuncSubtract\",\"url\":\"enums/BlendEquationMode.html#FuncSubtract\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendEquationMode\"},{\"id\":1197,\"kind\":16,\"name\":\"FuncReverseSubtract\",\"url\":\"enums/BlendEquationMode.html#FuncReverseSubtract\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendEquationMode\"},{\"id\":1198,\"kind\":8,\"name\":\"BlendingFactorDest\",\"url\":\"enums/BlendingFactorDest.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":1199,\"kind\":16,\"name\":\"Zero\",\"url\":\"enums/BlendingFactorDest.html#Zero\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingFactorDest\"},{\"id\":1200,\"kind\":16,\"name\":\"SrcColor\",\"url\":\"enums/BlendingFactorDest.html#SrcColor\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingFactorDest\"},{\"id\":1201,\"kind\":16,\"name\":\"OneMinusSrcColor\",\"url\":\"enums/BlendingFactorDest.html#OneMinusSrcColor\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingFactorDest\"},{\"id\":1202,\"kind\":16,\"name\":\"SrcAlpha\",\"url\":\"enums/BlendingFactorDest.html#SrcAlpha\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingFactorDest\"},{\"id\":1203,\"kind\":16,\"name\":\"OneMinusSrcAlpha\",\"url\":\"enums/BlendingFactorDest.html#OneMinusSrcAlpha\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingFactorDest\"},{\"id\":1204,\"kind\":16,\"name\":\"DstAlpha\",\"url\":\"enums/BlendingFactorDest.html#DstAlpha\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingFactorDest\"},{\"id\":1205,\"kind\":16,\"name\":\"OneMinusDstAlpha\",\"url\":\"enums/BlendingFactorDest.html#OneMinusDstAlpha\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingFactorDest\"},{\"id\":1206,\"kind\":16,\"name\":\"DstColor\",\"url\":\"enums/BlendingFactorDest.html#DstColor\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingFactorDest\"},{\"id\":1207,\"kind\":16,\"name\":\"OneMinusDstColor\",\"url\":\"enums/BlendingFactorDest.html#OneMinusDstColor\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingFactorDest\"},{\"id\":1208,\"kind\":16,\"name\":\"SrcAlphaSaturate\",\"url\":\"enums/BlendingFactorDest.html#SrcAlphaSaturate\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingFactorDest\"},{\"id\":1209,\"kind\":16,\"name\":\"ConstantColor\",\"url\":\"enums/BlendingFactorDest.html#ConstantColor\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingFactorDest\"},{\"id\":1210,\"kind\":16,\"name\":\"OneMinusConstantColor\",\"url\":\"enums/BlendingFactorDest.html#OneMinusConstantColor\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingFactorDest\"},{\"id\":1211,\"kind\":16,\"name\":\"ConstantAlpha\",\"url\":\"enums/BlendingFactorDest.html#ConstantAlpha\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingFactorDest\"},{\"id\":1212,\"kind\":16,\"name\":\"OneMinusConstantAlpha\",\"url\":\"enums/BlendingFactorDest.html#OneMinusConstantAlpha\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingFactorDest\"},{\"id\":1213,\"kind\":16,\"name\":\"One\",\"url\":\"enums/BlendingFactorDest.html#One\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingFactorDest\"},{\"id\":1214,\"kind\":8,\"name\":\"BlendingFactorSrc\",\"url\":\"enums/BlendingFactorSrc.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":1215,\"kind\":16,\"name\":\"Zero\",\"url\":\"enums/BlendingFactorSrc.html#Zero\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingFactorSrc\"},{\"id\":1216,\"kind\":16,\"name\":\"SrcColor\",\"url\":\"enums/BlendingFactorSrc.html#SrcColor\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingFactorSrc\"},{\"id\":1217,\"kind\":16,\"name\":\"OneMinusSrcColor\",\"url\":\"enums/BlendingFactorSrc.html#OneMinusSrcColor\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingFactorSrc\"},{\"id\":1218,\"kind\":16,\"name\":\"SrcAlpha\",\"url\":\"enums/BlendingFactorSrc.html#SrcAlpha\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingFactorSrc\"},{\"id\":1219,\"kind\":16,\"name\":\"OneMinusSrcAlpha\",\"url\":\"enums/BlendingFactorSrc.html#OneMinusSrcAlpha\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingFactorSrc\"},{\"id\":1220,\"kind\":16,\"name\":\"DstAlpha\",\"url\":\"enums/BlendingFactorSrc.html#DstAlpha\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingFactorSrc\"},{\"id\":1221,\"kind\":16,\"name\":\"OneMinusDstAlpha\",\"url\":\"enums/BlendingFactorSrc.html#OneMinusDstAlpha\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingFactorSrc\"},{\"id\":1222,\"kind\":16,\"name\":\"DstColor\",\"url\":\"enums/BlendingFactorSrc.html#DstColor\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingFactorSrc\"},{\"id\":1223,\"kind\":16,\"name\":\"OneMinusDstColor\",\"url\":\"enums/BlendingFactorSrc.html#OneMinusDstColor\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingFactorSrc\"},{\"id\":1224,\"kind\":16,\"name\":\"SrcAlphaSaturate\",\"url\":\"enums/BlendingFactorSrc.html#SrcAlphaSaturate\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingFactorSrc\"},{\"id\":1225,\"kind\":16,\"name\":\"ConstantColor\",\"url\":\"enums/BlendingFactorSrc.html#ConstantColor\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingFactorSrc\"},{\"id\":1226,\"kind\":16,\"name\":\"OneMinusConstantColor\",\"url\":\"enums/BlendingFactorSrc.html#OneMinusConstantColor\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingFactorSrc\"},{\"id\":1227,\"kind\":16,\"name\":\"ConstantAlpha\",\"url\":\"enums/BlendingFactorSrc.html#ConstantAlpha\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingFactorSrc\"},{\"id\":1228,\"kind\":16,\"name\":\"OneMinusConstantAlpha\",\"url\":\"enums/BlendingFactorSrc.html#OneMinusConstantAlpha\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingFactorSrc\"},{\"id\":1229,\"kind\":16,\"name\":\"One\",\"url\":\"enums/BlendingFactorSrc.html#One\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingFactorSrc\"},{\"id\":1230,\"kind\":8,\"name\":\"BlendingMode\",\"url\":\"enums/BlendingMode.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":1231,\"kind\":16,\"name\":\"AdditiveBlending\",\"url\":\"enums/BlendingMode.html#AdditiveBlending\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingMode\"},{\"id\":1232,\"kind\":16,\"name\":\"AlphaBlending\",\"url\":\"enums/BlendingMode.html#AlphaBlending\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingMode\"},{\"id\":1233,\"kind\":128,\"name\":\"BlendingParameters\",\"url\":\"classes/BlendingParameters.html\",\"classes\":\"tsd-kind-class\"},{\"id\":1234,\"kind\":1024,\"name\":\"None\",\"url\":\"classes/BlendingParameters.html#None\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"BlendingParameters\"},{\"id\":1235,\"kind\":1024,\"name\":\"Inherit\",\"url\":\"classes/BlendingParameters.html#Inherit\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"BlendingParameters\"},{\"id\":1236,\"kind\":1024,\"name\":\"Mixture\",\"url\":\"classes/BlendingParameters.html#Mixture\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"BlendingParameters\"},{\"id\":1237,\"kind\":1024,\"name\":\"Additive\",\"url\":\"classes/BlendingParameters.html#Additive\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"BlendingParameters\"},{\"id\":1238,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/BlendingParameters.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"BlendingParameters\"},{\"id\":1239,\"kind\":1024,\"name\":\"source\",\"url\":\"classes/BlendingParameters.html#source\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BlendingParameters\"},{\"id\":1240,\"kind\":1024,\"name\":\"destination\",\"url\":\"classes/BlendingParameters.html#destination\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BlendingParameters\"},{\"id\":1241,\"kind\":1024,\"name\":\"sourceAlpha\",\"url\":\"classes/BlendingParameters.html#sourceAlpha\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BlendingParameters\"},{\"id\":1242,\"kind\":1024,\"name\":\"destinationAlpha\",\"url\":\"classes/BlendingParameters.html#destinationAlpha\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BlendingParameters\"},{\"id\":1243,\"kind\":1024,\"name\":\"rgbEquation\",\"url\":\"classes/BlendingParameters.html#rgbEquation\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BlendingParameters\"},{\"id\":1244,\"kind\":1024,\"name\":\"alphaEquation\",\"url\":\"classes/BlendingParameters.html#alphaEquation\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"BlendingParameters\"},{\"id\":1245,\"kind\":2048,\"name\":\"copyFromParent\",\"url\":\"classes/BlendingParameters.html#copyFromParent\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"BlendingParameters\"},{\"id\":1246,\"kind\":2048,\"name\":\"applyDefaultToInherited\",\"url\":\"classes/BlendingParameters.html#applyDefaultToInherited\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"BlendingParameters\"},{\"id\":1247,\"kind\":2048,\"name\":\"equals\",\"url\":\"classes/BlendingParameters.html#equals\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"BlendingParameters\"},{\"id\":1248,\"kind\":262144,\"name\":\"isDisabled\",\"url\":\"classes/BlendingParameters.html#isDisabled\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"BlendingParameters\"},{\"id\":1249,\"kind\":262144,\"name\":\"rgbEquationMode\",\"url\":\"classes/BlendingParameters.html#rgbEquationMode\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"BlendingParameters\"},{\"id\":1250,\"kind\":262144,\"name\":\"alphaEquationMode\",\"url\":\"classes/BlendingParameters.html#alphaEquationMode\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"BlendingParameters\"},{\"id\":1251,\"kind\":262144,\"name\":\"sourceBlendingFactor\",\"url\":\"classes/BlendingParameters.html#sourceBlendingFactor\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"BlendingParameters\"},{\"id\":1252,\"kind\":262144,\"name\":\"destinationBlendingFactor\",\"url\":\"classes/BlendingParameters.html#destinationBlendingFactor\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"BlendingParameters\"},{\"id\":1253,\"kind\":262144,\"name\":\"sourceAlphaBlendingFactor\",\"url\":\"classes/BlendingParameters.html#sourceAlphaBlendingFactor\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"BlendingParameters\"},{\"id\":1254,\"kind\":262144,\"name\":\"destinationAlphaBlendingFactor\",\"url\":\"classes/BlendingParameters.html#destinationAlphaBlendingFactor\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"BlendingParameters\"},{\"id\":1255,\"kind\":8,\"name\":\"BlendingType\",\"url\":\"enums/BlendingType.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":1256,\"kind\":16,\"name\":\"Inherit\",\"url\":\"enums/BlendingType.html#Inherit\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingType\"},{\"id\":1257,\"kind\":16,\"name\":\"ConstantAlpha\",\"url\":\"enums/BlendingType.html#ConstantAlpha\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingType\"},{\"id\":1258,\"kind\":16,\"name\":\"ConstantColor\",\"url\":\"enums/BlendingType.html#ConstantColor\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingType\"},{\"id\":1259,\"kind\":16,\"name\":\"DstAlpha\",\"url\":\"enums/BlendingType.html#DstAlpha\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingType\"},{\"id\":1260,\"kind\":16,\"name\":\"DstColor\",\"url\":\"enums/BlendingType.html#DstColor\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingType\"},{\"id\":1261,\"kind\":16,\"name\":\"One\",\"url\":\"enums/BlendingType.html#One\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingType\"},{\"id\":1262,\"kind\":16,\"name\":\"OneMinusConstantAlpha\",\"url\":\"enums/BlendingType.html#OneMinusConstantAlpha\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingType\"},{\"id\":1263,\"kind\":16,\"name\":\"OneMinusConstantColor\",\"url\":\"enums/BlendingType.html#OneMinusConstantColor\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingType\"},{\"id\":1264,\"kind\":16,\"name\":\"OneMinusDstAlpha\",\"url\":\"enums/BlendingType.html#OneMinusDstAlpha\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingType\"},{\"id\":1265,\"kind\":16,\"name\":\"OneMinusDstColor\",\"url\":\"enums/BlendingType.html#OneMinusDstColor\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingType\"},{\"id\":1266,\"kind\":16,\"name\":\"OneMinusSrcAlpha\",\"url\":\"enums/BlendingType.html#OneMinusSrcAlpha\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingType\"},{\"id\":1267,\"kind\":16,\"name\":\"OneMinusSrcColor\",\"url\":\"enums/BlendingType.html#OneMinusSrcColor\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingType\"},{\"id\":1268,\"kind\":16,\"name\":\"SrcAlpha\",\"url\":\"enums/BlendingType.html#SrcAlpha\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingType\"},{\"id\":1269,\"kind\":16,\"name\":\"SrcAlphaSaturate\",\"url\":\"enums/BlendingType.html#SrcAlphaSaturate\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingType\"},{\"id\":1270,\"kind\":16,\"name\":\"SrcColor\",\"url\":\"enums/BlendingType.html#SrcColor\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingType\"},{\"id\":1271,\"kind\":16,\"name\":\"Zero\",\"url\":\"enums/BlendingType.html#Zero\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"BlendingType\"},{\"id\":1272,\"kind\":128,\"name\":\"Command\",\"url\":\"classes/Command.html\",\"classes\":\"tsd-kind-class tsd-has-type-parameter\"},{\"id\":1273,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Command.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-has-type-parameter\",\"parent\":\"Command\"},{\"id\":1274,\"kind\":1024,\"name\":\"type\",\"url\":\"classes/Command.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Command\"},{\"id\":1275,\"kind\":1024,\"name\":\"parameter\",\"url\":\"classes/Command.html#parameter\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Command\"},{\"id\":1276,\"kind\":1024,\"name\":\"easing\",\"url\":\"classes/Command.html#easing\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Command\"},{\"id\":1277,\"kind\":1024,\"name\":\"startTime\",\"url\":\"classes/Command.html#startTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Command\"},{\"id\":1278,\"kind\":1024,\"name\":\"endTime\",\"url\":\"classes/Command.html#endTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Command\"},{\"id\":1279,\"kind\":1024,\"name\":\"startValue\",\"url\":\"classes/Command.html#startValue\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Command\"},{\"id\":1280,\"kind\":1024,\"name\":\"endValue\",\"url\":\"classes/Command.html#endValue\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Command\"},{\"id\":1281,\"kind\":262144,\"name\":\"duration\",\"url\":\"classes/Command.html#duration\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"Command\"},{\"id\":1282,\"kind\":2048,\"name\":\"getProgress\",\"url\":\"classes/Command.html#getProgress\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Command\"},{\"id\":1283,\"kind\":2048,\"name\":\"getValueAtProgress\",\"url\":\"classes/Command.html#getValueAtProgress\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Command\"},{\"id\":1284,\"kind\":2048,\"name\":\"getValueAtTime\",\"url\":\"classes/Command.html#getValueAtTime\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Command\"},{\"id\":1285,\"kind\":2048,\"name\":\"equals\",\"url\":\"classes/Command.html#equals\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Command\"},{\"id\":1286,\"kind\":128,\"name\":\"CommandLoop\",\"url\":\"classes/CommandLoop.html\",\"classes\":\"tsd-kind-class\"},{\"id\":1287,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/CommandLoop.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"CommandLoop\"},{\"id\":1288,\"kind\":1024,\"name\":\"type\",\"url\":\"classes/CommandLoop.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"CommandLoop\"},{\"id\":1289,\"kind\":1024,\"name\":\"loopStartTime\",\"url\":\"classes/CommandLoop.html#loopStartTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"CommandLoop\"},{\"id\":1290,\"kind\":1024,\"name\":\"loopCount\",\"url\":\"classes/CommandLoop.html#loopCount\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"CommandLoop\"},{\"id\":1291,\"kind\":262144,\"name\":\"totalIterations\",\"url\":\"classes/CommandLoop.html#totalIterations\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"CommandLoop\"},{\"id\":1292,\"kind\":262144,\"name\":\"startTime\",\"url\":\"classes/CommandLoop.html#startTime\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"CommandLoop\"},{\"id\":1293,\"kind\":262144,\"name\":\"endTime\",\"url\":\"classes/CommandLoop.html#endTime\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"CommandLoop\"},{\"id\":1294,\"kind\":2048,\"name\":\"unrollCommands\",\"url\":\"classes/CommandLoop.html#unrollCommands\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CommandLoop\"},{\"id\":1295,\"kind\":1024,\"name\":\"x\",\"url\":\"classes/CommandLoop.html#x\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"CommandLoop\"},{\"id\":1296,\"kind\":1024,\"name\":\"y\",\"url\":\"classes/CommandLoop.html#y\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"CommandLoop\"},{\"id\":1297,\"kind\":1024,\"name\":\"scale\",\"url\":\"classes/CommandLoop.html#scale\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"CommandLoop\"},{\"id\":1298,\"kind\":1024,\"name\":\"vectorScale\",\"url\":\"classes/CommandLoop.html#vectorScale\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"CommandLoop\"},{\"id\":1299,\"kind\":1024,\"name\":\"rotation\",\"url\":\"classes/CommandLoop.html#rotation\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"CommandLoop\"},{\"id\":1300,\"kind\":1024,\"name\":\"color\",\"url\":\"classes/CommandLoop.html#color\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"CommandLoop\"},{\"id\":1301,\"kind\":1024,\"name\":\"alpha\",\"url\":\"classes/CommandLoop.html#alpha\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"CommandLoop\"},{\"id\":1302,\"kind\":1024,\"name\":\"blendingParameters\",\"url\":\"classes/CommandLoop.html#blendingParameters\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"CommandLoop\"},{\"id\":1303,\"kind\":1024,\"name\":\"flipH\",\"url\":\"classes/CommandLoop.html#flipH\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"CommandLoop\"},{\"id\":1304,\"kind\":1024,\"name\":\"flipV\",\"url\":\"classes/CommandLoop.html#flipV\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"CommandLoop\"},{\"id\":1305,\"kind\":1024,\"name\":\"_timelines\",\"url\":\"classes/CommandLoop.html#_timelines\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"CommandLoop\"},{\"id\":1306,\"kind\":262144,\"name\":\"timelines\",\"url\":\"classes/CommandLoop.html#timelines\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"CommandLoop\"},{\"id\":1307,\"kind\":262144,\"name\":\"totalCommands\",\"url\":\"classes/CommandLoop.html#totalCommands\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"CommandLoop\"},{\"id\":1308,\"kind\":262144,\"name\":\"commands\",\"url\":\"classes/CommandLoop.html#commands\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"CommandLoop\"},{\"id\":1309,\"kind\":262144,\"name\":\"commandsStartTime\",\"url\":\"classes/CommandLoop.html#commandsStartTime\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"CommandLoop\"},{\"id\":1310,\"kind\":262144,\"name\":\"commandsEndTime\",\"url\":\"classes/CommandLoop.html#commandsEndTime\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"CommandLoop\"},{\"id\":1311,\"kind\":262144,\"name\":\"commandsDuration\",\"url\":\"classes/CommandLoop.html#commandsDuration\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"CommandLoop\"},{\"id\":1312,\"kind\":262144,\"name\":\"duration\",\"url\":\"classes/CommandLoop.html#duration\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"CommandLoop\"},{\"id\":1313,\"kind\":262144,\"name\":\"hasCommands\",\"url\":\"classes/CommandLoop.html#hasCommands\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"CommandLoop\"},{\"id\":1314,\"kind\":128,\"name\":\"CommandTimeline\",\"url\":\"classes/CommandTimeline.html\",\"classes\":\"tsd-kind-class tsd-has-type-parameter\"},{\"id\":1315,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/CommandTimeline.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-has-type-parameter\",\"parent\":\"CommandTimeline\"},{\"id\":1316,\"kind\":1024,\"name\":\"startTime\",\"url\":\"classes/CommandTimeline.html#startTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"CommandTimeline\"},{\"id\":1317,\"kind\":1024,\"name\":\"endTime\",\"url\":\"classes/CommandTimeline.html#endTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"CommandTimeline\"},{\"id\":1318,\"kind\":1024,\"name\":\"startValue\",\"url\":\"classes/CommandTimeline.html#startValue\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"CommandTimeline\"},{\"id\":1319,\"kind\":1024,\"name\":\"endValue\",\"url\":\"classes/CommandTimeline.html#endValue\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"CommandTimeline\"},{\"id\":1320,\"kind\":262144,\"name\":\"commands\",\"url\":\"classes/CommandTimeline.html#commands\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"CommandTimeline\"},{\"id\":1321,\"kind\":2048,\"name\":\"add\",\"url\":\"classes/CommandTimeline.html#add\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CommandTimeline\"},{\"id\":1322,\"kind\":262144,\"name\":\"hasCommands\",\"url\":\"classes/CommandTimeline.html#hasCommands\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"CommandTimeline\"},{\"id\":1323,\"kind\":2048,\"name\":\"[iterator]\",\"url\":\"classes/CommandTimeline.html#_iterator_\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CommandTimeline\"},{\"id\":1324,\"kind\":128,\"name\":\"CommandTimelineGroup\",\"url\":\"classes/CommandTimelineGroup.html\",\"classes\":\"tsd-kind-class\"},{\"id\":1325,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/CommandTimelineGroup.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"CommandTimelineGroup\"},{\"id\":1326,\"kind\":1024,\"name\":\"x\",\"url\":\"classes/CommandTimelineGroup.html#x\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"CommandTimelineGroup\"},{\"id\":1327,\"kind\":1024,\"name\":\"y\",\"url\":\"classes/CommandTimelineGroup.html#y\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"CommandTimelineGroup\"},{\"id\":1328,\"kind\":1024,\"name\":\"scale\",\"url\":\"classes/CommandTimelineGroup.html#scale\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"CommandTimelineGroup\"},{\"id\":1329,\"kind\":1024,\"name\":\"vectorScale\",\"url\":\"classes/CommandTimelineGroup.html#vectorScale\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"CommandTimelineGroup\"},{\"id\":1330,\"kind\":1024,\"name\":\"rotation\",\"url\":\"classes/CommandTimelineGroup.html#rotation\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"CommandTimelineGroup\"},{\"id\":1331,\"kind\":1024,\"name\":\"color\",\"url\":\"classes/CommandTimelineGroup.html#color\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"CommandTimelineGroup\"},{\"id\":1332,\"kind\":1024,\"name\":\"alpha\",\"url\":\"classes/CommandTimelineGroup.html#alpha\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"CommandTimelineGroup\"},{\"id\":1333,\"kind\":1024,\"name\":\"blendingParameters\",\"url\":\"classes/CommandTimelineGroup.html#blendingParameters\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"CommandTimelineGroup\"},{\"id\":1334,\"kind\":1024,\"name\":\"flipH\",\"url\":\"classes/CommandTimelineGroup.html#flipH\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"CommandTimelineGroup\"},{\"id\":1335,\"kind\":1024,\"name\":\"flipV\",\"url\":\"classes/CommandTimelineGroup.html#flipV\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"CommandTimelineGroup\"},{\"id\":1336,\"kind\":1024,\"name\":\"_timelines\",\"url\":\"classes/CommandTimelineGroup.html#_timelines\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"CommandTimelineGroup\"},{\"id\":1337,\"kind\":262144,\"name\":\"timelines\",\"url\":\"classes/CommandTimelineGroup.html#timelines\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"CommandTimelineGroup\"},{\"id\":1338,\"kind\":262144,\"name\":\"totalCommands\",\"url\":\"classes/CommandTimelineGroup.html#totalCommands\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"CommandTimelineGroup\"},{\"id\":1339,\"kind\":262144,\"name\":\"commands\",\"url\":\"classes/CommandTimelineGroup.html#commands\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"CommandTimelineGroup\"},{\"id\":1340,\"kind\":262144,\"name\":\"commandsStartTime\",\"url\":\"classes/CommandTimelineGroup.html#commandsStartTime\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"CommandTimelineGroup\"},{\"id\":1341,\"kind\":262144,\"name\":\"commandsEndTime\",\"url\":\"classes/CommandTimelineGroup.html#commandsEndTime\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"CommandTimelineGroup\"},{\"id\":1342,\"kind\":262144,\"name\":\"commandsDuration\",\"url\":\"classes/CommandTimelineGroup.html#commandsDuration\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"CommandTimelineGroup\"},{\"id\":1343,\"kind\":262144,\"name\":\"startTime\",\"url\":\"classes/CommandTimelineGroup.html#startTime\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"CommandTimelineGroup\"},{\"id\":1344,\"kind\":262144,\"name\":\"endTime\",\"url\":\"classes/CommandTimelineGroup.html#endTime\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"CommandTimelineGroup\"},{\"id\":1345,\"kind\":262144,\"name\":\"duration\",\"url\":\"classes/CommandTimelineGroup.html#duration\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"CommandTimelineGroup\"},{\"id\":1346,\"kind\":262144,\"name\":\"hasCommands\",\"url\":\"classes/CommandTimelineGroup.html#hasCommands\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"CommandTimelineGroup\"},{\"id\":1347,\"kind\":128,\"name\":\"CommandTrigger\",\"url\":\"classes/CommandTrigger.html\",\"classes\":\"tsd-kind-class\"},{\"id\":1348,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/CommandTrigger.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"CommandTrigger\"},{\"id\":1349,\"kind\":1024,\"name\":\"type\",\"url\":\"classes/CommandTrigger.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"CommandTrigger\"},{\"id\":1350,\"kind\":1024,\"name\":\"triggerName\",\"url\":\"classes/CommandTrigger.html#triggerName\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"CommandTrigger\"},{\"id\":1351,\"kind\":1024,\"name\":\"triggerStartTime\",\"url\":\"classes/CommandTrigger.html#triggerStartTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"CommandTrigger\"},{\"id\":1352,\"kind\":1024,\"name\":\"triggerEndTime\",\"url\":\"classes/CommandTrigger.html#triggerEndTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"CommandTrigger\"},{\"id\":1353,\"kind\":1024,\"name\":\"groupNumber\",\"url\":\"classes/CommandTrigger.html#groupNumber\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"CommandTrigger\"},{\"id\":1354,\"kind\":2048,\"name\":\"unrollCommands\",\"url\":\"classes/CommandTrigger.html#unrollCommands\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"CommandTrigger\"},{\"id\":1355,\"kind\":1024,\"name\":\"x\",\"url\":\"classes/CommandTrigger.html#x\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"CommandTrigger\"},{\"id\":1356,\"kind\":1024,\"name\":\"y\",\"url\":\"classes/CommandTrigger.html#y\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"CommandTrigger\"},{\"id\":1357,\"kind\":1024,\"name\":\"scale\",\"url\":\"classes/CommandTrigger.html#scale\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"CommandTrigger\"},{\"id\":1358,\"kind\":1024,\"name\":\"vectorScale\",\"url\":\"classes/CommandTrigger.html#vectorScale\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"CommandTrigger\"},{\"id\":1359,\"kind\":1024,\"name\":\"rotation\",\"url\":\"classes/CommandTrigger.html#rotation\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"CommandTrigger\"},{\"id\":1360,\"kind\":1024,\"name\":\"color\",\"url\":\"classes/CommandTrigger.html#color\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"CommandTrigger\"},{\"id\":1361,\"kind\":1024,\"name\":\"alpha\",\"url\":\"classes/CommandTrigger.html#alpha\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"CommandTrigger\"},{\"id\":1362,\"kind\":1024,\"name\":\"blendingParameters\",\"url\":\"classes/CommandTrigger.html#blendingParameters\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"CommandTrigger\"},{\"id\":1363,\"kind\":1024,\"name\":\"flipH\",\"url\":\"classes/CommandTrigger.html#flipH\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"CommandTrigger\"},{\"id\":1364,\"kind\":1024,\"name\":\"flipV\",\"url\":\"classes/CommandTrigger.html#flipV\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"CommandTrigger\"},{\"id\":1365,\"kind\":1024,\"name\":\"_timelines\",\"url\":\"classes/CommandTrigger.html#_timelines\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"CommandTrigger\"},{\"id\":1366,\"kind\":262144,\"name\":\"timelines\",\"url\":\"classes/CommandTrigger.html#timelines\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"CommandTrigger\"},{\"id\":1367,\"kind\":262144,\"name\":\"totalCommands\",\"url\":\"classes/CommandTrigger.html#totalCommands\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"CommandTrigger\"},{\"id\":1368,\"kind\":262144,\"name\":\"commands\",\"url\":\"classes/CommandTrigger.html#commands\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"CommandTrigger\"},{\"id\":1369,\"kind\":262144,\"name\":\"commandsStartTime\",\"url\":\"classes/CommandTrigger.html#commandsStartTime\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"CommandTrigger\"},{\"id\":1370,\"kind\":262144,\"name\":\"commandsEndTime\",\"url\":\"classes/CommandTrigger.html#commandsEndTime\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"CommandTrigger\"},{\"id\":1371,\"kind\":262144,\"name\":\"commandsDuration\",\"url\":\"classes/CommandTrigger.html#commandsDuration\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"CommandTrigger\"},{\"id\":1372,\"kind\":262144,\"name\":\"startTime\",\"url\":\"classes/CommandTrigger.html#startTime\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"CommandTrigger\"},{\"id\":1373,\"kind\":262144,\"name\":\"endTime\",\"url\":\"classes/CommandTrigger.html#endTime\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"CommandTrigger\"},{\"id\":1374,\"kind\":262144,\"name\":\"duration\",\"url\":\"classes/CommandTrigger.html#duration\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"CommandTrigger\"},{\"id\":1375,\"kind\":262144,\"name\":\"hasCommands\",\"url\":\"classes/CommandTrigger.html#hasCommands\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"CommandTrigger\"},{\"id\":1376,\"kind\":4,\"name\":\"Easing\",\"url\":\"modules/Easing.html\",\"classes\":\"tsd-kind-namespace\"},{\"id\":1377,\"kind\":64,\"name\":\"getEasingFn\",\"url\":\"modules/Easing.html#getEasingFn\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"Easing\"},{\"id\":1378,\"kind\":4194304,\"name\":\"EasingFn\",\"url\":\"modules/Easing.html#EasingFn\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace\",\"parent\":\"Easing\"},{\"id\":1379,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/Easing.html#EasingFn.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"Easing.EasingFn\"},{\"id\":1380,\"kind\":64,\"name\":\"linear\",\"url\":\"modules/Easing.html#linear\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"Easing\"},{\"id\":1381,\"kind\":64,\"name\":\"inQuad\",\"url\":\"modules/Easing.html#inQuad\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"Easing\"},{\"id\":1382,\"kind\":64,\"name\":\"outQuad\",\"url\":\"modules/Easing.html#outQuad\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"Easing\"},{\"id\":1383,\"kind\":64,\"name\":\"inOutQuad\",\"url\":\"modules/Easing.html#inOutQuad\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"Easing\"},{\"id\":1384,\"kind\":64,\"name\":\"inCubic\",\"url\":\"modules/Easing.html#inCubic\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"Easing\"},{\"id\":1385,\"kind\":64,\"name\":\"outCubic\",\"url\":\"modules/Easing.html#outCubic\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"Easing\"},{\"id\":1386,\"kind\":64,\"name\":\"inOutCubic\",\"url\":\"modules/Easing.html#inOutCubic\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"Easing\"},{\"id\":1387,\"kind\":64,\"name\":\"inQuart\",\"url\":\"modules/Easing.html#inQuart\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"Easing\"},{\"id\":1388,\"kind\":64,\"name\":\"outQuart\",\"url\":\"modules/Easing.html#outQuart\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"Easing\"},{\"id\":1389,\"kind\":64,\"name\":\"inOutQuart\",\"url\":\"modules/Easing.html#inOutQuart\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"Easing\"},{\"id\":1390,\"kind\":64,\"name\":\"inQuint\",\"url\":\"modules/Easing.html#inQuint\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"Easing\"},{\"id\":1391,\"kind\":64,\"name\":\"outQuint\",\"url\":\"modules/Easing.html#outQuint\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"Easing\"},{\"id\":1392,\"kind\":64,\"name\":\"inOutQuint\",\"url\":\"modules/Easing.html#inOutQuint\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"Easing\"},{\"id\":1393,\"kind\":64,\"name\":\"inSine\",\"url\":\"modules/Easing.html#inSine\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"Easing\"},{\"id\":1394,\"kind\":64,\"name\":\"outSine\",\"url\":\"modules/Easing.html#outSine\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"Easing\"},{\"id\":1395,\"kind\":64,\"name\":\"inOutSine\",\"url\":\"modules/Easing.html#inOutSine\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"Easing\"},{\"id\":1396,\"kind\":64,\"name\":\"inExpo\",\"url\":\"modules/Easing.html#inExpo\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"Easing\"},{\"id\":1397,\"kind\":64,\"name\":\"outExpo\",\"url\":\"modules/Easing.html#outExpo\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"Easing\"},{\"id\":1398,\"kind\":64,\"name\":\"inOutExpo\",\"url\":\"modules/Easing.html#inOutExpo\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"Easing\"},{\"id\":1399,\"kind\":64,\"name\":\"inCirc\",\"url\":\"modules/Easing.html#inCirc\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"Easing\"},{\"id\":1400,\"kind\":64,\"name\":\"outCirc\",\"url\":\"modules/Easing.html#outCirc\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"Easing\"},{\"id\":1401,\"kind\":64,\"name\":\"inOutCirc\",\"url\":\"modules/Easing.html#inOutCirc\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"Easing\"},{\"id\":1402,\"kind\":64,\"name\":\"inElastic\",\"url\":\"modules/Easing.html#inElastic\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"Easing\"},{\"id\":1403,\"kind\":64,\"name\":\"outElastic\",\"url\":\"modules/Easing.html#outElastic\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"Easing\"},{\"id\":1404,\"kind\":64,\"name\":\"outElasticHalf\",\"url\":\"modules/Easing.html#outElasticHalf\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"Easing\"},{\"id\":1405,\"kind\":64,\"name\":\"outElasticQuarter\",\"url\":\"modules/Easing.html#outElasticQuarter\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"Easing\"},{\"id\":1406,\"kind\":64,\"name\":\"inOutElastic\",\"url\":\"modules/Easing.html#inOutElastic\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"Easing\"},{\"id\":1407,\"kind\":64,\"name\":\"inBack\",\"url\":\"modules/Easing.html#inBack\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"Easing\"},{\"id\":1408,\"kind\":64,\"name\":\"outBack\",\"url\":\"modules/Easing.html#outBack\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"Easing\"},{\"id\":1409,\"kind\":64,\"name\":\"inOutBack\",\"url\":\"modules/Easing.html#inOutBack\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"Easing\"},{\"id\":1410,\"kind\":64,\"name\":\"inBounce\",\"url\":\"modules/Easing.html#inBounce\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"Easing\"},{\"id\":1411,\"kind\":64,\"name\":\"outBounce\",\"url\":\"modules/Easing.html#outBounce\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"Easing\"},{\"id\":1412,\"kind\":64,\"name\":\"inOutBounce\",\"url\":\"modules/Easing.html#inOutBounce\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"Easing\"},{\"id\":1413,\"kind\":64,\"name\":\"outPow10\",\"url\":\"modules/Easing.html#outPow10\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"Easing\"},{\"id\":1414,\"kind\":8,\"name\":\"EasingType\",\"url\":\"enums/EasingType.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":1415,\"kind\":16,\"name\":\"None\",\"url\":\"enums/EasingType.html#None\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"EasingType\"},{\"id\":1416,\"kind\":16,\"name\":\"Out\",\"url\":\"enums/EasingType.html#Out\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"EasingType\"},{\"id\":1417,\"kind\":16,\"name\":\"In\",\"url\":\"enums/EasingType.html#In\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"EasingType\"},{\"id\":1418,\"kind\":16,\"name\":\"InQuad\",\"url\":\"enums/EasingType.html#InQuad\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"EasingType\"},{\"id\":1419,\"kind\":16,\"name\":\"OutQuad\",\"url\":\"enums/EasingType.html#OutQuad\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"EasingType\"},{\"id\":1420,\"kind\":16,\"name\":\"InOutQuad\",\"url\":\"enums/EasingType.html#InOutQuad\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"EasingType\"},{\"id\":1421,\"kind\":16,\"name\":\"InCubic\",\"url\":\"enums/EasingType.html#InCubic\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"EasingType\"},{\"id\":1422,\"kind\":16,\"name\":\"OutCubic\",\"url\":\"enums/EasingType.html#OutCubic\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"EasingType\"},{\"id\":1423,\"kind\":16,\"name\":\"InOutCubic\",\"url\":\"enums/EasingType.html#InOutCubic\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"EasingType\"},{\"id\":1424,\"kind\":16,\"name\":\"InQuart\",\"url\":\"enums/EasingType.html#InQuart\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"EasingType\"},{\"id\":1425,\"kind\":16,\"name\":\"OutQuart\",\"url\":\"enums/EasingType.html#OutQuart\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"EasingType\"},{\"id\":1426,\"kind\":16,\"name\":\"InOutQuart\",\"url\":\"enums/EasingType.html#InOutQuart\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"EasingType\"},{\"id\":1427,\"kind\":16,\"name\":\"InQuint\",\"url\":\"enums/EasingType.html#InQuint\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"EasingType\"},{\"id\":1428,\"kind\":16,\"name\":\"OutQuint\",\"url\":\"enums/EasingType.html#OutQuint\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"EasingType\"},{\"id\":1429,\"kind\":16,\"name\":\"InOutQuint\",\"url\":\"enums/EasingType.html#InOutQuint\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"EasingType\"},{\"id\":1430,\"kind\":16,\"name\":\"InSine\",\"url\":\"enums/EasingType.html#InSine\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"EasingType\"},{\"id\":1431,\"kind\":16,\"name\":\"OutSine\",\"url\":\"enums/EasingType.html#OutSine\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"EasingType\"},{\"id\":1432,\"kind\":16,\"name\":\"InOutSine\",\"url\":\"enums/EasingType.html#InOutSine\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"EasingType\"},{\"id\":1433,\"kind\":16,\"name\":\"InExpo\",\"url\":\"enums/EasingType.html#InExpo\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"EasingType\"},{\"id\":1434,\"kind\":16,\"name\":\"OutExpo\",\"url\":\"enums/EasingType.html#OutExpo\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"EasingType\"},{\"id\":1435,\"kind\":16,\"name\":\"InOutExpo\",\"url\":\"enums/EasingType.html#InOutExpo\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"EasingType\"},{\"id\":1436,\"kind\":16,\"name\":\"InCirc\",\"url\":\"enums/EasingType.html#InCirc\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"EasingType\"},{\"id\":1437,\"kind\":16,\"name\":\"OutCirc\",\"url\":\"enums/EasingType.html#OutCirc\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"EasingType\"},{\"id\":1438,\"kind\":16,\"name\":\"InOutCirc\",\"url\":\"enums/EasingType.html#InOutCirc\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"EasingType\"},{\"id\":1439,\"kind\":16,\"name\":\"InElastic\",\"url\":\"enums/EasingType.html#InElastic\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"EasingType\"},{\"id\":1440,\"kind\":16,\"name\":\"OutElastic\",\"url\":\"enums/EasingType.html#OutElastic\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"EasingType\"},{\"id\":1441,\"kind\":16,\"name\":\"OutElasticHalf\",\"url\":\"enums/EasingType.html#OutElasticHalf\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"EasingType\"},{\"id\":1442,\"kind\":16,\"name\":\"OutElasticQuarter\",\"url\":\"enums/EasingType.html#OutElasticQuarter\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"EasingType\"},{\"id\":1443,\"kind\":16,\"name\":\"InOutElastic\",\"url\":\"enums/EasingType.html#InOutElastic\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"EasingType\"},{\"id\":1444,\"kind\":16,\"name\":\"InBack\",\"url\":\"enums/EasingType.html#InBack\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"EasingType\"},{\"id\":1445,\"kind\":16,\"name\":\"OutBack\",\"url\":\"enums/EasingType.html#OutBack\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"EasingType\"},{\"id\":1446,\"kind\":16,\"name\":\"InOutBack\",\"url\":\"enums/EasingType.html#InOutBack\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"EasingType\"},{\"id\":1447,\"kind\":16,\"name\":\"InBounce\",\"url\":\"enums/EasingType.html#InBounce\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"EasingType\"},{\"id\":1448,\"kind\":16,\"name\":\"OutBounce\",\"url\":\"enums/EasingType.html#OutBounce\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"EasingType\"},{\"id\":1449,\"kind\":16,\"name\":\"InOutBounce\",\"url\":\"enums/EasingType.html#InOutBounce\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"EasingType\"},{\"id\":1450,\"kind\":16,\"name\":\"OutPow10\",\"url\":\"enums/EasingType.html#OutPow10\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"EasingType\"},{\"id\":1451,\"kind\":128,\"name\":\"StoryboardAnimation\",\"url\":\"classes/StoryboardAnimation.html\",\"classes\":\"tsd-kind-class\"},{\"id\":1452,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/StoryboardAnimation.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"StoryboardAnimation\"},{\"id\":1453,\"kind\":1024,\"name\":\"frameCount\",\"url\":\"classes/StoryboardAnimation.html#frameCount\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"StoryboardAnimation\"},{\"id\":1454,\"kind\":1024,\"name\":\"frameDelay\",\"url\":\"classes/StoryboardAnimation.html#frameDelay\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"StoryboardAnimation\"},{\"id\":1455,\"kind\":1024,\"name\":\"loopType\",\"url\":\"classes/StoryboardAnimation.html#loopType\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"StoryboardAnimation\"},{\"id\":1456,\"kind\":1024,\"name\":\"origin\",\"url\":\"classes/StoryboardAnimation.html#origin\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"StoryboardAnimation\"},{\"id\":1457,\"kind\":1024,\"name\":\"anchor\",\"url\":\"classes/StoryboardAnimation.html#anchor\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"StoryboardAnimation\"},{\"id\":1458,\"kind\":1024,\"name\":\"startTime\",\"url\":\"classes/StoryboardAnimation.html#startTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"StoryboardAnimation\"},{\"id\":1459,\"kind\":1024,\"name\":\"endTime\",\"url\":\"classes/StoryboardAnimation.html#endTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"StoryboardAnimation\"},{\"id\":1460,\"kind\":1024,\"name\":\"filePath\",\"url\":\"classes/StoryboardAnimation.html#filePath\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"StoryboardAnimation\"},{\"id\":1461,\"kind\":1024,\"name\":\"commands\",\"url\":\"classes/StoryboardAnimation.html#commands\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"StoryboardAnimation\"},{\"id\":1462,\"kind\":1024,\"name\":\"timelineGroup\",\"url\":\"classes/StoryboardAnimation.html#timelineGroup\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"StoryboardAnimation\"},{\"id\":1463,\"kind\":1024,\"name\":\"loops\",\"url\":\"classes/StoryboardAnimation.html#loops\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"StoryboardAnimation\"},{\"id\":1464,\"kind\":1024,\"name\":\"triggers\",\"url\":\"classes/StoryboardAnimation.html#triggers\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"StoryboardAnimation\"},{\"id\":1465,\"kind\":1024,\"name\":\"startPosition\",\"url\":\"classes/StoryboardAnimation.html#startPosition\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"StoryboardAnimation\"},{\"id\":1466,\"kind\":1024,\"name\":\"scale\",\"url\":\"classes/StoryboardAnimation.html#scale\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"StoryboardAnimation\"},{\"id\":1467,\"kind\":1024,\"name\":\"color\",\"url\":\"classes/StoryboardAnimation.html#color\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"StoryboardAnimation\"},{\"id\":1468,\"kind\":1024,\"name\":\"rotation\",\"url\":\"classes/StoryboardAnimation.html#rotation\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"StoryboardAnimation\"},{\"id\":1469,\"kind\":1024,\"name\":\"flipX\",\"url\":\"classes/StoryboardAnimation.html#flipX\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"StoryboardAnimation\"},{\"id\":1470,\"kind\":1024,\"name\":\"flipY\",\"url\":\"classes/StoryboardAnimation.html#flipY\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"StoryboardAnimation\"},{\"id\":1471,\"kind\":1024,\"name\":\"isAdditive\",\"url\":\"classes/StoryboardAnimation.html#isAdditive\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"StoryboardAnimation\"},{\"id\":1472,\"kind\":262144,\"name\":\"startX\",\"url\":\"classes/StoryboardAnimation.html#startX\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"StoryboardAnimation\"},{\"id\":1473,\"kind\":262144,\"name\":\"startY\",\"url\":\"classes/StoryboardAnimation.html#startY\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"StoryboardAnimation\"},{\"id\":1474,\"kind\":262144,\"name\":\"duration\",\"url\":\"classes/StoryboardAnimation.html#duration\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"StoryboardAnimation\"},{\"id\":1475,\"kind\":262144,\"name\":\"hasCommands\",\"url\":\"classes/StoryboardAnimation.html#hasCommands\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"StoryboardAnimation\"},{\"id\":1476,\"kind\":262144,\"name\":\"isDrawable\",\"url\":\"classes/StoryboardAnimation.html#isDrawable\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"StoryboardAnimation\"},{\"id\":1477,\"kind\":2048,\"name\":\"addLoop\",\"url\":\"classes/StoryboardAnimation.html#addLoop\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"StoryboardAnimation\"},{\"id\":1478,\"kind\":2048,\"name\":\"addTrigger\",\"url\":\"classes/StoryboardAnimation.html#addTrigger\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"StoryboardAnimation\"},{\"id\":1479,\"kind\":2048,\"name\":\"updateCommands\",\"url\":\"classes/StoryboardAnimation.html#updateCommands\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"StoryboardAnimation\"},{\"id\":1480,\"kind\":2048,\"name\":\"adjustTimesToCommands\",\"url\":\"classes/StoryboardAnimation.html#adjustTimesToCommands\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"StoryboardAnimation\"},{\"id\":1481,\"kind\":2048,\"name\":\"resetValuesToCommands\",\"url\":\"classes/StoryboardAnimation.html#resetValuesToCommands\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"StoryboardAnimation\"},{\"id\":1482,\"kind\":2048,\"name\":\"setValueFromCommand\",\"url\":\"classes/StoryboardAnimation.html#setValueFromCommand\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"StoryboardAnimation\"},{\"id\":1483,\"kind\":128,\"name\":\"StoryboardSample\",\"url\":\"classes/StoryboardSample.html\",\"classes\":\"tsd-kind-class\"},{\"id\":1484,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/StoryboardSample.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"StoryboardSample\"},{\"id\":1485,\"kind\":1024,\"name\":\"startTime\",\"url\":\"classes/StoryboardSample.html#startTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"StoryboardSample\"},{\"id\":1486,\"kind\":1024,\"name\":\"volume\",\"url\":\"classes/StoryboardSample.html#volume\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"StoryboardSample\"},{\"id\":1487,\"kind\":1024,\"name\":\"filePath\",\"url\":\"classes/StoryboardSample.html#filePath\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"StoryboardSample\"},{\"id\":1488,\"kind\":262144,\"name\":\"isDrawable\",\"url\":\"classes/StoryboardSample.html#isDrawable\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"StoryboardSample\"},{\"id\":1489,\"kind\":128,\"name\":\"StoryboardSprite\",\"url\":\"classes/StoryboardSprite.html\",\"classes\":\"tsd-kind-class\"},{\"id\":1490,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/StoryboardSprite.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"StoryboardSprite\"},{\"id\":1491,\"kind\":1024,\"name\":\"origin\",\"url\":\"classes/StoryboardSprite.html#origin\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"StoryboardSprite\"},{\"id\":1492,\"kind\":1024,\"name\":\"anchor\",\"url\":\"classes/StoryboardSprite.html#anchor\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"StoryboardSprite\"},{\"id\":1493,\"kind\":1024,\"name\":\"startTime\",\"url\":\"classes/StoryboardSprite.html#startTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"StoryboardSprite\"},{\"id\":1494,\"kind\":1024,\"name\":\"endTime\",\"url\":\"classes/StoryboardSprite.html#endTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"StoryboardSprite\"},{\"id\":1495,\"kind\":1024,\"name\":\"filePath\",\"url\":\"classes/StoryboardSprite.html#filePath\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"StoryboardSprite\"},{\"id\":1496,\"kind\":1024,\"name\":\"commands\",\"url\":\"classes/StoryboardSprite.html#commands\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"StoryboardSprite\"},{\"id\":1497,\"kind\":1024,\"name\":\"timelineGroup\",\"url\":\"classes/StoryboardSprite.html#timelineGroup\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"StoryboardSprite\"},{\"id\":1498,\"kind\":1024,\"name\":\"loops\",\"url\":\"classes/StoryboardSprite.html#loops\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"StoryboardSprite\"},{\"id\":1499,\"kind\":1024,\"name\":\"triggers\",\"url\":\"classes/StoryboardSprite.html#triggers\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"StoryboardSprite\"},{\"id\":1500,\"kind\":1024,\"name\":\"startPosition\",\"url\":\"classes/StoryboardSprite.html#startPosition\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"StoryboardSprite\"},{\"id\":1501,\"kind\":1024,\"name\":\"scale\",\"url\":\"classes/StoryboardSprite.html#scale\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"StoryboardSprite\"},{\"id\":1502,\"kind\":1024,\"name\":\"color\",\"url\":\"classes/StoryboardSprite.html#color\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"StoryboardSprite\"},{\"id\":1503,\"kind\":1024,\"name\":\"rotation\",\"url\":\"classes/StoryboardSprite.html#rotation\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"StoryboardSprite\"},{\"id\":1504,\"kind\":1024,\"name\":\"flipX\",\"url\":\"classes/StoryboardSprite.html#flipX\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"StoryboardSprite\"},{\"id\":1505,\"kind\":1024,\"name\":\"flipY\",\"url\":\"classes/StoryboardSprite.html#flipY\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"StoryboardSprite\"},{\"id\":1506,\"kind\":1024,\"name\":\"isAdditive\",\"url\":\"classes/StoryboardSprite.html#isAdditive\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"StoryboardSprite\"},{\"id\":1507,\"kind\":262144,\"name\":\"startX\",\"url\":\"classes/StoryboardSprite.html#startX\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"StoryboardSprite\"},{\"id\":1508,\"kind\":262144,\"name\":\"startY\",\"url\":\"classes/StoryboardSprite.html#startY\",\"classes\":\"tsd-kind-accessor tsd-parent-kind-class\",\"parent\":\"StoryboardSprite\"},{\"id\":1509,\"kind\":262144,\"name\":\"duration\",\"url\":\"classes/StoryboardSprite.html#duration\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"StoryboardSprite\"},{\"id\":1510,\"kind\":262144,\"name\":\"hasCommands\",\"url\":\"classes/StoryboardSprite.html#hasCommands\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"StoryboardSprite\"},{\"id\":1511,\"kind\":262144,\"name\":\"isDrawable\",\"url\":\"classes/StoryboardSprite.html#isDrawable\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"StoryboardSprite\"},{\"id\":1512,\"kind\":2048,\"name\":\"addLoop\",\"url\":\"classes/StoryboardSprite.html#addLoop\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"StoryboardSprite\"},{\"id\":1513,\"kind\":2048,\"name\":\"addTrigger\",\"url\":\"classes/StoryboardSprite.html#addTrigger\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"StoryboardSprite\"},{\"id\":1514,\"kind\":2048,\"name\":\"updateCommands\",\"url\":\"classes/StoryboardSprite.html#updateCommands\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"StoryboardSprite\"},{\"id\":1515,\"kind\":2048,\"name\":\"adjustTimesToCommands\",\"url\":\"classes/StoryboardSprite.html#adjustTimesToCommands\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"StoryboardSprite\"},{\"id\":1516,\"kind\":2048,\"name\":\"resetValuesToCommands\",\"url\":\"classes/StoryboardSprite.html#resetValuesToCommands\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"StoryboardSprite\"},{\"id\":1517,\"kind\":2048,\"name\":\"setValueFromCommand\",\"url\":\"classes/StoryboardSprite.html#setValueFromCommand\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"StoryboardSprite\"},{\"id\":1518,\"kind\":128,\"name\":\"StoryboardVideo\",\"url\":\"classes/StoryboardVideo.html\",\"classes\":\"tsd-kind-class\"},{\"id\":1519,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/StoryboardVideo.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"StoryboardVideo\"},{\"id\":1520,\"kind\":1024,\"name\":\"startTime\",\"url\":\"classes/StoryboardVideo.html#startTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"StoryboardVideo\"},{\"id\":1521,\"kind\":1024,\"name\":\"filePath\",\"url\":\"classes/StoryboardVideo.html#filePath\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"StoryboardVideo\"},{\"id\":1522,\"kind\":262144,\"name\":\"isDrawable\",\"url\":\"classes/StoryboardVideo.html#isDrawable\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"StoryboardVideo\"},{\"id\":1523,\"kind\":256,\"name\":\"IHasCommands\",\"url\":\"interfaces/IHasCommands.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":1524,\"kind\":1024,\"name\":\"commands\",\"url\":\"interfaces/IHasCommands.html#commands\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IHasCommands\"},{\"id\":1525,\"kind\":1024,\"name\":\"timelineGroup\",\"url\":\"interfaces/IHasCommands.html#timelineGroup\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IHasCommands\"},{\"id\":1526,\"kind\":1024,\"name\":\"loops\",\"url\":\"interfaces/IHasCommands.html#loops\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IHasCommands\"},{\"id\":1527,\"kind\":1024,\"name\":\"triggers\",\"url\":\"interfaces/IHasCommands.html#triggers\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IHasCommands\"},{\"id\":1528,\"kind\":2048,\"name\":\"updateCommands\",\"url\":\"interfaces/IHasCommands.html#updateCommands\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"IHasCommands\"},{\"id\":1529,\"kind\":1024,\"name\":\"hasCommands\",\"url\":\"interfaces/IHasCommands.html#hasCommands\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IHasCommands\"},{\"id\":1530,\"kind\":1024,\"name\":\"startTime\",\"url\":\"interfaces/IHasCommands.html#startTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IHasCommands\"},{\"id\":1531,\"kind\":1024,\"name\":\"filePath\",\"url\":\"interfaces/IHasCommands.html#filePath\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IHasCommands\"},{\"id\":1532,\"kind\":1024,\"name\":\"isDrawable\",\"url\":\"interfaces/IHasCommands.html#isDrawable\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IHasCommands\"},{\"id\":1533,\"kind\":256,\"name\":\"IStoryboardElement\",\"url\":\"interfaces/IStoryboardElement.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":1534,\"kind\":1024,\"name\":\"startTime\",\"url\":\"interfaces/IStoryboardElement.html#startTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IStoryboardElement\"},{\"id\":1535,\"kind\":1024,\"name\":\"filePath\",\"url\":\"interfaces/IStoryboardElement.html#filePath\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IStoryboardElement\"},{\"id\":1536,\"kind\":1024,\"name\":\"isDrawable\",\"url\":\"interfaces/IStoryboardElement.html#isDrawable\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IStoryboardElement\"},{\"id\":1537,\"kind\":256,\"name\":\"IStoryboardElementWithDuration\",\"url\":\"interfaces/IStoryboardElementWithDuration.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":1538,\"kind\":1024,\"name\":\"endTime\",\"url\":\"interfaces/IStoryboardElementWithDuration.html#endTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IStoryboardElementWithDuration\"},{\"id\":1539,\"kind\":1024,\"name\":\"duration\",\"url\":\"interfaces/IStoryboardElementWithDuration.html#duration\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IStoryboardElementWithDuration\"},{\"id\":1540,\"kind\":1024,\"name\":\"startTime\",\"url\":\"interfaces/IStoryboardElementWithDuration.html#startTime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IStoryboardElementWithDuration\"},{\"id\":1541,\"kind\":1024,\"name\":\"filePath\",\"url\":\"interfaces/IStoryboardElementWithDuration.html#filePath\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IStoryboardElementWithDuration\"},{\"id\":1542,\"kind\":1024,\"name\":\"isDrawable\",\"url\":\"interfaces/IStoryboardElementWithDuration.html#isDrawable\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IStoryboardElementWithDuration\"},{\"id\":1543,\"kind\":8,\"name\":\"Anchor\",\"url\":\"enums/Anchor.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":1544,\"kind\":16,\"name\":\"y0\",\"url\":\"enums/Anchor.html#y0\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Anchor\"},{\"id\":1545,\"kind\":16,\"name\":\"y1\",\"url\":\"enums/Anchor.html#y1\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Anchor\"},{\"id\":1546,\"kind\":16,\"name\":\"y2\",\"url\":\"enums/Anchor.html#y2\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Anchor\"},{\"id\":1547,\"kind\":16,\"name\":\"x0\",\"url\":\"enums/Anchor.html#x0\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Anchor\"},{\"id\":1548,\"kind\":16,\"name\":\"x1\",\"url\":\"enums/Anchor.html#x1\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Anchor\"},{\"id\":1549,\"kind\":16,\"name\":\"x2\",\"url\":\"enums/Anchor.html#x2\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Anchor\"},{\"id\":1550,\"kind\":16,\"name\":\"Custom\",\"url\":\"enums/Anchor.html#Custom\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Anchor\"},{\"id\":1551,\"kind\":16,\"name\":\"TopLeft\",\"url\":\"enums/Anchor.html#TopLeft\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Anchor\"},{\"id\":1552,\"kind\":16,\"name\":\"TopCentre\",\"url\":\"enums/Anchor.html#TopCentre\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Anchor\"},{\"id\":1553,\"kind\":16,\"name\":\"TopRight\",\"url\":\"enums/Anchor.html#TopRight\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Anchor\"},{\"id\":1554,\"kind\":16,\"name\":\"CentreLeft\",\"url\":\"enums/Anchor.html#CentreLeft\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Anchor\"},{\"id\":1555,\"kind\":16,\"name\":\"Centre\",\"url\":\"enums/Anchor.html#Centre\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Anchor\"},{\"id\":1556,\"kind\":16,\"name\":\"CentreRight\",\"url\":\"enums/Anchor.html#CentreRight\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Anchor\"},{\"id\":1557,\"kind\":16,\"name\":\"BottomLeft\",\"url\":\"enums/Anchor.html#BottomLeft\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Anchor\"},{\"id\":1558,\"kind\":16,\"name\":\"BottomCentre\",\"url\":\"enums/Anchor.html#BottomCentre\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Anchor\"},{\"id\":1559,\"kind\":16,\"name\":\"BottomRight\",\"url\":\"enums/Anchor.html#BottomRight\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Anchor\"},{\"id\":1560,\"kind\":8,\"name\":\"CommandType\",\"url\":\"enums/CommandType.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":1561,\"kind\":16,\"name\":\"None\",\"url\":\"enums/CommandType.html#None\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CommandType\"},{\"id\":1562,\"kind\":16,\"name\":\"Movement\",\"url\":\"enums/CommandType.html#Movement\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CommandType\"},{\"id\":1563,\"kind\":16,\"name\":\"MovementX\",\"url\":\"enums/CommandType.html#MovementX\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CommandType\"},{\"id\":1564,\"kind\":16,\"name\":\"MovementY\",\"url\":\"enums/CommandType.html#MovementY\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CommandType\"},{\"id\":1565,\"kind\":16,\"name\":\"Fade\",\"url\":\"enums/CommandType.html#Fade\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CommandType\"},{\"id\":1566,\"kind\":16,\"name\":\"Scale\",\"url\":\"enums/CommandType.html#Scale\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CommandType\"},{\"id\":1567,\"kind\":16,\"name\":\"VectorScale\",\"url\":\"enums/CommandType.html#VectorScale\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CommandType\"},{\"id\":1568,\"kind\":16,\"name\":\"Rotation\",\"url\":\"enums/CommandType.html#Rotation\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CommandType\"},{\"id\":1569,\"kind\":16,\"name\":\"Color\",\"url\":\"enums/CommandType.html#Color\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CommandType\"},{\"id\":1570,\"kind\":16,\"name\":\"Parameter\",\"url\":\"enums/CommandType.html#Parameter\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CommandType\"},{\"id\":1571,\"kind\":8,\"name\":\"CompoundType\",\"url\":\"enums/CompoundType.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":1572,\"kind\":16,\"name\":\"None\",\"url\":\"enums/CompoundType.html#None\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CompoundType\"},{\"id\":1573,\"kind\":16,\"name\":\"Loop\",\"url\":\"enums/CompoundType.html#Loop\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CompoundType\"},{\"id\":1574,\"kind\":16,\"name\":\"Trigger\",\"url\":\"enums/CompoundType.html#Trigger\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CompoundType\"},{\"id\":1575,\"kind\":8,\"name\":\"EventType\",\"url\":\"enums/EventType.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":1576,\"kind\":16,\"name\":\"Background\",\"url\":\"enums/EventType.html#Background\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"EventType\"},{\"id\":1577,\"kind\":16,\"name\":\"Video\",\"url\":\"enums/EventType.html#Video\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"EventType\"},{\"id\":1578,\"kind\":16,\"name\":\"Break\",\"url\":\"enums/EventType.html#Break\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"EventType\"},{\"id\":1579,\"kind\":16,\"name\":\"Colour\",\"url\":\"enums/EventType.html#Colour\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"EventType\"},{\"id\":1580,\"kind\":16,\"name\":\"Sprite\",\"url\":\"enums/EventType.html#Sprite\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"EventType\"},{\"id\":1581,\"kind\":16,\"name\":\"Sample\",\"url\":\"enums/EventType.html#Sample\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"EventType\"},{\"id\":1582,\"kind\":16,\"name\":\"Animation\",\"url\":\"enums/EventType.html#Animation\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"EventType\"},{\"id\":1583,\"kind\":16,\"name\":\"StoryboardCommand\",\"url\":\"enums/EventType.html#StoryboardCommand\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"EventType\"},{\"id\":1584,\"kind\":8,\"name\":\"LayerType\",\"url\":\"enums/LayerType.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":1585,\"kind\":16,\"name\":\"Background\",\"url\":\"enums/LayerType.html#Background\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"LayerType\"},{\"id\":1586,\"kind\":16,\"name\":\"Fail\",\"url\":\"enums/LayerType.html#Fail\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"LayerType\"},{\"id\":1587,\"kind\":16,\"name\":\"Pass\",\"url\":\"enums/LayerType.html#Pass\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"LayerType\"},{\"id\":1588,\"kind\":16,\"name\":\"Foreground\",\"url\":\"enums/LayerType.html#Foreground\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"LayerType\"},{\"id\":1589,\"kind\":16,\"name\":\"Overlay\",\"url\":\"enums/LayerType.html#Overlay\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"LayerType\"},{\"id\":1590,\"kind\":16,\"name\":\"Video\",\"url\":\"enums/LayerType.html#Video\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"LayerType\"},{\"id\":1591,\"kind\":8,\"name\":\"LoopType\",\"url\":\"enums/LoopType.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":1592,\"kind\":16,\"name\":\"LoopForever\",\"url\":\"enums/LoopType.html#LoopForever\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"LoopType\"},{\"id\":1593,\"kind\":16,\"name\":\"LoopOnce\",\"url\":\"enums/LoopType.html#LoopOnce\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"LoopType\"},{\"id\":1594,\"kind\":8,\"name\":\"Origins\",\"url\":\"enums/Origins.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":1595,\"kind\":16,\"name\":\"TopLeft\",\"url\":\"enums/Origins.html#TopLeft\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Origins\"},{\"id\":1596,\"kind\":16,\"name\":\"Centre\",\"url\":\"enums/Origins.html#Centre\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Origins\"},{\"id\":1597,\"kind\":16,\"name\":\"CentreLeft\",\"url\":\"enums/Origins.html#CentreLeft\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Origins\"},{\"id\":1598,\"kind\":16,\"name\":\"TopRight\",\"url\":\"enums/Origins.html#TopRight\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Origins\"},{\"id\":1599,\"kind\":16,\"name\":\"BottomCentre\",\"url\":\"enums/Origins.html#BottomCentre\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Origins\"},{\"id\":1600,\"kind\":16,\"name\":\"TopCentre\",\"url\":\"enums/Origins.html#TopCentre\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Origins\"},{\"id\":1601,\"kind\":16,\"name\":\"Custom\",\"url\":\"enums/Origins.html#Custom\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Origins\"},{\"id\":1602,\"kind\":16,\"name\":\"CentreRight\",\"url\":\"enums/Origins.html#CentreRight\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Origins\"},{\"id\":1603,\"kind\":16,\"name\":\"BottomLeft\",\"url\":\"enums/Origins.html#BottomLeft\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Origins\"},{\"id\":1604,\"kind\":16,\"name\":\"BottomRight\",\"url\":\"enums/Origins.html#BottomRight\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Origins\"},{\"id\":1605,\"kind\":8,\"name\":\"ParameterType\",\"url\":\"enums/ParameterType.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":1606,\"kind\":16,\"name\":\"None\",\"url\":\"enums/ParameterType.html#None\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ParameterType\"},{\"id\":1607,\"kind\":16,\"name\":\"HorizontalFlip\",\"url\":\"enums/ParameterType.html#HorizontalFlip\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ParameterType\"},{\"id\":1608,\"kind\":16,\"name\":\"VerticalFlip\",\"url\":\"enums/ParameterType.html#VerticalFlip\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ParameterType\"},{\"id\":1609,\"kind\":16,\"name\":\"BlendingMode\",\"url\":\"enums/ParameterType.html#BlendingMode\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ParameterType\"},{\"id\":1610,\"kind\":128,\"name\":\"Storyboard\",\"url\":\"classes/Storyboard.html\",\"classes\":\"tsd-kind-class\"},{\"id\":1611,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Storyboard.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"Storyboard\"},{\"id\":1612,\"kind\":1024,\"name\":\"variables\",\"url\":\"classes/Storyboard.html#variables\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Storyboard\"},{\"id\":1613,\"kind\":1024,\"name\":\"colors\",\"url\":\"classes/Storyboard.html#colors\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Storyboard\"},{\"id\":1614,\"kind\":1024,\"name\":\"useSkinSprites\",\"url\":\"classes/Storyboard.html#useSkinSprites\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Storyboard\"},{\"id\":1615,\"kind\":1024,\"name\":\"minimumLayerDepth\",\"url\":\"classes/Storyboard.html#minimumLayerDepth\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Storyboard\"},{\"id\":1616,\"kind\":1024,\"name\":\"fileFormat\",\"url\":\"classes/Storyboard.html#fileFormat\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Storyboard\"},{\"id\":1617,\"kind\":262144,\"name\":\"layers\",\"url\":\"classes/Storyboard.html#layers\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"Storyboard\"},{\"id\":1618,\"kind\":262144,\"name\":\"hasDrawable\",\"url\":\"classes/Storyboard.html#hasDrawable\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"Storyboard\"},{\"id\":1619,\"kind\":262144,\"name\":\"hasVariables\",\"url\":\"classes/Storyboard.html#hasVariables\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"Storyboard\"},{\"id\":1620,\"kind\":262144,\"name\":\"earliestEventTime\",\"url\":\"classes/Storyboard.html#earliestEventTime\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"Storyboard\"},{\"id\":1621,\"kind\":262144,\"name\":\"latestEventTime\",\"url\":\"classes/Storyboard.html#latestEventTime\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"Storyboard\"},{\"id\":1622,\"kind\":2048,\"name\":\"addLayer\",\"url\":\"classes/Storyboard.html#addLayer\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Storyboard\"},{\"id\":1623,\"kind\":2048,\"name\":\"getLayerByType\",\"url\":\"classes/Storyboard.html#getLayerByType\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Storyboard\"},{\"id\":1624,\"kind\":2048,\"name\":\"getLayerByName\",\"url\":\"classes/Storyboard.html#getLayerByName\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Storyboard\"},{\"id\":1625,\"kind\":128,\"name\":\"StoryboardLayer\",\"url\":\"classes/StoryboardLayer.html\",\"classes\":\"tsd-kind-class\"},{\"id\":1626,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/StoryboardLayer.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"StoryboardLayer\"},{\"id\":1627,\"kind\":1024,\"name\":\"name\",\"url\":\"classes/StoryboardLayer.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"StoryboardLayer\"},{\"id\":1628,\"kind\":1024,\"name\":\"depth\",\"url\":\"classes/StoryboardLayer.html#depth\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"StoryboardLayer\"},{\"id\":1629,\"kind\":1024,\"name\":\"masking\",\"url\":\"classes/StoryboardLayer.html#masking\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"StoryboardLayer\"},{\"id\":1630,\"kind\":1024,\"name\":\"visibleWhenPassing\",\"url\":\"classes/StoryboardLayer.html#visibleWhenPassing\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"StoryboardLayer\"},{\"id\":1631,\"kind\":1024,\"name\":\"visibleWhenFailing\",\"url\":\"classes/StoryboardLayer.html#visibleWhenFailing\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"StoryboardLayer\"},{\"id\":1632,\"kind\":1024,\"name\":\"elements\",\"url\":\"classes/StoryboardLayer.html#elements\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"StoryboardLayer\"},{\"id\":1633,\"kind\":128,\"name\":\"Color4\",\"url\":\"classes/Color4.html\",\"classes\":\"tsd-kind-class\"},{\"id\":1634,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Color4.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"Color4\"},{\"id\":1635,\"kind\":1024,\"name\":\"red\",\"url\":\"classes/Color4.html#red\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Color4\"},{\"id\":1636,\"kind\":1024,\"name\":\"green\",\"url\":\"classes/Color4.html#green\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Color4\"},{\"id\":1637,\"kind\":1024,\"name\":\"blue\",\"url\":\"classes/Color4.html#blue\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Color4\"},{\"id\":1638,\"kind\":1024,\"name\":\"alpha\",\"url\":\"classes/Color4.html#alpha\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Color4\"},{\"id\":1639,\"kind\":262144,\"name\":\"hex\",\"url\":\"classes/Color4.html#hex\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"Color4\"},{\"id\":1640,\"kind\":2048,\"name\":\"equals\",\"url\":\"classes/Color4.html#equals\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Color4\"},{\"id\":1641,\"kind\":2048,\"name\":\"clone\",\"url\":\"classes/Color4.html#clone\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Color4\"},{\"id\":1642,\"kind\":2048,\"name\":\"toString\",\"url\":\"classes/Color4.html#toString\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Color4\"},{\"id\":1643,\"kind\":128,\"name\":\"Vector2\",\"url\":\"classes/Vector2.html\",\"classes\":\"tsd-kind-class\"},{\"id\":1644,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Vector2.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"Vector2\"},{\"id\":1645,\"kind\":1024,\"name\":\"x\",\"url\":\"classes/Vector2.html#x\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Vector2\"},{\"id\":1646,\"kind\":1024,\"name\":\"y\",\"url\":\"classes/Vector2.html#y\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"Vector2\"},{\"id\":1647,\"kind\":262144,\"name\":\"floatX\",\"url\":\"classes/Vector2.html#floatX\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"Vector2\"},{\"id\":1648,\"kind\":262144,\"name\":\"floatY\",\"url\":\"classes/Vector2.html#floatY\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"Vector2\"},{\"id\":1649,\"kind\":2048,\"name\":\"add\",\"url\":\"classes/Vector2.html#add\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Vector2\"},{\"id\":1650,\"kind\":2048,\"name\":\"fadd\",\"url\":\"classes/Vector2.html#fadd\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Vector2\"},{\"id\":1651,\"kind\":2048,\"name\":\"subtract\",\"url\":\"classes/Vector2.html#subtract\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Vector2\"},{\"id\":1652,\"kind\":2048,\"name\":\"fsubtract\",\"url\":\"classes/Vector2.html#fsubtract\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Vector2\"},{\"id\":1653,\"kind\":2048,\"name\":\"scale\",\"url\":\"classes/Vector2.html#scale\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Vector2\"},{\"id\":1654,\"kind\":2048,\"name\":\"fscale\",\"url\":\"classes/Vector2.html#fscale\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Vector2\"},{\"id\":1655,\"kind\":2048,\"name\":\"divide\",\"url\":\"classes/Vector2.html#divide\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Vector2\"},{\"id\":1656,\"kind\":2048,\"name\":\"fdivide\",\"url\":\"classes/Vector2.html#fdivide\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Vector2\"},{\"id\":1657,\"kind\":2048,\"name\":\"dot\",\"url\":\"classes/Vector2.html#dot\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Vector2\"},{\"id\":1658,\"kind\":2048,\"name\":\"fdot\",\"url\":\"classes/Vector2.html#fdot\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Vector2\"},{\"id\":1659,\"kind\":2048,\"name\":\"length\",\"url\":\"classes/Vector2.html#length\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Vector2\"},{\"id\":1660,\"kind\":2048,\"name\":\"flength\",\"url\":\"classes/Vector2.html#flength\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Vector2\"},{\"id\":1661,\"kind\":2048,\"name\":\"distance\",\"url\":\"classes/Vector2.html#distance\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Vector2\"},{\"id\":1662,\"kind\":2048,\"name\":\"fdistance\",\"url\":\"classes/Vector2.html#fdistance\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Vector2\"},{\"id\":1663,\"kind\":2048,\"name\":\"normalize\",\"url\":\"classes/Vector2.html#normalize\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Vector2\"},{\"id\":1664,\"kind\":2048,\"name\":\"fnormalize\",\"url\":\"classes/Vector2.html#fnormalize\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Vector2\"},{\"id\":1665,\"kind\":2048,\"name\":\"equals\",\"url\":\"classes/Vector2.html#equals\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Vector2\"},{\"id\":1666,\"kind\":2048,\"name\":\"clone\",\"url\":\"classes/Vector2.html#clone\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Vector2\"},{\"id\":1667,\"kind\":2048,\"name\":\"toString\",\"url\":\"classes/Vector2.html#toString\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Vector2\"},{\"id\":1668,\"kind\":8,\"name\":\"CountryCode\",\"url\":\"enums/CountryCode.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":1669,\"kind\":16,\"name\":\"Unknown\",\"url\":\"enums/CountryCode.html#Unknown\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1670,\"kind\":16,\"name\":\"BD\",\"url\":\"enums/CountryCode.html#BD\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1671,\"kind\":16,\"name\":\"BE\",\"url\":\"enums/CountryCode.html#BE\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1672,\"kind\":16,\"name\":\"BF\",\"url\":\"enums/CountryCode.html#BF\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1673,\"kind\":16,\"name\":\"BG\",\"url\":\"enums/CountryCode.html#BG\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1674,\"kind\":16,\"name\":\"BA\",\"url\":\"enums/CountryCode.html#BA\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1675,\"kind\":16,\"name\":\"BB\",\"url\":\"enums/CountryCode.html#BB\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1676,\"kind\":16,\"name\":\"WF\",\"url\":\"enums/CountryCode.html#WF\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1677,\"kind\":16,\"name\":\"BL\",\"url\":\"enums/CountryCode.html#BL\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1678,\"kind\":16,\"name\":\"BM\",\"url\":\"enums/CountryCode.html#BM\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1679,\"kind\":16,\"name\":\"BN\",\"url\":\"enums/CountryCode.html#BN\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1680,\"kind\":16,\"name\":\"BO\",\"url\":\"enums/CountryCode.html#BO\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1681,\"kind\":16,\"name\":\"BH\",\"url\":\"enums/CountryCode.html#BH\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1682,\"kind\":16,\"name\":\"BI\",\"url\":\"enums/CountryCode.html#BI\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1683,\"kind\":16,\"name\":\"BJ\",\"url\":\"enums/CountryCode.html#BJ\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1684,\"kind\":16,\"name\":\"BT\",\"url\":\"enums/CountryCode.html#BT\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1685,\"kind\":16,\"name\":\"JM\",\"url\":\"enums/CountryCode.html#JM\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1686,\"kind\":16,\"name\":\"BV\",\"url\":\"enums/CountryCode.html#BV\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1687,\"kind\":16,\"name\":\"BW\",\"url\":\"enums/CountryCode.html#BW\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1688,\"kind\":16,\"name\":\"WS\",\"url\":\"enums/CountryCode.html#WS\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1689,\"kind\":16,\"name\":\"BQ\",\"url\":\"enums/CountryCode.html#BQ\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1690,\"kind\":16,\"name\":\"BR\",\"url\":\"enums/CountryCode.html#BR\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1691,\"kind\":16,\"name\":\"BS\",\"url\":\"enums/CountryCode.html#BS\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1692,\"kind\":16,\"name\":\"JE\",\"url\":\"enums/CountryCode.html#JE\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1693,\"kind\":16,\"name\":\"BY\",\"url\":\"enums/CountryCode.html#BY\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1694,\"kind\":16,\"name\":\"BZ\",\"url\":\"enums/CountryCode.html#BZ\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1695,\"kind\":16,\"name\":\"RU\",\"url\":\"enums/CountryCode.html#RU\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1696,\"kind\":16,\"name\":\"RW\",\"url\":\"enums/CountryCode.html#RW\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1697,\"kind\":16,\"name\":\"RS\",\"url\":\"enums/CountryCode.html#RS\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1698,\"kind\":16,\"name\":\"TL\",\"url\":\"enums/CountryCode.html#TL\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1699,\"kind\":16,\"name\":\"RE\",\"url\":\"enums/CountryCode.html#RE\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1700,\"kind\":16,\"name\":\"TM\",\"url\":\"enums/CountryCode.html#TM\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1701,\"kind\":16,\"name\":\"TJ\",\"url\":\"enums/CountryCode.html#TJ\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1702,\"kind\":16,\"name\":\"RO\",\"url\":\"enums/CountryCode.html#RO\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1703,\"kind\":16,\"name\":\"TK\",\"url\":\"enums/CountryCode.html#TK\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1704,\"kind\":16,\"name\":\"GW\",\"url\":\"enums/CountryCode.html#GW\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1705,\"kind\":16,\"name\":\"GU\",\"url\":\"enums/CountryCode.html#GU\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1706,\"kind\":16,\"name\":\"GT\",\"url\":\"enums/CountryCode.html#GT\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1707,\"kind\":16,\"name\":\"GS\",\"url\":\"enums/CountryCode.html#GS\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1708,\"kind\":16,\"name\":\"GR\",\"url\":\"enums/CountryCode.html#GR\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1709,\"kind\":16,\"name\":\"GQ\",\"url\":\"enums/CountryCode.html#GQ\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1710,\"kind\":16,\"name\":\"GP\",\"url\":\"enums/CountryCode.html#GP\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1711,\"kind\":16,\"name\":\"JP\",\"url\":\"enums/CountryCode.html#JP\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1712,\"kind\":16,\"name\":\"GY\",\"url\":\"enums/CountryCode.html#GY\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1713,\"kind\":16,\"name\":\"GG\",\"url\":\"enums/CountryCode.html#GG\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1714,\"kind\":16,\"name\":\"GF\",\"url\":\"enums/CountryCode.html#GF\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1715,\"kind\":16,\"name\":\"GE\",\"url\":\"enums/CountryCode.html#GE\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1716,\"kind\":16,\"name\":\"GD\",\"url\":\"enums/CountryCode.html#GD\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1717,\"kind\":16,\"name\":\"GB\",\"url\":\"enums/CountryCode.html#GB\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1718,\"kind\":16,\"name\":\"GA\",\"url\":\"enums/CountryCode.html#GA\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1719,\"kind\":16,\"name\":\"SV\",\"url\":\"enums/CountryCode.html#SV\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1720,\"kind\":16,\"name\":\"GN\",\"url\":\"enums/CountryCode.html#GN\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1721,\"kind\":16,\"name\":\"GM\",\"url\":\"enums/CountryCode.html#GM\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1722,\"kind\":16,\"name\":\"GL\",\"url\":\"enums/CountryCode.html#GL\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1723,\"kind\":16,\"name\":\"GI\",\"url\":\"enums/CountryCode.html#GI\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1724,\"kind\":16,\"name\":\"GH\",\"url\":\"enums/CountryCode.html#GH\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1725,\"kind\":16,\"name\":\"OM\",\"url\":\"enums/CountryCode.html#OM\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1726,\"kind\":16,\"name\":\"TN\",\"url\":\"enums/CountryCode.html#TN\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1727,\"kind\":16,\"name\":\"JO\",\"url\":\"enums/CountryCode.html#JO\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1728,\"kind\":16,\"name\":\"HR\",\"url\":\"enums/CountryCode.html#HR\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1729,\"kind\":16,\"name\":\"HT\",\"url\":\"enums/CountryCode.html#HT\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1730,\"kind\":16,\"name\":\"HU\",\"url\":\"enums/CountryCode.html#HU\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1731,\"kind\":16,\"name\":\"HK\",\"url\":\"enums/CountryCode.html#HK\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1732,\"kind\":16,\"name\":\"HN\",\"url\":\"enums/CountryCode.html#HN\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1733,\"kind\":16,\"name\":\"HM\",\"url\":\"enums/CountryCode.html#HM\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1734,\"kind\":16,\"name\":\"VE\",\"url\":\"enums/CountryCode.html#VE\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1735,\"kind\":16,\"name\":\"PR\",\"url\":\"enums/CountryCode.html#PR\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1736,\"kind\":16,\"name\":\"PS\",\"url\":\"enums/CountryCode.html#PS\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1737,\"kind\":16,\"name\":\"PW\",\"url\":\"enums/CountryCode.html#PW\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1738,\"kind\":16,\"name\":\"PT\",\"url\":\"enums/CountryCode.html#PT\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1739,\"kind\":16,\"name\":\"SJ\",\"url\":\"enums/CountryCode.html#SJ\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1740,\"kind\":16,\"name\":\"PY\",\"url\":\"enums/CountryCode.html#PY\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1741,\"kind\":16,\"name\":\"IQ\",\"url\":\"enums/CountryCode.html#IQ\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1742,\"kind\":16,\"name\":\"PA\",\"url\":\"enums/CountryCode.html#PA\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1743,\"kind\":16,\"name\":\"PF\",\"url\":\"enums/CountryCode.html#PF\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1744,\"kind\":16,\"name\":\"PG\",\"url\":\"enums/CountryCode.html#PG\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1745,\"kind\":16,\"name\":\"PE\",\"url\":\"enums/CountryCode.html#PE\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1746,\"kind\":16,\"name\":\"PK\",\"url\":\"enums/CountryCode.html#PK\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1747,\"kind\":16,\"name\":\"PH\",\"url\":\"enums/CountryCode.html#PH\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1748,\"kind\":16,\"name\":\"PN\",\"url\":\"enums/CountryCode.html#PN\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1749,\"kind\":16,\"name\":\"PL\",\"url\":\"enums/CountryCode.html#PL\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1750,\"kind\":16,\"name\":\"PM\",\"url\":\"enums/CountryCode.html#PM\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1751,\"kind\":16,\"name\":\"ZM\",\"url\":\"enums/CountryCode.html#ZM\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1752,\"kind\":16,\"name\":\"EH\",\"url\":\"enums/CountryCode.html#EH\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1753,\"kind\":16,\"name\":\"EE\",\"url\":\"enums/CountryCode.html#EE\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1754,\"kind\":16,\"name\":\"EG\",\"url\":\"enums/CountryCode.html#EG\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1755,\"kind\":16,\"name\":\"ZA\",\"url\":\"enums/CountryCode.html#ZA\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1756,\"kind\":16,\"name\":\"EC\",\"url\":\"enums/CountryCode.html#EC\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1757,\"kind\":16,\"name\":\"IT\",\"url\":\"enums/CountryCode.html#IT\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1758,\"kind\":16,\"name\":\"VN\",\"url\":\"enums/CountryCode.html#VN\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1759,\"kind\":16,\"name\":\"SB\",\"url\":\"enums/CountryCode.html#SB\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1760,\"kind\":16,\"name\":\"ET\",\"url\":\"enums/CountryCode.html#ET\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1761,\"kind\":16,\"name\":\"SO\",\"url\":\"enums/CountryCode.html#SO\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1762,\"kind\":16,\"name\":\"ZW\",\"url\":\"enums/CountryCode.html#ZW\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1763,\"kind\":16,\"name\":\"SA\",\"url\":\"enums/CountryCode.html#SA\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1764,\"kind\":16,\"name\":\"ES\",\"url\":\"enums/CountryCode.html#ES\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1765,\"kind\":16,\"name\":\"ER\",\"url\":\"enums/CountryCode.html#ER\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1766,\"kind\":16,\"name\":\"ME\",\"url\":\"enums/CountryCode.html#ME\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1767,\"kind\":16,\"name\":\"MD\",\"url\":\"enums/CountryCode.html#MD\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1768,\"kind\":16,\"name\":\"MG\",\"url\":\"enums/CountryCode.html#MG\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1769,\"kind\":16,\"name\":\"MF\",\"url\":\"enums/CountryCode.html#MF\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1770,\"kind\":16,\"name\":\"MA\",\"url\":\"enums/CountryCode.html#MA\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1771,\"kind\":16,\"name\":\"MC\",\"url\":\"enums/CountryCode.html#MC\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1772,\"kind\":16,\"name\":\"UZ\",\"url\":\"enums/CountryCode.html#UZ\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1773,\"kind\":16,\"name\":\"MM\",\"url\":\"enums/CountryCode.html#MM\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1774,\"kind\":16,\"name\":\"ML\",\"url\":\"enums/CountryCode.html#ML\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1775,\"kind\":16,\"name\":\"MO\",\"url\":\"enums/CountryCode.html#MO\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1776,\"kind\":16,\"name\":\"MN\",\"url\":\"enums/CountryCode.html#MN\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1777,\"kind\":16,\"name\":\"MH\",\"url\":\"enums/CountryCode.html#MH\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1778,\"kind\":16,\"name\":\"MK\",\"url\":\"enums/CountryCode.html#MK\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1779,\"kind\":16,\"name\":\"MU\",\"url\":\"enums/CountryCode.html#MU\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1780,\"kind\":16,\"name\":\"MT\",\"url\":\"enums/CountryCode.html#MT\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1781,\"kind\":16,\"name\":\"MW\",\"url\":\"enums/CountryCode.html#MW\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1782,\"kind\":16,\"name\":\"MV\",\"url\":\"enums/CountryCode.html#MV\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1783,\"kind\":16,\"name\":\"MQ\",\"url\":\"enums/CountryCode.html#MQ\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1784,\"kind\":16,\"name\":\"MP\",\"url\":\"enums/CountryCode.html#MP\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1785,\"kind\":16,\"name\":\"MS\",\"url\":\"enums/CountryCode.html#MS\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1786,\"kind\":16,\"name\":\"MR\",\"url\":\"enums/CountryCode.html#MR\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1787,\"kind\":16,\"name\":\"IM\",\"url\":\"enums/CountryCode.html#IM\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1788,\"kind\":16,\"name\":\"UG\",\"url\":\"enums/CountryCode.html#UG\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1789,\"kind\":16,\"name\":\"TZ\",\"url\":\"enums/CountryCode.html#TZ\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1790,\"kind\":16,\"name\":\"MY\",\"url\":\"enums/CountryCode.html#MY\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1791,\"kind\":16,\"name\":\"MX\",\"url\":\"enums/CountryCode.html#MX\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1792,\"kind\":16,\"name\":\"IL\",\"url\":\"enums/CountryCode.html#IL\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1793,\"kind\":16,\"name\":\"FR\",\"url\":\"enums/CountryCode.html#FR\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1794,\"kind\":16,\"name\":\"IO\",\"url\":\"enums/CountryCode.html#IO\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1795,\"kind\":16,\"name\":\"SH\",\"url\":\"enums/CountryCode.html#SH\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1796,\"kind\":16,\"name\":\"FI\",\"url\":\"enums/CountryCode.html#FI\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1797,\"kind\":16,\"name\":\"FJ\",\"url\":\"enums/CountryCode.html#FJ\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1798,\"kind\":16,\"name\":\"FK\",\"url\":\"enums/CountryCode.html#FK\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1799,\"kind\":16,\"name\":\"FM\",\"url\":\"enums/CountryCode.html#FM\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1800,\"kind\":16,\"name\":\"FO\",\"url\":\"enums/CountryCode.html#FO\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1801,\"kind\":16,\"name\":\"NI\",\"url\":\"enums/CountryCode.html#NI\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1802,\"kind\":16,\"name\":\"NL\",\"url\":\"enums/CountryCode.html#NL\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1803,\"kind\":16,\"name\":\"NO\",\"url\":\"enums/CountryCode.html#NO\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1804,\"kind\":16,\"name\":\"NA\",\"url\":\"enums/CountryCode.html#NA\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1805,\"kind\":16,\"name\":\"VU\",\"url\":\"enums/CountryCode.html#VU\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1806,\"kind\":16,\"name\":\"NC\",\"url\":\"enums/CountryCode.html#NC\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1807,\"kind\":16,\"name\":\"NE\",\"url\":\"enums/CountryCode.html#NE\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1808,\"kind\":16,\"name\":\"NF\",\"url\":\"enums/CountryCode.html#NF\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1809,\"kind\":16,\"name\":\"NG\",\"url\":\"enums/CountryCode.html#NG\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1810,\"kind\":16,\"name\":\"NZ\",\"url\":\"enums/CountryCode.html#NZ\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1811,\"kind\":16,\"name\":\"NP\",\"url\":\"enums/CountryCode.html#NP\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1812,\"kind\":16,\"name\":\"NR\",\"url\":\"enums/CountryCode.html#NR\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1813,\"kind\":16,\"name\":\"NU\",\"url\":\"enums/CountryCode.html#NU\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1814,\"kind\":16,\"name\":\"CK\",\"url\":\"enums/CountryCode.html#CK\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1815,\"kind\":16,\"name\":\"XK\",\"url\":\"enums/CountryCode.html#XK\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1816,\"kind\":16,\"name\":\"CI\",\"url\":\"enums/CountryCode.html#CI\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1817,\"kind\":16,\"name\":\"CH\",\"url\":\"enums/CountryCode.html#CH\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1818,\"kind\":16,\"name\":\"CO\",\"url\":\"enums/CountryCode.html#CO\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1819,\"kind\":16,\"name\":\"CN\",\"url\":\"enums/CountryCode.html#CN\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1820,\"kind\":16,\"name\":\"CM\",\"url\":\"enums/CountryCode.html#CM\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1821,\"kind\":16,\"name\":\"CL\",\"url\":\"enums/CountryCode.html#CL\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1822,\"kind\":16,\"name\":\"CC\",\"url\":\"enums/CountryCode.html#CC\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1823,\"kind\":16,\"name\":\"CA\",\"url\":\"enums/CountryCode.html#CA\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1824,\"kind\":16,\"name\":\"CG\",\"url\":\"enums/CountryCode.html#CG\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1825,\"kind\":16,\"name\":\"CF\",\"url\":\"enums/CountryCode.html#CF\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1826,\"kind\":16,\"name\":\"CD\",\"url\":\"enums/CountryCode.html#CD\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1827,\"kind\":16,\"name\":\"CZ\",\"url\":\"enums/CountryCode.html#CZ\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1828,\"kind\":16,\"name\":\"CY\",\"url\":\"enums/CountryCode.html#CY\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1829,\"kind\":16,\"name\":\"CX\",\"url\":\"enums/CountryCode.html#CX\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1830,\"kind\":16,\"name\":\"CR\",\"url\":\"enums/CountryCode.html#CR\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1831,\"kind\":16,\"name\":\"CW\",\"url\":\"enums/CountryCode.html#CW\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1832,\"kind\":16,\"name\":\"CV\",\"url\":\"enums/CountryCode.html#CV\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1833,\"kind\":16,\"name\":\"CU\",\"url\":\"enums/CountryCode.html#CU\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1834,\"kind\":16,\"name\":\"SZ\",\"url\":\"enums/CountryCode.html#SZ\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1835,\"kind\":16,\"name\":\"SY\",\"url\":\"enums/CountryCode.html#SY\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1836,\"kind\":16,\"name\":\"SX\",\"url\":\"enums/CountryCode.html#SX\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1837,\"kind\":16,\"name\":\"KG\",\"url\":\"enums/CountryCode.html#KG\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1838,\"kind\":16,\"name\":\"KE\",\"url\":\"enums/CountryCode.html#KE\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1839,\"kind\":16,\"name\":\"SS\",\"url\":\"enums/CountryCode.html#SS\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1840,\"kind\":16,\"name\":\"SR\",\"url\":\"enums/CountryCode.html#SR\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1841,\"kind\":16,\"name\":\"KI\",\"url\":\"enums/CountryCode.html#KI\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1842,\"kind\":16,\"name\":\"KH\",\"url\":\"enums/CountryCode.html#KH\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1843,\"kind\":16,\"name\":\"KN\",\"url\":\"enums/CountryCode.html#KN\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1844,\"kind\":16,\"name\":\"KM\",\"url\":\"enums/CountryCode.html#KM\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1845,\"kind\":16,\"name\":\"ST\",\"url\":\"enums/CountryCode.html#ST\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1846,\"kind\":16,\"name\":\"SK\",\"url\":\"enums/CountryCode.html#SK\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1847,\"kind\":16,\"name\":\"KR\",\"url\":\"enums/CountryCode.html#KR\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1848,\"kind\":16,\"name\":\"SI\",\"url\":\"enums/CountryCode.html#SI\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1849,\"kind\":16,\"name\":\"KP\",\"url\":\"enums/CountryCode.html#KP\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1850,\"kind\":16,\"name\":\"KW\",\"url\":\"enums/CountryCode.html#KW\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1851,\"kind\":16,\"name\":\"SN\",\"url\":\"enums/CountryCode.html#SN\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1852,\"kind\":16,\"name\":\"SM\",\"url\":\"enums/CountryCode.html#SM\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1853,\"kind\":16,\"name\":\"SL\",\"url\":\"enums/CountryCode.html#SL\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1854,\"kind\":16,\"name\":\"SC\",\"url\":\"enums/CountryCode.html#SC\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1855,\"kind\":16,\"name\":\"KZ\",\"url\":\"enums/CountryCode.html#KZ\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1856,\"kind\":16,\"name\":\"KY\",\"url\":\"enums/CountryCode.html#KY\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1857,\"kind\":16,\"name\":\"SG\",\"url\":\"enums/CountryCode.html#SG\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1858,\"kind\":16,\"name\":\"SE\",\"url\":\"enums/CountryCode.html#SE\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1859,\"kind\":16,\"name\":\"SD\",\"url\":\"enums/CountryCode.html#SD\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1860,\"kind\":16,\"name\":\"DO\",\"url\":\"enums/CountryCode.html#DO\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1861,\"kind\":16,\"name\":\"DM\",\"url\":\"enums/CountryCode.html#DM\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1862,\"kind\":16,\"name\":\"DJ\",\"url\":\"enums/CountryCode.html#DJ\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1863,\"kind\":16,\"name\":\"DK\",\"url\":\"enums/CountryCode.html#DK\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1864,\"kind\":16,\"name\":\"VG\",\"url\":\"enums/CountryCode.html#VG\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1865,\"kind\":16,\"name\":\"DE\",\"url\":\"enums/CountryCode.html#DE\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1866,\"kind\":16,\"name\":\"YE\",\"url\":\"enums/CountryCode.html#YE\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1867,\"kind\":16,\"name\":\"DZ\",\"url\":\"enums/CountryCode.html#DZ\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1868,\"kind\":16,\"name\":\"US\",\"url\":\"enums/CountryCode.html#US\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1869,\"kind\":16,\"name\":\"UY\",\"url\":\"enums/CountryCode.html#UY\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1870,\"kind\":16,\"name\":\"YT\",\"url\":\"enums/CountryCode.html#YT\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1871,\"kind\":16,\"name\":\"UM\",\"url\":\"enums/CountryCode.html#UM\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1872,\"kind\":16,\"name\":\"LB\",\"url\":\"enums/CountryCode.html#LB\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1873,\"kind\":16,\"name\":\"LC\",\"url\":\"enums/CountryCode.html#LC\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1874,\"kind\":16,\"name\":\"LA\",\"url\":\"enums/CountryCode.html#LA\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1875,\"kind\":16,\"name\":\"TV\",\"url\":\"enums/CountryCode.html#TV\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1876,\"kind\":16,\"name\":\"TW\",\"url\":\"enums/CountryCode.html#TW\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1877,\"kind\":16,\"name\":\"TT\",\"url\":\"enums/CountryCode.html#TT\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1878,\"kind\":16,\"name\":\"TR\",\"url\":\"enums/CountryCode.html#TR\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1879,\"kind\":16,\"name\":\"LK\",\"url\":\"enums/CountryCode.html#LK\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1880,\"kind\":16,\"name\":\"LI\",\"url\":\"enums/CountryCode.html#LI\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1881,\"kind\":16,\"name\":\"LV\",\"url\":\"enums/CountryCode.html#LV\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1882,\"kind\":16,\"name\":\"TO\",\"url\":\"enums/CountryCode.html#TO\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1883,\"kind\":16,\"name\":\"LT\",\"url\":\"enums/CountryCode.html#LT\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1884,\"kind\":16,\"name\":\"LU\",\"url\":\"enums/CountryCode.html#LU\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1885,\"kind\":16,\"name\":\"LR\",\"url\":\"enums/CountryCode.html#LR\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1886,\"kind\":16,\"name\":\"LS\",\"url\":\"enums/CountryCode.html#LS\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1887,\"kind\":16,\"name\":\"TH\",\"url\":\"enums/CountryCode.html#TH\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1888,\"kind\":16,\"name\":\"TF\",\"url\":\"enums/CountryCode.html#TF\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1889,\"kind\":16,\"name\":\"TG\",\"url\":\"enums/CountryCode.html#TG\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1890,\"kind\":16,\"name\":\"TD\",\"url\":\"enums/CountryCode.html#TD\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1891,\"kind\":16,\"name\":\"TC\",\"url\":\"enums/CountryCode.html#TC\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1892,\"kind\":16,\"name\":\"LY\",\"url\":\"enums/CountryCode.html#LY\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1893,\"kind\":16,\"name\":\"VA\",\"url\":\"enums/CountryCode.html#VA\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1894,\"kind\":16,\"name\":\"VC\",\"url\":\"enums/CountryCode.html#VC\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1895,\"kind\":16,\"name\":\"AE\",\"url\":\"enums/CountryCode.html#AE\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1896,\"kind\":16,\"name\":\"AD\",\"url\":\"enums/CountryCode.html#AD\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1897,\"kind\":16,\"name\":\"AG\",\"url\":\"enums/CountryCode.html#AG\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1898,\"kind\":16,\"name\":\"AF\",\"url\":\"enums/CountryCode.html#AF\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1899,\"kind\":16,\"name\":\"AI\",\"url\":\"enums/CountryCode.html#AI\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1900,\"kind\":16,\"name\":\"VI\",\"url\":\"enums/CountryCode.html#VI\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1901,\"kind\":16,\"name\":\"IS\",\"url\":\"enums/CountryCode.html#IS\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1902,\"kind\":16,\"name\":\"IR\",\"url\":\"enums/CountryCode.html#IR\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1903,\"kind\":16,\"name\":\"AM\",\"url\":\"enums/CountryCode.html#AM\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1904,\"kind\":16,\"name\":\"AL\",\"url\":\"enums/CountryCode.html#AL\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1905,\"kind\":16,\"name\":\"AO\",\"url\":\"enums/CountryCode.html#AO\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1906,\"kind\":16,\"name\":\"AQ\",\"url\":\"enums/CountryCode.html#AQ\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1907,\"kind\":16,\"name\":\"AS\",\"url\":\"enums/CountryCode.html#AS\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1908,\"kind\":16,\"name\":\"AR\",\"url\":\"enums/CountryCode.html#AR\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1909,\"kind\":16,\"name\":\"AU\",\"url\":\"enums/CountryCode.html#AU\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1910,\"kind\":16,\"name\":\"AT\",\"url\":\"enums/CountryCode.html#AT\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1911,\"kind\":16,\"name\":\"AW\",\"url\":\"enums/CountryCode.html#AW\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1912,\"kind\":16,\"name\":\"IN\",\"url\":\"enums/CountryCode.html#IN\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1913,\"kind\":16,\"name\":\"AX\",\"url\":\"enums/CountryCode.html#AX\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1914,\"kind\":16,\"name\":\"AZ\",\"url\":\"enums/CountryCode.html#AZ\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1915,\"kind\":16,\"name\":\"IE\",\"url\":\"enums/CountryCode.html#IE\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1916,\"kind\":16,\"name\":\"ID\",\"url\":\"enums/CountryCode.html#ID\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1917,\"kind\":16,\"name\":\"UA\",\"url\":\"enums/CountryCode.html#UA\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1918,\"kind\":16,\"name\":\"QA\",\"url\":\"enums/CountryCode.html#QA\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1919,\"kind\":16,\"name\":\"MZ\",\"url\":\"enums/CountryCode.html#MZ\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CountryCode\"},{\"id\":1920,\"kind\":4194304,\"name\":\"IJsonableGrades\",\"url\":\"modules.html#IJsonableGrades\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":1921,\"kind\":128,\"name\":\"Grades\",\"url\":\"classes/Grades.html\",\"classes\":\"tsd-kind-class\"},{\"id\":1922,\"kind\":2048,\"name\":\"fromJSON\",\"url\":\"classes/Grades.html#fromJSON\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"Grades\"},{\"id\":1923,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Grades.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"Grades\"},{\"id\":1924,\"kind\":2048,\"name\":\"get\",\"url\":\"classes/Grades.html#get\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"Grades\"},{\"id\":1925,\"kind\":262144,\"name\":\"hasZeroGrades\",\"url\":\"classes/Grades.html#hasZeroGrades\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"Grades\"},{\"id\":1926,\"kind\":2048,\"name\":\"toJSON\",\"url\":\"classes/Grades.html#toJSON\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Grades\"},{\"id\":1927,\"kind\":256,\"name\":\"IJsonableHighestRank\",\"url\":\"interfaces/IJsonableHighestRank.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":1928,\"kind\":1024,\"name\":\"rank\",\"url\":\"interfaces/IJsonableHighestRank.html#rank\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IJsonableHighestRank\"},{\"id\":1929,\"kind\":1024,\"name\":\"updatedAt\",\"url\":\"interfaces/IJsonableHighestRank.html#updatedAt\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IJsonableHighestRank\"},{\"id\":1930,\"kind\":128,\"name\":\"HighestRank\",\"url\":\"classes/HighestRank.html\",\"classes\":\"tsd-kind-class\"},{\"id\":1931,\"kind\":2048,\"name\":\"fromJSON\",\"url\":\"classes/HighestRank.html#fromJSON\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"HighestRank\"},{\"id\":1932,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/HighestRank.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"HighestRank\"},{\"id\":1933,\"kind\":1024,\"name\":\"rank\",\"url\":\"classes/HighestRank.html#rank\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"HighestRank\"},{\"id\":1934,\"kind\":1024,\"name\":\"updatedAt\",\"url\":\"classes/HighestRank.html#updatedAt\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"HighestRank\"},{\"id\":1935,\"kind\":2048,\"name\":\"clone\",\"url\":\"classes/HighestRank.html#clone\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"HighestRank\"},{\"id\":1936,\"kind\":2048,\"name\":\"toJSON\",\"url\":\"classes/HighestRank.html#toJSON\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"HighestRank\"},{\"id\":1937,\"kind\":4194304,\"name\":\"JsonableUserInfo\",\"url\":\"modules.html#JsonableUserInfo\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":1938,\"kind\":256,\"name\":\"IJsonableUserInfo\",\"url\":\"interfaces/IJsonableUserInfo.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":1939,\"kind\":1024,\"name\":\"grades\",\"url\":\"interfaces/IJsonableUserInfo.html#grades\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IJsonableUserInfo\"},{\"id\":1940,\"kind\":1024,\"name\":\"highestRank\",\"url\":\"interfaces/IJsonableUserInfo.html#highestRank\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IJsonableUserInfo\"},{\"id\":1941,\"kind\":1024,\"name\":\"lastVisitAt\",\"url\":\"interfaces/IJsonableUserInfo.html#lastVisitAt\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IJsonableUserInfo\"},{\"id\":1942,\"kind\":1024,\"name\":\"joinedAt\",\"url\":\"interfaces/IJsonableUserInfo.html#joinedAt\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IJsonableUserInfo\"},{\"id\":1943,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/IJsonableUserInfo.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableUserInfo\"},{\"id\":1944,\"kind\":1024,\"name\":\"totalScore\",\"url\":\"interfaces/IJsonableUserInfo.html#totalScore\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableUserInfo\"},{\"id\":1945,\"kind\":1024,\"name\":\"accuracy\",\"url\":\"interfaces/IJsonableUserInfo.html#accuracy\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableUserInfo\"},{\"id\":1946,\"kind\":1024,\"name\":\"totalPerformance\",\"url\":\"interfaces/IJsonableUserInfo.html#totalPerformance\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableUserInfo\"},{\"id\":1947,\"kind\":1024,\"name\":\"maxCombo\",\"url\":\"interfaces/IJsonableUserInfo.html#maxCombo\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableUserInfo\"},{\"id\":1948,\"kind\":1024,\"name\":\"username\",\"url\":\"interfaces/IJsonableUserInfo.html#username\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableUserInfo\"},{\"id\":1949,\"kind\":1024,\"name\":\"totalHits\",\"url\":\"interfaces/IJsonableUserInfo.html#totalHits\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableUserInfo\"},{\"id\":1950,\"kind\":1024,\"name\":\"playcount\",\"url\":\"interfaces/IJsonableUserInfo.html#playcount\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableUserInfo\"},{\"id\":1951,\"kind\":1024,\"name\":\"previousUsernames\",\"url\":\"interfaces/IJsonableUserInfo.html#previousUsernames\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableUserInfo\"},{\"id\":1952,\"kind\":1024,\"name\":\"countryCode\",\"url\":\"interfaces/IJsonableUserInfo.html#countryCode\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableUserInfo\"},{\"id\":1953,\"kind\":1024,\"name\":\"playmode\",\"url\":\"interfaces/IJsonableUserInfo.html#playmode\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableUserInfo\"},{\"id\":1954,\"kind\":1024,\"name\":\"globalRank\",\"url\":\"interfaces/IJsonableUserInfo.html#globalRank\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableUserInfo\"},{\"id\":1955,\"kind\":1024,\"name\":\"countryRank\",\"url\":\"interfaces/IJsonableUserInfo.html#countryRank\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableUserInfo\"},{\"id\":1956,\"kind\":1024,\"name\":\"level\",\"url\":\"interfaces/IJsonableUserInfo.html#level\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableUserInfo\"},{\"id\":1957,\"kind\":1024,\"name\":\"rankedScore\",\"url\":\"interfaces/IJsonableUserInfo.html#rankedScore\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableUserInfo\"},{\"id\":1958,\"kind\":1024,\"name\":\"playtime\",\"url\":\"interfaces/IJsonableUserInfo.html#playtime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableUserInfo\"},{\"id\":1959,\"kind\":1024,\"name\":\"replaysWatched\",\"url\":\"interfaces/IJsonableUserInfo.html#replaysWatched\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableUserInfo\"},{\"id\":1960,\"kind\":1024,\"name\":\"followersCount\",\"url\":\"interfaces/IJsonableUserInfo.html#followersCount\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableUserInfo\"},{\"id\":1961,\"kind\":1024,\"name\":\"rankHistory\",\"url\":\"interfaces/IJsonableUserInfo.html#rankHistory\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableUserInfo\"},{\"id\":1962,\"kind\":1024,\"name\":\"isActive\",\"url\":\"interfaces/IJsonableUserInfo.html#isActive\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableUserInfo\"},{\"id\":1963,\"kind\":1024,\"name\":\"isBot\",\"url\":\"interfaces/IJsonableUserInfo.html#isBot\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableUserInfo\"},{\"id\":1964,\"kind\":1024,\"name\":\"isDeleted\",\"url\":\"interfaces/IJsonableUserInfo.html#isDeleted\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableUserInfo\"},{\"id\":1965,\"kind\":1024,\"name\":\"isOnline\",\"url\":\"interfaces/IJsonableUserInfo.html#isOnline\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableUserInfo\"},{\"id\":1966,\"kind\":1024,\"name\":\"isSupporter\",\"url\":\"interfaces/IJsonableUserInfo.html#isSupporter\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IJsonableUserInfo\"},{\"id\":1967,\"kind\":256,\"name\":\"IUserInfo\",\"url\":\"interfaces/IUserInfo.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":1968,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/IUserInfo.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IUserInfo\"},{\"id\":1969,\"kind\":1024,\"name\":\"username\",\"url\":\"interfaces/IUserInfo.html#username\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IUserInfo\"},{\"id\":1970,\"kind\":1024,\"name\":\"previousUsernames\",\"url\":\"interfaces/IUserInfo.html#previousUsernames\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IUserInfo\"},{\"id\":1971,\"kind\":1024,\"name\":\"countryCode\",\"url\":\"interfaces/IUserInfo.html#countryCode\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IUserInfo\"},{\"id\":1972,\"kind\":1024,\"name\":\"playmode\",\"url\":\"interfaces/IUserInfo.html#playmode\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IUserInfo\"},{\"id\":1973,\"kind\":1024,\"name\":\"totalPerformance\",\"url\":\"interfaces/IUserInfo.html#totalPerformance\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IUserInfo\"},{\"id\":1974,\"kind\":1024,\"name\":\"globalRank\",\"url\":\"interfaces/IUserInfo.html#globalRank\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IUserInfo\"},{\"id\":1975,\"kind\":1024,\"name\":\"countryRank\",\"url\":\"interfaces/IUserInfo.html#countryRank\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IUserInfo\"},{\"id\":1976,\"kind\":1024,\"name\":\"highestRank\",\"url\":\"interfaces/IUserInfo.html#highestRank\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IUserInfo\"},{\"id\":1977,\"kind\":1024,\"name\":\"level\",\"url\":\"interfaces/IUserInfo.html#level\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IUserInfo\"},{\"id\":1978,\"kind\":1024,\"name\":\"rankedScore\",\"url\":\"interfaces/IUserInfo.html#rankedScore\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IUserInfo\"},{\"id\":1979,\"kind\":1024,\"name\":\"totalScore\",\"url\":\"interfaces/IUserInfo.html#totalScore\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IUserInfo\"},{\"id\":1980,\"kind\":1024,\"name\":\"accuracy\",\"url\":\"interfaces/IUserInfo.html#accuracy\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IUserInfo\"},{\"id\":1981,\"kind\":1024,\"name\":\"playcount\",\"url\":\"interfaces/IUserInfo.html#playcount\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IUserInfo\"},{\"id\":1982,\"kind\":1024,\"name\":\"playtime\",\"url\":\"interfaces/IUserInfo.html#playtime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IUserInfo\"},{\"id\":1983,\"kind\":1024,\"name\":\"totalHits\",\"url\":\"interfaces/IUserInfo.html#totalHits\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IUserInfo\"},{\"id\":1984,\"kind\":1024,\"name\":\"maxCombo\",\"url\":\"interfaces/IUserInfo.html#maxCombo\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IUserInfo\"},{\"id\":1985,\"kind\":1024,\"name\":\"replaysWatched\",\"url\":\"interfaces/IUserInfo.html#replaysWatched\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IUserInfo\"},{\"id\":1986,\"kind\":1024,\"name\":\"followersCount\",\"url\":\"interfaces/IUserInfo.html#followersCount\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IUserInfo\"},{\"id\":1987,\"kind\":1024,\"name\":\"grades\",\"url\":\"interfaces/IUserInfo.html#grades\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IUserInfo\"},{\"id\":1988,\"kind\":1024,\"name\":\"rankHistory\",\"url\":\"interfaces/IUserInfo.html#rankHistory\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IUserInfo\"},{\"id\":1989,\"kind\":1024,\"name\":\"isActive\",\"url\":\"interfaces/IUserInfo.html#isActive\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IUserInfo\"},{\"id\":1990,\"kind\":1024,\"name\":\"isBot\",\"url\":\"interfaces/IUserInfo.html#isBot\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IUserInfo\"},{\"id\":1991,\"kind\":1024,\"name\":\"isDeleted\",\"url\":\"interfaces/IUserInfo.html#isDeleted\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IUserInfo\"},{\"id\":1992,\"kind\":1024,\"name\":\"isOnline\",\"url\":\"interfaces/IUserInfo.html#isOnline\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IUserInfo\"},{\"id\":1993,\"kind\":1024,\"name\":\"isSupporter\",\"url\":\"interfaces/IUserInfo.html#isSupporter\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IUserInfo\"},{\"id\":1994,\"kind\":1024,\"name\":\"lastVisitAt\",\"url\":\"interfaces/IUserInfo.html#lastVisitAt\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IUserInfo\"},{\"id\":1995,\"kind\":1024,\"name\":\"joinedAt\",\"url\":\"interfaces/IUserInfo.html#joinedAt\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IUserInfo\"},{\"id\":1996,\"kind\":128,\"name\":\"LevelInfo\",\"url\":\"classes/LevelInfo.html\",\"classes\":\"tsd-kind-class\"},{\"id\":1997,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/LevelInfo.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"LevelInfo\"},{\"id\":1998,\"kind\":1024,\"name\":\"current\",\"url\":\"classes/LevelInfo.html#current\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"LevelInfo\"},{\"id\":1999,\"kind\":1024,\"name\":\"progress\",\"url\":\"classes/LevelInfo.html#progress\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"LevelInfo\"},{\"id\":2000,\"kind\":2048,\"name\":\"clone\",\"url\":\"classes/LevelInfo.html#clone\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"LevelInfo\"},{\"id\":2001,\"kind\":2048,\"name\":\"toString\",\"url\":\"classes/LevelInfo.html#toString\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"LevelInfo\"},{\"id\":2002,\"kind\":128,\"name\":\"RankHistory\",\"url\":\"classes/RankHistory.html\",\"classes\":\"tsd-kind-class\"},{\"id\":2003,\"kind\":1024,\"name\":\"DEFAULT_MODE\",\"url\":\"classes/RankHistory.html#DEFAULT_MODE\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"RankHistory\"},{\"id\":2004,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/RankHistory.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"RankHistory\"},{\"id\":2005,\"kind\":1024,\"name\":\"mode\",\"url\":\"classes/RankHistory.html#mode\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"RankHistory\"},{\"id\":2006,\"kind\":1024,\"name\":\"data\",\"url\":\"classes/RankHistory.html#data\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"RankHistory\"},{\"id\":2007,\"kind\":262144,\"name\":\"hasEnoughData\",\"url\":\"classes/RankHistory.html#hasEnoughData\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-class\",\"parent\":\"RankHistory\"},{\"id\":2008,\"kind\":2048,\"name\":\"clone\",\"url\":\"classes/RankHistory.html#clone\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"RankHistory\"},{\"id\":2009,\"kind\":128,\"name\":\"UserInfo\",\"url\":\"classes/UserInfo.html\",\"classes\":\"tsd-kind-class\"},{\"id\":2010,\"kind\":2048,\"name\":\"fromJSON\",\"url\":\"classes/UserInfo.html#fromJSON\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"UserInfo\"},{\"id\":2011,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/UserInfo.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"UserInfo\"},{\"id\":2012,\"kind\":1024,\"name\":\"id\",\"url\":\"classes/UserInfo.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"UserInfo\"},{\"id\":2013,\"kind\":1024,\"name\":\"username\",\"url\":\"classes/UserInfo.html#username\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"UserInfo\"},{\"id\":2014,\"kind\":1024,\"name\":\"previousUsernames\",\"url\":\"classes/UserInfo.html#previousUsernames\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"UserInfo\"},{\"id\":2015,\"kind\":1024,\"name\":\"countryCode\",\"url\":\"classes/UserInfo.html#countryCode\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"UserInfo\"},{\"id\":2016,\"kind\":1024,\"name\":\"playmode\",\"url\":\"classes/UserInfo.html#playmode\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"UserInfo\"},{\"id\":2017,\"kind\":1024,\"name\":\"totalPerformance\",\"url\":\"classes/UserInfo.html#totalPerformance\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"UserInfo\"},{\"id\":2018,\"kind\":1024,\"name\":\"globalRank\",\"url\":\"classes/UserInfo.html#globalRank\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"UserInfo\"},{\"id\":2019,\"kind\":1024,\"name\":\"countryRank\",\"url\":\"classes/UserInfo.html#countryRank\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"UserInfo\"},{\"id\":2020,\"kind\":1024,\"name\":\"highestRank\",\"url\":\"classes/UserInfo.html#highestRank\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"UserInfo\"},{\"id\":2021,\"kind\":1024,\"name\":\"level\",\"url\":\"classes/UserInfo.html#level\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"UserInfo\"},{\"id\":2022,\"kind\":1024,\"name\":\"rankedScore\",\"url\":\"classes/UserInfo.html#rankedScore\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"UserInfo\"},{\"id\":2023,\"kind\":1024,\"name\":\"totalScore\",\"url\":\"classes/UserInfo.html#totalScore\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"UserInfo\"},{\"id\":2024,\"kind\":1024,\"name\":\"accuracy\",\"url\":\"classes/UserInfo.html#accuracy\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"UserInfo\"},{\"id\":2025,\"kind\":1024,\"name\":\"playcount\",\"url\":\"classes/UserInfo.html#playcount\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"UserInfo\"},{\"id\":2026,\"kind\":1024,\"name\":\"playtime\",\"url\":\"classes/UserInfo.html#playtime\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"UserInfo\"},{\"id\":2027,\"kind\":1024,\"name\":\"totalHits\",\"url\":\"classes/UserInfo.html#totalHits\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"UserInfo\"},{\"id\":2028,\"kind\":1024,\"name\":\"maxCombo\",\"url\":\"classes/UserInfo.html#maxCombo\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"UserInfo\"},{\"id\":2029,\"kind\":1024,\"name\":\"replaysWatched\",\"url\":\"classes/UserInfo.html#replaysWatched\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"UserInfo\"},{\"id\":2030,\"kind\":1024,\"name\":\"followersCount\",\"url\":\"classes/UserInfo.html#followersCount\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"UserInfo\"},{\"id\":2031,\"kind\":1024,\"name\":\"grades\",\"url\":\"classes/UserInfo.html#grades\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"UserInfo\"},{\"id\":2032,\"kind\":1024,\"name\":\"rankHistory\",\"url\":\"classes/UserInfo.html#rankHistory\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"UserInfo\"},{\"id\":2033,\"kind\":1024,\"name\":\"isActive\",\"url\":\"classes/UserInfo.html#isActive\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"UserInfo\"},{\"id\":2034,\"kind\":1024,\"name\":\"isBot\",\"url\":\"classes/UserInfo.html#isBot\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"UserInfo\"},{\"id\":2035,\"kind\":1024,\"name\":\"isDeleted\",\"url\":\"classes/UserInfo.html#isDeleted\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"UserInfo\"},{\"id\":2036,\"kind\":1024,\"name\":\"isOnline\",\"url\":\"classes/UserInfo.html#isOnline\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"UserInfo\"},{\"id\":2037,\"kind\":1024,\"name\":\"isSupporter\",\"url\":\"classes/UserInfo.html#isSupporter\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"UserInfo\"},{\"id\":2038,\"kind\":1024,\"name\":\"lastVisitAt\",\"url\":\"classes/UserInfo.html#lastVisitAt\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"UserInfo\"},{\"id\":2039,\"kind\":1024,\"name\":\"joinedAt\",\"url\":\"classes/UserInfo.html#joinedAt\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"UserInfo\"},{\"id\":2040,\"kind\":2048,\"name\":\"clone\",\"url\":\"classes/UserInfo.html#clone\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"UserInfo\"},{\"id\":2041,\"kind\":2048,\"name\":\"equals\",\"url\":\"classes/UserInfo.html#equals\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"UserInfo\"},{\"id\":2042,\"kind\":2048,\"name\":\"toJSON\",\"url\":\"classes/UserInfo.html#toJSON\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"UserInfo\"},{\"id\":2043,\"kind\":4,\"name\":\"BinarySearch\",\"url\":\"modules/BinarySearch.html\",\"classes\":\"tsd-kind-namespace\"},{\"id\":2044,\"kind\":64,\"name\":\"findNumber\",\"url\":\"modules/BinarySearch.html#findNumber\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"BinarySearch\"},{\"id\":2045,\"kind\":64,\"name\":\"findControlPointIndex\",\"url\":\"modules/BinarySearch.html#findControlPointIndex\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"BinarySearch\"},{\"id\":2046,\"kind\":64,\"name\":\"findControlPoint\",\"url\":\"modules/BinarySearch.html#findControlPoint\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"BinarySearch\"},{\"id\":2047,\"kind\":64,\"name\":\"findIndex\",\"url\":\"modules/BinarySearch.html#findIndex\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"BinarySearch\"},{\"id\":2048,\"kind\":4194304,\"name\":\"BinarySearchPredicate\",\"url\":\"modules/BinarySearch.html#BinarySearchPredicate\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-namespace tsd-has-type-parameter\",\"parent\":\"BinarySearch\"},{\"id\":2049,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/BinarySearch.html#BinarySearchPredicate.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"BinarySearch.BinarySearchPredicate\"},{\"id\":2050,\"kind\":4,\"name\":\"Interpolation\",\"url\":\"modules/Interpolation.html\",\"classes\":\"tsd-kind-namespace\"},{\"id\":2051,\"kind\":64,\"name\":\"barycentricWeights\",\"url\":\"modules/Interpolation.html#barycentricWeights\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"Interpolation\"},{\"id\":2052,\"kind\":64,\"name\":\"barycentricLagrange\",\"url\":\"modules/Interpolation.html#barycentricLagrange\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"Interpolation\"},{\"id\":2053,\"kind\":4,\"name\":\"MathUtils\",\"url\":\"modules/MathUtils.html\",\"classes\":\"tsd-kind-namespace\"},{\"id\":2054,\"kind\":64,\"name\":\"clamp\",\"url\":\"modules/MathUtils.html#clamp\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"MathUtils\"},{\"id\":2055,\"kind\":64,\"name\":\"clamp01\",\"url\":\"modules/MathUtils.html#clamp01\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"MathUtils\"},{\"id\":2056,\"kind\":64,\"name\":\"map\",\"url\":\"modules/MathUtils.html#map\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"MathUtils\"},{\"id\":2057,\"kind\":64,\"name\":\"map01\",\"url\":\"modules/MathUtils.html#map01\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"MathUtils\"},{\"id\":2058,\"kind\":64,\"name\":\"lerp\",\"url\":\"modules/MathUtils.html#lerp\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"MathUtils\"},{\"id\":2059,\"kind\":64,\"name\":\"lerpClamped01\",\"url\":\"modules/MathUtils.html#lerpClamped01\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"MathUtils\"},{\"id\":2060,\"kind\":64,\"name\":\"lerpVector2\",\"url\":\"modules/MathUtils.html#lerpVector2\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"MathUtils\"},{\"id\":2061,\"kind\":64,\"name\":\"lerpColor4\",\"url\":\"modules/MathUtils.html#lerpColor4\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"MathUtils\"},{\"id\":2062,\"kind\":128,\"name\":\"FastRandom\",\"url\":\"classes/FastRandom.html\",\"classes\":\"tsd-kind-class\"},{\"id\":2063,\"kind\":1024,\"name\":\"MAX_INT32\",\"url\":\"classes/FastRandom.html#MAX_INT32\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"FastRandom\"},{\"id\":2064,\"kind\":1024,\"name\":\"MAX_UINT32\",\"url\":\"classes/FastRandom.html#MAX_UINT32\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"FastRandom\"},{\"id\":2065,\"kind\":1024,\"name\":\"INT_MASK\",\"url\":\"classes/FastRandom.html#INT_MASK\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"FastRandom\"},{\"id\":2066,\"kind\":1024,\"name\":\"INT_TO_REAL\",\"url\":\"classes/FastRandom.html#INT_TO_REAL\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"FastRandom\"},{\"id\":2067,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/FastRandom.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"FastRandom\"},{\"id\":2068,\"kind\":2048,\"name\":\"next\",\"url\":\"classes/FastRandom.html#next\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"FastRandom\"},{\"id\":2069,\"kind\":2048,\"name\":\"nextUInt\",\"url\":\"classes/FastRandom.html#nextUInt\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"FastRandom\"},{\"id\":2070,\"kind\":2048,\"name\":\"nextInt\",\"url\":\"classes/FastRandom.html#nextInt\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"FastRandom\"},{\"id\":2071,\"kind\":2048,\"name\":\"nextDouble\",\"url\":\"classes/FastRandom.html#nextDouble\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"FastRandom\"},{\"id\":2072,\"kind\":2048,\"name\":\"nextBool\",\"url\":\"classes/FastRandom.html#nextBool\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"FastRandom\"},{\"id\":2073,\"kind\":128,\"name\":\"RoundHelper\",\"url\":\"classes/RoundHelper.html\",\"classes\":\"tsd-kind-class\"},{\"id\":2074,\"kind\":1024,\"name\":\"PRECISION_ERROR\",\"url\":\"classes/RoundHelper.html#PRECISION_ERROR\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-static\",\"parent\":\"RoundHelper\"},{\"id\":2075,\"kind\":2048,\"name\":\"round\",\"url\":\"classes/RoundHelper.html#round\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"RoundHelper\"},{\"id\":2076,\"kind\":2048,\"name\":\"roundToEven\",\"url\":\"classes/RoundHelper.html#roundToEven\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"RoundHelper\"},{\"id\":2077,\"kind\":2048,\"name\":\"roundAwayFromZero\",\"url\":\"classes/RoundHelper.html#roundAwayFromZero\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"RoundHelper\"},{\"id\":2078,\"kind\":2048,\"name\":\"isAtMidPoint\",\"url\":\"classes/RoundHelper.html#isAtMidPoint\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"RoundHelper\"},{\"id\":2079,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/RoundHelper.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"RoundHelper\"},{\"id\":2080,\"kind\":128,\"name\":\"SortHelper\",\"url\":\"classes/SortHelper.html\",\"classes\":\"tsd-kind-class\"},{\"id\":2081,\"kind\":2048,\"name\":\"depthSort\",\"url\":\"classes/SortHelper.html#depthSort\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"SortHelper\"},{\"id\":2082,\"kind\":2048,\"name\":\"introSort\",\"url\":\"classes/SortHelper.html#introSort\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"SortHelper\"},{\"id\":2083,\"kind\":2048,\"name\":\"defaultCompare\",\"url\":\"classes/SortHelper.html#defaultCompare\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"SortHelper\"},{\"id\":2084,\"kind\":2048,\"name\":\"toString\",\"url\":\"classes/SortHelper.html#toString\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"SortHelper\"},{\"id\":2085,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/SortHelper.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"SortHelper\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"parent\"],\"fieldVectors\":[[\"name/0\",[0,42.591]],[\"parent/0\",[]],[\"name/1\",[1,31.605]],[\"parent/1\",[0,4.112]],[\"name/2\",[2,63.907]],[\"parent/2\",[0,4.112]],[\"name/3\",[3,61.394]],[\"parent/3\",[0,4.112]],[\"name/4\",[4,61.394]],[\"parent/4\",[0,4.112]],[\"name/5\",[5,61.394]],[\"parent/5\",[0,4.112]],[\"name/6\",[6,61.394]],[\"parent/6\",[0,4.112]],[\"name/7\",[7,59.387]],[\"parent/7\",[0,4.112]],[\"name/8\",[8,61.394]],[\"parent/8\",[0,4.112]],[\"name/9\",[9,57.717]],[\"parent/9\",[0,4.112]],[\"name/10\",[10,61.394]],[\"parent/10\",[0,4.112]],[\"name/11\",[11,59.387]],[\"parent/11\",[0,4.112]],[\"name/12\",[12,67.272]],[\"parent/12\",[0,4.112]],[\"name/13\",[13,61.394]],[\"parent/13\",[0,4.112]],[\"name/14\",[14,55.034]],[\"parent/14\",[0,4.112]],[\"name/15\",[15,53.922]],[\"parent/15\",[0,4.112]],[\"name/16\",[16,67.272]],[\"parent/16\",[0,4.112]],[\"name/17\",[17,56.286]],[\"parent/17\",[0,4.112]],[\"name/18\",[18,56.286]],[\"parent/18\",[0,4.112]],[\"name/19\",[19,55.034]],[\"parent/19\",[0,4.112]],[\"name/20\",[20,61.394]],[\"parent/20\",[0,4.112]],[\"name/21\",[21,59.387]],[\"parent/21\",[0,4.112]],[\"name/22\",[22,59.387]],[\"parent/22\",[0,4.112]],[\"name/23\",[23,59.387]],[\"parent/23\",[0,4.112]],[\"name/24\",[24,59.387]],[\"parent/24\",[0,4.112]],[\"name/25\",[25,40.462]],[\"parent/25\",[0,4.112]],[\"name/26\",[26,57.717]],[\"parent/26\",[]],[\"name/27\",[1,31.605]],[\"parent/27\",[26,5.572]],[\"name/28\",[27,72.38]],[\"parent/28\",[26,5.572]],[\"name/29\",[28,72.38]],[\"parent/29\",[26,5.572]],[\"name/30\",[29,72.38]],[\"parent/30\",[26,5.572]],[\"name/31\",[30,72.38]],[\"parent/31\",[26,5.572]],[\"name/32\",[31,39.422]],[\"parent/32\",[]],[\"name/33\",[32,57.717]],[\"parent/33\",[31,3.806]],[\"name/34\",[1,31.605]],[\"parent/34\",[31,3.806]],[\"name/35\",[33,51.178]],[\"parent/35\",[31,3.806]],[\"name/36\",[34,61.394]],[\"parent/36\",[31,3.806]],[\"name/37\",[35,63.907]],[\"parent/37\",[31,3.806]],[\"name/38\",[36,61.394]],[\"parent/38\",[31,3.806]],[\"name/39\",[37,63.907]],[\"parent/39\",[31,3.806]],[\"name/40\",[38,63.907]],[\"parent/40\",[31,3.806]],[\"name/41\",[39,57.717]],[\"parent/41\",[31,3.806]],[\"name/42\",[40,63.907]],[\"parent/42\",[31,3.806]],[\"name/43\",[41,61.394]],[\"parent/43\",[31,3.806]],[\"name/44\",[42,61.394]],[\"parent/44\",[31,3.806]],[\"name/45\",[43,61.394]],[\"parent/45\",[31,3.806]],[\"name/46\",[21,59.387]],[\"parent/46\",[31,3.806]],[\"name/47\",[22,59.387]],[\"parent/47\",[31,3.806]],[\"name/48\",[23,59.387]],[\"parent/48\",[31,3.806]],[\"name/49\",[24,59.387]],[\"parent/49\",[31,3.806]],[\"name/50\",[15,53.922]],[\"parent/50\",[31,3.806]],[\"name/51\",[17,56.286]],[\"parent/51\",[31,3.806]],[\"name/52\",[18,56.286]],[\"parent/52\",[31,3.806]],[\"name/53\",[19,55.034]],[\"parent/53\",[31,3.806]],[\"name/54\",[44,61.394]],[\"parent/54\",[31,3.806]],[\"name/55\",[45,61.394]],[\"parent/55\",[31,3.806]],[\"name/56\",[46,61.394]],[\"parent/56\",[31,3.806]],[\"name/57\",[47,61.394]],[\"parent/57\",[31,3.806]],[\"name/58\",[48,49.693]],[\"parent/58\",[31,3.806]],[\"name/59\",[49,56.286]],[\"parent/59\",[31,3.806]],[\"name/60\",[50,53.922]],[\"parent/60\",[31,3.806]],[\"name/61\",[51,61.394]],[\"parent/61\",[31,3.806]],[\"name/62\",[52,61.394]],[\"parent/62\",[31,3.806]],[\"name/63\",[53,52.011]],[\"parent/63\",[31,3.806]],[\"name/64\",[54,63.907]],[\"parent/64\",[31,3.806]],[\"name/65\",[55,63.907]],[\"parent/65\",[31,3.806]],[\"name/66\",[56,59.387]],[\"parent/66\",[31,3.806]],[\"name/67\",[57,59.387]],[\"parent/67\",[31,3.806]],[\"name/68\",[58,52.921]],[\"parent/68\",[31,3.806]],[\"name/69\",[25,40.462]],[\"parent/69\",[31,3.806]],[\"name/70\",[59,49.693]],[\"parent/70\",[31,3.806]],[\"name/71\",[60,52.011]],[\"parent/71\",[31,3.806]],[\"name/72\",[61,61.394]],[\"parent/72\",[]],[\"name/73\",[1,31.605]],[\"parent/73\",[61,5.927]],[\"name/74\",[62,72.38]],[\"parent/74\",[61,5.927]],[\"name/75\",[63,72.38]],[\"parent/75\",[61,5.927]],[\"name/76\",[64,55.034]],[\"parent/76\",[]],[\"name/77\",[1,31.605]],[\"parent/77\",[64,5.313]],[\"name/78\",[65,59.387]],[\"parent/78\",[64,5.313]],[\"name/79\",[66,59.387]],[\"parent/79\",[64,5.313]],[\"name/80\",[67,59.387]],[\"parent/80\",[64,5.313]],[\"name/81\",[68,59.387]],[\"parent/81\",[64,5.313]],[\"name/82\",[69,41.622]],[\"parent/82\",[64,5.313]],[\"name/83\",[70,59.387]],[\"parent/83\",[64,5.313]],[\"name/84\",[71,57.717]],[\"parent/84\",[]],[\"name/85\",[1,31.605]],[\"parent/85\",[71,5.572]],[\"name/86\",[9,57.717]],[\"parent/86\",[71,5.572]],[\"name/87\",[69,41.622]],[\"parent/87\",[71,5.572]],[\"name/88\",[72,59.387]],[\"parent/88\",[71,5.572]],[\"name/89\",[73,67.272]],[\"parent/89\",[71,5.572]],[\"name/90\",[74,46.731]],[\"parent/90\",[]],[\"name/91\",[1,31.605]],[\"parent/91\",[74,4.511]],[\"name/92\",[75,72.38]],[\"parent/92\",[74,4.511]],[\"name/93\",[76,72.38]],[\"parent/93\",[74,4.511]],[\"name/94\",[77,72.38]],[\"parent/94\",[74,4.511]],[\"name/95\",[78,72.38]],[\"parent/95\",[74,4.511]],[\"name/96\",[79,72.38]],[\"parent/96\",[74,4.511]],[\"name/97\",[80,72.38]],[\"parent/97\",[74,4.511]],[\"name/98\",[81,72.38]],[\"parent/98\",[74,4.511]],[\"name/99\",[82,72.38]],[\"parent/99\",[74,4.511]],[\"name/100\",[83,72.38]],[\"parent/100\",[74,4.511]],[\"name/101\",[84,72.38]],[\"parent/101\",[74,4.511]],[\"name/102\",[85,72.38]],[\"parent/102\",[74,4.511]],[\"name/103\",[72,59.387]],[\"parent/103\",[74,4.511]],[\"name/104\",[86,72.38]],[\"parent/104\",[74,4.511]],[\"name/105\",[87,72.38]],[\"parent/105\",[74,4.511]],[\"name/106\",[73,67.272]],[\"parent/106\",[74,4.511]],[\"name/107\",[88,63.907]],[\"parent/107\",[74,4.511]],[\"name/108\",[25,40.462]],[\"parent/108\",[74,4.511]],[\"name/109\",[89,49.026]],[\"parent/109\",[]],[\"name/110\",[90,61.394]],[\"parent/110\",[89,4.733]],[\"name/111\",[1,31.605]],[\"parent/111\",[89,4.733]],[\"name/112\",[65,59.387]],[\"parent/112\",[89,4.733]],[\"name/113\",[91,72.38]],[\"parent/113\",[89,4.733]],[\"name/114\",[92,72.38]],[\"parent/114\",[89,4.733]],[\"name/115\",[93,72.38]],[\"parent/115\",[89,4.733]],[\"name/116\",[94,72.38]],[\"parent/116\",[89,4.733]],[\"name/117\",[70,59.387]],[\"parent/117\",[89,4.733]],[\"name/118\",[59,49.693]],[\"parent/118\",[89,4.733]],[\"name/119\",[66,59.387]],[\"parent/119\",[89,4.733]],[\"name/120\",[67,59.387]],[\"parent/120\",[89,4.733]],[\"name/121\",[68,59.387]],[\"parent/121\",[89,4.733]],[\"name/122\",[69,41.622]],[\"parent/122\",[89,4.733]],[\"name/123\",[95,49.693]],[\"parent/123\",[]],[\"name/124\",[90,61.394]],[\"parent/124\",[95,4.797]],[\"name/125\",[1,31.605]],[\"parent/125\",[95,4.797]],[\"name/126\",[65,59.387]],[\"parent/126\",[95,4.797]],[\"name/127\",[96,63.907]],[\"parent/127\",[95,4.797]],[\"name/128\",[97,67.272]],[\"parent/128\",[95,4.797]],[\"name/129\",[98,72.38]],[\"parent/129\",[95,4.797]],[\"name/130\",[70,59.387]],[\"parent/130\",[95,4.797]],[\"name/131\",[59,49.693]],[\"parent/131\",[95,4.797]],[\"name/132\",[66,59.387]],[\"parent/132\",[95,4.797]],[\"name/133\",[67,59.387]],[\"parent/133\",[95,4.797]],[\"name/134\",[68,59.387]],[\"parent/134\",[95,4.797]],[\"name/135\",[69,41.622]],[\"parent/135\",[95,4.797]],[\"name/136\",[99,49.693]],[\"parent/136\",[]],[\"name/137\",[90,61.394]],[\"parent/137\",[99,4.797]],[\"name/138\",[1,31.605]],[\"parent/138\",[99,4.797]],[\"name/139\",[65,59.387]],[\"parent/139\",[99,4.797]],[\"name/140\",[100,55.034]],[\"parent/140\",[99,4.797]],[\"name/141\",[101,63.907]],[\"parent/141\",[99,4.797]],[\"name/142\",[102,61.394]],[\"parent/142\",[99,4.797]],[\"name/143\",[70,59.387]],[\"parent/143\",[99,4.797]],[\"name/144\",[59,49.693]],[\"parent/144\",[99,4.797]],[\"name/145\",[66,59.387]],[\"parent/145\",[99,4.797]],[\"name/146\",[67,59.387]],[\"parent/146\",[99,4.797]],[\"name/147\",[68,59.387]],[\"parent/147\",[99,4.797]],[\"name/148\",[69,41.622]],[\"parent/148\",[99,4.797]],[\"name/149\",[103,49.693]],[\"parent/149\",[]],[\"name/150\",[90,61.394]],[\"parent/150\",[103,4.797]],[\"name/151\",[1,31.605]],[\"parent/151\",[103,4.797]],[\"name/152\",[65,59.387]],[\"parent/152\",[103,4.797]],[\"name/153\",[104,72.38]],[\"parent/153\",[103,4.797]],[\"name/154\",[105,61.394]],[\"parent/154\",[103,4.797]],[\"name/155\",[19,55.034]],[\"parent/155\",[103,4.797]],[\"name/156\",[70,59.387]],[\"parent/156\",[103,4.797]],[\"name/157\",[59,49.693]],[\"parent/157\",[103,4.797]],[\"name/158\",[66,59.387]],[\"parent/158\",[103,4.797]],[\"name/159\",[67,59.387]],[\"parent/159\",[103,4.797]],[\"name/160\",[68,59.387]],[\"parent/160\",[103,4.797]],[\"name/161\",[69,41.622]],[\"parent/161\",[103,4.797]],[\"name/162\",[106,59.387]],[\"parent/162\",[]],[\"name/163\",[103,49.693]],[\"parent/163\",[106,5.733]],[\"name/164\",[89,49.026]],[\"parent/164\",[106,5.733]],[\"name/165\",[95,49.693]],[\"parent/165\",[106,5.733]],[\"name/166\",[99,49.693]],[\"parent/166\",[106,5.733]],[\"name/167\",[107,61.394]],[\"parent/167\",[]],[\"name/168\",[108,51.178]],[\"parent/168\",[107,5.927]],[\"name/169\",[96,63.907]],[\"parent/169\",[107,5.927]],[\"name/170\",[97,67.272]],[\"parent/170\",[107,5.927]],[\"name/171\",[105,61.394]],[\"parent/171\",[]],[\"name/172\",[109,72.38]],[\"parent/172\",[105,5.927]],[\"name/173\",[110,72.38]],[\"parent/173\",[105,5.927]],[\"name/174\",[111,56.286]],[\"parent/174\",[]],[\"name/175\",[1,31.605]],[\"parent/175\",[111,5.434]],[\"name/176\",[69,41.622]],[\"parent/176\",[111,5.434]],[\"name/177\",[112,47.257]],[\"parent/177\",[111,5.434]],[\"name/178\",[113,48.401]],[\"parent/178\",[111,5.434]],[\"name/179\",[114,72.38]],[\"parent/179\",[111,5.434]],[\"name/180\",[115,72.38]],[\"parent/180\",[111,5.434]],[\"name/181\",[116,46.731]],[\"parent/181\",[]],[\"name/182\",[2,63.907]],[\"parent/182\",[116,4.511]],[\"name/183\",[3,61.394]],[\"parent/183\",[116,4.511]],[\"name/184\",[4,61.394]],[\"parent/184\",[116,4.511]],[\"name/185\",[5,61.394]],[\"parent/185\",[116,4.511]],[\"name/186\",[6,61.394]],[\"parent/186\",[116,4.511]],[\"name/187\",[7,59.387]],[\"parent/187\",[116,4.511]],[\"name/188\",[8,61.394]],[\"parent/188\",[116,4.511]],[\"name/189\",[9,57.717]],[\"parent/189\",[116,4.511]],[\"name/190\",[10,61.394]],[\"parent/190\",[116,4.511]],[\"name/191\",[14,55.034]],[\"parent/191\",[116,4.511]],[\"name/192\",[13,61.394]],[\"parent/192\",[116,4.511]],[\"name/193\",[11,59.387]],[\"parent/193\",[116,4.511]],[\"name/194\",[15,53.922]],[\"parent/194\",[116,4.511]],[\"name/195\",[17,56.286]],[\"parent/195\",[116,4.511]],[\"name/196\",[18,56.286]],[\"parent/196\",[116,4.511]],[\"name/197\",[19,55.034]],[\"parent/197\",[116,4.511]],[\"name/198\",[20,61.394]],[\"parent/198\",[116,4.511]],[\"name/199\",[25,40.462]],[\"parent/199\",[116,4.511]],[\"name/200\",[117,40.462]],[\"parent/200\",[]],[\"name/201\",[33,51.178]],[\"parent/201\",[117,3.906]],[\"name/202\",[34,61.394]],[\"parent/202\",[117,3.906]],[\"name/203\",[35,63.907]],[\"parent/203\",[117,3.906]],[\"name/204\",[36,61.394]],[\"parent/204\",[117,3.906]],[\"name/205\",[37,63.907]],[\"parent/205\",[117,3.906]],[\"name/206\",[38,63.907]],[\"parent/206\",[117,3.906]],[\"name/207\",[39,57.717]],[\"parent/207\",[117,3.906]],[\"name/208\",[40,63.907]],[\"parent/208\",[117,3.906]],[\"name/209\",[41,61.394]],[\"parent/209\",[117,3.906]],[\"name/210\",[42,61.394]],[\"parent/210\",[117,3.906]],[\"name/211\",[43,61.394]],[\"parent/211\",[117,3.906]],[\"name/212\",[21,59.387]],[\"parent/212\",[117,3.906]],[\"name/213\",[22,59.387]],[\"parent/213\",[117,3.906]],[\"name/214\",[23,59.387]],[\"parent/214\",[117,3.906]],[\"name/215\",[24,59.387]],[\"parent/215\",[117,3.906]],[\"name/216\",[58,52.921]],[\"parent/216\",[117,3.906]],[\"name/217\",[15,53.922]],[\"parent/217\",[117,3.906]],[\"name/218\",[17,56.286]],[\"parent/218\",[117,3.906]],[\"name/219\",[18,56.286]],[\"parent/219\",[117,3.906]],[\"name/220\",[19,55.034]],[\"parent/220\",[117,3.906]],[\"name/221\",[44,61.394]],[\"parent/221\",[117,3.906]],[\"name/222\",[45,61.394]],[\"parent/222\",[117,3.906]],[\"name/223\",[46,61.394]],[\"parent/223\",[117,3.906]],[\"name/224\",[47,61.394]],[\"parent/224\",[117,3.906]],[\"name/225\",[48,49.693]],[\"parent/225\",[117,3.906]],[\"name/226\",[49,56.286]],[\"parent/226\",[117,3.906]],[\"name/227\",[50,53.922]],[\"parent/227\",[117,3.906]],[\"name/228\",[51,61.394]],[\"parent/228\",[117,3.906]],[\"name/229\",[52,61.394]],[\"parent/229\",[117,3.906]],[\"name/230\",[53,52.011]],[\"parent/230\",[117,3.906]],[\"name/231\",[54,63.907]],[\"parent/231\",[117,3.906]],[\"name/232\",[55,63.907]],[\"parent/232\",[117,3.906]],[\"name/233\",[56,59.387]],[\"parent/233\",[117,3.906]],[\"name/234\",[57,59.387]],[\"parent/234\",[117,3.906]],[\"name/235\",[60,52.011]],[\"parent/235\",[117,3.906]],[\"name/236\",[118,72.38]],[\"parent/236\",[]],[\"name/237\",[119,41.025]],[\"parent/237\",[]],[\"name/238\",[50,53.922]],[\"parent/238\",[119,3.961]],[\"name/239\",[55,63.907]],[\"parent/239\",[119,3.961]],[\"name/240\",[56,59.387]],[\"parent/240\",[119,3.961]],[\"name/241\",[33,51.178]],[\"parent/241\",[119,3.961]],[\"name/242\",[53,52.011]],[\"parent/242\",[119,3.961]],[\"name/243\",[49,56.286]],[\"parent/243\",[119,3.961]],[\"name/244\",[58,52.921]],[\"parent/244\",[119,3.961]],[\"name/245\",[60,52.011]],[\"parent/245\",[119,3.961]],[\"name/246\",[34,61.394]],[\"parent/246\",[119,3.961]],[\"name/247\",[35,63.907]],[\"parent/247\",[119,3.961]],[\"name/248\",[36,61.394]],[\"parent/248\",[119,3.961]],[\"name/249\",[37,63.907]],[\"parent/249\",[119,3.961]],[\"name/250\",[38,63.907]],[\"parent/250\",[119,3.961]],[\"name/251\",[39,57.717]],[\"parent/251\",[119,3.961]],[\"name/252\",[40,63.907]],[\"parent/252\",[119,3.961]],[\"name/253\",[41,61.394]],[\"parent/253\",[119,3.961]],[\"name/254\",[42,61.394]],[\"parent/254\",[119,3.961]],[\"name/255\",[43,61.394]],[\"parent/255\",[119,3.961]],[\"name/256\",[21,59.387]],[\"parent/256\",[119,3.961]],[\"name/257\",[22,59.387]],[\"parent/257\",[119,3.961]],[\"name/258\",[23,59.387]],[\"parent/258\",[119,3.961]],[\"name/259\",[24,59.387]],[\"parent/259\",[119,3.961]],[\"name/260\",[15,53.922]],[\"parent/260\",[119,3.961]],[\"name/261\",[17,56.286]],[\"parent/261\",[119,3.961]],[\"name/262\",[18,56.286]],[\"parent/262\",[119,3.961]],[\"name/263\",[19,55.034]],[\"parent/263\",[119,3.961]],[\"name/264\",[44,61.394]],[\"parent/264\",[119,3.961]],[\"name/265\",[45,61.394]],[\"parent/265\",[119,3.961]],[\"name/266\",[46,61.394]],[\"parent/266\",[119,3.961]],[\"name/267\",[47,61.394]],[\"parent/267\",[119,3.961]],[\"name/268\",[52,61.394]],[\"parent/268\",[119,3.961]],[\"name/269\",[54,63.907]],[\"parent/269\",[119,3.961]],[\"name/270\",[57,59.387]],[\"parent/270\",[119,3.961]],[\"name/271\",[120,46.731]],[\"parent/271\",[]],[\"name/272\",[1,31.605]],[\"parent/272\",[120,4.511]],[\"name/273\",[10,61.394]],[\"parent/273\",[120,4.511]],[\"name/274\",[3,61.394]],[\"parent/274\",[120,4.511]],[\"name/275\",[4,61.394]],[\"parent/275\",[120,4.511]],[\"name/276\",[5,61.394]],[\"parent/276\",[120,4.511]],[\"name/277\",[6,61.394]],[\"parent/277\",[120,4.511]],[\"name/278\",[7,59.387]],[\"parent/278\",[120,4.511]],[\"name/279\",[8,61.394]],[\"parent/279\",[120,4.511]],[\"name/280\",[9,57.717]],[\"parent/280\",[120,4.511]],[\"name/281\",[14,55.034]],[\"parent/281\",[120,4.511]],[\"name/282\",[13,61.394]],[\"parent/282\",[120,4.511]],[\"name/283\",[11,59.387]],[\"parent/283\",[120,4.511]],[\"name/284\",[15,53.922]],[\"parent/284\",[120,4.511]],[\"name/285\",[17,56.286]],[\"parent/285\",[120,4.511]],[\"name/286\",[18,56.286]],[\"parent/286\",[120,4.511]],[\"name/287\",[19,55.034]],[\"parent/287\",[120,4.511]],[\"name/288\",[20,61.394]],[\"parent/288\",[120,4.511]],[\"name/289\",[25,40.462]],[\"parent/289\",[120,4.511]],[\"name/290\",[121,42.936]],[\"parent/290\",[]],[\"name/291\",[1,31.605]],[\"parent/291\",[121,4.145]],[\"name/292\",[53,52.011]],[\"parent/292\",[121,4.145]],[\"name/293\",[50,53.922]],[\"parent/293\",[121,4.145]],[\"name/294\",[25,40.462]],[\"parent/294\",[121,4.145]],[\"name/295\",[2,63.907]],[\"parent/295\",[121,4.145]],[\"name/296\",[3,61.394]],[\"parent/296\",[121,4.145]],[\"name/297\",[4,61.394]],[\"parent/297\",[121,4.145]],[\"name/298\",[5,61.394]],[\"parent/298\",[121,4.145]],[\"name/299\",[6,61.394]],[\"parent/299\",[121,4.145]],[\"name/300\",[7,59.387]],[\"parent/300\",[121,4.145]],[\"name/301\",[8,61.394]],[\"parent/301\",[121,4.145]],[\"name/302\",[9,57.717]],[\"parent/302\",[121,4.145]],[\"name/303\",[10,61.394]],[\"parent/303\",[121,4.145]],[\"name/304\",[11,59.387]],[\"parent/304\",[121,4.145]],[\"name/305\",[12,67.272]],[\"parent/305\",[121,4.145]],[\"name/306\",[13,61.394]],[\"parent/306\",[121,4.145]],[\"name/307\",[14,55.034]],[\"parent/307\",[121,4.145]],[\"name/308\",[15,53.922]],[\"parent/308\",[121,4.145]],[\"name/309\",[16,67.272]],[\"parent/309\",[121,4.145]],[\"name/310\",[17,56.286]],[\"parent/310\",[121,4.145]],[\"name/311\",[18,56.286]],[\"parent/311\",[121,4.145]],[\"name/312\",[19,55.034]],[\"parent/312\",[121,4.145]],[\"name/313\",[20,61.394]],[\"parent/313\",[121,4.145]],[\"name/314\",[21,59.387]],[\"parent/314\",[121,4.145]],[\"name/315\",[22,59.387]],[\"parent/315\",[121,4.145]],[\"name/316\",[23,59.387]],[\"parent/316\",[121,4.145]],[\"name/317\",[24,59.387]],[\"parent/317\",[121,4.145]],[\"name/318\",[122,57.717]],[\"parent/318\",[]],[\"name/319\",[1,31.605]],[\"parent/319\",[122,5.572]],[\"name/320\",[123,72.38]],[\"parent/320\",[122,5.572]],[\"name/321\",[124,72.38]],[\"parent/321\",[122,5.572]],[\"name/322\",[125,72.38]],[\"parent/322\",[122,5.572]],[\"name/323\",[25,40.462]],[\"parent/323\",[122,5.572]],[\"name/324\",[126,51.178]],[\"parent/324\",[]],[\"name/325\",[127,72.38]],[\"parent/325\",[126,4.941]],[\"name/326\",[128,72.38]],[\"parent/326\",[126,4.941]],[\"name/327\",[1,31.605]],[\"parent/327\",[126,4.941]],[\"name/328\",[44,61.394]],[\"parent/328\",[126,4.941]],[\"name/329\",[47,61.394]],[\"parent/329\",[126,4.941]],[\"name/330\",[46,61.394]],[\"parent/330\",[126,4.941]],[\"name/331\",[45,61.394]],[\"parent/331\",[126,4.941]],[\"name/332\",[129,72.38]],[\"parent/332\",[126,4.941]],[\"name/333\",[130,72.38]],[\"parent/333\",[126,4.941]],[\"name/334\",[131,72.38]],[\"parent/334\",[126,4.941]],[\"name/335\",[25,40.462]],[\"parent/335\",[126,4.941]],[\"name/336\",[132,55.034]],[\"parent/336\",[]],[\"name/337\",[1,31.605]],[\"parent/337\",[132,5.313]],[\"name/338\",[133,72.38]],[\"parent/338\",[132,5.313]],[\"name/339\",[134,72.38]],[\"parent/339\",[132,5.313]],[\"name/340\",[135,72.38]],[\"parent/340\",[132,5.313]],[\"name/341\",[136,72.38]],[\"parent/341\",[132,5.313]],[\"name/342\",[137,72.38]],[\"parent/342\",[132,5.313]],[\"name/343\",[25,40.462]],[\"parent/343\",[132,5.313]],[\"name/344\",[138,56.286]],[\"parent/344\",[]],[\"name/345\",[1,31.605]],[\"parent/345\",[138,5.434]],[\"name/346\",[139,72.38]],[\"parent/346\",[138,5.434]],[\"name/347\",[140,72.38]],[\"parent/347\",[138,5.434]],[\"name/348\",[141,48.401]],[\"parent/348\",[138,5.434]],[\"name/349\",[142,72.38]],[\"parent/349\",[138,5.434]],[\"name/350\",[25,40.462]],[\"parent/350\",[138,5.434]],[\"name/351\",[143,45.754]],[\"parent/351\",[]],[\"name/352\",[1,31.605]],[\"parent/352\",[143,4.417]],[\"name/353\",[144,72.38]],[\"parent/353\",[143,4.417]],[\"name/354\",[145,72.38]],[\"parent/354\",[143,4.417]],[\"name/355\",[146,72.38]],[\"parent/355\",[143,4.417]],[\"name/356\",[147,72.38]],[\"parent/356\",[143,4.417]],[\"name/357\",[148,72.38]],[\"parent/357\",[143,4.417]],[\"name/358\",[149,72.38]],[\"parent/358\",[143,4.417]],[\"name/359\",[150,72.38]],[\"parent/359\",[143,4.417]],[\"name/360\",[151,72.38]],[\"parent/360\",[143,4.417]],[\"name/361\",[152,72.38]],[\"parent/361\",[143,4.417]],[\"name/362\",[100,55.034]],[\"parent/362\",[143,4.417]],[\"name/363\",[153,72.38]],[\"parent/363\",[143,4.417]],[\"name/364\",[154,72.38]],[\"parent/364\",[143,4.417]],[\"name/365\",[155,67.272]],[\"parent/365\",[143,4.417]],[\"name/366\",[156,72.38]],[\"parent/366\",[143,4.417]],[\"name/367\",[157,72.38]],[\"parent/367\",[143,4.417]],[\"name/368\",[158,72.38]],[\"parent/368\",[143,4.417]],[\"name/369\",[159,72.38]],[\"parent/369\",[143,4.417]],[\"name/370\",[160,72.38]],[\"parent/370\",[143,4.417]],[\"name/371\",[25,40.462]],[\"parent/371\",[143,4.417]],[\"name/372\",[161,50.408]],[\"parent/372\",[]],[\"name/373\",[1,31.605]],[\"parent/373\",[161,4.866]],[\"name/374\",[41,61.394]],[\"parent/374\",[161,4.866]],[\"name/375\",[42,61.394]],[\"parent/375\",[161,4.866]],[\"name/376\",[36,61.394]],[\"parent/376\",[161,4.866]],[\"name/377\",[43,61.394]],[\"parent/377\",[161,4.866]],[\"name/378\",[162,67.272]],[\"parent/378\",[161,4.866]],[\"name/379\",[163,72.38]],[\"parent/379\",[161,4.866]],[\"name/380\",[164,61.394]],[\"parent/380\",[161,4.866]],[\"name/381\",[34,61.394]],[\"parent/381\",[161,4.866]],[\"name/382\",[165,72.38]],[\"parent/382\",[161,4.866]],[\"name/383\",[166,72.38]],[\"parent/383\",[161,4.866]],[\"name/384\",[25,40.462]],[\"parent/384\",[161,4.866]],[\"name/385\",[167,59.387]],[\"parent/385\",[]],[\"name/386\",[1,31.605]],[\"parent/386\",[167,5.733]],[\"name/387\",[50,53.922]],[\"parent/387\",[167,5.733]],[\"name/388\",[52,61.394]],[\"parent/388\",[167,5.733]],[\"name/389\",[53,52.011]],[\"parent/389\",[167,5.733]],[\"name/390\",[168,61.394]],[\"parent/390\",[]],[\"name/391\",[1,31.605]],[\"parent/391\",[168,5.927]],[\"name/392\",[50,53.922]],[\"parent/392\",[168,5.927]],[\"name/393\",[169,56.286]],[\"parent/393\",[168,5.927]],[\"name/394\",[170,59.387]],[\"parent/394\",[]],[\"name/395\",[1,31.605]],[\"parent/395\",[170,5.733]],[\"name/396\",[171,72.38]],[\"parent/396\",[170,5.733]],[\"name/397\",[172,67.272]],[\"parent/397\",[170,5.733]],[\"name/398\",[173,72.38]],[\"parent/398\",[170,5.733]],[\"name/399\",[174,52.921]],[\"parent/399\",[]],[\"name/400\",[1,31.605]],[\"parent/400\",[174,5.109]],[\"name/401\",[175,61.394]],[\"parent/401\",[174,5.109]],[\"name/402\",[176,72.38]],[\"parent/402\",[174,5.109]],[\"name/403\",[177,72.38]],[\"parent/403\",[174,5.109]],[\"name/404\",[178,72.38]],[\"parent/404\",[174,5.109]],[\"name/405\",[179,72.38]],[\"parent/405\",[174,5.109]],[\"name/406\",[180,72.38]],[\"parent/406\",[174,5.109]],[\"name/407\",[181,72.38]],[\"parent/407\",[174,5.109]],[\"name/408\",[182,67.272]],[\"parent/408\",[174,5.109]],[\"name/409\",[183,59.387]],[\"parent/409\",[]],[\"name/410\",[1,31.605]],[\"parent/410\",[183,5.733]],[\"name/411\",[172,67.272]],[\"parent/411\",[183,5.733]],[\"name/412\",[175,61.394]],[\"parent/412\",[183,5.733]],[\"name/413\",[184,72.38]],[\"parent/413\",[183,5.733]],[\"name/414\",[185,52.921]],[\"parent/414\",[]],[\"name/415\",[1,31.605]],[\"parent/415\",[185,5.109]],[\"name/416\",[186,72.38]],[\"parent/416\",[185,5.109]],[\"name/417\",[187,72.38]],[\"parent/417\",[185,5.109]],[\"name/418\",[188,72.38]],[\"parent/418\",[185,5.109]],[\"name/419\",[189,72.38]],[\"parent/419\",[185,5.109]],[\"name/420\",[69,41.622]],[\"parent/420\",[185,5.109]],[\"name/421\",[112,47.257]],[\"parent/421\",[185,5.109]],[\"name/422\",[190,72.38]],[\"parent/422\",[185,5.109]],[\"name/423\",[191,67.272]],[\"parent/423\",[185,5.109]],[\"name/424\",[192,61.394]],[\"parent/424\",[]],[\"name/425\",[1,31.605]],[\"parent/425\",[192,5.927]],[\"name/426\",[193,63.907]],[\"parent/426\",[192,5.927]],[\"name/427\",[194,63.907]],[\"parent/427\",[192,5.927]],[\"name/428\",[195,59.387]],[\"parent/428\",[]],[\"name/429\",[1,31.605]],[\"parent/429\",[195,5.733]],[\"name/430\",[193,63.907]],[\"parent/430\",[195,5.733]],[\"name/431\",[196,67.272]],[\"parent/431\",[195,5.733]],[\"name/432\",[194,63.907]],[\"parent/432\",[195,5.733]],[\"name/433\",[197,59.387]],[\"parent/433\",[]],[\"name/434\",[1,31.605]],[\"parent/434\",[197,5.733]],[\"name/435\",[193,63.907]],[\"parent/435\",[197,5.733]],[\"name/436\",[196,67.272]],[\"parent/436\",[197,5.733]],[\"name/437\",[194,63.907]],[\"parent/437\",[197,5.733]],[\"name/438\",[198,53.922]],[\"parent/438\",[]],[\"name/439\",[1,31.605]],[\"parent/439\",[198,5.206]],[\"name/440\",[199,67.272]],[\"parent/440\",[198,5.206]],[\"name/441\",[200,72.38]],[\"parent/441\",[198,5.206]],[\"name/442\",[88,63.907]],[\"parent/442\",[198,5.206]],[\"name/443\",[201,67.272]],[\"parent/443\",[198,5.206]],[\"name/444\",[202,67.272]],[\"parent/444\",[198,5.206]],[\"name/445\",[203,61.394]],[\"parent/445\",[198,5.206]],[\"name/446\",[204,67.272]],[\"parent/446\",[198,5.206]],[\"name/447\",[205,55.034]],[\"parent/447\",[]],[\"name/448\",[1,31.605]],[\"parent/448\",[205,5.313]],[\"name/449\",[199,67.272]],[\"parent/449\",[205,5.313]],[\"name/450\",[203,61.394]],[\"parent/450\",[205,5.313]],[\"name/451\",[202,67.272]],[\"parent/451\",[205,5.313]],[\"name/452\",[201,67.272]],[\"parent/452\",[205,5.313]],[\"name/453\",[88,63.907]],[\"parent/453\",[205,5.313]],[\"name/454\",[204,67.272]],[\"parent/454\",[205,5.313]],[\"name/455\",[206,40.462]],[\"parent/455\",[]],[\"name/456\",[108,51.178]],[\"parent/456\",[206,3.906]],[\"name/457\",[207,52.921]],[\"parent/457\",[206,3.906]],[\"name/458\",[208,52.011]],[\"parent/458\",[206,3.906]],[\"name/459\",[209,72.38]],[\"parent/459\",[206,3.906]],[\"name/460\",[210,52.921]],[\"parent/460\",[206,3.906]],[\"name/461\",[211,52.011]],[\"parent/461\",[206,3.906]],[\"name/462\",[212,52.921]],[\"parent/462\",[206,3.906]],[\"name/463\",[213,52.011]],[\"parent/463\",[206,3.906]],[\"name/464\",[214,52.921]],[\"parent/464\",[206,3.906]],[\"name/465\",[215,52.011]],[\"parent/465\",[206,3.906]],[\"name/466\",[216,52.011]],[\"parent/466\",[206,3.906]],[\"name/467\",[217,52.921]],[\"parent/467\",[206,3.906]],[\"name/468\",[218,52.921]],[\"parent/468\",[206,3.906]],[\"name/469\",[219,72.38]],[\"parent/469\",[206,3.906]],[\"name/470\",[220,72.38]],[\"parent/470\",[206,3.906]],[\"name/471\",[221,49.026]],[\"parent/471\",[206,3.906]],[\"name/472\",[222,72.38]],[\"parent/472\",[206,3.906]],[\"name/473\",[223,72.38]],[\"parent/473\",[206,3.906]],[\"name/474\",[224,72.38]],[\"parent/474\",[206,3.906]],[\"name/475\",[225,72.38]],[\"parent/475\",[206,3.906]],[\"name/476\",[226,72.38]],[\"parent/476\",[206,3.906]],[\"name/477\",[227,72.38]],[\"parent/477\",[206,3.906]],[\"name/478\",[228,72.38]],[\"parent/478\",[206,3.906]],[\"name/479\",[229,52.921]],[\"parent/479\",[206,3.906]],[\"name/480\",[230,72.38]],[\"parent/480\",[206,3.906]],[\"name/481\",[231,72.38]],[\"parent/481\",[206,3.906]],[\"name/482\",[232,72.38]],[\"parent/482\",[206,3.906]],[\"name/483\",[233,72.38]],[\"parent/483\",[206,3.906]],[\"name/484\",[234,72.38]],[\"parent/484\",[206,3.906]],[\"name/485\",[235,72.38]],[\"parent/485\",[206,3.906]],[\"name/486\",[236,72.38]],[\"parent/486\",[206,3.906]],[\"name/487\",[237,72.38]],[\"parent/487\",[206,3.906]],[\"name/488\",[238,72.38]],[\"parent/488\",[206,3.906]],[\"name/489\",[239,72.38]],[\"parent/489\",[206,3.906]],[\"name/490\",[240,67.272]],[\"parent/490\",[206,3.906]],[\"name/491\",[241,56.286]],[\"parent/491\",[]],[\"name/492\",[242,72.38]],[\"parent/492\",[241,5.434]],[\"name/493\",[240,67.272]],[\"parent/493\",[241,5.434]],[\"name/494\",[243,72.38]],[\"parent/494\",[241,5.434]],[\"name/495\",[244,72.38]],[\"parent/495\",[241,5.434]],[\"name/496\",[245,72.38]],[\"parent/496\",[241,5.434]],[\"name/497\",[246,72.38]],[\"parent/497\",[241,5.434]],[\"name/498\",[247,53.922]],[\"parent/498\",[]],[\"name/499\",[248,72.38]],[\"parent/499\",[247,5.206]],[\"name/500\",[249,46.231]],[\"parent/500\",[247,5.206]],[\"name/501\",[250,46.731]],[\"parent/501\",[247,5.206]],[\"name/502\",[251,46.231]],[\"parent/502\",[247,5.206]],[\"name/503\",[252,44.865]],[\"parent/503\",[247,5.206]],[\"name/504\",[253,46.231]],[\"parent/504\",[247,5.206]],[\"name/505\",[254,46.231]],[\"parent/505\",[247,5.206]],[\"name/506\",[255,46.231]],[\"parent/506\",[247,5.206]],[\"name/507\",[256,53.922]],[\"parent/507\",[]],[\"name/508\",[257,57.717]],[\"parent/508\",[256,5.206]],[\"name/509\",[249,46.231]],[\"parent/509\",[256,5.206]],[\"name/510\",[250,46.731]],[\"parent/510\",[256,5.206]],[\"name/511\",[251,46.231]],[\"parent/511\",[256,5.206]],[\"name/512\",[252,44.865]],[\"parent/512\",[256,5.206]],[\"name/513\",[253,46.231]],[\"parent/513\",[256,5.206]],[\"name/514\",[254,46.231]],[\"parent/514\",[256,5.206]],[\"name/515\",[255,46.231]],[\"parent/515\",[256,5.206]],[\"name/516\",[258,53.922]],[\"parent/516\",[]],[\"name/517\",[259,72.38]],[\"parent/517\",[258,5.206]],[\"name/518\",[249,46.231]],[\"parent/518\",[258,5.206]],[\"name/519\",[250,46.731]],[\"parent/519\",[258,5.206]],[\"name/520\",[251,46.231]],[\"parent/520\",[258,5.206]],[\"name/521\",[252,44.865]],[\"parent/521\",[258,5.206]],[\"name/522\",[253,46.231]],[\"parent/522\",[258,5.206]],[\"name/523\",[254,46.231]],[\"parent/523\",[258,5.206]],[\"name/524\",[255,46.231]],[\"parent/524\",[258,5.206]],[\"name/525\",[260,53.922]],[\"parent/525\",[]],[\"name/526\",[261,63.907]],[\"parent/526\",[260,5.206]],[\"name/527\",[249,46.231]],[\"parent/527\",[260,5.206]],[\"name/528\",[250,46.731]],[\"parent/528\",[260,5.206]],[\"name/529\",[251,46.231]],[\"parent/529\",[260,5.206]],[\"name/530\",[252,44.865]],[\"parent/530\",[260,5.206]],[\"name/531\",[253,46.231]],[\"parent/531\",[260,5.206]],[\"name/532\",[254,46.231]],[\"parent/532\",[260,5.206]],[\"name/533\",[255,46.231]],[\"parent/533\",[260,5.206]],[\"name/534\",[218,52.921]],[\"parent/534\",[]],[\"name/535\",[1,31.605]],[\"parent/535\",[218,5.109]],[\"name/536\",[249,46.231]],[\"parent/536\",[218,5.109]],[\"name/537\",[250,46.731]],[\"parent/537\",[218,5.109]],[\"name/538\",[251,46.231]],[\"parent/538\",[218,5.109]],[\"name/539\",[252,44.865]],[\"parent/539\",[218,5.109]],[\"name/540\",[253,46.231]],[\"parent/540\",[218,5.109]],[\"name/541\",[254,46.231]],[\"parent/541\",[218,5.109]],[\"name/542\",[255,46.231]],[\"parent/542\",[218,5.109]],[\"name/543\",[229,52.921]],[\"parent/543\",[]],[\"name/544\",[1,31.605]],[\"parent/544\",[229,5.109]],[\"name/545\",[249,46.231]],[\"parent/545\",[229,5.109]],[\"name/546\",[250,46.731]],[\"parent/546\",[229,5.109]],[\"name/547\",[251,46.231]],[\"parent/547\",[229,5.109]],[\"name/548\",[252,44.865]],[\"parent/548\",[229,5.109]],[\"name/549\",[253,46.231]],[\"parent/549\",[229,5.109]],[\"name/550\",[254,46.231]],[\"parent/550\",[229,5.109]],[\"name/551\",[255,46.231]],[\"parent/551\",[229,5.109]],[\"name/552\",[213,52.011]],[\"parent/552\",[]],[\"name/553\",[1,31.605]],[\"parent/553\",[213,5.021]],[\"name/554\",[249,46.231]],[\"parent/554\",[213,5.021]],[\"name/555\",[250,46.731]],[\"parent/555\",[213,5.021]],[\"name/556\",[251,46.231]],[\"parent/556\",[213,5.021]],[\"name/557\",[252,44.865]],[\"parent/557\",[213,5.021]],[\"name/558\",[253,46.231]],[\"parent/558\",[213,5.021]],[\"name/559\",[254,46.231]],[\"parent/559\",[213,5.021]],[\"name/560\",[255,46.231]],[\"parent/560\",[213,5.021]],[\"name/561\",[257,57.717]],[\"parent/561\",[213,5.021]],[\"name/562\",[208,52.011]],[\"parent/562\",[]],[\"name/563\",[1,31.605]],[\"parent/563\",[208,5.021]],[\"name/564\",[249,46.231]],[\"parent/564\",[208,5.021]],[\"name/565\",[250,46.731]],[\"parent/565\",[208,5.021]],[\"name/566\",[251,46.231]],[\"parent/566\",[208,5.021]],[\"name/567\",[252,44.865]],[\"parent/567\",[208,5.021]],[\"name/568\",[253,46.231]],[\"parent/568\",[208,5.021]],[\"name/569\",[254,46.231]],[\"parent/569\",[208,5.021]],[\"name/570\",[255,46.231]],[\"parent/570\",[208,5.021]],[\"name/571\",[257,57.717]],[\"parent/571\",[208,5.021]],[\"name/572\",[217,52.921]],[\"parent/572\",[]],[\"name/573\",[1,31.605]],[\"parent/573\",[217,5.109]],[\"name/574\",[249,46.231]],[\"parent/574\",[217,5.109]],[\"name/575\",[250,46.731]],[\"parent/575\",[217,5.109]],[\"name/576\",[251,46.231]],[\"parent/576\",[217,5.109]],[\"name/577\",[252,44.865]],[\"parent/577\",[217,5.109]],[\"name/578\",[253,46.231]],[\"parent/578\",[217,5.109]],[\"name/579\",[254,46.231]],[\"parent/579\",[217,5.109]],[\"name/580\",[255,46.231]],[\"parent/580\",[217,5.109]],[\"name/581\",[215,52.011]],[\"parent/581\",[]],[\"name/582\",[1,31.605]],[\"parent/582\",[215,5.021]],[\"name/583\",[249,46.231]],[\"parent/583\",[215,5.021]],[\"name/584\",[250,46.731]],[\"parent/584\",[215,5.021]],[\"name/585\",[251,46.231]],[\"parent/585\",[215,5.021]],[\"name/586\",[252,44.865]],[\"parent/586\",[215,5.021]],[\"name/587\",[253,46.231]],[\"parent/587\",[215,5.021]],[\"name/588\",[254,46.231]],[\"parent/588\",[215,5.021]],[\"name/589\",[255,46.231]],[\"parent/589\",[215,5.021]],[\"name/590\",[257,57.717]],[\"parent/590\",[215,5.021]],[\"name/591\",[211,52.011]],[\"parent/591\",[]],[\"name/592\",[1,31.605]],[\"parent/592\",[211,5.021]],[\"name/593\",[249,46.231]],[\"parent/593\",[211,5.021]],[\"name/594\",[250,46.731]],[\"parent/594\",[211,5.021]],[\"name/595\",[251,46.231]],[\"parent/595\",[211,5.021]],[\"name/596\",[252,44.865]],[\"parent/596\",[211,5.021]],[\"name/597\",[253,46.231]],[\"parent/597\",[211,5.021]],[\"name/598\",[254,46.231]],[\"parent/598\",[211,5.021]],[\"name/599\",[255,46.231]],[\"parent/599\",[211,5.021]],[\"name/600\",[257,57.717]],[\"parent/600\",[211,5.021]],[\"name/601\",[210,52.921]],[\"parent/601\",[]],[\"name/602\",[1,31.605]],[\"parent/602\",[210,5.109]],[\"name/603\",[249,46.231]],[\"parent/603\",[210,5.109]],[\"name/604\",[250,46.731]],[\"parent/604\",[210,5.109]],[\"name/605\",[251,46.231]],[\"parent/605\",[210,5.109]],[\"name/606\",[252,44.865]],[\"parent/606\",[210,5.109]],[\"name/607\",[253,46.231]],[\"parent/607\",[210,5.109]],[\"name/608\",[254,46.231]],[\"parent/608\",[210,5.109]],[\"name/609\",[255,46.231]],[\"parent/609\",[210,5.109]],[\"name/610\",[216,52.011]],[\"parent/610\",[]],[\"name/611\",[1,31.605]],[\"parent/611\",[216,5.021]],[\"name/612\",[249,46.231]],[\"parent/612\",[216,5.021]],[\"name/613\",[250,46.731]],[\"parent/613\",[216,5.021]],[\"name/614\",[251,46.231]],[\"parent/614\",[216,5.021]],[\"name/615\",[255,46.231]],[\"parent/615\",[216,5.021]],[\"name/616\",[252,44.865]],[\"parent/616\",[216,5.021]],[\"name/617\",[253,46.231]],[\"parent/617\",[216,5.021]],[\"name/618\",[254,46.231]],[\"parent/618\",[216,5.021]],[\"name/619\",[257,57.717]],[\"parent/619\",[216,5.021]],[\"name/620\",[207,52.921]],[\"parent/620\",[]],[\"name/621\",[1,31.605]],[\"parent/621\",[207,5.109]],[\"name/622\",[249,46.231]],[\"parent/622\",[207,5.109]],[\"name/623\",[250,46.731]],[\"parent/623\",[207,5.109]],[\"name/624\",[251,46.231]],[\"parent/624\",[207,5.109]],[\"name/625\",[252,44.865]],[\"parent/625\",[207,5.109]],[\"name/626\",[253,46.231]],[\"parent/626\",[207,5.109]],[\"name/627\",[254,46.231]],[\"parent/627\",[207,5.109]],[\"name/628\",[255,46.231]],[\"parent/628\",[207,5.109]],[\"name/629\",[262,53.922]],[\"parent/629\",[]],[\"name/630\",[1,31.605]],[\"parent/630\",[262,5.206]],[\"name/631\",[249,46.231]],[\"parent/631\",[262,5.206]],[\"name/632\",[250,46.731]],[\"parent/632\",[262,5.206]],[\"name/633\",[251,46.231]],[\"parent/633\",[262,5.206]],[\"name/634\",[252,44.865]],[\"parent/634\",[262,5.206]],[\"name/635\",[253,46.231]],[\"parent/635\",[262,5.206]],[\"name/636\",[254,46.231]],[\"parent/636\",[262,5.206]],[\"name/637\",[255,46.231]],[\"parent/637\",[262,5.206]],[\"name/638\",[221,49.026]],[\"parent/638\",[]],[\"name/639\",[1,31.605]],[\"parent/639\",[221,4.733]],[\"name/640\",[249,46.231]],[\"parent/640\",[221,4.733]],[\"name/641\",[250,46.731]],[\"parent/641\",[221,4.733]],[\"name/642\",[251,46.231]],[\"parent/642\",[221,4.733]],[\"name/643\",[252,44.865]],[\"parent/643\",[221,4.733]],[\"name/644\",[253,46.231]],[\"parent/644\",[221,4.733]],[\"name/645\",[254,46.231]],[\"parent/645\",[221,4.733]],[\"name/646\",[255,46.231]],[\"parent/646\",[221,4.733]],[\"name/647\",[214,52.921]],[\"parent/647\",[]],[\"name/648\",[1,31.605]],[\"parent/648\",[214,5.109]],[\"name/649\",[249,46.231]],[\"parent/649\",[214,5.109]],[\"name/650\",[250,46.731]],[\"parent/650\",[214,5.109]],[\"name/651\",[251,46.231]],[\"parent/651\",[214,5.109]],[\"name/652\",[252,44.865]],[\"parent/652\",[214,5.109]],[\"name/653\",[253,46.231]],[\"parent/653\",[214,5.109]],[\"name/654\",[254,46.231]],[\"parent/654\",[214,5.109]],[\"name/655\",[255,46.231]],[\"parent/655\",[214,5.109]],[\"name/656\",[212,52.921]],[\"parent/656\",[]],[\"name/657\",[1,31.605]],[\"parent/657\",[212,5.109]],[\"name/658\",[249,46.231]],[\"parent/658\",[212,5.109]],[\"name/659\",[250,46.731]],[\"parent/659\",[212,5.109]],[\"name/660\",[251,46.231]],[\"parent/660\",[212,5.109]],[\"name/661\",[252,44.865]],[\"parent/661\",[212,5.109]],[\"name/662\",[253,46.231]],[\"parent/662\",[212,5.109]],[\"name/663\",[254,46.231]],[\"parent/663\",[212,5.109]],[\"name/664\",[255,46.231]],[\"parent/664\",[212,5.109]],[\"name/665\",[263,41.935]],[\"parent/665\",[]],[\"name/666\",[1,31.605]],[\"parent/666\",[263,4.048]],[\"name/667\",[14,55.034]],[\"parent/667\",[263,4.048]],[\"name/668\",[264,72.38]],[\"parent/668\",[263,4.048]],[\"name/669\",[265,72.38]],[\"parent/669\",[263,4.048]],[\"name/670\",[266,72.38]],[\"parent/670\",[263,4.048]],[\"name/671\",[182,67.272]],[\"parent/671\",[263,4.048]],[\"name/672\",[267,72.38]],[\"parent/672\",[263,4.048]],[\"name/673\",[268,72.38]],[\"parent/673\",[263,4.048]],[\"name/674\",[269,72.38]],[\"parent/674\",[263,4.048]],[\"name/675\",[251,46.231]],[\"parent/675\",[263,4.048]],[\"name/676\",[253,46.231]],[\"parent/676\",[263,4.048]],[\"name/677\",[254,46.231]],[\"parent/677\",[263,4.048]],[\"name/678\",[255,46.231]],[\"parent/678\",[263,4.048]],[\"name/679\",[270,72.38]],[\"parent/679\",[263,4.048]],[\"name/680\",[271,72.38]],[\"parent/680\",[263,4.048]],[\"name/681\",[272,72.38]],[\"parent/681\",[263,4.048]],[\"name/682\",[273,72.38]],[\"parent/682\",[263,4.048]],[\"name/683\",[274,72.38]],[\"parent/683\",[263,4.048]],[\"name/684\",[275,72.38]],[\"parent/684\",[263,4.048]],[\"name/685\",[276,72.38]],[\"parent/685\",[263,4.048]],[\"name/686\",[277,72.38]],[\"parent/686\",[263,4.048]],[\"name/687\",[278,72.38]],[\"parent/687\",[263,4.048]],[\"name/688\",[279,72.38]],[\"parent/688\",[263,4.048]],[\"name/689\",[280,72.38]],[\"parent/689\",[263,4.048]],[\"name/690\",[281,72.38]],[\"parent/690\",[263,4.048]],[\"name/691\",[282,59.387]],[\"parent/691\",[263,4.048]],[\"name/692\",[60,52.011]],[\"parent/692\",[263,4.048]],[\"name/693\",[283,72.38]],[\"parent/693\",[263,4.048]],[\"name/694\",[25,40.462]],[\"parent/694\",[263,4.048]],[\"name/695\",[59,49.693]],[\"parent/695\",[263,4.048]],[\"name/696\",[284,55.034]],[\"parent/696\",[]],[\"name/697\",[249,46.231]],[\"parent/697\",[284,5.313]],[\"name/698\",[250,46.731]],[\"parent/698\",[284,5.313]],[\"name/699\",[251,46.231]],[\"parent/699\",[284,5.313]],[\"name/700\",[252,44.865]],[\"parent/700\",[284,5.313]],[\"name/701\",[253,46.231]],[\"parent/701\",[284,5.313]],[\"name/702\",[254,46.231]],[\"parent/702\",[284,5.313]],[\"name/703\",[255,46.231]],[\"parent/703\",[284,5.313]],[\"name/704\",[285,51.178]],[\"parent/704\",[]],[\"name/705\",[108,51.178]],[\"parent/705\",[285,4.941]],[\"name/706\",[286,63.907]],[\"parent/706\",[285,4.941]],[\"name/707\",[287,72.38]],[\"parent/707\",[285,4.941]],[\"name/708\",[288,72.38]],[\"parent/708\",[285,4.941]],[\"name/709\",[289,72.38]],[\"parent/709\",[285,4.941]],[\"name/710\",[290,49.026]],[\"parent/710\",[]],[\"name/711\",[286,63.907]],[\"parent/711\",[290,4.733]],[\"name/712\",[291,72.38]],[\"parent/712\",[290,4.733]],[\"name/713\",[292,72.38]],[\"parent/713\",[290,4.733]],[\"name/714\",[293,72.38]],[\"parent/714\",[290,4.733]],[\"name/715\",[294,72.38]],[\"parent/715\",[290,4.733]],[\"name/716\",[295,72.38]],[\"parent/716\",[290,4.733]],[\"name/717\",[296,72.38]],[\"parent/717\",[290,4.733]],[\"name/718\",[297,63.907]],[\"parent/718\",[290,4.733]],[\"name/719\",[298,72.38]],[\"parent/719\",[290,4.733]],[\"name/720\",[299,59.387]],[\"parent/720\",[]],[\"name/721\",[300,72.38]],[\"parent/721\",[299,5.733]],[\"name/722\",[301,72.38]],[\"parent/722\",[299,5.733]],[\"name/723\",[302,67.272]],[\"parent/723\",[299,5.733]],[\"name/724\",[303,72.38]],[\"parent/724\",[299,5.733]],[\"name/725\",[100,55.034]],[\"parent/725\",[]],[\"name/726\",[108,51.178]],[\"parent/726\",[100,5.313]],[\"name/727\",[286,63.907]],[\"parent/727\",[100,5.313]],[\"name/728\",[304,72.38]],[\"parent/728\",[100,5.313]],[\"name/729\",[305,72.38]],[\"parent/729\",[100,5.313]],[\"name/730\",[306,57.717]],[\"parent/730\",[]],[\"name/731\",[307,72.38]],[\"parent/731\",[306,5.572]],[\"name/732\",[308,72.38]],[\"parent/732\",[306,5.572]],[\"name/733\",[309,72.38]],[\"parent/733\",[306,5.572]],[\"name/734\",[310,72.38]],[\"parent/734\",[306,5.572]],[\"name/735\",[311,72.38]],[\"parent/735\",[306,5.572]],[\"name/736\",[312,61.394]],[\"parent/736\",[]],[\"name/737\",[313,72.38]],[\"parent/737\",[312,5.927]],[\"name/738\",[314,72.38]],[\"parent/738\",[312,5.927]],[\"name/739\",[1,31.605]],[\"parent/739\",[312,5.927]],[\"name/740\",[315,57.717]],[\"parent/740\",[]],[\"name/741\",[316,52.921]],[\"parent/741\",[315,5.572]],[\"name/742\",[317,72.38]],[\"parent/742\",[315,5.572]],[\"name/743\",[318,72.38]],[\"parent/743\",[315,5.572]],[\"name/744\",[69,41.622]],[\"parent/744\",[315,5.572]],[\"name/745\",[319,67.272]],[\"parent/745\",[315,5.572]],[\"name/746\",[320,47.813]],[\"parent/746\",[]],[\"name/747\",[1,31.605]],[\"parent/747\",[320,4.616]],[\"name/748\",[96,63.907]],[\"parent/748\",[320,4.616]],[\"name/749\",[321,72.38]],[\"parent/749\",[320,4.616]],[\"name/750\",[69,41.622]],[\"parent/750\",[320,4.616]],[\"name/751\",[290,49.026]],[\"parent/751\",[320,4.616]],[\"name/752\",[285,51.178]],[\"parent/752\",[320,4.616]],[\"name/753\",[322,59.387]],[\"parent/753\",[320,4.616]],[\"name/754\",[323,61.394]],[\"parent/754\",[320,4.616]],[\"name/755\",[324,49.693]],[\"parent/755\",[320,4.616]],[\"name/756\",[325,59.387]],[\"parent/756\",[320,4.616]],[\"name/757\",[326,59.387]],[\"parent/757\",[320,4.616]],[\"name/758\",[327,72.38]],[\"parent/758\",[320,4.616]],[\"name/759\",[328,72.38]],[\"parent/759\",[320,4.616]],[\"name/760\",[329,72.38]],[\"parent/760\",[320,4.616]],[\"name/761\",[330,72.38]],[\"parent/761\",[320,4.616]],[\"name/762\",[25,40.462]],[\"parent/762\",[320,4.616]],[\"name/763\",[331,56.286]],[\"parent/763\",[]],[\"name/764\",[69,41.622]],[\"parent/764\",[331,5.434]],[\"name/765\",[290,49.026]],[\"parent/765\",[331,5.434]],[\"name/766\",[285,51.178]],[\"parent/766\",[331,5.434]],[\"name/767\",[322,59.387]],[\"parent/767\",[331,5.434]],[\"name/768\",[324,49.693]],[\"parent/768\",[331,5.434]],[\"name/769\",[25,40.462]],[\"parent/769\",[331,5.434]],[\"name/770\",[332,52.921]],[\"parent/770\",[]],[\"name/771\",[69,41.622]],[\"parent/771\",[332,5.109]],[\"name/772\",[290,49.026]],[\"parent/772\",[332,5.109]],[\"name/773\",[285,51.178]],[\"parent/773\",[332,5.109]],[\"name/774\",[322,59.387]],[\"parent/774\",[332,5.109]],[\"name/775\",[324,49.693]],[\"parent/775\",[332,5.109]],[\"name/776\",[25,40.462]],[\"parent/776\",[332,5.109]],[\"name/777\",[112,47.257]],[\"parent/777\",[332,5.109]],[\"name/778\",[113,48.401]],[\"parent/778\",[332,5.109]],[\"name/779\",[333,59.387]],[\"parent/779\",[332,5.109]],[\"name/780\",[334,46.231]],[\"parent/780\",[]],[\"name/781\",[335,72.38]],[\"parent/781\",[334,4.463]],[\"name/782\",[336,72.38]],[\"parent/782\",[334,4.463]],[\"name/783\",[337,72.38]],[\"parent/783\",[334,4.463]],[\"name/784\",[338,72.38]],[\"parent/784\",[334,4.463]],[\"name/785\",[339,61.394]],[\"parent/785\",[334,4.463]],[\"name/786\",[340,57.717]],[\"parent/786\",[334,4.463]],[\"name/787\",[112,47.257]],[\"parent/787\",[334,4.463]],[\"name/788\",[113,48.401]],[\"parent/788\",[334,4.463]],[\"name/789\",[341,63.907]],[\"parent/789\",[334,4.463]],[\"name/790\",[342,63.907]],[\"parent/790\",[334,4.463]],[\"name/791\",[343,63.907]],[\"parent/791\",[334,4.463]],[\"name/792\",[333,59.387]],[\"parent/792\",[334,4.463]],[\"name/793\",[69,41.622]],[\"parent/793\",[334,4.463]],[\"name/794\",[290,49.026]],[\"parent/794\",[334,4.463]],[\"name/795\",[285,51.178]],[\"parent/795\",[334,4.463]],[\"name/796\",[322,59.387]],[\"parent/796\",[334,4.463]],[\"name/797\",[324,49.693]],[\"parent/797\",[334,4.463]],[\"name/798\",[25,40.462]],[\"parent/798\",[334,4.463]],[\"name/799\",[344,67.272]],[\"parent/799\",[334,4.463]],[\"name/800\",[345,53.922]],[\"parent/800\",[]],[\"name/801\",[69,41.622]],[\"parent/801\",[345,5.206]],[\"name/802\",[290,49.026]],[\"parent/802\",[345,5.206]],[\"name/803\",[285,51.178]],[\"parent/803\",[345,5.206]],[\"name/804\",[322,59.387]],[\"parent/804\",[345,5.206]],[\"name/805\",[324,49.693]],[\"parent/805\",[345,5.206]],[\"name/806\",[25,40.462]],[\"parent/806\",[345,5.206]],[\"name/807\",[112,47.257]],[\"parent/807\",[345,5.206]],[\"name/808\",[113,48.401]],[\"parent/808\",[345,5.206]],[\"name/809\",[346,51.178]],[\"parent/809\",[]],[\"name/810\",[347,72.38]],[\"parent/810\",[346,4.941]],[\"name/811\",[348,72.38]],[\"parent/811\",[346,4.941]],[\"name/812\",[349,72.38]],[\"parent/812\",[346,4.941]],[\"name/813\",[350,72.38]],[\"parent/813\",[346,4.941]],[\"name/814\",[351,72.38]],[\"parent/814\",[346,4.941]],[\"name/815\",[352,72.38]],[\"parent/815\",[346,4.941]],[\"name/816\",[353,72.38]],[\"parent/816\",[346,4.941]],[\"name/817\",[354,72.38]],[\"parent/817\",[346,4.941]],[\"name/818\",[355,72.38]],[\"parent/818\",[346,4.941]],[\"name/819\",[356,72.38]],[\"parent/819\",[346,4.941]],[\"name/820\",[1,31.605]],[\"parent/820\",[346,4.941]],[\"name/821\",[357,53.922]],[\"parent/821\",[]],[\"name/822\",[1,31.605]],[\"parent/822\",[357,5.206]],[\"name/823\",[358,72.38]],[\"parent/823\",[357,5.206]],[\"name/824\",[359,72.38]],[\"parent/824\",[357,5.206]],[\"name/825\",[360,72.38]],[\"parent/825\",[357,5.206]],[\"name/826\",[361,72.38]],[\"parent/826\",[357,5.206]],[\"name/827\",[362,72.38]],[\"parent/827\",[357,5.206]],[\"name/828\",[363,63.907]],[\"parent/828\",[357,5.206]],[\"name/829\",[364,72.38]],[\"parent/829\",[357,5.206]],[\"name/830\",[365,61.394]],[\"parent/830\",[]],[\"name/831\",[1,31.605]],[\"parent/831\",[365,5.927]],[\"name/832\",[366,67.272]],[\"parent/832\",[365,5.927]],[\"name/833\",[252,44.865]],[\"parent/833\",[365,5.927]],[\"name/834\",[367,49.026]],[\"parent/834\",[]],[\"name/835\",[1,31.605]],[\"parent/835\",[367,4.733]],[\"name/836\",[368,72.38]],[\"parent/836\",[367,4.733]],[\"name/837\",[9,57.717]],[\"parent/837\",[367,4.733]],[\"name/838\",[369,72.38]],[\"parent/838\",[367,4.733]],[\"name/839\",[340,57.717]],[\"parent/839\",[367,4.733]],[\"name/840\",[370,72.38]],[\"parent/840\",[367,4.733]],[\"name/841\",[339,61.394]],[\"parent/841\",[367,4.733]],[\"name/842\",[371,72.38]],[\"parent/842\",[367,4.733]],[\"name/843\",[372,72.38]],[\"parent/843\",[367,4.733]],[\"name/844\",[373,72.38]],[\"parent/844\",[367,4.733]],[\"name/845\",[374,72.38]],[\"parent/845\",[367,4.733]],[\"name/846\",[375,72.38]],[\"parent/846\",[367,4.733]],[\"name/847\",[376,72.38]],[\"parent/847\",[367,4.733]],[\"name/848\",[25,40.462]],[\"parent/848\",[367,4.733]],[\"name/849\",[377,52.921]],[\"parent/849\",[]],[\"name/850\",[1,31.605]],[\"parent/850\",[377,5.109]],[\"name/851\",[100,55.034]],[\"parent/851\",[377,5.109]],[\"name/852\",[285,51.178]],[\"parent/852\",[377,5.109]],[\"name/853\",[101,63.907]],[\"parent/853\",[377,5.109]],[\"name/854\",[378,72.38]],[\"parent/854\",[377,5.109]],[\"name/855\",[102,61.394]],[\"parent/855\",[377,5.109]],[\"name/856\",[379,72.38]],[\"parent/856\",[377,5.109]],[\"name/857\",[380,67.272]],[\"parent/857\",[377,5.109]],[\"name/858\",[25,40.462]],[\"parent/858\",[377,5.109]],[\"name/859\",[381,55.034]],[\"parent/859\",[]],[\"name/860\",[1,31.605]],[\"parent/860\",[381,5.313]],[\"name/861\",[380,67.272]],[\"parent/861\",[381,5.313]],[\"name/862\",[102,61.394]],[\"parent/862\",[381,5.313]],[\"name/863\",[382,72.38]],[\"parent/863\",[381,5.313]],[\"name/864\",[383,72.38]],[\"parent/864\",[381,5.313]],[\"name/865\",[101,63.907]],[\"parent/865\",[381,5.313]],[\"name/866\",[25,40.462]],[\"parent/866\",[381,5.313]],[\"name/867\",[384,67.272]],[\"parent/867\",[]],[\"name/868\",[385,72.38]],[\"parent/868\",[384,6.494]],[\"name/869\",[386,63.907]],[\"parent/869\",[]],[\"name/870\",[387,67.272]],[\"parent/870\",[386,6.17]],[\"name/871\",[297,63.907]],[\"parent/871\",[386,6.17]],[\"name/872\",[388,56.286]],[\"parent/872\",[]],[\"name/873\",[389,72.38]],[\"parent/873\",[388,5.434]],[\"name/874\",[390,72.38]],[\"parent/874\",[388,5.434]],[\"name/875\",[391,72.38]],[\"parent/875\",[388,5.434]],[\"name/876\",[392,72.38]],[\"parent/876\",[388,5.434]],[\"name/877\",[387,67.272]],[\"parent/877\",[388,5.434]],[\"name/878\",[297,63.907]],[\"parent/878\",[388,5.434]],[\"name/879\",[393,61.394]],[\"parent/879\",[]],[\"name/880\",[340,57.717]],[\"parent/880\",[393,5.927]],[\"name/881\",[112,47.257]],[\"parent/881\",[393,5.927]],[\"name/882\",[113,48.401]],[\"parent/882\",[393,5.927]],[\"name/883\",[394,63.907]],[\"parent/883\",[]],[\"name/884\",[112,47.257]],[\"parent/884\",[394,6.17]],[\"name/885\",[113,48.401]],[\"parent/885\",[394,6.17]],[\"name/886\",[395,67.272]],[\"parent/886\",[]],[\"name/887\",[344,67.272]],[\"parent/887\",[395,6.494]],[\"name/888\",[396,67.272]],[\"parent/888\",[]],[\"name/889\",[333,59.387]],[\"parent/889\",[396,6.494]],[\"name/890\",[397,59.387]],[\"parent/890\",[]],[\"name/891\",[339,61.394]],[\"parent/891\",[397,5.733]],[\"name/892\",[340,57.717]],[\"parent/892\",[397,5.733]],[\"name/893\",[112,47.257]],[\"parent/893\",[397,5.733]],[\"name/894\",[113,48.401]],[\"parent/894\",[397,5.733]],[\"name/895\",[398,53.922]],[\"parent/895\",[]],[\"name/896\",[339,61.394]],[\"parent/896\",[398,5.206]],[\"name/897\",[340,57.717]],[\"parent/897\",[398,5.206]],[\"name/898\",[112,47.257]],[\"parent/898\",[398,5.206]],[\"name/899\",[113,48.401]],[\"parent/899\",[398,5.206]],[\"name/900\",[341,63.907]],[\"parent/900\",[398,5.206]],[\"name/901\",[342,63.907]],[\"parent/901\",[398,5.206]],[\"name/902\",[343,63.907]],[\"parent/902\",[398,5.206]],[\"name/903\",[333,59.387]],[\"parent/903\",[398,5.206]],[\"name/904\",[399,57.717]],[\"parent/904\",[]],[\"name/905\",[323,61.394]],[\"parent/905\",[399,5.572]],[\"name/906\",[400,72.38]],[\"parent/906\",[399,5.572]],[\"name/907\",[325,59.387]],[\"parent/907\",[399,5.572]],[\"name/908\",[401,63.907]],[\"parent/908\",[399,5.572]],[\"name/909\",[326,59.387]],[\"parent/909\",[399,5.572]],[\"name/910\",[402,56.286]],[\"parent/910\",[]],[\"name/911\",[341,63.907]],[\"parent/911\",[402,5.434]],[\"name/912\",[342,63.907]],[\"parent/912\",[402,5.434]],[\"name/913\",[343,63.907]],[\"parent/913\",[402,5.434]],[\"name/914\",[112,47.257]],[\"parent/914\",[402,5.434]],[\"name/915\",[113,48.401]],[\"parent/915\",[402,5.434]],[\"name/916\",[333,59.387]],[\"parent/916\",[402,5.434]],[\"name/917\",[403,63.907]],[\"parent/917\",[]],[\"name/918\",[325,59.387]],[\"parent/918\",[403,6.17]],[\"name/919\",[401,63.907]],[\"parent/919\",[403,6.17]],[\"name/920\",[404,63.907]],[\"parent/920\",[]],[\"name/921\",[326,59.387]],[\"parent/921\",[404,6.17]],[\"name/922\",[401,63.907]],[\"parent/922\",[404,6.17]],[\"name/923\",[405,56.286]],[\"parent/923\",[]],[\"name/924\",[108,51.178]],[\"parent/924\",[405,5.434]],[\"name/925\",[406,72.38]],[\"parent/925\",[405,5.434]],[\"name/926\",[407,72.38]],[\"parent/926\",[405,5.434]],[\"name/927\",[408,72.38]],[\"parent/927\",[405,5.434]],[\"name/928\",[409,72.38]],[\"parent/928\",[405,5.434]],[\"name/929\",[410,67.272]],[\"parent/929\",[405,5.434]],[\"name/930\",[411,61.394]],[\"parent/930\",[]],[\"name/931\",[69,41.622]],[\"parent/931\",[411,5.927]],[\"name/932\",[412,67.272]],[\"parent/932\",[411,5.927]],[\"name/933\",[25,40.462]],[\"parent/933\",[411,5.927]],[\"name/934\",[413,57.717]],[\"parent/934\",[]],[\"name/935\",[414,67.272]],[\"parent/935\",[413,5.572]],[\"name/936\",[14,55.034]],[\"parent/936\",[413,5.572]],[\"name/937\",[57,59.387]],[\"parent/937\",[413,5.572]],[\"name/938\",[415,67.272]],[\"parent/938\",[413,5.572]],[\"name/939\",[416,67.272]],[\"parent/939\",[413,5.572]],[\"name/940\",[417,61.394]],[\"parent/940\",[]],[\"name/941\",[69,41.622]],[\"parent/941\",[417,5.927]],[\"name/942\",[418,61.394]],[\"parent/942\",[417,5.927]],[\"name/943\",[25,40.462]],[\"parent/943\",[417,5.927]],[\"name/944\",[419,47.813]],[\"parent/944\",[]],[\"name/945\",[1,31.605]],[\"parent/945\",[419,4.616]],[\"name/946\",[420,72.38]],[\"parent/946\",[419,4.616]],[\"name/947\",[366,67.272]],[\"parent/947\",[419,4.616]],[\"name/948\",[421,72.38]],[\"parent/948\",[419,4.616]],[\"name/949\",[422,72.38]],[\"parent/949\",[419,4.616]],[\"name/950\",[423,72.38]],[\"parent/950\",[419,4.616]],[\"name/951\",[424,72.38]],[\"parent/951\",[419,4.616]],[\"name/952\",[425,72.38]],[\"parent/952\",[419,4.616]],[\"name/953\",[426,72.38]],[\"parent/953\",[419,4.616]],[\"name/954\",[427,72.38]],[\"parent/954\",[419,4.616]],[\"name/955\",[428,72.38]],[\"parent/955\",[419,4.616]],[\"name/956\",[429,72.38]],[\"parent/956\",[419,4.616]],[\"name/957\",[410,67.272]],[\"parent/957\",[419,4.616]],[\"name/958\",[25,40.462]],[\"parent/958\",[419,4.616]],[\"name/959\",[69,41.622]],[\"parent/959\",[419,4.616]],[\"name/960\",[418,61.394]],[\"parent/960\",[419,4.616]],[\"name/961\",[430,59.387]],[\"parent/961\",[]],[\"name/962\",[1,31.605]],[\"parent/962\",[430,5.733]],[\"name/963\",[69,41.622]],[\"parent/963\",[430,5.733]],[\"name/964\",[412,67.272]],[\"parent/964\",[430,5.733]],[\"name/965\",[25,40.462]],[\"parent/965\",[430,5.733]],[\"name/966\",[431,51.178]],[\"parent/966\",[]],[\"name/967\",[1,31.605]],[\"parent/967\",[431,4.941]],[\"name/968\",[414,67.272]],[\"parent/968\",[431,4.941]],[\"name/969\",[14,55.034]],[\"parent/969\",[431,4.941]],[\"name/970\",[57,59.387]],[\"parent/970\",[431,4.941]],[\"name/971\",[415,67.272]],[\"parent/971\",[431,4.941]],[\"name/972\",[416,67.272]],[\"parent/972\",[431,4.941]],[\"name/973\",[15,53.922]],[\"parent/973\",[431,4.941]],[\"name/974\",[25,40.462]],[\"parent/974\",[431,4.941]],[\"name/975\",[59,49.693]],[\"parent/975\",[431,4.941]],[\"name/976\",[432,59.387]],[\"parent/976\",[]],[\"name/977\",[1,31.605]],[\"parent/977\",[432,5.733]],[\"name/978\",[433,72.38]],[\"parent/978\",[432,5.733]],[\"name/979\",[434,72.38]],[\"parent/979\",[432,5.733]],[\"name/980\",[435,72.38]],[\"parent/980\",[432,5.733]],[\"name/981\",[436,59.387]],[\"parent/981\",[]],[\"name/982\",[1,31.605]],[\"parent/982\",[436,5.733]],[\"name/983\",[69,41.622]],[\"parent/983\",[436,5.733]],[\"name/984\",[418,61.394]],[\"parent/984\",[436,5.733]],[\"name/985\",[25,40.462]],[\"parent/985\",[436,5.733]],[\"name/986\",[437,57.717]],[\"parent/986\",[]],[\"name/987\",[438,72.38]],[\"parent/987\",[437,5.572]],[\"name/988\",[439,72.38]],[\"parent/988\",[437,5.572]],[\"name/989\",[69,41.622]],[\"parent/989\",[437,5.572]],[\"name/990\",[418,61.394]],[\"parent/990\",[437,5.572]],[\"name/991\",[25,40.462]],[\"parent/991\",[437,5.572]],[\"name/992\",[48,49.693]],[\"parent/992\",[]],[\"name/993\",[1,31.605]],[\"parent/993\",[48,4.797]],[\"name/994\",[33,51.178]],[\"parent/994\",[48,4.797]],[\"name/995\",[261,63.907]],[\"parent/995\",[48,4.797]],[\"name/996\",[440,67.272]],[\"parent/996\",[48,4.797]],[\"name/997\",[441,67.272]],[\"parent/997\",[48,4.797]],[\"name/998\",[442,67.272]],[\"parent/998\",[48,4.797]],[\"name/999\",[443,67.272]],[\"parent/999\",[48,4.797]],[\"name/1000\",[444,67.272]],[\"parent/1000\",[48,4.797]],[\"name/1001\",[445,67.272]],[\"parent/1001\",[48,4.797]],[\"name/1002\",[446,53.922]],[\"parent/1002\",[]],[\"name/1003\",[33,51.178]],[\"parent/1003\",[446,5.206]],[\"name/1004\",[261,63.907]],[\"parent/1004\",[446,5.206]],[\"name/1005\",[440,67.272]],[\"parent/1005\",[446,5.206]],[\"name/1006\",[441,67.272]],[\"parent/1006\",[446,5.206]],[\"name/1007\",[442,67.272]],[\"parent/1007\",[446,5.206]],[\"name/1008\",[443,67.272]],[\"parent/1008\",[446,5.206]],[\"name/1009\",[444,67.272]],[\"parent/1009\",[446,5.206]],[\"name/1010\",[445,67.272]],[\"parent/1010\",[446,5.206]],[\"name/1011\",[447,56.286]],[\"parent/1011\",[]],[\"name/1012\",[448,67.272]],[\"parent/1012\",[447,5.434]],[\"name/1013\",[1,31.605]],[\"parent/1013\",[447,5.434]],[\"name/1014\",[449,72.38]],[\"parent/1014\",[447,5.434]],[\"name/1015\",[450,63.907]],[\"parent/1015\",[447,5.434]],[\"name/1016\",[451,72.38]],[\"parent/1016\",[447,5.434]],[\"name/1017\",[452,63.907]],[\"parent/1017\",[447,5.434]],[\"name/1018\",[453,48.401]],[\"parent/1018\",[]],[\"name/1019\",[108,51.178]],[\"parent/1019\",[453,4.673]],[\"name/1020\",[454,67.272]],[\"parent/1020\",[453,4.673]],[\"name/1021\",[455,67.272]],[\"parent/1021\",[453,4.673]],[\"name/1022\",[456,67.272]],[\"parent/1022\",[453,4.673]],[\"name/1023\",[457,67.272]],[\"parent/1023\",[453,4.673]],[\"name/1024\",[458,67.272]],[\"parent/1024\",[453,4.673]],[\"name/1025\",[221,49.026]],[\"parent/1025\",[453,4.673]],[\"name/1026\",[459,67.272]],[\"parent/1026\",[453,4.673]],[\"name/1027\",[460,67.272]],[\"parent/1027\",[453,4.673]],[\"name/1028\",[461,67.272]],[\"parent/1028\",[453,4.673]],[\"name/1029\",[462,67.272]],[\"parent/1029\",[453,4.673]],[\"name/1030\",[463,67.272]],[\"parent/1030\",[453,4.673]],[\"name/1031\",[464,67.272]],[\"parent/1031\",[453,4.673]],[\"name/1032\",[465,67.272]],[\"parent/1032\",[453,4.673]],[\"name/1033\",[466,67.272]],[\"parent/1033\",[453,4.673]],[\"name/1034\",[467,52.921]],[\"parent/1034\",[]],[\"name/1035\",[468,72.38]],[\"parent/1035\",[467,5.109]],[\"name/1036\",[469,72.38]],[\"parent/1036\",[467,5.109]],[\"name/1037\",[470,72.38]],[\"parent/1037\",[467,5.109]],[\"name/1038\",[471,72.38]],[\"parent/1038\",[467,5.109]],[\"name/1039\",[472,72.38]],[\"parent/1039\",[467,5.109]],[\"name/1040\",[473,72.38]],[\"parent/1040\",[467,5.109]],[\"name/1041\",[474,67.272]],[\"parent/1041\",[467,5.109]],[\"name/1042\",[475,59.387]],[\"parent/1042\",[467,5.109]],[\"name/1043\",[476,72.38]],[\"parent/1043\",[467,5.109]],[\"name/1044\",[477,59.387]],[\"parent/1044\",[]],[\"name/1045\",[32,57.717]],[\"parent/1045\",[477,5.733]],[\"name/1046\",[1,31.605]],[\"parent/1046\",[477,5.733]],[\"name/1047\",[203,61.394]],[\"parent/1047\",[477,5.733]],[\"name/1048\",[60,52.011]],[\"parent/1048\",[477,5.733]],[\"name/1049\",[324,49.693]],[\"parent/1049\",[]],[\"name/1050\",[478,72.38]],[\"parent/1050\",[324,4.797]],[\"name/1051\",[1,31.605]],[\"parent/1051\",[324,4.797]],[\"name/1052\",[479,72.38]],[\"parent/1052\",[324,4.797]],[\"name/1053\",[480,72.38]],[\"parent/1053\",[324,4.797]],[\"name/1054\",[481,72.38]],[\"parent/1054\",[324,4.797]],[\"name/1055\",[482,72.38]],[\"parent/1055\",[324,4.797]],[\"name/1056\",[483,72.38]],[\"parent/1056\",[324,4.797]],[\"name/1057\",[484,72.38]],[\"parent/1057\",[324,4.797]],[\"name/1058\",[485,48.401]],[\"parent/1058\",[]],[\"name/1059\",[108,51.178]],[\"parent/1059\",[485,4.673]],[\"name/1060\",[454,67.272]],[\"parent/1060\",[485,4.673]],[\"name/1061\",[455,67.272]],[\"parent/1061\",[485,4.673]],[\"name/1062\",[456,67.272]],[\"parent/1062\",[485,4.673]],[\"name/1063\",[457,67.272]],[\"parent/1063\",[485,4.673]],[\"name/1064\",[458,67.272]],[\"parent/1064\",[485,4.673]],[\"name/1065\",[221,49.026]],[\"parent/1065\",[485,4.673]],[\"name/1066\",[459,67.272]],[\"parent/1066\",[485,4.673]],[\"name/1067\",[460,67.272]],[\"parent/1067\",[485,4.673]],[\"name/1068\",[461,67.272]],[\"parent/1068\",[485,4.673]],[\"name/1069\",[462,67.272]],[\"parent/1069\",[485,4.673]],[\"name/1070\",[463,67.272]],[\"parent/1070\",[485,4.673]],[\"name/1071\",[464,67.272]],[\"parent/1071\",[485,4.673]],[\"name/1072\",[465,67.272]],[\"parent/1072\",[485,4.673]],[\"name/1073\",[466,67.272]],[\"parent/1073\",[485,4.673]],[\"name/1074\",[486,72.38]],[\"parent/1074\",[]],[\"name/1075\",[487,43.663]],[\"parent/1075\",[]],[\"name/1076\",[50,53.922]],[\"parent/1076\",[487,4.215]],[\"name/1077\",[0,42.591]],[\"parent/1077\",[487,4.215]],[\"name/1078\",[488,61.394]],[\"parent/1078\",[487,4.215]],[\"name/1079\",[489,63.907]],[\"parent/1079\",[487,4.215]],[\"name/1080\",[221,49.026]],[\"parent/1080\",[487,4.215]],[\"name/1081\",[33,51.178]],[\"parent/1081\",[487,4.215]],[\"name/1082\",[490,56.286]],[\"parent/1082\",[487,4.215]],[\"name/1083\",[491,57.717]],[\"parent/1083\",[487,4.215]],[\"name/1084\",[492,55.034]],[\"parent/1084\",[487,4.215]],[\"name/1085\",[169,56.286]],[\"parent/1085\",[487,4.215]],[\"name/1086\",[53,52.011]],[\"parent/1086\",[487,4.215]],[\"name/1087\",[493,63.907]],[\"parent/1087\",[487,4.215]],[\"name/1088\",[49,56.286]],[\"parent/1088\",[487,4.215]],[\"name/1089\",[494,57.717]],[\"parent/1089\",[487,4.215]],[\"name/1090\",[495,63.907]],[\"parent/1090\",[487,4.215]],[\"name/1091\",[164,61.394]],[\"parent/1091\",[487,4.215]],[\"name/1092\",[496,63.907]],[\"parent/1092\",[487,4.215]],[\"name/1093\",[497,61.394]],[\"parent/1093\",[487,4.215]],[\"name/1094\",[498,61.394]],[\"parent/1094\",[487,4.215]],[\"name/1095\",[499,61.394]],[\"parent/1095\",[487,4.215]],[\"name/1096\",[500,61.394]],[\"parent/1096\",[487,4.215]],[\"name/1097\",[501,61.394]],[\"parent/1097\",[487,4.215]],[\"name/1098\",[502,61.394]],[\"parent/1098\",[487,4.215]],[\"name/1099\",[58,52.921]],[\"parent/1099\",[487,4.215]],[\"name/1100\",[60,52.011]],[\"parent/1100\",[487,4.215]],[\"name/1101\",[503,63.907]],[\"parent/1101\",[]],[\"name/1102\",[504,67.272]],[\"parent/1102\",[503,6.17]],[\"name/1103\",[431,51.178]],[\"parent/1103\",[503,6.17]],[\"name/1104\",[505,42.936]],[\"parent/1104\",[]],[\"name/1105\",[33,51.178]],[\"parent/1105\",[505,4.145]],[\"name/1106\",[490,56.286]],[\"parent/1106\",[505,4.145]],[\"name/1107\",[491,57.717]],[\"parent/1107\",[505,4.145]],[\"name/1108\",[492,55.034]],[\"parent/1108\",[505,4.145]],[\"name/1109\",[169,56.286]],[\"parent/1109\",[505,4.145]],[\"name/1110\",[53,52.011]],[\"parent/1110\",[505,4.145]],[\"name/1111\",[493,63.907]],[\"parent/1111\",[505,4.145]],[\"name/1112\",[221,49.026]],[\"parent/1112\",[505,4.145]],[\"name/1113\",[48,49.693]],[\"parent/1113\",[505,4.145]],[\"name/1114\",[49,56.286]],[\"parent/1114\",[505,4.145]],[\"name/1115\",[50,53.922]],[\"parent/1115\",[505,4.145]],[\"name/1116\",[51,61.394]],[\"parent/1116\",[505,4.145]],[\"name/1117\",[494,57.717]],[\"parent/1117\",[505,4.145]],[\"name/1118\",[495,63.907]],[\"parent/1118\",[505,4.145]],[\"name/1119\",[0,42.591]],[\"parent/1119\",[505,4.145]],[\"name/1120\",[164,61.394]],[\"parent/1120\",[505,4.145]],[\"name/1121\",[489,63.907]],[\"parent/1121\",[505,4.145]],[\"name/1122\",[488,61.394]],[\"parent/1122\",[505,4.145]],[\"name/1123\",[496,63.907]],[\"parent/1123\",[505,4.145]],[\"name/1124\",[497,61.394]],[\"parent/1124\",[505,4.145]],[\"name/1125\",[498,61.394]],[\"parent/1125\",[505,4.145]],[\"name/1126\",[499,61.394]],[\"parent/1126\",[505,4.145]],[\"name/1127\",[500,61.394]],[\"parent/1127\",[505,4.145]],[\"name/1128\",[501,61.394]],[\"parent/1128\",[505,4.145]],[\"name/1129\",[502,61.394]],[\"parent/1129\",[505,4.145]],[\"name/1130\",[58,52.921]],[\"parent/1130\",[505,4.145]],[\"name/1131\",[60,52.011]],[\"parent/1131\",[505,4.145]],[\"name/1132\",[506,52.011]],[\"parent/1132\",[]],[\"name/1133\",[1,31.605]],[\"parent/1133\",[506,5.021]],[\"name/1134\",[49,56.286]],[\"parent/1134\",[506,5.021]],[\"name/1135\",[488,61.394]],[\"parent/1135\",[506,5.021]],[\"name/1136\",[497,61.394]],[\"parent/1136\",[506,5.021]],[\"name/1137\",[498,61.394]],[\"parent/1137\",[506,5.021]],[\"name/1138\",[499,61.394]],[\"parent/1138\",[506,5.021]],[\"name/1139\",[500,61.394]],[\"parent/1139\",[506,5.021]],[\"name/1140\",[501,61.394]],[\"parent/1140\",[506,5.021]],[\"name/1141\",[502,61.394]],[\"parent/1141\",[506,5.021]],[\"name/1142\",[58,52.921]],[\"parent/1142\",[506,5.021]],[\"name/1143\",[507,57.717]],[\"parent/1143\",[]],[\"name/1144\",[1,31.605]],[\"parent/1144\",[507,5.572]],[\"name/1145\",[504,67.272]],[\"parent/1145\",[507,5.572]],[\"name/1146\",[431,51.178]],[\"parent/1146\",[507,5.572]],[\"name/1147\",[25,40.462]],[\"parent/1147\",[507,5.572]],[\"name/1148\",[59,49.693]],[\"parent/1148\",[507,5.572]],[\"name/1149\",[508,41.622]],[\"parent/1149\",[]],[\"name/1150\",[32,57.717]],[\"parent/1150\",[508,4.018]],[\"name/1151\",[1,31.605]],[\"parent/1151\",[508,4.018]],[\"name/1152\",[33,51.178]],[\"parent/1152\",[508,4.018]],[\"name/1153\",[491,57.717]],[\"parent/1153\",[508,4.018]],[\"name/1154\",[169,56.286]],[\"parent/1154\",[508,4.018]],[\"name/1155\",[53,52.011]],[\"parent/1155\",[508,4.018]],[\"name/1156\",[493,63.907]],[\"parent/1156\",[508,4.018]],[\"name/1157\",[221,49.026]],[\"parent/1157\",[508,4.018]],[\"name/1158\",[492,55.034]],[\"parent/1158\",[508,4.018]],[\"name/1159\",[490,56.286]],[\"parent/1159\",[508,4.018]],[\"name/1160\",[48,49.693]],[\"parent/1160\",[508,4.018]],[\"name/1161\",[49,56.286]],[\"parent/1161\",[508,4.018]],[\"name/1162\",[50,53.922]],[\"parent/1162\",[508,4.018]],[\"name/1163\",[51,61.394]],[\"parent/1163\",[508,4.018]],[\"name/1164\",[494,57.717]],[\"parent/1164\",[508,4.018]],[\"name/1165\",[495,63.907]],[\"parent/1165\",[508,4.018]],[\"name/1166\",[0,42.591]],[\"parent/1166\",[508,4.018]],[\"name/1167\",[164,61.394]],[\"parent/1167\",[508,4.018]],[\"name/1168\",[489,63.907]],[\"parent/1168\",[508,4.018]],[\"name/1169\",[496,63.907]],[\"parent/1169\",[508,4.018]],[\"name/1170\",[25,40.462]],[\"parent/1170\",[508,4.018]],[\"name/1171\",[59,49.693]],[\"parent/1171\",[508,4.018]],[\"name/1172\",[60,52.011]],[\"parent/1172\",[508,4.018]],[\"name/1173\",[488,61.394]],[\"parent/1173\",[508,4.018]],[\"name/1174\",[497,61.394]],[\"parent/1174\",[508,4.018]],[\"name/1175\",[498,61.394]],[\"parent/1175\",[508,4.018]],[\"name/1176\",[499,61.394]],[\"parent/1176\",[508,4.018]],[\"name/1177\",[500,61.394]],[\"parent/1177\",[508,4.018]],[\"name/1178\",[501,61.394]],[\"parent/1178\",[508,4.018]],[\"name/1179\",[502,61.394]],[\"parent/1179\",[508,4.018]],[\"name/1180\",[58,52.921]],[\"parent/1180\",[508,4.018]],[\"name/1181\",[492,55.034]],[\"parent/1181\",[]],[\"name/1182\",[175,61.394]],[\"parent/1182\",[492,5.313]],[\"name/1183\",[490,56.286]],[\"parent/1183\",[]],[\"name/1184\",[175,61.394]],[\"parent/1184\",[490,5.434]],[\"name/1185\",[509,56.286]],[\"parent/1185\",[]],[\"name/1186\",[510,63.907]],[\"parent/1186\",[509,5.434]],[\"name/1187\",[72,59.387]],[\"parent/1187\",[509,5.434]],[\"name/1188\",[450,63.907]],[\"parent/1188\",[509,5.434]],[\"name/1189\",[452,63.907]],[\"parent/1189\",[509,5.434]],[\"name/1190\",[511,67.272]],[\"parent/1190\",[509,5.434]],[\"name/1191\",[512,72.38]],[\"parent/1191\",[509,5.434]],[\"name/1192\",[513,57.717]],[\"parent/1192\",[]],[\"name/1193\",[514,72.38]],[\"parent/1193\",[513,5.572]],[\"name/1194\",[450,63.907]],[\"parent/1194\",[513,5.572]],[\"name/1195\",[452,63.907]],[\"parent/1195\",[513,5.572]],[\"name/1196\",[515,72.38]],[\"parent/1196\",[513,5.572]],[\"name/1197\",[516,72.38]],[\"parent/1197\",[513,5.572]],[\"name/1198\",[517,48.401]],[\"parent/1198\",[]],[\"name/1199\",[518,63.907]],[\"parent/1199\",[517,4.673]],[\"name/1200\",[519,63.907]],[\"parent/1200\",[517,4.673]],[\"name/1201\",[520,63.907]],[\"parent/1201\",[517,4.673]],[\"name/1202\",[521,63.907]],[\"parent/1202\",[517,4.673]],[\"name/1203\",[522,63.907]],[\"parent/1203\",[517,4.673]],[\"name/1204\",[523,63.907]],[\"parent/1204\",[517,4.673]],[\"name/1205\",[524,63.907]],[\"parent/1205\",[517,4.673]],[\"name/1206\",[525,63.907]],[\"parent/1206\",[517,4.673]],[\"name/1207\",[526,63.907]],[\"parent/1207\",[517,4.673]],[\"name/1208\",[527,63.907]],[\"parent/1208\",[517,4.673]],[\"name/1209\",[528,63.907]],[\"parent/1209\",[517,4.673]],[\"name/1210\",[529,63.907]],[\"parent/1210\",[517,4.673]],[\"name/1211\",[530,63.907]],[\"parent/1211\",[517,4.673]],[\"name/1212\",[531,63.907]],[\"parent/1212\",[517,4.673]],[\"name/1213\",[532,63.907]],[\"parent/1213\",[517,4.673]],[\"name/1214\",[533,48.401]],[\"parent/1214\",[]],[\"name/1215\",[518,63.907]],[\"parent/1215\",[533,4.673]],[\"name/1216\",[519,63.907]],[\"parent/1216\",[533,4.673]],[\"name/1217\",[520,63.907]],[\"parent/1217\",[533,4.673]],[\"name/1218\",[521,63.907]],[\"parent/1218\",[533,4.673]],[\"name/1219\",[522,63.907]],[\"parent/1219\",[533,4.673]],[\"name/1220\",[523,63.907]],[\"parent/1220\",[533,4.673]],[\"name/1221\",[524,63.907]],[\"parent/1221\",[533,4.673]],[\"name/1222\",[525,63.907]],[\"parent/1222\",[533,4.673]],[\"name/1223\",[526,63.907]],[\"parent/1223\",[533,4.673]],[\"name/1224\",[527,63.907]],[\"parent/1224\",[533,4.673]],[\"name/1225\",[528,63.907]],[\"parent/1225\",[533,4.673]],[\"name/1226\",[529,63.907]],[\"parent/1226\",[533,4.673]],[\"name/1227\",[530,63.907]],[\"parent/1227\",[533,4.673]],[\"name/1228\",[531,63.907]],[\"parent/1228\",[533,4.673]],[\"name/1229\",[532,63.907]],[\"parent/1229\",[533,4.673]],[\"name/1230\",[534,61.394]],[\"parent/1230\",[]],[\"name/1231\",[535,72.38]],[\"parent/1231\",[534,5.927]],[\"name/1232\",[536,72.38]],[\"parent/1232\",[534,5.927]],[\"name/1233\",[537,44.048]],[\"parent/1233\",[]],[\"name/1234\",[108,51.178]],[\"parent/1234\",[537,4.252]],[\"name/1235\",[510,63.907]],[\"parent/1235\",[537,4.252]],[\"name/1236\",[538,72.38]],[\"parent/1236\",[537,4.252]],[\"name/1237\",[539,72.38]],[\"parent/1237\",[537,4.252]],[\"name/1238\",[1,31.605]],[\"parent/1238\",[537,4.252]],[\"name/1239\",[162,67.272]],[\"parent/1239\",[537,4.252]],[\"name/1240\",[540,72.38]],[\"parent/1240\",[537,4.252]],[\"name/1241\",[541,72.38]],[\"parent/1241\",[537,4.252]],[\"name/1242\",[542,72.38]],[\"parent/1242\",[537,4.252]],[\"name/1243\",[543,72.38]],[\"parent/1243\",[537,4.252]],[\"name/1244\",[544,72.38]],[\"parent/1244\",[537,4.252]],[\"name/1245\",[545,72.38]],[\"parent/1245\",[537,4.252]],[\"name/1246\",[546,72.38]],[\"parent/1246\",[537,4.252]],[\"name/1247\",[59,49.693]],[\"parent/1247\",[537,4.252]],[\"name/1248\",[547,72.38]],[\"parent/1248\",[537,4.252]],[\"name/1249\",[548,72.38]],[\"parent/1249\",[537,4.252]],[\"name/1250\",[549,72.38]],[\"parent/1250\",[537,4.252]],[\"name/1251\",[550,72.38]],[\"parent/1251\",[537,4.252]],[\"name/1252\",[551,72.38]],[\"parent/1252\",[537,4.252]],[\"name/1253\",[552,72.38]],[\"parent/1253\",[537,4.252]],[\"name/1254\",[553,72.38]],[\"parent/1254\",[537,4.252]],[\"name/1255\",[554,47.813]],[\"parent/1255\",[]],[\"name/1256\",[510,63.907]],[\"parent/1256\",[554,4.616]],[\"name/1257\",[530,63.907]],[\"parent/1257\",[554,4.616]],[\"name/1258\",[528,63.907]],[\"parent/1258\",[554,4.616]],[\"name/1259\",[523,63.907]],[\"parent/1259\",[554,4.616]],[\"name/1260\",[525,63.907]],[\"parent/1260\",[554,4.616]],[\"name/1261\",[532,63.907]],[\"parent/1261\",[554,4.616]],[\"name/1262\",[531,63.907]],[\"parent/1262\",[554,4.616]],[\"name/1263\",[529,63.907]],[\"parent/1263\",[554,4.616]],[\"name/1264\",[524,63.907]],[\"parent/1264\",[554,4.616]],[\"name/1265\",[526,63.907]],[\"parent/1265\",[554,4.616]],[\"name/1266\",[522,63.907]],[\"parent/1266\",[554,4.616]],[\"name/1267\",[520,63.907]],[\"parent/1267\",[554,4.616]],[\"name/1268\",[521,63.907]],[\"parent/1268\",[554,4.616]],[\"name/1269\",[527,63.907]],[\"parent/1269\",[554,4.616]],[\"name/1270\",[519,63.907]],[\"parent/1270\",[554,4.616]],[\"name/1271\",[518,63.907]],[\"parent/1271\",[554,4.616]],[\"name/1272\",[555,49.693]],[\"parent/1272\",[]],[\"name/1273\",[1,31.605]],[\"parent/1273\",[555,4.797]],[\"name/1274\",[252,44.865]],[\"parent/1274\",[555,4.797]],[\"name/1275\",[556,67.272]],[\"parent/1275\",[555,4.797]],[\"name/1276\",[557,39.928]],[\"parent/1276\",[555,4.797]],[\"name/1277\",[69,41.622]],[\"parent/1277\",[555,4.797]],[\"name/1278\",[112,47.257]],[\"parent/1278\",[555,4.797]],[\"name/1279\",[558,67.272]],[\"parent/1279\",[555,4.797]],[\"name/1280\",[559,67.272]],[\"parent/1280\",[555,4.797]],[\"name/1281\",[113,48.401]],[\"parent/1281\",[555,4.797]],[\"name/1282\",[560,72.38]],[\"parent/1282\",[555,4.797]],[\"name/1283\",[561,72.38]],[\"parent/1283\",[555,4.797]],[\"name/1284\",[562,72.38]],[\"parent/1284\",[555,4.797]],[\"name/1285\",[59,49.693]],[\"parent/1285\",[555,4.797]],[\"name/1286\",[563,42.936]],[\"parent/1286\",[]],[\"name/1287\",[1,31.605]],[\"parent/1287\",[563,4.145]],[\"name/1288\",[252,44.865]],[\"parent/1288\",[563,4.145]],[\"name/1289\",[564,72.38]],[\"parent/1289\",[563,4.145]],[\"name/1290\",[565,72.38]],[\"parent/1290\",[563,4.145]],[\"name/1291\",[566,72.38]],[\"parent/1291\",[563,4.145]],[\"name/1292\",[69,41.622]],[\"parent/1292\",[563,4.145]],[\"name/1293\",[112,47.257]],[\"parent/1293\",[563,4.145]],[\"name/1294\",[567,67.272]],[\"parent/1294\",[563,4.145]],[\"name/1295\",[475,59.387]],[\"parent/1295\",[563,4.145]],[\"name/1296\",[568,61.394]],[\"parent/1296\",[563,4.145]],[\"name/1297\",[569,56.286]],[\"parent/1297\",[563,4.145]],[\"name/1298\",[570,61.394]],[\"parent/1298\",[563,4.145]],[\"name/1299\",[571,57.717]],[\"parent/1299\",[563,4.145]],[\"name/1300\",[572,57.717]],[\"parent/1300\",[563,4.145]],[\"name/1301\",[573,61.394]],[\"parent/1301\",[563,4.145]],[\"name/1302\",[537,44.048]],[\"parent/1302\",[563,4.145]],[\"name/1303\",[574,63.907]],[\"parent/1303\",[563,4.145]],[\"name/1304\",[575,63.907]],[\"parent/1304\",[563,4.145]],[\"name/1305\",[576,63.907]],[\"parent/1305\",[563,4.145]],[\"name/1306\",[577,63.907]],[\"parent/1306\",[563,4.145]],[\"name/1307\",[578,63.907]],[\"parent/1307\",[563,4.145]],[\"name/1308\",[579,56.286]],[\"parent/1308\",[563,4.145]],[\"name/1309\",[580,63.907]],[\"parent/1309\",[563,4.145]],[\"name/1310\",[581,63.907]],[\"parent/1310\",[563,4.145]],[\"name/1311\",[582,63.907]],[\"parent/1311\",[563,4.145]],[\"name/1312\",[113,48.401]],[\"parent/1312\",[563,4.145]],[\"name/1313\",[583,56.286]],[\"parent/1313\",[563,4.145]],[\"name/1314\",[584,52.921]],[\"parent/1314\",[]],[\"name/1315\",[1,31.605]],[\"parent/1315\",[584,5.109]],[\"name/1316\",[69,41.622]],[\"parent/1316\",[584,5.109]],[\"name/1317\",[112,47.257]],[\"parent/1317\",[584,5.109]],[\"name/1318\",[558,67.272]],[\"parent/1318\",[584,5.109]],[\"name/1319\",[559,67.272]],[\"parent/1319\",[584,5.109]],[\"name/1320\",[579,56.286]],[\"parent/1320\",[584,5.109]],[\"name/1321\",[72,59.387]],[\"parent/1321\",[584,5.109]],[\"name/1322\",[583,56.286]],[\"parent/1322\",[584,5.109]],[\"name/1323\",[585,72.38]],[\"parent/1323\",[584,5.109]],[\"name/1324\",[586,44.865]],[\"parent/1324\",[]],[\"name/1325\",[1,31.605]],[\"parent/1325\",[586,4.331]],[\"name/1326\",[475,59.387]],[\"parent/1326\",[586,4.331]],[\"name/1327\",[568,61.394]],[\"parent/1327\",[586,4.331]],[\"name/1328\",[569,56.286]],[\"parent/1328\",[586,4.331]],[\"name/1329\",[570,61.394]],[\"parent/1329\",[586,4.331]],[\"name/1330\",[571,57.717]],[\"parent/1330\",[586,4.331]],[\"name/1331\",[572,57.717]],[\"parent/1331\",[586,4.331]],[\"name/1332\",[573,61.394]],[\"parent/1332\",[586,4.331]],[\"name/1333\",[537,44.048]],[\"parent/1333\",[586,4.331]],[\"name/1334\",[574,63.907]],[\"parent/1334\",[586,4.331]],[\"name/1335\",[575,63.907]],[\"parent/1335\",[586,4.331]],[\"name/1336\",[576,63.907]],[\"parent/1336\",[586,4.331]],[\"name/1337\",[577,63.907]],[\"parent/1337\",[586,4.331]],[\"name/1338\",[578,63.907]],[\"parent/1338\",[586,4.331]],[\"name/1339\",[579,56.286]],[\"parent/1339\",[586,4.331]],[\"name/1340\",[580,63.907]],[\"parent/1340\",[586,4.331]],[\"name/1341\",[581,63.907]],[\"parent/1341\",[586,4.331]],[\"name/1342\",[582,63.907]],[\"parent/1342\",[586,4.331]],[\"name/1343\",[69,41.622]],[\"parent/1343\",[586,4.331]],[\"name/1344\",[112,47.257]],[\"parent/1344\",[586,4.331]],[\"name/1345\",[113,48.401]],[\"parent/1345\",[586,4.331]],[\"name/1346\",[583,56.286]],[\"parent/1346\",[586,4.331]],[\"name/1347\",[587,42.591]],[\"parent/1347\",[]],[\"name/1348\",[1,31.605]],[\"parent/1348\",[587,4.112]],[\"name/1349\",[252,44.865]],[\"parent/1349\",[587,4.112]],[\"name/1350\",[588,72.38]],[\"parent/1350\",[587,4.112]],[\"name/1351\",[589,72.38]],[\"parent/1351\",[587,4.112]],[\"name/1352\",[590,72.38]],[\"parent/1352\",[587,4.112]],[\"name/1353\",[591,72.38]],[\"parent/1353\",[587,4.112]],[\"name/1354\",[567,67.272]],[\"parent/1354\",[587,4.112]],[\"name/1355\",[475,59.387]],[\"parent/1355\",[587,4.112]],[\"name/1356\",[568,61.394]],[\"parent/1356\",[587,4.112]],[\"name/1357\",[569,56.286]],[\"parent/1357\",[587,4.112]],[\"name/1358\",[570,61.394]],[\"parent/1358\",[587,4.112]],[\"name/1359\",[571,57.717]],[\"parent/1359\",[587,4.112]],[\"name/1360\",[572,57.717]],[\"parent/1360\",[587,4.112]],[\"name/1361\",[573,61.394]],[\"parent/1361\",[587,4.112]],[\"name/1362\",[537,44.048]],[\"parent/1362\",[587,4.112]],[\"name/1363\",[574,63.907]],[\"parent/1363\",[587,4.112]],[\"name/1364\",[575,63.907]],[\"parent/1364\",[587,4.112]],[\"name/1365\",[576,63.907]],[\"parent/1365\",[587,4.112]],[\"name/1366\",[577,63.907]],[\"parent/1366\",[587,4.112]],[\"name/1367\",[578,63.907]],[\"parent/1367\",[587,4.112]],[\"name/1368\",[579,56.286]],[\"parent/1368\",[587,4.112]],[\"name/1369\",[580,63.907]],[\"parent/1369\",[587,4.112]],[\"name/1370\",[581,63.907]],[\"parent/1370\",[587,4.112]],[\"name/1371\",[582,63.907]],[\"parent/1371\",[587,4.112]],[\"name/1372\",[69,41.622]],[\"parent/1372\",[587,4.112]],[\"name/1373\",[112,47.257]],[\"parent/1373\",[587,4.112]],[\"name/1374\",[113,48.401]],[\"parent/1374\",[587,4.112]],[\"name/1375\",[583,56.286]],[\"parent/1375\",[587,4.112]],[\"name/1376\",[557,39.928]],[\"parent/1376\",[]],[\"name/1377\",[592,72.38]],[\"parent/1377\",[557,3.855]],[\"name/1378\",[593,72.38]],[\"parent/1378\",[557,3.855]],[\"name/1379\",[594,67.272]],[\"parent/1379\",[595,6.988]],[\"name/1380\",[302,67.272]],[\"parent/1380\",[557,3.855]],[\"name/1381\",[596,67.272]],[\"parent/1381\",[557,3.855]],[\"name/1382\",[597,67.272]],[\"parent/1382\",[557,3.855]],[\"name/1383\",[598,67.272]],[\"parent/1383\",[557,3.855]],[\"name/1384\",[599,67.272]],[\"parent/1384\",[557,3.855]],[\"name/1385\",[600,67.272]],[\"parent/1385\",[557,3.855]],[\"name/1386\",[601,67.272]],[\"parent/1386\",[557,3.855]],[\"name/1387\",[602,67.272]],[\"parent/1387\",[557,3.855]],[\"name/1388\",[603,67.272]],[\"parent/1388\",[557,3.855]],[\"name/1389\",[604,67.272]],[\"parent/1389\",[557,3.855]],[\"name/1390\",[605,67.272]],[\"parent/1390\",[557,3.855]],[\"name/1391\",[606,67.272]],[\"parent/1391\",[557,3.855]],[\"name/1392\",[607,67.272]],[\"parent/1392\",[557,3.855]],[\"name/1393\",[608,67.272]],[\"parent/1393\",[557,3.855]],[\"name/1394\",[609,67.272]],[\"parent/1394\",[557,3.855]],[\"name/1395\",[610,67.272]],[\"parent/1395\",[557,3.855]],[\"name/1396\",[611,67.272]],[\"parent/1396\",[557,3.855]],[\"name/1397\",[612,67.272]],[\"parent/1397\",[557,3.855]],[\"name/1398\",[613,67.272]],[\"parent/1398\",[557,3.855]],[\"name/1399\",[614,67.272]],[\"parent/1399\",[557,3.855]],[\"name/1400\",[615,67.272]],[\"parent/1400\",[557,3.855]],[\"name/1401\",[616,67.272]],[\"parent/1401\",[557,3.855]],[\"name/1402\",[617,67.272]],[\"parent/1402\",[557,3.855]],[\"name/1403\",[618,67.272]],[\"parent/1403\",[557,3.855]],[\"name/1404\",[619,67.272]],[\"parent/1404\",[557,3.855]],[\"name/1405\",[620,67.272]],[\"parent/1405\",[557,3.855]],[\"name/1406\",[621,67.272]],[\"parent/1406\",[557,3.855]],[\"name/1407\",[622,67.272]],[\"parent/1407\",[557,3.855]],[\"name/1408\",[623,67.272]],[\"parent/1408\",[557,3.855]],[\"name/1409\",[624,67.272]],[\"parent/1409\",[557,3.855]],[\"name/1410\",[625,67.272]],[\"parent/1410\",[557,3.855]],[\"name/1411\",[626,67.272]],[\"parent/1411\",[557,3.855]],[\"name/1412\",[627,67.272]],[\"parent/1412\",[557,3.855]],[\"name/1413\",[628,67.272]],[\"parent/1413\",[557,3.855]],[\"name/1414\",[629,40.191]],[\"parent/1414\",[]],[\"name/1415\",[108,51.178]],[\"parent/1415\",[629,3.88]],[\"name/1416\",[630,72.38]],[\"parent/1416\",[629,3.88]],[\"name/1417\",[631,67.272]],[\"parent/1417\",[629,3.88]],[\"name/1418\",[596,67.272]],[\"parent/1418\",[629,3.88]],[\"name/1419\",[597,67.272]],[\"parent/1419\",[629,3.88]],[\"name/1420\",[598,67.272]],[\"parent/1420\",[629,3.88]],[\"name/1421\",[599,67.272]],[\"parent/1421\",[629,3.88]],[\"name/1422\",[600,67.272]],[\"parent/1422\",[629,3.88]],[\"name/1423\",[601,67.272]],[\"parent/1423\",[629,3.88]],[\"name/1424\",[602,67.272]],[\"parent/1424\",[629,3.88]],[\"name/1425\",[603,67.272]],[\"parent/1425\",[629,3.88]],[\"name/1426\",[604,67.272]],[\"parent/1426\",[629,3.88]],[\"name/1427\",[605,67.272]],[\"parent/1427\",[629,3.88]],[\"name/1428\",[606,67.272]],[\"parent/1428\",[629,3.88]],[\"name/1429\",[607,67.272]],[\"parent/1429\",[629,3.88]],[\"name/1430\",[608,67.272]],[\"parent/1430\",[629,3.88]],[\"name/1431\",[609,67.272]],[\"parent/1431\",[629,3.88]],[\"name/1432\",[610,67.272]],[\"parent/1432\",[629,3.88]],[\"name/1433\",[611,67.272]],[\"parent/1433\",[629,3.88]],[\"name/1434\",[612,67.272]],[\"parent/1434\",[629,3.88]],[\"name/1435\",[613,67.272]],[\"parent/1435\",[629,3.88]],[\"name/1436\",[614,67.272]],[\"parent/1436\",[629,3.88]],[\"name/1437\",[615,67.272]],[\"parent/1437\",[629,3.88]],[\"name/1438\",[616,67.272]],[\"parent/1438\",[629,3.88]],[\"name/1439\",[617,67.272]],[\"parent/1439\",[629,3.88]],[\"name/1440\",[618,67.272]],[\"parent/1440\",[629,3.88]],[\"name/1441\",[619,67.272]],[\"parent/1441\",[629,3.88]],[\"name/1442\",[620,67.272]],[\"parent/1442\",[629,3.88]],[\"name/1443\",[621,67.272]],[\"parent/1443\",[629,3.88]],[\"name/1444\",[622,67.272]],[\"parent/1444\",[629,3.88]],[\"name/1445\",[623,67.272]],[\"parent/1445\",[629,3.88]],[\"name/1446\",[624,67.272]],[\"parent/1446\",[629,3.88]],[\"name/1447\",[625,67.272]],[\"parent/1447\",[629,3.88]],[\"name/1448\",[626,67.272]],[\"parent/1448\",[629,3.88]],[\"name/1449\",[627,67.272]],[\"parent/1449\",[629,3.88]],[\"name/1450\",[628,67.272]],[\"parent/1450\",[629,3.88]],[\"name/1451\",[632,41.622]],[\"parent/1451\",[]],[\"name/1452\",[1,31.605]],[\"parent/1452\",[632,4.018]],[\"name/1453\",[633,72.38]],[\"parent/1453\",[632,4.018]],[\"name/1454\",[634,72.38]],[\"parent/1454\",[632,4.018]],[\"name/1455\",[635,61.394]],[\"parent/1455\",[632,4.018]],[\"name/1456\",[636,67.272]],[\"parent/1456\",[632,4.018]],[\"name/1457\",[637,46.731]],[\"parent/1457\",[632,4.018]],[\"name/1458\",[69,41.622]],[\"parent/1458\",[632,4.018]],[\"name/1459\",[112,47.257]],[\"parent/1459\",[632,4.018]],[\"name/1460\",[638,56.286]],[\"parent/1460\",[632,4.018]],[\"name/1461\",[579,56.286]],[\"parent/1461\",[632,4.018]],[\"name/1462\",[639,63.907]],[\"parent/1462\",[632,4.018]],[\"name/1463\",[640,63.907]],[\"parent/1463\",[632,4.018]],[\"name/1464\",[641,63.907]],[\"parent/1464\",[632,4.018]],[\"name/1465\",[323,61.394]],[\"parent/1465\",[632,4.018]],[\"name/1466\",[569,56.286]],[\"parent/1466\",[632,4.018]],[\"name/1467\",[572,57.717]],[\"parent/1467\",[632,4.018]],[\"name/1468\",[571,57.717]],[\"parent/1468\",[632,4.018]],[\"name/1469\",[642,67.272]],[\"parent/1469\",[632,4.018]],[\"name/1470\",[643,67.272]],[\"parent/1470\",[632,4.018]],[\"name/1471\",[644,67.272]],[\"parent/1471\",[632,4.018]],[\"name/1472\",[325,59.387]],[\"parent/1472\",[632,4.018]],[\"name/1473\",[326,59.387]],[\"parent/1473\",[632,4.018]],[\"name/1474\",[113,48.401]],[\"parent/1474\",[632,4.018]],[\"name/1475\",[583,56.286]],[\"parent/1475\",[632,4.018]],[\"name/1476\",[645,56.286]],[\"parent/1476\",[632,4.018]],[\"name/1477\",[646,67.272]],[\"parent/1477\",[632,4.018]],[\"name/1478\",[647,67.272]],[\"parent/1478\",[632,4.018]],[\"name/1479\",[648,63.907]],[\"parent/1479\",[632,4.018]],[\"name/1480\",[649,67.272]],[\"parent/1480\",[632,4.018]],[\"name/1481\",[650,67.272]],[\"parent/1481\",[632,4.018]],[\"name/1482\",[651,67.272]],[\"parent/1482\",[632,4.018]],[\"name/1483\",[652,57.717]],[\"parent/1483\",[]],[\"name/1484\",[1,31.605]],[\"parent/1484\",[652,5.572]],[\"name/1485\",[69,41.622]],[\"parent/1485\",[652,5.572]],[\"name/1486\",[102,61.394]],[\"parent/1486\",[652,5.572]],[\"name/1487\",[638,56.286]],[\"parent/1487\",[652,5.572]],[\"name/1488\",[645,56.286]],[\"parent/1488\",[652,5.572]],[\"name/1489\",[653,42.591]],[\"parent/1489\",[]],[\"name/1490\",[1,31.605]],[\"parent/1490\",[653,4.112]],[\"name/1491\",[636,67.272]],[\"parent/1491\",[653,4.112]],[\"name/1492\",[637,46.731]],[\"parent/1492\",[653,4.112]],[\"name/1493\",[69,41.622]],[\"parent/1493\",[653,4.112]],[\"name/1494\",[112,47.257]],[\"parent/1494\",[653,4.112]],[\"name/1495\",[638,56.286]],[\"parent/1495\",[653,4.112]],[\"name/1496\",[579,56.286]],[\"parent/1496\",[653,4.112]],[\"name/1497\",[639,63.907]],[\"parent/1497\",[653,4.112]],[\"name/1498\",[640,63.907]],[\"parent/1498\",[653,4.112]],[\"name/1499\",[641,63.907]],[\"parent/1499\",[653,4.112]],[\"name/1500\",[323,61.394]],[\"parent/1500\",[653,4.112]],[\"name/1501\",[569,56.286]],[\"parent/1501\",[653,4.112]],[\"name/1502\",[572,57.717]],[\"parent/1502\",[653,4.112]],[\"name/1503\",[571,57.717]],[\"parent/1503\",[653,4.112]],[\"name/1504\",[642,67.272]],[\"parent/1504\",[653,4.112]],[\"name/1505\",[643,67.272]],[\"parent/1505\",[653,4.112]],[\"name/1506\",[644,67.272]],[\"parent/1506\",[653,4.112]],[\"name/1507\",[325,59.387]],[\"parent/1507\",[653,4.112]],[\"name/1508\",[326,59.387]],[\"parent/1508\",[653,4.112]],[\"name/1509\",[113,48.401]],[\"parent/1509\",[653,4.112]],[\"name/1510\",[583,56.286]],[\"parent/1510\",[653,4.112]],[\"name/1511\",[645,56.286]],[\"parent/1511\",[653,4.112]],[\"name/1512\",[646,67.272]],[\"parent/1512\",[653,4.112]],[\"name/1513\",[647,67.272]],[\"parent/1513\",[653,4.112]],[\"name/1514\",[648,63.907]],[\"parent/1514\",[653,4.112]],[\"name/1515\",[649,67.272]],[\"parent/1515\",[653,4.112]],[\"name/1516\",[650,67.272]],[\"parent/1516\",[653,4.112]],[\"name/1517\",[651,67.272]],[\"parent/1517\",[653,4.112]],[\"name/1518\",[654,59.387]],[\"parent/1518\",[]],[\"name/1519\",[1,31.605]],[\"parent/1519\",[654,5.733]],[\"name/1520\",[69,41.622]],[\"parent/1520\",[654,5.733]],[\"name/1521\",[638,56.286]],[\"parent/1521\",[654,5.733]],[\"name/1522\",[645,56.286]],[\"parent/1522\",[654,5.733]],[\"name/1523\",[655,52.921]],[\"parent/1523\",[]],[\"name/1524\",[579,56.286]],[\"parent/1524\",[655,5.109]],[\"name/1525\",[639,63.907]],[\"parent/1525\",[655,5.109]],[\"name/1526\",[640,63.907]],[\"parent/1526\",[655,5.109]],[\"name/1527\",[641,63.907]],[\"parent/1527\",[655,5.109]],[\"name/1528\",[648,63.907]],[\"parent/1528\",[655,5.109]],[\"name/1529\",[583,56.286]],[\"parent/1529\",[655,5.109]],[\"name/1530\",[69,41.622]],[\"parent/1530\",[655,5.109]],[\"name/1531\",[638,56.286]],[\"parent/1531\",[655,5.109]],[\"name/1532\",[645,56.286]],[\"parent/1532\",[655,5.109]],[\"name/1533\",[656,61.394]],[\"parent/1533\",[]],[\"name/1534\",[69,41.622]],[\"parent/1534\",[656,5.927]],[\"name/1535\",[638,56.286]],[\"parent/1535\",[656,5.927]],[\"name/1536\",[645,56.286]],[\"parent/1536\",[656,5.927]],[\"name/1537\",[657,57.717]],[\"parent/1537\",[]],[\"name/1538\",[112,47.257]],[\"parent/1538\",[657,5.572]],[\"name/1539\",[113,48.401]],[\"parent/1539\",[657,5.572]],[\"name/1540\",[69,41.622]],[\"parent/1540\",[657,5.572]],[\"name/1541\",[638,56.286]],[\"parent/1541\",[657,5.572]],[\"name/1542\",[645,56.286]],[\"parent/1542\",[657,5.572]],[\"name/1543\",[637,46.731]],[\"parent/1543\",[]],[\"name/1544\",[658,72.38]],[\"parent/1544\",[637,4.511]],[\"name/1545\",[659,72.38]],[\"parent/1545\",[637,4.511]],[\"name/1546\",[660,72.38]],[\"parent/1546\",[637,4.511]],[\"name/1547\",[661,72.38]],[\"parent/1547\",[637,4.511]],[\"name/1548\",[662,72.38]],[\"parent/1548\",[637,4.511]],[\"name/1549\",[663,72.38]],[\"parent/1549\",[637,4.511]],[\"name/1550\",[664,67.272]],[\"parent/1550\",[637,4.511]],[\"name/1551\",[665,67.272]],[\"parent/1551\",[637,4.511]],[\"name/1552\",[666,67.272]],[\"parent/1552\",[637,4.511]],[\"name/1553\",[667,67.272]],[\"parent/1553\",[637,4.511]],[\"name/1554\",[668,67.272]],[\"parent/1554\",[637,4.511]],[\"name/1555\",[363,63.907]],[\"parent/1555\",[637,4.511]],[\"name/1556\",[669,67.272]],[\"parent/1556\",[637,4.511]],[\"name/1557\",[670,67.272]],[\"parent/1557\",[637,4.511]],[\"name/1558\",[671,67.272]],[\"parent/1558\",[637,4.511]],[\"name/1559\",[672,67.272]],[\"parent/1559\",[637,4.511]],[\"name/1560\",[673,52.011]],[\"parent/1560\",[]],[\"name/1561\",[108,51.178]],[\"parent/1561\",[673,5.021]],[\"name/1562\",[674,72.38]],[\"parent/1562\",[673,5.021]],[\"name/1563\",[675,72.38]],[\"parent/1563\",[673,5.021]],[\"name/1564\",[676,72.38]],[\"parent/1564\",[673,5.021]],[\"name/1565\",[677,72.38]],[\"parent/1565\",[673,5.021]],[\"name/1566\",[569,56.286]],[\"parent/1566\",[673,5.021]],[\"name/1567\",[570,61.394]],[\"parent/1567\",[673,5.021]],[\"name/1568\",[571,57.717]],[\"parent/1568\",[673,5.021]],[\"name/1569\",[572,57.717]],[\"parent/1569\",[673,5.021]],[\"name/1570\",[556,67.272]],[\"parent/1570\",[673,5.021]],[\"name/1571\",[678,61.394]],[\"parent/1571\",[]],[\"name/1572\",[108,51.178]],[\"parent/1572\",[678,5.927]],[\"name/1573\",[679,72.38]],[\"parent/1573\",[678,5.927]],[\"name/1574\",[680,72.38]],[\"parent/1574\",[678,5.927]],[\"name/1575\",[316,52.921]],[\"parent/1575\",[]],[\"name/1576\",[681,67.272]],[\"parent/1576\",[316,5.109]],[\"name/1577\",[682,67.272]],[\"parent/1577\",[316,5.109]],[\"name/1578\",[683,72.38]],[\"parent/1578\",[316,5.109]],[\"name/1579\",[684,72.38]],[\"parent/1579\",[316,5.109]],[\"name/1580\",[685,72.38]],[\"parent/1580\",[316,5.109]],[\"name/1581\",[686,72.38]],[\"parent/1581\",[316,5.109]],[\"name/1582\",[687,72.38]],[\"parent/1582\",[316,5.109]],[\"name/1583\",[688,72.38]],[\"parent/1583\",[316,5.109]],[\"name/1584\",[689,56.286]],[\"parent/1584\",[]],[\"name/1585\",[681,67.272]],[\"parent/1585\",[689,5.434]],[\"name/1586\",[690,72.38]],[\"parent/1586\",[689,5.434]],[\"name/1587\",[691,72.38]],[\"parent/1587\",[689,5.434]],[\"name/1588\",[692,72.38]],[\"parent/1588\",[689,5.434]],[\"name/1589\",[693,72.38]],[\"parent/1589\",[689,5.434]],[\"name/1590\",[682,67.272]],[\"parent/1590\",[689,5.434]],[\"name/1591\",[635,61.394]],[\"parent/1591\",[]],[\"name/1592\",[694,72.38]],[\"parent/1592\",[635,5.927]],[\"name/1593\",[695,72.38]],[\"parent/1593\",[635,5.927]],[\"name/1594\",[696,52.011]],[\"parent/1594\",[]],[\"name/1595\",[665,67.272]],[\"parent/1595\",[696,5.021]],[\"name/1596\",[363,63.907]],[\"parent/1596\",[696,5.021]],[\"name/1597\",[668,67.272]],[\"parent/1597\",[696,5.021]],[\"name/1598\",[667,67.272]],[\"parent/1598\",[696,5.021]],[\"name/1599\",[671,67.272]],[\"parent/1599\",[696,5.021]],[\"name/1600\",[666,67.272]],[\"parent/1600\",[696,5.021]],[\"name/1601\",[664,67.272]],[\"parent/1601\",[696,5.021]],[\"name/1602\",[669,67.272]],[\"parent/1602\",[696,5.021]],[\"name/1603\",[670,67.272]],[\"parent/1603\",[696,5.021]],[\"name/1604\",[672,67.272]],[\"parent/1604\",[696,5.021]],[\"name/1605\",[697,59.387]],[\"parent/1605\",[]],[\"name/1606\",[108,51.178]],[\"parent/1606\",[697,5.733]],[\"name/1607\",[698,72.38]],[\"parent/1607\",[697,5.733]],[\"name/1608\",[699,72.38]],[\"parent/1608\",[697,5.733]],[\"name/1609\",[534,61.394]],[\"parent/1609\",[697,5.733]],[\"name/1610\",[141,48.401]],[\"parent/1610\",[]],[\"name/1611\",[1,31.605]],[\"parent/1611\",[141,4.673]],[\"name/1612\",[700,72.38]],[\"parent/1612\",[141,4.673]],[\"name/1613\",[7,59.387]],[\"parent/1613\",[141,4.673]],[\"name/1614\",[155,67.272]],[\"parent/1614\",[141,4.673]],[\"name/1615\",[701,72.38]],[\"parent/1615\",[141,4.673]],[\"name/1616\",[11,59.387]],[\"parent/1616\",[141,4.673]],[\"name/1617\",[702,72.38]],[\"parent/1617\",[141,4.673]],[\"name/1618\",[703,72.38]],[\"parent/1618\",[141,4.673]],[\"name/1619\",[704,72.38]],[\"parent/1619\",[141,4.673]],[\"name/1620\",[705,72.38]],[\"parent/1620\",[141,4.673]],[\"name/1621\",[706,72.38]],[\"parent/1621\",[141,4.673]],[\"name/1622\",[707,72.38]],[\"parent/1622\",[141,4.673]],[\"name/1623\",[708,72.38]],[\"parent/1623\",[141,4.673]],[\"name/1624\",[709,72.38]],[\"parent/1624\",[141,4.673]],[\"name/1625\",[710,55.034]],[\"parent/1625\",[]],[\"name/1626\",[1,31.605]],[\"parent/1626\",[710,5.313]],[\"name/1627\",[249,46.231]],[\"parent/1627\",[710,5.313]],[\"name/1628\",[711,72.38]],[\"parent/1628\",[710,5.313]],[\"name/1629\",[712,72.38]],[\"parent/1629\",[710,5.313]],[\"name/1630\",[713,72.38]],[\"parent/1630\",[710,5.313]],[\"name/1631\",[714,72.38]],[\"parent/1631\",[710,5.313]],[\"name/1632\",[715,72.38]],[\"parent/1632\",[710,5.313]],[\"name/1633\",[716,52.921]],[\"parent/1633\",[]],[\"name/1634\",[1,31.605]],[\"parent/1634\",[716,5.109]],[\"name/1635\",[717,72.38]],[\"parent/1635\",[716,5.109]],[\"name/1636\",[718,72.38]],[\"parent/1636\",[716,5.109]],[\"name/1637\",[719,72.38]],[\"parent/1637\",[716,5.109]],[\"name/1638\",[573,61.394]],[\"parent/1638\",[716,5.109]],[\"name/1639\",[720,72.38]],[\"parent/1639\",[716,5.109]],[\"name/1640\",[59,49.693]],[\"parent/1640\",[716,5.109]],[\"name/1641\",[25,40.462]],[\"parent/1641\",[716,5.109]],[\"name/1642\",[282,59.387]],[\"parent/1642\",[716,5.109]],[\"name/1643\",[721,44.048]],[\"parent/1643\",[]],[\"name/1644\",[1,31.605]],[\"parent/1644\",[721,4.252]],[\"name/1645\",[475,59.387]],[\"parent/1645\",[721,4.252]],[\"name/1646\",[568,61.394]],[\"parent/1646\",[721,4.252]],[\"name/1647\",[722,72.38]],[\"parent/1647\",[721,4.252]],[\"name/1648\",[723,72.38]],[\"parent/1648\",[721,4.252]],[\"name/1649\",[72,59.387]],[\"parent/1649\",[721,4.252]],[\"name/1650\",[724,72.38]],[\"parent/1650\",[721,4.252]],[\"name/1651\",[511,67.272]],[\"parent/1651\",[721,4.252]],[\"name/1652\",[725,72.38]],[\"parent/1652\",[721,4.252]],[\"name/1653\",[569,56.286]],[\"parent/1653\",[721,4.252]],[\"name/1654\",[726,72.38]],[\"parent/1654\",[721,4.252]],[\"name/1655\",[727,72.38]],[\"parent/1655\",[721,4.252]],[\"name/1656\",[728,72.38]],[\"parent/1656\",[721,4.252]],[\"name/1657\",[729,72.38]],[\"parent/1657\",[721,4.252]],[\"name/1658\",[730,72.38]],[\"parent/1658\",[721,4.252]],[\"name/1659\",[15,53.922]],[\"parent/1659\",[721,4.252]],[\"name/1660\",[731,72.38]],[\"parent/1660\",[721,4.252]],[\"name/1661\",[340,57.717]],[\"parent/1661\",[721,4.252]],[\"name/1662\",[732,72.38]],[\"parent/1662\",[721,4.252]],[\"name/1663\",[733,72.38]],[\"parent/1663\",[721,4.252]],[\"name/1664\",[734,72.38]],[\"parent/1664\",[721,4.252]],[\"name/1665\",[59,49.693]],[\"parent/1665\",[721,4.252]],[\"name/1666\",[25,40.462]],[\"parent/1666\",[721,4.252]],[\"name/1667\",[282,59.387]],[\"parent/1667\",[721,4.252]],[\"name/1668\",[735,21.003]],[\"parent/1668\",[]],[\"name/1669\",[736,72.38]],[\"parent/1669\",[735,2.028]],[\"name/1670\",[737,72.38]],[\"parent/1670\",[735,2.028]],[\"name/1671\",[738,72.38]],[\"parent/1671\",[735,2.028]],[\"name/1672\",[739,72.38]],[\"parent/1672\",[735,2.028]],[\"name/1673\",[740,72.38]],[\"parent/1673\",[735,2.028]],[\"name/1674\",[741,72.38]],[\"parent/1674\",[735,2.028]],[\"name/1675\",[742,72.38]],[\"parent/1675\",[735,2.028]],[\"name/1676\",[743,72.38]],[\"parent/1676\",[735,2.028]],[\"name/1677\",[744,72.38]],[\"parent/1677\",[735,2.028]],[\"name/1678\",[745,72.38]],[\"parent/1678\",[735,2.028]],[\"name/1679\",[746,72.38]],[\"parent/1679\",[735,2.028]],[\"name/1680\",[747,72.38]],[\"parent/1680\",[735,2.028]],[\"name/1681\",[748,72.38]],[\"parent/1681\",[735,2.028]],[\"name/1682\",[749,72.38]],[\"parent/1682\",[735,2.028]],[\"name/1683\",[750,72.38]],[\"parent/1683\",[735,2.028]],[\"name/1684\",[751,72.38]],[\"parent/1684\",[735,2.028]],[\"name/1685\",[752,72.38]],[\"parent/1685\",[735,2.028]],[\"name/1686\",[753,72.38]],[\"parent/1686\",[735,2.028]],[\"name/1687\",[754,72.38]],[\"parent/1687\",[735,2.028]],[\"name/1688\",[755,72.38]],[\"parent/1688\",[735,2.028]],[\"name/1689\",[756,72.38]],[\"parent/1689\",[735,2.028]],[\"name/1690\",[757,72.38]],[\"parent/1690\",[735,2.028]],[\"name/1691\",[758,72.38]],[\"parent/1691\",[735,2.028]],[\"name/1692\",[759,72.38]],[\"parent/1692\",[735,2.028]],[\"name/1693\",[760,72.38]],[\"parent/1693\",[735,2.028]],[\"name/1694\",[761,72.38]],[\"parent/1694\",[735,2.028]],[\"name/1695\",[762,72.38]],[\"parent/1695\",[735,2.028]],[\"name/1696\",[763,72.38]],[\"parent/1696\",[735,2.028]],[\"name/1697\",[764,72.38]],[\"parent/1697\",[735,2.028]],[\"name/1698\",[765,72.38]],[\"parent/1698\",[735,2.028]],[\"name/1699\",[766,72.38]],[\"parent/1699\",[735,2.028]],[\"name/1700\",[767,72.38]],[\"parent/1700\",[735,2.028]],[\"name/1701\",[768,72.38]],[\"parent/1701\",[735,2.028]],[\"name/1702\",[769,72.38]],[\"parent/1702\",[735,2.028]],[\"name/1703\",[770,72.38]],[\"parent/1703\",[735,2.028]],[\"name/1704\",[771,72.38]],[\"parent/1704\",[735,2.028]],[\"name/1705\",[772,72.38]],[\"parent/1705\",[735,2.028]],[\"name/1706\",[773,72.38]],[\"parent/1706\",[735,2.028]],[\"name/1707\",[774,72.38]],[\"parent/1707\",[735,2.028]],[\"name/1708\",[775,72.38]],[\"parent/1708\",[735,2.028]],[\"name/1709\",[776,72.38]],[\"parent/1709\",[735,2.028]],[\"name/1710\",[777,72.38]],[\"parent/1710\",[735,2.028]],[\"name/1711\",[778,72.38]],[\"parent/1711\",[735,2.028]],[\"name/1712\",[779,72.38]],[\"parent/1712\",[735,2.028]],[\"name/1713\",[780,72.38]],[\"parent/1713\",[735,2.028]],[\"name/1714\",[781,72.38]],[\"parent/1714\",[735,2.028]],[\"name/1715\",[782,72.38]],[\"parent/1715\",[735,2.028]],[\"name/1716\",[783,72.38]],[\"parent/1716\",[735,2.028]],[\"name/1717\",[784,72.38]],[\"parent/1717\",[735,2.028]],[\"name/1718\",[785,72.38]],[\"parent/1718\",[735,2.028]],[\"name/1719\",[786,72.38]],[\"parent/1719\",[735,2.028]],[\"name/1720\",[787,72.38]],[\"parent/1720\",[735,2.028]],[\"name/1721\",[788,72.38]],[\"parent/1721\",[735,2.028]],[\"name/1722\",[789,72.38]],[\"parent/1722\",[735,2.028]],[\"name/1723\",[790,72.38]],[\"parent/1723\",[735,2.028]],[\"name/1724\",[791,72.38]],[\"parent/1724\",[735,2.028]],[\"name/1725\",[792,72.38]],[\"parent/1725\",[735,2.028]],[\"name/1726\",[793,72.38]],[\"parent/1726\",[735,2.028]],[\"name/1727\",[794,72.38]],[\"parent/1727\",[735,2.028]],[\"name/1728\",[795,72.38]],[\"parent/1728\",[735,2.028]],[\"name/1729\",[796,72.38]],[\"parent/1729\",[735,2.028]],[\"name/1730\",[797,72.38]],[\"parent/1730\",[735,2.028]],[\"name/1731\",[798,72.38]],[\"parent/1731\",[735,2.028]],[\"name/1732\",[799,72.38]],[\"parent/1732\",[735,2.028]],[\"name/1733\",[800,72.38]],[\"parent/1733\",[735,2.028]],[\"name/1734\",[801,72.38]],[\"parent/1734\",[735,2.028]],[\"name/1735\",[802,72.38]],[\"parent/1735\",[735,2.028]],[\"name/1736\",[803,72.38]],[\"parent/1736\",[735,2.028]],[\"name/1737\",[804,72.38]],[\"parent/1737\",[735,2.028]],[\"name/1738\",[805,72.38]],[\"parent/1738\",[735,2.028]],[\"name/1739\",[806,72.38]],[\"parent/1739\",[735,2.028]],[\"name/1740\",[807,72.38]],[\"parent/1740\",[735,2.028]],[\"name/1741\",[808,72.38]],[\"parent/1741\",[735,2.028]],[\"name/1742\",[809,72.38]],[\"parent/1742\",[735,2.028]],[\"name/1743\",[810,72.38]],[\"parent/1743\",[735,2.028]],[\"name/1744\",[811,72.38]],[\"parent/1744\",[735,2.028]],[\"name/1745\",[812,72.38]],[\"parent/1745\",[735,2.028]],[\"name/1746\",[813,72.38]],[\"parent/1746\",[735,2.028]],[\"name/1747\",[814,72.38]],[\"parent/1747\",[735,2.028]],[\"name/1748\",[815,72.38]],[\"parent/1748\",[735,2.028]],[\"name/1749\",[816,72.38]],[\"parent/1749\",[735,2.028]],[\"name/1750\",[817,72.38]],[\"parent/1750\",[735,2.028]],[\"name/1751\",[818,72.38]],[\"parent/1751\",[735,2.028]],[\"name/1752\",[819,72.38]],[\"parent/1752\",[735,2.028]],[\"name/1753\",[820,72.38]],[\"parent/1753\",[735,2.028]],[\"name/1754\",[821,72.38]],[\"parent/1754\",[735,2.028]],[\"name/1755\",[822,72.38]],[\"parent/1755\",[735,2.028]],[\"name/1756\",[823,72.38]],[\"parent/1756\",[735,2.028]],[\"name/1757\",[824,72.38]],[\"parent/1757\",[735,2.028]],[\"name/1758\",[825,72.38]],[\"parent/1758\",[735,2.028]],[\"name/1759\",[826,72.38]],[\"parent/1759\",[735,2.028]],[\"name/1760\",[827,72.38]],[\"parent/1760\",[735,2.028]],[\"name/1761\",[828,72.38]],[\"parent/1761\",[735,2.028]],[\"name/1762\",[829,72.38]],[\"parent/1762\",[735,2.028]],[\"name/1763\",[830,72.38]],[\"parent/1763\",[735,2.028]],[\"name/1764\",[831,72.38]],[\"parent/1764\",[735,2.028]],[\"name/1765\",[832,72.38]],[\"parent/1765\",[735,2.028]],[\"name/1766\",[833,72.38]],[\"parent/1766\",[735,2.028]],[\"name/1767\",[834,72.38]],[\"parent/1767\",[735,2.028]],[\"name/1768\",[835,72.38]],[\"parent/1768\",[735,2.028]],[\"name/1769\",[836,72.38]],[\"parent/1769\",[735,2.028]],[\"name/1770\",[837,72.38]],[\"parent/1770\",[735,2.028]],[\"name/1771\",[838,72.38]],[\"parent/1771\",[735,2.028]],[\"name/1772\",[839,72.38]],[\"parent/1772\",[735,2.028]],[\"name/1773\",[840,72.38]],[\"parent/1773\",[735,2.028]],[\"name/1774\",[841,72.38]],[\"parent/1774\",[735,2.028]],[\"name/1775\",[842,72.38]],[\"parent/1775\",[735,2.028]],[\"name/1776\",[843,72.38]],[\"parent/1776\",[735,2.028]],[\"name/1777\",[844,72.38]],[\"parent/1777\",[735,2.028]],[\"name/1778\",[845,72.38]],[\"parent/1778\",[735,2.028]],[\"name/1779\",[846,72.38]],[\"parent/1779\",[735,2.028]],[\"name/1780\",[847,72.38]],[\"parent/1780\",[735,2.028]],[\"name/1781\",[848,72.38]],[\"parent/1781\",[735,2.028]],[\"name/1782\",[849,72.38]],[\"parent/1782\",[735,2.028]],[\"name/1783\",[850,72.38]],[\"parent/1783\",[735,2.028]],[\"name/1784\",[851,72.38]],[\"parent/1784\",[735,2.028]],[\"name/1785\",[852,72.38]],[\"parent/1785\",[735,2.028]],[\"name/1786\",[853,72.38]],[\"parent/1786\",[735,2.028]],[\"name/1787\",[854,72.38]],[\"parent/1787\",[735,2.028]],[\"name/1788\",[855,72.38]],[\"parent/1788\",[735,2.028]],[\"name/1789\",[856,72.38]],[\"parent/1789\",[735,2.028]],[\"name/1790\",[857,72.38]],[\"parent/1790\",[735,2.028]],[\"name/1791\",[858,72.38]],[\"parent/1791\",[735,2.028]],[\"name/1792\",[859,72.38]],[\"parent/1792\",[735,2.028]],[\"name/1793\",[860,72.38]],[\"parent/1793\",[735,2.028]],[\"name/1794\",[861,72.38]],[\"parent/1794\",[735,2.028]],[\"name/1795\",[474,67.272]],[\"parent/1795\",[735,2.028]],[\"name/1796\",[862,72.38]],[\"parent/1796\",[735,2.028]],[\"name/1797\",[863,72.38]],[\"parent/1797\",[735,2.028]],[\"name/1798\",[864,72.38]],[\"parent/1798\",[735,2.028]],[\"name/1799\",[865,72.38]],[\"parent/1799\",[735,2.028]],[\"name/1800\",[866,72.38]],[\"parent/1800\",[735,2.028]],[\"name/1801\",[867,72.38]],[\"parent/1801\",[735,2.028]],[\"name/1802\",[868,72.38]],[\"parent/1802\",[735,2.028]],[\"name/1803\",[869,72.38]],[\"parent/1803\",[735,2.028]],[\"name/1804\",[870,72.38]],[\"parent/1804\",[735,2.028]],[\"name/1805\",[871,72.38]],[\"parent/1805\",[735,2.028]],[\"name/1806\",[872,72.38]],[\"parent/1806\",[735,2.028]],[\"name/1807\",[873,72.38]],[\"parent/1807\",[735,2.028]],[\"name/1808\",[874,72.38]],[\"parent/1808\",[735,2.028]],[\"name/1809\",[875,72.38]],[\"parent/1809\",[735,2.028]],[\"name/1810\",[876,72.38]],[\"parent/1810\",[735,2.028]],[\"name/1811\",[877,72.38]],[\"parent/1811\",[735,2.028]],[\"name/1812\",[878,72.38]],[\"parent/1812\",[735,2.028]],[\"name/1813\",[879,72.38]],[\"parent/1813\",[735,2.028]],[\"name/1814\",[880,72.38]],[\"parent/1814\",[735,2.028]],[\"name/1815\",[881,72.38]],[\"parent/1815\",[735,2.028]],[\"name/1816\",[882,72.38]],[\"parent/1816\",[735,2.028]],[\"name/1817\",[883,72.38]],[\"parent/1817\",[735,2.028]],[\"name/1818\",[884,72.38]],[\"parent/1818\",[735,2.028]],[\"name/1819\",[885,72.38]],[\"parent/1819\",[735,2.028]],[\"name/1820\",[886,72.38]],[\"parent/1820\",[735,2.028]],[\"name/1821\",[887,72.38]],[\"parent/1821\",[735,2.028]],[\"name/1822\",[888,72.38]],[\"parent/1822\",[735,2.028]],[\"name/1823\",[889,72.38]],[\"parent/1823\",[735,2.028]],[\"name/1824\",[890,72.38]],[\"parent/1824\",[735,2.028]],[\"name/1825\",[891,72.38]],[\"parent/1825\",[735,2.028]],[\"name/1826\",[892,72.38]],[\"parent/1826\",[735,2.028]],[\"name/1827\",[893,72.38]],[\"parent/1827\",[735,2.028]],[\"name/1828\",[894,72.38]],[\"parent/1828\",[735,2.028]],[\"name/1829\",[895,72.38]],[\"parent/1829\",[735,2.028]],[\"name/1830\",[896,72.38]],[\"parent/1830\",[735,2.028]],[\"name/1831\",[897,72.38]],[\"parent/1831\",[735,2.028]],[\"name/1832\",[898,72.38]],[\"parent/1832\",[735,2.028]],[\"name/1833\",[899,72.38]],[\"parent/1833\",[735,2.028]],[\"name/1834\",[900,72.38]],[\"parent/1834\",[735,2.028]],[\"name/1835\",[901,72.38]],[\"parent/1835\",[735,2.028]],[\"name/1836\",[902,72.38]],[\"parent/1836\",[735,2.028]],[\"name/1837\",[903,72.38]],[\"parent/1837\",[735,2.028]],[\"name/1838\",[904,72.38]],[\"parent/1838\",[735,2.028]],[\"name/1839\",[905,72.38]],[\"parent/1839\",[735,2.028]],[\"name/1840\",[906,72.38]],[\"parent/1840\",[735,2.028]],[\"name/1841\",[907,72.38]],[\"parent/1841\",[735,2.028]],[\"name/1842\",[908,72.38]],[\"parent/1842\",[735,2.028]],[\"name/1843\",[909,72.38]],[\"parent/1843\",[735,2.028]],[\"name/1844\",[910,72.38]],[\"parent/1844\",[735,2.028]],[\"name/1845\",[911,72.38]],[\"parent/1845\",[735,2.028]],[\"name/1846\",[912,72.38]],[\"parent/1846\",[735,2.028]],[\"name/1847\",[913,72.38]],[\"parent/1847\",[735,2.028]],[\"name/1848\",[914,72.38]],[\"parent/1848\",[735,2.028]],[\"name/1849\",[915,72.38]],[\"parent/1849\",[735,2.028]],[\"name/1850\",[916,72.38]],[\"parent/1850\",[735,2.028]],[\"name/1851\",[917,72.38]],[\"parent/1851\",[735,2.028]],[\"name/1852\",[918,72.38]],[\"parent/1852\",[735,2.028]],[\"name/1853\",[919,72.38]],[\"parent/1853\",[735,2.028]],[\"name/1854\",[920,72.38]],[\"parent/1854\",[735,2.028]],[\"name/1855\",[921,72.38]],[\"parent/1855\",[735,2.028]],[\"name/1856\",[922,72.38]],[\"parent/1856\",[735,2.028]],[\"name/1857\",[923,72.38]],[\"parent/1857\",[735,2.028]],[\"name/1858\",[924,72.38]],[\"parent/1858\",[735,2.028]],[\"name/1859\",[925,72.38]],[\"parent/1859\",[735,2.028]],[\"name/1860\",[926,72.38]],[\"parent/1860\",[735,2.028]],[\"name/1861\",[927,72.38]],[\"parent/1861\",[735,2.028]],[\"name/1862\",[928,72.38]],[\"parent/1862\",[735,2.028]],[\"name/1863\",[929,72.38]],[\"parent/1863\",[735,2.028]],[\"name/1864\",[930,72.38]],[\"parent/1864\",[735,2.028]],[\"name/1865\",[931,72.38]],[\"parent/1865\",[735,2.028]],[\"name/1866\",[932,72.38]],[\"parent/1866\",[735,2.028]],[\"name/1867\",[933,72.38]],[\"parent/1867\",[735,2.028]],[\"name/1868\",[934,72.38]],[\"parent/1868\",[735,2.028]],[\"name/1869\",[935,72.38]],[\"parent/1869\",[735,2.028]],[\"name/1870\",[936,72.38]],[\"parent/1870\",[735,2.028]],[\"name/1871\",[937,72.38]],[\"parent/1871\",[735,2.028]],[\"name/1872\",[938,72.38]],[\"parent/1872\",[735,2.028]],[\"name/1873\",[939,72.38]],[\"parent/1873\",[735,2.028]],[\"name/1874\",[940,72.38]],[\"parent/1874\",[735,2.028]],[\"name/1875\",[941,72.38]],[\"parent/1875\",[735,2.028]],[\"name/1876\",[942,72.38]],[\"parent/1876\",[735,2.028]],[\"name/1877\",[943,72.38]],[\"parent/1877\",[735,2.028]],[\"name/1878\",[944,72.38]],[\"parent/1878\",[735,2.028]],[\"name/1879\",[945,72.38]],[\"parent/1879\",[735,2.028]],[\"name/1880\",[946,72.38]],[\"parent/1880\",[735,2.028]],[\"name/1881\",[947,72.38]],[\"parent/1881\",[735,2.028]],[\"name/1882\",[948,72.38]],[\"parent/1882\",[735,2.028]],[\"name/1883\",[949,72.38]],[\"parent/1883\",[735,2.028]],[\"name/1884\",[950,72.38]],[\"parent/1884\",[735,2.028]],[\"name/1885\",[951,72.38]],[\"parent/1885\",[735,2.028]],[\"name/1886\",[952,72.38]],[\"parent/1886\",[735,2.028]],[\"name/1887\",[953,72.38]],[\"parent/1887\",[735,2.028]],[\"name/1888\",[954,72.38]],[\"parent/1888\",[735,2.028]],[\"name/1889\",[955,72.38]],[\"parent/1889\",[735,2.028]],[\"name/1890\",[956,72.38]],[\"parent/1890\",[735,2.028]],[\"name/1891\",[957,72.38]],[\"parent/1891\",[735,2.028]],[\"name/1892\",[958,72.38]],[\"parent/1892\",[735,2.028]],[\"name/1893\",[959,72.38]],[\"parent/1893\",[735,2.028]],[\"name/1894\",[960,72.38]],[\"parent/1894\",[735,2.028]],[\"name/1895\",[961,72.38]],[\"parent/1895\",[735,2.028]],[\"name/1896\",[962,72.38]],[\"parent/1896\",[735,2.028]],[\"name/1897\",[963,72.38]],[\"parent/1897\",[735,2.028]],[\"name/1898\",[964,72.38]],[\"parent/1898\",[735,2.028]],[\"name/1899\",[965,72.38]],[\"parent/1899\",[735,2.028]],[\"name/1900\",[966,72.38]],[\"parent/1900\",[735,2.028]],[\"name/1901\",[967,72.38]],[\"parent/1901\",[735,2.028]],[\"name/1902\",[968,72.38]],[\"parent/1902\",[735,2.028]],[\"name/1903\",[969,72.38]],[\"parent/1903\",[735,2.028]],[\"name/1904\",[970,72.38]],[\"parent/1904\",[735,2.028]],[\"name/1905\",[971,72.38]],[\"parent/1905\",[735,2.028]],[\"name/1906\",[972,72.38]],[\"parent/1906\",[735,2.028]],[\"name/1907\",[973,72.38]],[\"parent/1907\",[735,2.028]],[\"name/1908\",[974,72.38]],[\"parent/1908\",[735,2.028]],[\"name/1909\",[975,72.38]],[\"parent/1909\",[735,2.028]],[\"name/1910\",[976,72.38]],[\"parent/1910\",[735,2.028]],[\"name/1911\",[977,72.38]],[\"parent/1911\",[735,2.028]],[\"name/1912\",[631,67.272]],[\"parent/1912\",[735,2.028]],[\"name/1913\",[978,72.38]],[\"parent/1913\",[735,2.028]],[\"name/1914\",[979,72.38]],[\"parent/1914\",[735,2.028]],[\"name/1915\",[980,72.38]],[\"parent/1915\",[735,2.028]],[\"name/1916\",[33,51.178]],[\"parent/1916\",[735,2.028]],[\"name/1917\",[981,72.38]],[\"parent/1917\",[735,2.028]],[\"name/1918\",[982,72.38]],[\"parent/1918\",[735,2.028]],[\"name/1919\",[983,72.38]],[\"parent/1919\",[735,2.028]],[\"name/1920\",[984,72.38]],[\"parent/1920\",[]],[\"name/1921\",[985,53.922]],[\"parent/1921\",[]],[\"name/1922\",[32,57.717]],[\"parent/1922\",[985,5.206]],[\"name/1923\",[1,31.605]],[\"parent/1923\",[985,5.206]],[\"name/1924\",[203,61.394]],[\"parent/1924\",[985,5.206]],[\"name/1925\",[986,72.38]],[\"parent/1925\",[985,5.206]],[\"name/1926\",[60,52.011]],[\"parent/1926\",[985,5.206]],[\"name/1927\",[987,63.907]],[\"parent/1927\",[]],[\"name/1928\",[490,56.286]],[\"parent/1928\",[987,6.17]],[\"name/1929\",[56,59.387]],[\"parent/1929\",[987,6.17]],[\"name/1930\",[988,52.921]],[\"parent/1930\",[]],[\"name/1931\",[32,57.717]],[\"parent/1931\",[988,5.109]],[\"name/1932\",[1,31.605]],[\"parent/1932\",[988,5.109]],[\"name/1933\",[490,56.286]],[\"parent/1933\",[988,5.109]],[\"name/1934\",[56,59.387]],[\"parent/1934\",[988,5.109]],[\"name/1935\",[25,40.462]],[\"parent/1935\",[988,5.109]],[\"name/1936\",[60,52.011]],[\"parent/1936\",[988,5.109]],[\"name/1937\",[989,72.38]],[\"parent/1937\",[]],[\"name/1938\",[990,42.591]],[\"parent/1938\",[]],[\"name/1939\",[985,53.922]],[\"parent/1939\",[990,4.112]],[\"name/1940\",[988,52.921]],[\"parent/1940\",[990,4.112]],[\"name/1941\",[991,63.907]],[\"parent/1941\",[990,4.112]],[\"name/1942\",[992,63.907]],[\"parent/1942\",[990,4.112]],[\"name/1943\",[33,51.178]],[\"parent/1943\",[990,4.112]],[\"name/1944\",[491,57.717]],[\"parent/1944\",[990,4.112]],[\"name/1945\",[492,55.034]],[\"parent/1945\",[990,4.112]],[\"name/1946\",[169,56.286]],[\"parent/1946\",[990,4.112]],[\"name/1947\",[53,52.011]],[\"parent/1947\",[990,4.112]],[\"name/1948\",[494,57.717]],[\"parent/1948\",[990,4.112]],[\"name/1949\",[58,52.921]],[\"parent/1949\",[990,4.112]],[\"name/1950\",[39,57.717]],[\"parent/1950\",[990,4.112]],[\"name/1951\",[993,63.907]],[\"parent/1951\",[990,4.112]],[\"name/1952\",[735,21.003]],[\"parent/1952\",[990,4.112]],[\"name/1953\",[994,63.907]],[\"parent/1953\",[990,4.112]],[\"name/1954\",[995,63.907]],[\"parent/1954\",[990,4.112]],[\"name/1955\",[996,63.907]],[\"parent/1955\",[990,4.112]],[\"name/1956\",[997,63.907]],[\"parent/1956\",[990,4.112]],[\"name/1957\",[998,63.907]],[\"parent/1957\",[990,4.112]],[\"name/1958\",[999,63.907]],[\"parent/1958\",[990,4.112]],[\"name/1959\",[1000,63.907]],[\"parent/1959\",[990,4.112]],[\"name/1960\",[1001,63.907]],[\"parent/1960\",[990,4.112]],[\"name/1961\",[1002,52.921]],[\"parent/1961\",[990,4.112]],[\"name/1962\",[1003,63.907]],[\"parent/1962\",[990,4.112]],[\"name/1963\",[1004,63.907]],[\"parent/1963\",[990,4.112]],[\"name/1964\",[1005,63.907]],[\"parent/1964\",[990,4.112]],[\"name/1965\",[1006,63.907]],[\"parent/1965\",[990,4.112]],[\"name/1966\",[1007,63.907]],[\"parent/1966\",[990,4.112]],[\"name/1967\",[1008,42.591]],[\"parent/1967\",[]],[\"name/1968\",[33,51.178]],[\"parent/1968\",[1008,4.112]],[\"name/1969\",[494,57.717]],[\"parent/1969\",[1008,4.112]],[\"name/1970\",[993,63.907]],[\"parent/1970\",[1008,4.112]],[\"name/1971\",[735,21.003]],[\"parent/1971\",[1008,4.112]],[\"name/1972\",[994,63.907]],[\"parent/1972\",[1008,4.112]],[\"name/1973\",[169,56.286]],[\"parent/1973\",[1008,4.112]],[\"name/1974\",[995,63.907]],[\"parent/1974\",[1008,4.112]],[\"name/1975\",[996,63.907]],[\"parent/1975\",[1008,4.112]],[\"name/1976\",[988,52.921]],[\"parent/1976\",[1008,4.112]],[\"name/1977\",[997,63.907]],[\"parent/1977\",[1008,4.112]],[\"name/1978\",[998,63.907]],[\"parent/1978\",[1008,4.112]],[\"name/1979\",[491,57.717]],[\"parent/1979\",[1008,4.112]],[\"name/1980\",[492,55.034]],[\"parent/1980\",[1008,4.112]],[\"name/1981\",[39,57.717]],[\"parent/1981\",[1008,4.112]],[\"name/1982\",[999,63.907]],[\"parent/1982\",[1008,4.112]],[\"name/1983\",[58,52.921]],[\"parent/1983\",[1008,4.112]],[\"name/1984\",[53,52.011]],[\"parent/1984\",[1008,4.112]],[\"name/1985\",[1000,63.907]],[\"parent/1985\",[1008,4.112]],[\"name/1986\",[1001,63.907]],[\"parent/1986\",[1008,4.112]],[\"name/1987\",[985,53.922]],[\"parent/1987\",[1008,4.112]],[\"name/1988\",[1002,52.921]],[\"parent/1988\",[1008,4.112]],[\"name/1989\",[1003,63.907]],[\"parent/1989\",[1008,4.112]],[\"name/1990\",[1004,63.907]],[\"parent/1990\",[1008,4.112]],[\"name/1991\",[1005,63.907]],[\"parent/1991\",[1008,4.112]],[\"name/1992\",[1006,63.907]],[\"parent/1992\",[1008,4.112]],[\"name/1993\",[1007,63.907]],[\"parent/1993\",[1008,4.112]],[\"name/1994\",[991,63.907]],[\"parent/1994\",[1008,4.112]],[\"name/1995\",[992,63.907]],[\"parent/1995\",[1008,4.112]],[\"name/1996\",[1009,57.717]],[\"parent/1996\",[]],[\"name/1997\",[1,31.605]],[\"parent/1997\",[1009,5.572]],[\"name/1998\",[1010,72.38]],[\"parent/1998\",[1009,5.572]],[\"name/1999\",[319,67.272]],[\"parent/1999\",[1009,5.572]],[\"name/2000\",[25,40.462]],[\"parent/2000\",[1009,5.572]],[\"name/2001\",[282,59.387]],[\"parent/2001\",[1009,5.572]],[\"name/2002\",[1002,52.921]],[\"parent/2002\",[]],[\"name/2003\",[1011,72.38]],[\"parent/2003\",[1002,5.109]],[\"name/2004\",[1,31.605]],[\"parent/2004\",[1002,5.109]],[\"name/2005\",[14,55.034]],[\"parent/2005\",[1002,5.109]],[\"name/2006\",[1012,72.38]],[\"parent/2006\",[1002,5.109]],[\"name/2007\",[1013,72.38]],[\"parent/2007\",[1002,5.109]],[\"name/2008\",[25,40.462]],[\"parent/2008\",[1002,5.109]],[\"name/2009\",[1014,41.025]],[\"parent/2009\",[]],[\"name/2010\",[32,57.717]],[\"parent/2010\",[1014,3.961]],[\"name/2011\",[1,31.605]],[\"parent/2011\",[1014,3.961]],[\"name/2012\",[33,51.178]],[\"parent/2012\",[1014,3.961]],[\"name/2013\",[494,57.717]],[\"parent/2013\",[1014,3.961]],[\"name/2014\",[993,63.907]],[\"parent/2014\",[1014,3.961]],[\"name/2015\",[735,21.003]],[\"parent/2015\",[1014,3.961]],[\"name/2016\",[994,63.907]],[\"parent/2016\",[1014,3.961]],[\"name/2017\",[169,56.286]],[\"parent/2017\",[1014,3.961]],[\"name/2018\",[995,63.907]],[\"parent/2018\",[1014,3.961]],[\"name/2019\",[996,63.907]],[\"parent/2019\",[1014,3.961]],[\"name/2020\",[988,52.921]],[\"parent/2020\",[1014,3.961]],[\"name/2021\",[997,63.907]],[\"parent/2021\",[1014,3.961]],[\"name/2022\",[998,63.907]],[\"parent/2022\",[1014,3.961]],[\"name/2023\",[491,57.717]],[\"parent/2023\",[1014,3.961]],[\"name/2024\",[492,55.034]],[\"parent/2024\",[1014,3.961]],[\"name/2025\",[39,57.717]],[\"parent/2025\",[1014,3.961]],[\"name/2026\",[999,63.907]],[\"parent/2026\",[1014,3.961]],[\"name/2027\",[58,52.921]],[\"parent/2027\",[1014,3.961]],[\"name/2028\",[53,52.011]],[\"parent/2028\",[1014,3.961]],[\"name/2029\",[1000,63.907]],[\"parent/2029\",[1014,3.961]],[\"name/2030\",[1001,63.907]],[\"parent/2030\",[1014,3.961]],[\"name/2031\",[985,53.922]],[\"parent/2031\",[1014,3.961]],[\"name/2032\",[1002,52.921]],[\"parent/2032\",[1014,3.961]],[\"name/2033\",[1003,63.907]],[\"parent/2033\",[1014,3.961]],[\"name/2034\",[1004,63.907]],[\"parent/2034\",[1014,3.961]],[\"name/2035\",[1005,63.907]],[\"parent/2035\",[1014,3.961]],[\"name/2036\",[1006,63.907]],[\"parent/2036\",[1014,3.961]],[\"name/2037\",[1007,63.907]],[\"parent/2037\",[1014,3.961]],[\"name/2038\",[991,63.907]],[\"parent/2038\",[1014,3.961]],[\"name/2039\",[992,63.907]],[\"parent/2039\",[1014,3.961]],[\"name/2040\",[25,40.462]],[\"parent/2040\",[1014,3.961]],[\"name/2041\",[59,49.693]],[\"parent/2041\",[1014,3.961]],[\"name/2042\",[60,52.011]],[\"parent/2042\",[1014,3.961]],[\"name/2043\",[1015,57.717]],[\"parent/2043\",[]],[\"name/2044\",[1016,72.38]],[\"parent/2044\",[1015,5.572]],[\"name/2045\",[1017,72.38]],[\"parent/2045\",[1015,5.572]],[\"name/2046\",[1018,72.38]],[\"parent/2046\",[1015,5.572]],[\"name/2047\",[1019,72.38]],[\"parent/2047\",[1015,5.572]],[\"name/2048\",[1020,72.38]],[\"parent/2048\",[1015,5.572]],[\"name/2049\",[594,67.272]],[\"parent/2049\",[1021,6.988]],[\"name/2050\",[1022,63.907]],[\"parent/2050\",[]],[\"name/2051\",[1023,72.38]],[\"parent/2051\",[1022,6.17]],[\"name/2052\",[1024,72.38]],[\"parent/2052\",[1022,6.17]],[\"name/2053\",[1025,53.922]],[\"parent/2053\",[]],[\"name/2054\",[1026,72.38]],[\"parent/2054\",[1025,5.206]],[\"name/2055\",[1027,72.38]],[\"parent/2055\",[1025,5.206]],[\"name/2056\",[448,67.272]],[\"parent/2056\",[1025,5.206]],[\"name/2057\",[1028,72.38]],[\"parent/2057\",[1025,5.206]],[\"name/2058\",[1029,72.38]],[\"parent/2058\",[1025,5.206]],[\"name/2059\",[1030,72.38]],[\"parent/2059\",[1025,5.206]],[\"name/2060\",[1031,72.38]],[\"parent/2060\",[1025,5.206]],[\"name/2061\",[1032,72.38]],[\"parent/2061\",[1025,5.206]],[\"name/2062\",[1033,52.011]],[\"parent/2062\",[]],[\"name/2063\",[1034,72.38]],[\"parent/2063\",[1033,5.021]],[\"name/2064\",[1035,72.38]],[\"parent/2064\",[1033,5.021]],[\"name/2065\",[1036,72.38]],[\"parent/2065\",[1033,5.021]],[\"name/2066\",[1037,72.38]],[\"parent/2066\",[1033,5.021]],[\"name/2067\",[1,31.605]],[\"parent/2067\",[1033,5.021]],[\"name/2068\",[191,67.272]],[\"parent/2068\",[1033,5.021]],[\"name/2069\",[1038,72.38]],[\"parent/2069\",[1033,5.021]],[\"name/2070\",[1039,72.38]],[\"parent/2070\",[1033,5.021]],[\"name/2071\",[1040,72.38]],[\"parent/2071\",[1033,5.021]],[\"name/2072\",[1041,72.38]],[\"parent/2072\",[1033,5.021]],[\"name/2073\",[1042,56.286]],[\"parent/2073\",[]],[\"name/2074\",[1043,72.38]],[\"parent/2074\",[1042,5.434]],[\"name/2075\",[1044,72.38]],[\"parent/2075\",[1042,5.434]],[\"name/2076\",[1045,72.38]],[\"parent/2076\",[1042,5.434]],[\"name/2077\",[1046,72.38]],[\"parent/2077\",[1042,5.434]],[\"name/2078\",[1047,72.38]],[\"parent/2078\",[1042,5.434]],[\"name/2079\",[1,31.605]],[\"parent/2079\",[1042,5.434]],[\"name/2080\",[1048,57.717]],[\"parent/2080\",[]],[\"name/2081\",[1049,72.38]],[\"parent/2081\",[1048,5.572]],[\"name/2082\",[1050,72.38]],[\"parent/2082\",[1048,5.572]],[\"name/2083\",[1051,72.38]],[\"parent/2083\",[1048,5.572]],[\"name/2084\",[282,59.387]],[\"parent/2084\",[1048,5.572]],[\"name/2085\",[1,31.605]],[\"parent/2085\",[1048,5.572]]],\"invertedIndex\":[[\"__type\",{\"_index\":594,\"name\":{\"1379\":{},\"2049\":{}},\"parent\":{}}],[\"_circulararcproperties\",{\"_index\":354,\"name\":{\"817\":{}},\"parent\":{}}],[\"_timelines\",{\"_index\":576,\"name\":{\"1305\":{},\"1336\":{},\"1365\":{}},\"parent\":{}}],[\"a\",{\"_index\":472,\"name\":{\"1039\":{}},\"parent\":{}}],[\"accuracy\",{\"_index\":492,\"name\":{\"1084\":{},\"1108\":{},\"1158\":{},\"1181\":{},\"1945\":{},\"1980\":{},\"2024\":{}},\"parent\":{\"1182\":{}}}],[\"acronym\",{\"_index\":250,\"name\":{\"501\":{},\"510\":{},\"519\":{},\"528\":{},\"537\":{},\"546\":{},\"555\":{},\"565\":{},\"575\":{},\"584\":{},\"594\":{},\"604\":{},\"613\":{},\"623\":{},\"632\":{},\"641\":{},\"650\":{},\"659\":{},\"698\":{}},\"parent\":{}}],[\"acronyms\",{\"_index\":269,\"name\":{\"674\":{}},\"parent\":{}}],[\"ad\",{\"_index\":962,\"name\":{\"1896\":{}},\"parent\":{}}],[\"add\",{\"_index\":72,\"name\":{\"88\":{},\"103\":{},\"1187\":{},\"1321\":{},\"1649\":{}},\"parent\":{}}],[\"additionset\",{\"_index\":383,\"name\":{\"864\":{}},\"parent\":{}}],[\"additive\",{\"_index\":539,\"name\":{\"1237\":{}},\"parent\":{}}],[\"additiveblending\",{\"_index\":535,\"name\":{\"1231\":{}},\"parent\":{}}],[\"addlayer\",{\"_index\":707,\"name\":{\"1622\":{}},\"parent\":{}}],[\"addloop\",{\"_index\":646,\"name\":{\"1477\":{},\"1512\":{}},\"parent\":{}}],[\"addtrigger\",{\"_index\":647,\"name\":{\"1478\":{},\"1513\":{}},\"parent\":{}}],[\"adjusttimestocommands\",{\"_index\":649,\"name\":{\"1480\":{},\"1515\":{}},\"parent\":{}}],[\"ae\",{\"_index\":961,\"name\":{\"1895\":{}},\"parent\":{}}],[\"af\",{\"_index\":964,\"name\":{\"1898\":{}},\"parent\":{}}],[\"ag\",{\"_index\":963,\"name\":{\"1897\":{}},\"parent\":{}}],[\"ai\",{\"_index\":965,\"name\":{\"1899\":{}},\"parent\":{}}],[\"al\",{\"_index\":970,\"name\":{\"1904\":{}},\"parent\":{}}],[\"all\",{\"_index\":264,\"name\":{\"668\":{}},\"parent\":{}}],[\"allpoints\",{\"_index\":80,\"name\":{\"97\":{}},\"parent\":{}}],[\"alpha\",{\"_index\":573,\"name\":{\"1301\":{},\"1332\":{},\"1361\":{},\"1638\":{}},\"parent\":{}}],[\"alphablending\",{\"_index\":536,\"name\":{\"1232\":{}},\"parent\":{}}],[\"alphaequation\",{\"_index\":544,\"name\":{\"1244\":{}},\"parent\":{}}],[\"alphaequationmode\",{\"_index\":549,\"name\":{\"1250\":{}},\"parent\":{}}],[\"alwaysshowplayfield\",{\"_index\":156,\"name\":{\"366\":{}},\"parent\":{}}],[\"am\",{\"_index\":969,\"name\":{\"1903\":{}},\"parent\":{}}],[\"anchor\",{\"_index\":637,\"name\":{\"1457\":{},\"1492\":{},\"1543\":{}},\"parent\":{\"1544\":{},\"1545\":{},\"1546\":{},\"1547\":{},\"1548\":{},\"1549\":{},\"1550\":{},\"1551\":{},\"1552\":{},\"1553\":{},\"1554\":{},\"1555\":{},\"1556\":{},\"1557\":{},\"1558\":{},\"1559\":{}}}],[\"animation\",{\"_index\":687,\"name\":{\"1582\":{}},\"parent\":{}}],[\"any\",{\"_index\":271,\"name\":{\"680\":{}},\"parent\":{}}],[\"ao\",{\"_index\":971,\"name\":{\"1905\":{}},\"parent\":{}}],[\"applydefaults\",{\"_index\":330,\"name\":{\"761\":{}},\"parent\":{}}],[\"applydefaultstonested\",{\"_index\":329,\"name\":{\"760\":{}},\"parent\":{}}],[\"applydefaultstoself\",{\"_index\":328,\"name\":{\"759\":{}},\"parent\":{}}],[\"applydefaulttoinherited\",{\"_index\":546,\"name\":{\"1246\":{}},\"parent\":{}}],[\"applytobeatmap\",{\"_index\":261,\"name\":{\"526\":{},\"995\":{},\"1004\":{}},\"parent\":{}}],[\"applytobeatmapwithmods\",{\"_index\":440,\"name\":{\"996\":{},\"1005\":{}},\"parent\":{}}],[\"applytoconverter\",{\"_index\":248,\"name\":{\"499\":{}},\"parent\":{}}],[\"applytodifficulty\",{\"_index\":257,\"name\":{\"508\":{},\"561\":{},\"571\":{},\"590\":{},\"600\":{},\"619\":{}},\"parent\":{}}],[\"applytohitobjects\",{\"_index\":259,\"name\":{\"517\":{}},\"parent\":{}}],[\"applytoreplay\",{\"_index\":441,\"name\":{\"997\":{},\"1006\":{}},\"parent\":{}}],[\"approachrate\",{\"_index\":45,\"name\":{\"55\":{},\"222\":{},\"265\":{},\"331\":{}},\"parent\":{}}],[\"approximatebezier\",{\"_index\":350,\"name\":{\"813\":{}},\"parent\":{}}],[\"approximatebspline\",{\"_index\":351,\"name\":{\"814\":{}},\"parent\":{}}],[\"approximatecatmull\",{\"_index\":352,\"name\":{\"815\":{}},\"parent\":{}}],[\"approximatecirculararc\",{\"_index\":353,\"name\":{\"816\":{}},\"parent\":{}}],[\"approximatelagrangepolynomial\",{\"_index\":356,\"name\":{\"819\":{}},\"parent\":{}}],[\"approximatelinear\",{\"_index\":355,\"name\":{\"818\":{}},\"parent\":{}}],[\"aq\",{\"_index\":972,\"name\":{\"1906\":{}},\"parent\":{}}],[\"ar\",{\"_index\":974,\"name\":{\"1908\":{}},\"parent\":{}}],[\"artist\",{\"_index\":42,\"name\":{\"44\":{},\"210\":{},\"254\":{},\"375\":{}},\"parent\":{}}],[\"artistunicode\",{\"_index\":166,\"name\":{\"383\":{}},\"parent\":{}}],[\"as\",{\"_index\":973,\"name\":{\"1907\":{}},\"parent\":{}}],[\"at\",{\"_index\":976,\"name\":{\"1910\":{}},\"parent\":{}}],[\"attachgroup\",{\"_index\":67,\"name\":{\"80\":{},\"120\":{},\"133\":{},\"146\":{},\"159\":{}},\"parent\":{}}],[\"attributes\",{\"_index\":172,\"name\":{\"397\":{},\"411\":{}},\"parent\":{}}],[\"au\",{\"_index\":975,\"name\":{\"1909\":{}},\"parent\":{}}],[\"audiofilename\",{\"_index\":144,\"name\":{\"353\":{}},\"parent\":{}}],[\"audiohash\",{\"_index\":145,\"name\":{\"354\":{}},\"parent\":{}}],[\"audioleadin\",{\"_index\":148,\"name\":{\"357\":{}},\"parent\":{}}],[\"automation\",{\"_index\":244,\"name\":{\"495\":{}},\"parent\":{}}],[\"autoplay\",{\"_index\":218,\"name\":{\"468\":{},\"534\":{}},\"parent\":{\"535\":{},\"536\":{},\"537\":{},\"538\":{},\"539\":{},\"540\":{},\"541\":{},\"542\":{}}}],[\"average\",{\"_index\":451,\"name\":{\"1016\":{}},\"parent\":{}}],[\"aw\",{\"_index\":977,\"name\":{\"1911\":{}},\"parent\":{}}],[\"ax\",{\"_index\":978,\"name\":{\"1913\":{}},\"parent\":{}}],[\"az\",{\"_index\":979,\"name\":{\"1914\":{}},\"parent\":{}}],[\"b\",{\"_index\":471,\"name\":{\"1038\":{}},\"parent\":{}}],[\"ba\",{\"_index\":741,\"name\":{\"1674\":{}},\"parent\":{}}],[\"background\",{\"_index\":681,\"name\":{\"1576\":{},\"1585\":{}},\"parent\":{}}],[\"backgroundpath\",{\"_index\":139,\"name\":{\"346\":{}},\"parent\":{}}],[\"barycentriclagrange\",{\"_index\":1024,\"name\":{\"2052\":{}},\"parent\":{}}],[\"barycentricweights\",{\"_index\":1023,\"name\":{\"2051\":{}},\"parent\":{}}],[\"base\",{\"_index\":2,\"name\":{\"2\":{},\"182\":{},\"295\":{}},\"parent\":{}}],[\"base_difficulty\",{\"_index\":127,\"name\":{\"325\":{}},\"parent\":{}}],[\"baseobject\",{\"_index\":187,\"name\":{\"417\":{}},\"parent\":{}}],[\"bb\",{\"_index\":742,\"name\":{\"1675\":{}},\"parent\":{}}],[\"bd\",{\"_index\":737,\"name\":{\"1670\":{}},\"parent\":{}}],[\"be\",{\"_index\":738,\"name\":{\"1671\":{}},\"parent\":{}}],[\"beatdivisor\",{\"_index\":135,\"name\":{\"340\":{}},\"parent\":{}}],[\"beatlength\",{\"_index\":104,\"name\":{\"153\":{}},\"parent\":{}}],[\"beatmap\",{\"_index\":0,\"name\":{\"0\":{},\"1077\":{},\"1119\":{},\"1166\":{}},\"parent\":{\"1\":{},\"2\":{},\"3\":{},\"4\":{},\"5\":{},\"6\":{},\"7\":{},\"8\":{},\"9\":{},\"10\":{},\"11\":{},\"12\":{},\"13\":{},\"14\":{},\"15\":{},\"16\":{},\"17\":{},\"18\":{},\"19\":{},\"20\":{},\"21\":{},\"22\":{},\"23\":{},\"24\":{},\"25\":{}}}],[\"beatmapbreakevent\",{\"_index\":111,\"name\":{\"174\":{}},\"parent\":{\"175\":{},\"176\":{},\"177\":{},\"178\":{},\"179\":{},\"180\":{}}}],[\"beatmapcolorsection\",{\"_index\":122,\"name\":{\"318\":{}},\"parent\":{\"319\":{},\"320\":{},\"321\":{},\"322\":{},\"323\":{}}}],[\"beatmapconverter\",{\"_index\":26,\"name\":{\"26\":{}},\"parent\":{\"27\":{},\"28\":{},\"29\":{},\"30\":{},\"31\":{}}}],[\"beatmapdifficultysection\",{\"_index\":126,\"name\":{\"324\":{}},\"parent\":{\"325\":{},\"326\":{},\"327\":{},\"328\":{},\"329\":{},\"330\":{},\"331\":{},\"332\":{},\"333\":{},\"334\":{},\"335\":{}}}],[\"beatmapeditorsection\",{\"_index\":132,\"name\":{\"336\":{}},\"parent\":{\"337\":{},\"338\":{},\"339\":{},\"340\":{},\"341\":{},\"342\":{},\"343\":{}}}],[\"beatmapeventsection\",{\"_index\":138,\"name\":{\"344\":{}},\"parent\":{\"345\":{},\"346\":{},\"347\":{},\"348\":{},\"349\":{},\"350\":{}}}],[\"beatmapgeneralsection\",{\"_index\":143,\"name\":{\"351\":{}},\"parent\":{\"352\":{},\"353\":{},\"354\":{},\"355\":{},\"356\":{},\"357\":{},\"358\":{},\"359\":{},\"360\":{},\"361\":{},\"362\":{},\"363\":{},\"364\":{},\"365\":{},\"366\":{},\"367\":{},\"368\":{},\"369\":{},\"370\":{},\"371\":{}}}],[\"beatmaphashmd5\",{\"_index\":496,\"name\":{\"1092\":{},\"1123\":{},\"1169\":{}},\"parent\":{}}],[\"beatmapid\",{\"_index\":164,\"name\":{\"380\":{},\"1091\":{},\"1120\":{},\"1167\":{}},\"parent\":{}}],[\"beatmapinfo\",{\"_index\":31,\"name\":{\"32\":{}},\"parent\":{\"33\":{},\"34\":{},\"35\":{},\"36\":{},\"37\":{},\"38\":{},\"39\":{},\"40\":{},\"41\":{},\"42\":{},\"43\":{},\"44\":{},\"45\":{},\"46\":{},\"47\":{},\"48\":{},\"49\":{},\"50\":{},\"51\":{},\"52\":{},\"53\":{},\"54\":{},\"55\":{},\"56\":{},\"57\":{},\"58\":{},\"59\":{},\"60\":{},\"61\":{},\"62\":{},\"63\":{},\"64\":{},\"65\":{},\"66\":{},\"67\":{},\"68\":{},\"69\":{},\"70\":{},\"71\":{}}}],[\"beatmapmetadatasection\",{\"_index\":161,\"name\":{\"372\":{}},\"parent\":{\"373\":{},\"374\":{},\"375\":{},\"376\":{},\"377\":{},\"378\":{},\"379\":{},\"380\":{},\"381\":{},\"382\":{},\"383\":{},\"384\":{}}}],[\"beatmapmodat\",{\"_index\":273,\"name\":{\"682\":{}},\"parent\":{}}],[\"beatmapmods\",{\"_index\":265,\"name\":{\"669\":{}},\"parent\":{}}],[\"beatmapmodsat\",{\"_index\":272,\"name\":{\"681\":{}},\"parent\":{}}],[\"beatmapprocessor\",{\"_index\":61,\"name\":{\"72\":{}},\"parent\":{\"73\":{},\"74\":{},\"75\":{}}}],[\"beatmapsetid\",{\"_index\":34,\"name\":{\"36\":{},\"202\":{},\"246\":{},\"381\":{}},\"parent\":{}}],[\"bezier\",{\"_index\":301,\"name\":{\"722\":{}},\"parent\":{}}],[\"bezier_tolerance\",{\"_index\":347,\"name\":{\"810\":{}},\"parent\":{}}],[\"bf\",{\"_index\":739,\"name\":{\"1672\":{}},\"parent\":{}}],[\"bg\",{\"_index\":740,\"name\":{\"1673\":{}},\"parent\":{}}],[\"bh\",{\"_index\":748,\"name\":{\"1681\":{}},\"parent\":{}}],[\"bi\",{\"_index\":749,\"name\":{\"1682\":{}},\"parent\":{}}],[\"binarysearch\",{\"_index\":1015,\"name\":{\"2043\":{}},\"parent\":{\"2044\":{},\"2045\":{},\"2046\":{},\"2047\":{},\"2048\":{}}}],[\"binarysearch.binarysearchpredicate\",{\"_index\":1021,\"name\":{},\"parent\":{\"2049\":{}}}],[\"binarysearchpredicate\",{\"_index\":1020,\"name\":{\"2048\":{}},\"parent\":{}}],[\"bitwise\",{\"_index\":251,\"name\":{\"502\":{},\"511\":{},\"520\":{},\"529\":{},\"538\":{},\"547\":{},\"556\":{},\"566\":{},\"576\":{},\"585\":{},\"595\":{},\"605\":{},\"614\":{},\"624\":{},\"633\":{},\"642\":{},\"651\":{},\"660\":{},\"675\":{},\"699\":{}},\"parent\":{}}],[\"bj\",{\"_index\":750,\"name\":{\"1683\":{}},\"parent\":{}}],[\"bl\",{\"_index\":744,\"name\":{\"1677\":{}},\"parent\":{}}],[\"blendequationmode\",{\"_index\":513,\"name\":{\"1192\":{}},\"parent\":{\"1193\":{},\"1194\":{},\"1195\":{},\"1196\":{},\"1197\":{}}}],[\"blendingequation\",{\"_index\":509,\"name\":{\"1185\":{}},\"parent\":{\"1186\":{},\"1187\":{},\"1188\":{},\"1189\":{},\"1190\":{},\"1191\":{}}}],[\"blendingfactordest\",{\"_index\":517,\"name\":{\"1198\":{}},\"parent\":{\"1199\":{},\"1200\":{},\"1201\":{},\"1202\":{},\"1203\":{},\"1204\":{},\"1205\":{},\"1206\":{},\"1207\":{},\"1208\":{},\"1209\":{},\"1210\":{},\"1211\":{},\"1212\":{},\"1213\":{}}}],[\"blendingfactorsrc\",{\"_index\":533,\"name\":{\"1214\":{}},\"parent\":{\"1215\":{},\"1216\":{},\"1217\":{},\"1218\":{},\"1219\":{},\"1220\":{},\"1221\":{},\"1222\":{},\"1223\":{},\"1224\":{},\"1225\":{},\"1226\":{},\"1227\":{},\"1228\":{},\"1229\":{}}}],[\"blendingmode\",{\"_index\":534,\"name\":{\"1230\":{},\"1609\":{}},\"parent\":{\"1231\":{},\"1232\":{}}}],[\"blendingparameters\",{\"_index\":537,\"name\":{\"1233\":{},\"1302\":{},\"1333\":{},\"1362\":{}},\"parent\":{\"1234\":{},\"1235\":{},\"1236\":{},\"1237\":{},\"1238\":{},\"1239\":{},\"1240\":{},\"1241\":{},\"1242\":{},\"1243\":{},\"1244\":{},\"1245\":{},\"1246\":{},\"1247\":{},\"1248\":{},\"1249\":{},\"1250\":{},\"1251\":{},\"1252\":{},\"1253\":{},\"1254\":{}}}],[\"blendingtype\",{\"_index\":554,\"name\":{\"1255\":{}},\"parent\":{\"1256\":{},\"1257\":{},\"1258\":{},\"1259\":{},\"1260\":{},\"1261\":{},\"1262\":{},\"1263\":{},\"1264\":{},\"1265\":{},\"1266\":{},\"1267\":{},\"1268\":{},\"1269\":{},\"1270\":{},\"1271\":{}}}],[\"blue\",{\"_index\":719,\"name\":{\"1637\":{}},\"parent\":{}}],[\"bm\",{\"_index\":745,\"name\":{\"1678\":{}},\"parent\":{}}],[\"bn\",{\"_index\":746,\"name\":{\"1679\":{}},\"parent\":{}}],[\"bo\",{\"_index\":747,\"name\":{\"1680\":{}},\"parent\":{}}],[\"bookmarks\",{\"_index\":133,\"name\":{\"338\":{}},\"parent\":{}}],[\"bottomcentre\",{\"_index\":671,\"name\":{\"1558\":{},\"1599\":{}},\"parent\":{}}],[\"bottomleft\",{\"_index\":670,\"name\":{\"1557\":{},\"1603\":{}},\"parent\":{}}],[\"bottomright\",{\"_index\":672,\"name\":{\"1559\":{},\"1604\":{}},\"parent\":{}}],[\"bpm\",{\"_index\":19,\"name\":{\"19\":{},\"53\":{},\"155\":{},\"197\":{},\"220\":{},\"263\":{},\"287\":{},\"312\":{}},\"parent\":{}}],[\"bpmmax\",{\"_index\":18,\"name\":{\"18\":{},\"52\":{},\"196\":{},\"219\":{},\"262\":{},\"286\":{},\"311\":{}},\"parent\":{}}],[\"bpmmin\",{\"_index\":17,\"name\":{\"17\":{},\"51\":{},\"195\":{},\"218\":{},\"261\":{},\"285\":{},\"310\":{}},\"parent\":{}}],[\"bpmmultiplier\",{\"_index\":94,\"name\":{\"116\":{}},\"parent\":{}}],[\"bq\",{\"_index\":756,\"name\":{\"1689\":{}},\"parent\":{}}],[\"br\",{\"_index\":757,\"name\":{\"1690\":{}},\"parent\":{}}],[\"break\",{\"_index\":683,\"name\":{\"1578\":{}},\"parent\":{}}],[\"breaks\",{\"_index\":140,\"name\":{\"347\":{}},\"parent\":{}}],[\"bs\",{\"_index\":758,\"name\":{\"1691\":{}},\"parent\":{}}],[\"bt\",{\"_index\":751,\"name\":{\"1684\":{}},\"parent\":{}}],[\"buttonstate\",{\"_index\":420,\"name\":{\"946\":{}},\"parent\":{}}],[\"bv\",{\"_index\":753,\"name\":{\"1686\":{}},\"parent\":{}}],[\"bw\",{\"_index\":754,\"name\":{\"1687\":{}},\"parent\":{}}],[\"by\",{\"_index\":760,\"name\":{\"1693\":{}},\"parent\":{}}],[\"bz\",{\"_index\":761,\"name\":{\"1694\":{}},\"parent\":{}}],[\"c\",{\"_index\":470,\"name\":{\"1037\":{}},\"parent\":{}}],[\"ca\",{\"_index\":889,\"name\":{\"1823\":{}},\"parent\":{}}],[\"calculate\",{\"_index\":175,\"name\":{\"401\":{},\"412\":{},\"1182\":{},\"1184\":{}},\"parent\":{}}],[\"calculateall\",{\"_index\":176,\"name\":{\"402\":{}},\"parent\":{}}],[\"calculateat\",{\"_index\":178,\"name\":{\"404\":{}},\"parent\":{}}],[\"calculateattributes\",{\"_index\":184,\"name\":{\"413\":{}},\"parent\":{}}],[\"calculateddistance\",{\"_index\":370,\"name\":{\"840\":{}},\"parent\":{}}],[\"calculatedpath\",{\"_index\":371,\"name\":{\"842\":{}},\"parent\":{}}],[\"calculatepathtoprogress\",{\"_index\":373,\"name\":{\"844\":{}},\"parent\":{}}],[\"calculatetimed\",{\"_index\":180,\"name\":{\"406\":{}},\"parent\":{}}],[\"calculatetimedwithmods\",{\"_index\":181,\"name\":{\"407\":{}},\"parent\":{}}],[\"calculatewithmods\",{\"_index\":177,\"name\":{\"403\":{}},\"parent\":{}}],[\"calculatewithmodsat\",{\"_index\":179,\"name\":{\"405\":{}},\"parent\":{}}],[\"canbehit\",{\"_index\":484,\"name\":{\"1057\":{}},\"parent\":{}}],[\"canconvert\",{\"_index\":30,\"name\":{\"31\":{}},\"parent\":{}}],[\"catmull\",{\"_index\":300,\"name\":{\"721\":{}},\"parent\":{}}],[\"catmull_detail\",{\"_index\":349,\"name\":{\"812\":{}},\"parent\":{}}],[\"cc\",{\"_index\":888,\"name\":{\"1822\":{}},\"parent\":{}}],[\"cd\",{\"_index\":892,\"name\":{\"1826\":{}},\"parent\":{}}],[\"centre\",{\"_index\":363,\"name\":{\"828\":{},\"1555\":{},\"1596\":{}},\"parent\":{}}],[\"centreleft\",{\"_index\":668,\"name\":{\"1554\":{},\"1597\":{}},\"parent\":{}}],[\"centreright\",{\"_index\":669,\"name\":{\"1556\":{},\"1602\":{}},\"parent\":{}}],[\"cf\",{\"_index\":891,\"name\":{\"1825\":{}},\"parent\":{}}],[\"cg\",{\"_index\":890,\"name\":{\"1824\":{}},\"parent\":{}}],[\"ch\",{\"_index\":883,\"name\":{\"1817\":{}},\"parent\":{}}],[\"checkalreadyexisting\",{\"_index\":87,\"name\":{\"105\":{}},\"parent\":{}}],[\"ci\",{\"_index\":882,\"name\":{\"1816\":{}},\"parent\":{}}],[\"cinema\",{\"_index\":229,\"name\":{\"479\":{},\"543\":{}},\"parent\":{\"544\":{},\"545\":{},\"546\":{},\"547\":{},\"548\":{},\"549\":{},\"550\":{},\"551\":{}}}],[\"circlesize\",{\"_index\":44,\"name\":{\"54\":{},\"221\":{},\"264\":{},\"328\":{}},\"parent\":{}}],[\"circular_arc_tolerance\",{\"_index\":348,\"name\":{\"811\":{}},\"parent\":{}}],[\"circulararcproperties\",{\"_index\":357,\"name\":{\"821\":{}},\"parent\":{\"822\":{},\"823\":{},\"824\":{},\"825\":{},\"826\":{},\"827\":{},\"828\":{},\"829\":{}}}],[\"ck\",{\"_index\":880,\"name\":{\"1814\":{}},\"parent\":{}}],[\"cl\",{\"_index\":887,\"name\":{\"1821\":{}},\"parent\":{}}],[\"clamp\",{\"_index\":1026,\"name\":{\"2054\":{}},\"parent\":{}}],[\"clamp01\",{\"_index\":1027,\"name\":{\"2055\":{}},\"parent\":{}}],[\"clap\",{\"_index\":289,\"name\":{\"709\":{}},\"parent\":{}}],[\"clear\",{\"_index\":88,\"name\":{\"107\":{},\"442\":{},\"453\":{}},\"parent\":{}}],[\"clockrate\",{\"_index\":131,\"name\":{\"334\":{}},\"parent\":{}}],[\"clone\",{\"_index\":25,\"name\":{\"25\":{},\"69\":{},\"108\":{},\"199\":{},\"289\":{},\"294\":{},\"323\":{},\"335\":{},\"343\":{},\"350\":{},\"371\":{},\"384\":{},\"694\":{},\"762\":{},\"769\":{},\"776\":{},\"798\":{},\"806\":{},\"848\":{},\"858\":{},\"866\":{},\"933\":{},\"943\":{},\"958\":{},\"965\":{},\"974\":{},\"985\":{},\"991\":{},\"1147\":{},\"1170\":{},\"1641\":{},\"1666\":{},\"1935\":{},\"2000\":{},\"2008\":{},\"2040\":{}},\"parent\":{}}],[\"cm\",{\"_index\":886,\"name\":{\"1820\":{}},\"parent\":{}}],[\"cn\",{\"_index\":885,\"name\":{\"1819\":{}},\"parent\":{}}],[\"co\",{\"_index\":884,\"name\":{\"1818\":{}},\"parent\":{}}],[\"color\",{\"_index\":572,\"name\":{\"1300\":{},\"1331\":{},\"1360\":{},\"1467\":{},\"1502\":{},\"1569\":{}},\"parent\":{}}],[\"color4\",{\"_index\":716,\"name\":{\"1633\":{}},\"parent\":{\"1634\":{},\"1635\":{},\"1636\":{},\"1637\":{},\"1638\":{},\"1639\":{},\"1640\":{},\"1641\":{},\"1642\":{}}}],[\"colors\",{\"_index\":7,\"name\":{\"7\":{},\"187\":{},\"278\":{},\"300\":{},\"1613\":{}},\"parent\":{}}],[\"colour\",{\"_index\":684,\"name\":{\"1579\":{}},\"parent\":{}}],[\"column\",{\"_index\":385,\"name\":{\"868\":{}},\"parent\":{}}],[\"combocolors\",{\"_index\":123,\"name\":{\"320\":{}},\"parent\":{}}],[\"comboindex\",{\"_index\":390,\"name\":{\"874\":{}},\"parent\":{}}],[\"comboindexwithoffsets\",{\"_index\":391,\"name\":{\"875\":{}},\"parent\":{}}],[\"combooffset\",{\"_index\":297,\"name\":{\"718\":{},\"871\":{},\"878\":{}},\"parent\":{}}],[\"comboskip1\",{\"_index\":294,\"name\":{\"715\":{}},\"parent\":{}}],[\"comboskip2\",{\"_index\":295,\"name\":{\"716\":{}},\"parent\":{}}],[\"comboskip3\",{\"_index\":296,\"name\":{\"717\":{}},\"parent\":{}}],[\"command\",{\"_index\":555,\"name\":{\"1272\":{}},\"parent\":{\"1273\":{},\"1274\":{},\"1275\":{},\"1276\":{},\"1277\":{},\"1278\":{},\"1279\":{},\"1280\":{},\"1281\":{},\"1282\":{},\"1283\":{},\"1284\":{},\"1285\":{}}}],[\"commandloop\",{\"_index\":563,\"name\":{\"1286\":{}},\"parent\":{\"1287\":{},\"1288\":{},\"1289\":{},\"1290\":{},\"1291\":{},\"1292\":{},\"1293\":{},\"1294\":{},\"1295\":{},\"1296\":{},\"1297\":{},\"1298\":{},\"1299\":{},\"1300\":{},\"1301\":{},\"1302\":{},\"1303\":{},\"1304\":{},\"1305\":{},\"1306\":{},\"1307\":{},\"1308\":{},\"1309\":{},\"1310\":{},\"1311\":{},\"1312\":{},\"1313\":{}}}],[\"commands\",{\"_index\":579,\"name\":{\"1308\":{},\"1320\":{},\"1339\":{},\"1368\":{},\"1461\":{},\"1496\":{},\"1524\":{}},\"parent\":{}}],[\"commandsduration\",{\"_index\":582,\"name\":{\"1311\":{},\"1342\":{},\"1371\":{}},\"parent\":{}}],[\"commandsendtime\",{\"_index\":581,\"name\":{\"1310\":{},\"1341\":{},\"1370\":{}},\"parent\":{}}],[\"commandsstarttime\",{\"_index\":580,\"name\":{\"1309\":{},\"1340\":{},\"1369\":{}},\"parent\":{}}],[\"commandtimeline\",{\"_index\":584,\"name\":{\"1314\":{}},\"parent\":{\"1315\":{},\"1316\":{},\"1317\":{},\"1318\":{},\"1319\":{},\"1320\":{},\"1321\":{},\"1322\":{},\"1323\":{}}}],[\"commandtimelinegroup\",{\"_index\":586,\"name\":{\"1324\":{}},\"parent\":{\"1325\":{},\"1326\":{},\"1327\":{},\"1328\":{},\"1329\":{},\"1330\":{},\"1331\":{},\"1332\":{},\"1333\":{},\"1334\":{},\"1335\":{},\"1336\":{},\"1337\":{},\"1338\":{},\"1339\":{},\"1340\":{},\"1341\":{},\"1342\":{},\"1343\":{},\"1344\":{},\"1345\":{},\"1346\":{}}}],[\"commandtrigger\",{\"_index\":587,\"name\":{\"1347\":{}},\"parent\":{\"1348\":{},\"1349\":{},\"1350\":{},\"1351\":{},\"1352\":{},\"1353\":{},\"1354\":{},\"1355\":{},\"1356\":{},\"1357\":{},\"1358\":{},\"1359\":{},\"1360\":{},\"1361\":{},\"1362\":{},\"1363\":{},\"1364\":{},\"1365\":{},\"1366\":{},\"1367\":{},\"1368\":{},\"1369\":{},\"1370\":{},\"1371\":{},\"1372\":{},\"1373\":{},\"1374\":{},\"1375\":{}}}],[\"commandtype\",{\"_index\":673,\"name\":{\"1560\":{}},\"parent\":{\"1561\":{},\"1562\":{},\"1563\":{},\"1564\":{},\"1565\":{},\"1566\":{},\"1567\":{},\"1568\":{},\"1569\":{},\"1570\":{}}}],[\"compareto\",{\"_index\":173,\"name\":{\"398\":{}},\"parent\":{}}],[\"compoundtype\",{\"_index\":678,\"name\":{\"1571\":{}},\"parent\":{\"1572\":{},\"1573\":{},\"1574\":{}}}],[\"constantalpha\",{\"_index\":530,\"name\":{\"1211\":{},\"1227\":{},\"1257\":{}},\"parent\":{}}],[\"constantcolor\",{\"_index\":528,\"name\":{\"1209\":{},\"1225\":{},\"1258\":{}},\"parent\":{}}],[\"constructor\",{\"_index\":1,\"name\":{\"1\":{},\"27\":{},\"34\":{},\"73\":{},\"77\":{},\"85\":{},\"91\":{},\"111\":{},\"125\":{},\"138\":{},\"151\":{},\"175\":{},\"272\":{},\"291\":{},\"319\":{},\"327\":{},\"337\":{},\"345\":{},\"352\":{},\"373\":{},\"386\":{},\"391\":{},\"395\":{},\"400\":{},\"410\":{},\"415\":{},\"425\":{},\"429\":{},\"434\":{},\"439\":{},\"448\":{},\"535\":{},\"544\":{},\"553\":{},\"563\":{},\"573\":{},\"582\":{},\"592\":{},\"602\":{},\"611\":{},\"621\":{},\"630\":{},\"639\":{},\"648\":{},\"657\":{},\"666\":{},\"739\":{},\"747\":{},\"820\":{},\"822\":{},\"831\":{},\"835\":{},\"850\":{},\"860\":{},\"945\":{},\"962\":{},\"967\":{},\"977\":{},\"982\":{},\"993\":{},\"1013\":{},\"1046\":{},\"1051\":{},\"1133\":{},\"1144\":{},\"1151\":{},\"1238\":{},\"1273\":{},\"1287\":{},\"1315\":{},\"1325\":{},\"1348\":{},\"1452\":{},\"1484\":{},\"1490\":{},\"1519\":{},\"1611\":{},\"1626\":{},\"1634\":{},\"1644\":{},\"1923\":{},\"1932\":{},\"1997\":{},\"2004\":{},\"2011\":{},\"2067\":{},\"2079\":{},\"2085\":{}},\"parent\":{}}],[\"contains\",{\"_index\":115,\"name\":{\"180\":{}},\"parent\":{}}],[\"controlpoint\",{\"_index\":64,\"name\":{\"76\":{}},\"parent\":{\"77\":{},\"78\":{},\"79\":{},\"80\":{},\"81\":{},\"82\":{},\"83\":{}}}],[\"controlpointgroup\",{\"_index\":71,\"name\":{\"84\":{}},\"parent\":{\"85\":{},\"86\":{},\"87\":{},\"88\":{},\"89\":{}}}],[\"controlpointinfo\",{\"_index\":74,\"name\":{\"90\":{}},\"parent\":{\"91\":{},\"92\":{},\"93\":{},\"94\":{},\"95\":{},\"96\":{},\"97\":{},\"98\":{},\"99\":{},\"100\":{},\"101\":{},\"102\":{},\"103\":{},\"104\":{},\"105\":{},\"106\":{},\"107\":{},\"108\":{}}}],[\"controlpoints\",{\"_index\":9,\"name\":{\"9\":{},\"86\":{},\"189\":{},\"280\":{},\"302\":{},\"837\":{}},\"parent\":{}}],[\"controlpointtype\",{\"_index\":106,\"name\":{\"162\":{}},\"parent\":{\"163\":{},\"164\":{},\"165\":{},\"166\":{}}}],[\"conversion\",{\"_index\":243,\"name\":{\"494\":{}},\"parent\":{}}],[\"convertbeatmap\",{\"_index\":27,\"name\":{\"28\":{}},\"parent\":{}}],[\"convertermodat\",{\"_index\":279,\"name\":{\"688\":{}},\"parent\":{}}],[\"convertermods\",{\"_index\":267,\"name\":{\"672\":{}},\"parent\":{}}],[\"convertermodsat\",{\"_index\":278,\"name\":{\"687\":{}},\"parent\":{}}],[\"convertframes\",{\"_index\":435,\"name\":{\"980\":{}},\"parent\":{}}],[\"converthitobjects\",{\"_index\":28,\"name\":{\"29\":{}},\"parent\":{}}],[\"convertreplay\",{\"_index\":433,\"name\":{\"978\":{}},\"parent\":{}}],[\"copyfromparent\",{\"_index\":545,\"name\":{\"1245\":{}},\"parent\":{}}],[\"count\",{\"_index\":199,\"name\":{\"440\":{},\"449\":{}},\"parent\":{}}],[\"count100\",{\"_index\":500,\"name\":{\"1096\":{},\"1127\":{},\"1139\":{},\"1177\":{}},\"parent\":{}}],[\"count300\",{\"_index\":498,\"name\":{\"1094\":{},\"1125\":{},\"1137\":{},\"1175\":{}},\"parent\":{}}],[\"count50\",{\"_index\":501,\"name\":{\"1097\":{},\"1128\":{},\"1140\":{},\"1178\":{}},\"parent\":{}}],[\"countdown\",{\"_index\":150,\"name\":{\"359\":{}},\"parent\":{}}],[\"countdownoffset\",{\"_index\":152,\"name\":{\"361\":{}},\"parent\":{}}],[\"countgeki\",{\"_index\":497,\"name\":{\"1093\":{},\"1124\":{},\"1136\":{},\"1174\":{}},\"parent\":{}}],[\"countkatu\",{\"_index\":499,\"name\":{\"1095\":{},\"1126\":{},\"1138\":{},\"1176\":{}},\"parent\":{}}],[\"countmiss\",{\"_index\":502,\"name\":{\"1098\":{},\"1129\":{},\"1141\":{},\"1179\":{}},\"parent\":{}}],[\"countrycode\",{\"_index\":735,\"name\":{\"1668\":{},\"1952\":{},\"1971\":{},\"2015\":{}},\"parent\":{\"1669\":{},\"1670\":{},\"1671\":{},\"1672\":{},\"1673\":{},\"1674\":{},\"1675\":{},\"1676\":{},\"1677\":{},\"1678\":{},\"1679\":{},\"1680\":{},\"1681\":{},\"1682\":{},\"1683\":{},\"1684\":{},\"1685\":{},\"1686\":{},\"1687\":{},\"1688\":{},\"1689\":{},\"1690\":{},\"1691\":{},\"1692\":{},\"1693\":{},\"1694\":{},\"1695\":{},\"1696\":{},\"1697\":{},\"1698\":{},\"1699\":{},\"1700\":{},\"1701\":{},\"1702\":{},\"1703\":{},\"1704\":{},\"1705\":{},\"1706\":{},\"1707\":{},\"1708\":{},\"1709\":{},\"1710\":{},\"1711\":{},\"1712\":{},\"1713\":{},\"1714\":{},\"1715\":{},\"1716\":{},\"1717\":{},\"1718\":{},\"1719\":{},\"1720\":{},\"1721\":{},\"1722\":{},\"1723\":{},\"1724\":{},\"1725\":{},\"1726\":{},\"1727\":{},\"1728\":{},\"1729\":{},\"1730\":{},\"1731\":{},\"1732\":{},\"1733\":{},\"1734\":{},\"1735\":{},\"1736\":{},\"1737\":{},\"1738\":{},\"1739\":{},\"1740\":{},\"1741\":{},\"1742\":{},\"1743\":{},\"1744\":{},\"1745\":{},\"1746\":{},\"1747\":{},\"1748\":{},\"1749\":{},\"1750\":{},\"1751\":{},\"1752\":{},\"1753\":{},\"1754\":{},\"1755\":{},\"1756\":{},\"1757\":{},\"1758\":{},\"1759\":{},\"1760\":{},\"1761\":{},\"1762\":{},\"1763\":{},\"1764\":{},\"1765\":{},\"1766\":{},\"1767\":{},\"1768\":{},\"1769\":{},\"1770\":{},\"1771\":{},\"1772\":{},\"1773\":{},\"1774\":{},\"1775\":{},\"1776\":{},\"1777\":{},\"1778\":{},\"1779\":{},\"1780\":{},\"1781\":{},\"1782\":{},\"1783\":{},\"1784\":{},\"1785\":{},\"1786\":{},\"1787\":{},\"1788\":{},\"1789\":{},\"1790\":{},\"1791\":{},\"1792\":{},\"1793\":{},\"1794\":{},\"1795\":{},\"1796\":{},\"1797\":{},\"1798\":{},\"1799\":{},\"1800\":{},\"1801\":{},\"1802\":{},\"1803\":{},\"1804\":{},\"1805\":{},\"1806\":{},\"1807\":{},\"1808\":{},\"1809\":{},\"1810\":{},\"1811\":{},\"1812\":{},\"1813\":{},\"1814\":{},\"1815\":{},\"1816\":{},\"1817\":{},\"1818\":{},\"1819\":{},\"1820\":{},\"1821\":{},\"1822\":{},\"1823\":{},\"1824\":{},\"1825\":{},\"1826\":{},\"1827\":{},\"1828\":{},\"1829\":{},\"1830\":{},\"1831\":{},\"1832\":{},\"1833\":{},\"1834\":{},\"1835\":{},\"1836\":{},\"1837\":{},\"1838\":{},\"1839\":{},\"1840\":{},\"1841\":{},\"1842\":{},\"1843\":{},\"1844\":{},\"1845\":{},\"1846\":{},\"1847\":{},\"1848\":{},\"1849\":{},\"1850\":{},\"1851\":{},\"1852\":{},\"1853\":{},\"1854\":{},\"1855\":{},\"1856\":{},\"1857\":{},\"1858\":{},\"1859\":{},\"1860\":{},\"1861\":{},\"1862\":{},\"1863\":{},\"1864\":{},\"1865\":{},\"1866\":{},\"1867\":{},\"1868\":{},\"1869\":{},\"1870\":{},\"1871\":{},\"1872\":{},\"1873\":{},\"1874\":{},\"1875\":{},\"1876\":{},\"1877\":{},\"1878\":{},\"1879\":{},\"1880\":{},\"1881\":{},\"1882\":{},\"1883\":{},\"1884\":{},\"1885\":{},\"1886\":{},\"1887\":{},\"1888\":{},\"1889\":{},\"1890\":{},\"1891\":{},\"1892\":{},\"1893\":{},\"1894\":{},\"1895\":{},\"1896\":{},\"1897\":{},\"1898\":{},\"1899\":{},\"1900\":{},\"1901\":{},\"1902\":{},\"1903\":{},\"1904\":{},\"1905\":{},\"1906\":{},\"1907\":{},\"1908\":{},\"1909\":{},\"1910\":{},\"1911\":{},\"1912\":{},\"1913\":{},\"1914\":{},\"1915\":{},\"1916\":{},\"1917\":{},\"1918\":{},\"1919\":{}}}],[\"countryrank\",{\"_index\":996,\"name\":{\"1955\":{},\"1975\":{},\"2019\":{}},\"parent\":{}}],[\"cr\",{\"_index\":896,\"name\":{\"1830\":{}},\"parent\":{}}],[\"createbeatmap\",{\"_index\":29,\"name\":{\"30\":{}},\"parent\":{}}],[\"createdifficultycalculator\",{\"_index\":444,\"name\":{\"1000\":{},\"1009\":{}},\"parent\":{}}],[\"createmodcombination\",{\"_index\":443,\"name\":{\"999\":{},\"1008\":{}},\"parent\":{}}],[\"createnestedhitobjects\",{\"_index\":327,\"name\":{\"758\":{}},\"parent\":{}}],[\"createperformancecalculator\",{\"_index\":445,\"name\":{\"1001\":{},\"1010\":{}},\"parent\":{}}],[\"createreplay\",{\"_index\":434,\"name\":{\"979\":{}},\"parent\":{}}],[\"creator\",{\"_index\":36,\"name\":{\"38\":{},\"204\":{},\"248\":{},\"376\":{}},\"parent\":{}}],[\"creatorid\",{\"_index\":35,\"name\":{\"37\":{},\"203\":{},\"247\":{}},\"parent\":{}}],[\"cu\",{\"_index\":899,\"name\":{\"1833\":{}},\"parent\":{}}],[\"current\",{\"_index\":1010,\"name\":{\"1998\":{}},\"parent\":{}}],[\"currentcomboindex\",{\"_index\":389,\"name\":{\"873\":{}},\"parent\":{}}],[\"curvepositionat\",{\"_index\":376,\"name\":{\"847\":{}},\"parent\":{}}],[\"curvetype\",{\"_index\":368,\"name\":{\"836\":{}},\"parent\":{}}],[\"custom\",{\"_index\":664,\"name\":{\"1550\":{},\"1601\":{}},\"parent\":{}}],[\"customindex\",{\"_index\":101,\"name\":{\"141\":{},\"853\":{},\"865\":{}},\"parent\":{}}],[\"cv\",{\"_index\":898,\"name\":{\"1832\":{}},\"parent\":{}}],[\"cw\",{\"_index\":897,\"name\":{\"1831\":{}},\"parent\":{}}],[\"cx\",{\"_index\":895,\"name\":{\"1829\":{}},\"parent\":{}}],[\"cy\",{\"_index\":894,\"name\":{\"1828\":{}},\"parent\":{}}],[\"cz\",{\"_index\":893,\"name\":{\"1827\":{}},\"parent\":{}}],[\"d\",{\"_index\":469,\"name\":{\"1036\":{}},\"parent\":{}}],[\"data\",{\"_index\":1012,\"name\":{\"2006\":{}},\"parent\":{}}],[\"date\",{\"_index\":489,\"name\":{\"1079\":{},\"1121\":{},\"1168\":{}},\"parent\":{}}],[\"de\",{\"_index\":931,\"name\":{\"1865\":{}},\"parent\":{}}],[\"default\",{\"_index\":90,\"name\":{\"110\":{},\"124\":{},\"137\":{},\"150\":{}},\"parent\":{}}],[\"default_mode\",{\"_index\":1011,\"name\":{\"2003\":{}},\"parent\":{}}],[\"defaultcompare\",{\"_index\":1051,\"name\":{\"2083\":{}},\"parent\":{}}],[\"deletedat\",{\"_index\":55,\"name\":{\"65\":{},\"232\":{},\"239\":{}},\"parent\":{}}],[\"deltatime\",{\"_index\":189,\"name\":{\"419\":{}},\"parent\":{}}],[\"depth\",{\"_index\":711,\"name\":{\"1628\":{}},\"parent\":{}}],[\"depthsort\",{\"_index\":1049,\"name\":{\"2081\":{}},\"parent\":{}}],[\"dequeue\",{\"_index\":201,\"name\":{\"443\":{},\"452\":{}},\"parent\":{}}],[\"destination\",{\"_index\":540,\"name\":{\"1240\":{}},\"parent\":{}}],[\"destinationalpha\",{\"_index\":542,\"name\":{\"1242\":{}},\"parent\":{}}],[\"destinationalphablendingfactor\",{\"_index\":553,\"name\":{\"1254\":{}},\"parent\":{}}],[\"destinationblendingfactor\",{\"_index\":551,\"name\":{\"1252\":{}},\"parent\":{}}],[\"dettachgroup\",{\"_index\":68,\"name\":{\"81\":{},\"121\":{},\"134\":{},\"147\":{},\"160\":{}},\"parent\":{}}],[\"difficulty\",{\"_index\":5,\"name\":{\"5\":{},\"185\":{},\"276\":{},\"298\":{}},\"parent\":{}}],[\"difficultyattributes\",{\"_index\":167,\"name\":{\"385\":{}},\"parent\":{\"386\":{},\"387\":{},\"388\":{},\"389\":{}}}],[\"difficultycalculator\",{\"_index\":174,\"name\":{\"399\":{}},\"parent\":{\"400\":{},\"401\":{},\"402\":{},\"403\":{},\"404\":{},\"405\":{},\"406\":{},\"407\":{},\"408\":{}}}],[\"difficultydecrease\",{\"_index\":239,\"name\":{\"489\":{}},\"parent\":{}}],[\"difficultyhitobject\",{\"_index\":185,\"name\":{\"414\":{}},\"parent\":{\"415\":{},\"416\":{},\"417\":{},\"418\":{},\"419\":{},\"420\":{},\"421\":{},\"422\":{},\"423\":{}}}],[\"difficultyincrease\",{\"_index\":240,\"name\":{\"490\":{},\"493\":{}},\"parent\":{}}],[\"difficultymodat\",{\"_index\":277,\"name\":{\"686\":{}},\"parent\":{}}],[\"difficultymods\",{\"_index\":182,\"name\":{\"408\":{},\"671\":{}},\"parent\":{}}],[\"difficultymodsat\",{\"_index\":276,\"name\":{\"685\":{}},\"parent\":{}}],[\"difficultypoint\",{\"_index\":89,\"name\":{\"109\":{},\"164\":{}},\"parent\":{\"110\":{},\"111\":{},\"112\":{},\"113\":{},\"114\":{},\"115\":{},\"116\":{},\"117\":{},\"118\":{},\"119\":{},\"120\":{},\"121\":{},\"122\":{}}}],[\"difficultypointat\",{\"_index\":82,\"name\":{\"99\":{}},\"parent\":{}}],[\"difficultypoints\",{\"_index\":76,\"name\":{\"93\":{}},\"parent\":{}}],[\"difficultyrange\",{\"_index\":447,\"name\":{\"1011\":{}},\"parent\":{\"1012\":{},\"1013\":{},\"1014\":{},\"1015\":{},\"1016\":{},\"1017\":{}}}],[\"difficultyreduction\",{\"_index\":242,\"name\":{\"492\":{}},\"parent\":{}}],[\"difficultyvalue\",{\"_index\":194,\"name\":{\"427\":{},\"432\":{},\"437\":{}},\"parent\":{}}],[\"direction\",{\"_index\":361,\"name\":{\"826\":{}},\"parent\":{}}],[\"distance\",{\"_index\":340,\"name\":{\"786\":{},\"839\":{},\"880\":{},\"892\":{},\"897\":{},\"1661\":{}},\"parent\":{}}],[\"distancespacing\",{\"_index\":134,\"name\":{\"339\":{}},\"parent\":{}}],[\"divide\",{\"_index\":727,\"name\":{\"1655\":{}},\"parent\":{}}],[\"dj\",{\"_index\":928,\"name\":{\"1862\":{}},\"parent\":{}}],[\"dk\",{\"_index\":929,\"name\":{\"1863\":{}},\"parent\":{}}],[\"dm\",{\"_index\":927,\"name\":{\"1861\":{}},\"parent\":{}}],[\"do\",{\"_index\":926,\"name\":{\"1860\":{}},\"parent\":{}}],[\"dot\",{\"_index\":729,\"name\":{\"1657\":{}},\"parent\":{}}],[\"doubletime\",{\"_index\":213,\"name\":{\"463\":{},\"552\":{}},\"parent\":{\"553\":{},\"554\":{},\"555\":{},\"556\":{},\"557\":{},\"558\":{},\"559\":{},\"560\":{},\"561\":{}}}],[\"drainrate\",{\"_index\":47,\"name\":{\"57\":{},\"224\":{},\"267\":{},\"329\":{}},\"parent\":{}}],[\"drum\",{\"_index\":305,\"name\":{\"729\":{}},\"parent\":{}}],[\"dstalpha\",{\"_index\":523,\"name\":{\"1204\":{},\"1220\":{},\"1259\":{}},\"parent\":{}}],[\"dstcolor\",{\"_index\":525,\"name\":{\"1206\":{},\"1222\":{},\"1260\":{}},\"parent\":{}}],[\"duration\",{\"_index\":113,\"name\":{\"178\":{},\"778\":{},\"788\":{},\"808\":{},\"882\":{},\"885\":{},\"894\":{},\"899\":{},\"915\":{},\"1281\":{},\"1312\":{},\"1345\":{},\"1374\":{},\"1474\":{},\"1509\":{},\"1539\":{}},\"parent\":{}}],[\"dz\",{\"_index\":933,\"name\":{\"1867\":{}},\"parent\":{}}],[\"earliesteventtime\",{\"_index\":705,\"name\":{\"1620\":{}},\"parent\":{}}],[\"easing\",{\"_index\":557,\"name\":{\"1276\":{},\"1376\":{}},\"parent\":{\"1377\":{},\"1378\":{},\"1380\":{},\"1381\":{},\"1382\":{},\"1383\":{},\"1384\":{},\"1385\":{},\"1386\":{},\"1387\":{},\"1388\":{},\"1389\":{},\"1390\":{},\"1391\":{},\"1392\":{},\"1393\":{},\"1394\":{},\"1395\":{},\"1396\":{},\"1397\":{},\"1398\":{},\"1399\":{},\"1400\":{},\"1401\":{},\"1402\":{},\"1403\":{},\"1404\":{},\"1405\":{},\"1406\":{},\"1407\":{},\"1408\":{},\"1409\":{},\"1410\":{},\"1411\":{},\"1412\":{},\"1413\":{}}}],[\"easing.easingfn\",{\"_index\":595,\"name\":{},\"parent\":{\"1379\":{}}}],[\"easingfn\",{\"_index\":593,\"name\":{\"1378\":{}},\"parent\":{}}],[\"easingtype\",{\"_index\":629,\"name\":{\"1414\":{}},\"parent\":{\"1415\":{},\"1416\":{},\"1417\":{},\"1418\":{},\"1419\":{},\"1420\":{},\"1421\":{},\"1422\":{},\"1423\":{},\"1424\":{},\"1425\":{},\"1426\":{},\"1427\":{},\"1428\":{},\"1429\":{},\"1430\":{},\"1431\":{},\"1432\":{},\"1433\":{},\"1434\":{},\"1435\":{},\"1436\":{},\"1437\":{},\"1438\":{},\"1439\":{},\"1440\":{},\"1441\":{},\"1442\":{},\"1443\":{},\"1444\":{},\"1445\":{},\"1446\":{},\"1447\":{},\"1448\":{},\"1449\":{},\"1450\":{}}}],[\"easy\",{\"_index\":208,\"name\":{\"458\":{},\"562\":{}},\"parent\":{\"563\":{},\"564\":{},\"565\":{},\"566\":{},\"567\":{},\"568\":{},\"569\":{},\"570\":{},\"571\":{}}}],[\"ec\",{\"_index\":823,\"name\":{\"1756\":{}},\"parent\":{}}],[\"editor\",{\"_index\":4,\"name\":{\"4\":{},\"184\":{},\"275\":{},\"297\":{}},\"parent\":{}}],[\"ee\",{\"_index\":820,\"name\":{\"1753\":{}},\"parent\":{}}],[\"effectpoint\",{\"_index\":95,\"name\":{\"123\":{},\"165\":{}},\"parent\":{\"124\":{},\"125\":{},\"126\":{},\"127\":{},\"128\":{},\"129\":{},\"130\":{},\"131\":{},\"132\":{},\"133\":{},\"134\":{},\"135\":{}}}],[\"effectpointat\",{\"_index\":83,\"name\":{\"100\":{}},\"parent\":{}}],[\"effectpoints\",{\"_index\":77,\"name\":{\"94\":{}},\"parent\":{}}],[\"effecttype\",{\"_index\":107,\"name\":{\"167\":{}},\"parent\":{\"168\":{},\"169\":{},\"170\":{}}}],[\"eg\",{\"_index\":821,\"name\":{\"1754\":{}},\"parent\":{}}],[\"eh\",{\"_index\":819,\"name\":{\"1752\":{}},\"parent\":{}}],[\"elements\",{\"_index\":715,\"name\":{\"1632\":{}},\"parent\":{}}],[\"empty\",{\"_index\":478,\"name\":{\"1050\":{}},\"parent\":{}}],[\"endposition\",{\"_index\":400,\"name\":{\"906\":{}},\"parent\":{}}],[\"endtime\",{\"_index\":112,\"name\":{\"177\":{},\"421\":{},\"777\":{},\"787\":{},\"807\":{},\"881\":{},\"884\":{},\"893\":{},\"898\":{},\"914\":{},\"1278\":{},\"1293\":{},\"1317\":{},\"1344\":{},\"1373\":{},\"1459\":{},\"1494\":{},\"1538\":{}},\"parent\":{}}],[\"endvalue\",{\"_index\":559,\"name\":{\"1280\":{},\"1319\":{}},\"parent\":{}}],[\"endx\",{\"_index\":401,\"name\":{\"908\":{},\"919\":{},\"922\":{}},\"parent\":{}}],[\"enqueue\",{\"_index\":202,\"name\":{\"444\":{},\"451\":{}},\"parent\":{}}],[\"enumerate\",{\"_index\":204,\"name\":{\"446\":{},\"454\":{}},\"parent\":{}}],[\"epilepsywarning\",{\"_index\":157,\"name\":{\"367\":{}},\"parent\":{}}],[\"equals\",{\"_index\":59,\"name\":{\"70\":{},\"118\":{},\"131\":{},\"144\":{},\"157\":{},\"695\":{},\"975\":{},\"1148\":{},\"1171\":{},\"1247\":{},\"1285\":{},\"1640\":{},\"1665\":{},\"2041\":{}},\"parent\":{}}],[\"er\",{\"_index\":832,\"name\":{\"1765\":{}},\"parent\":{}}],[\"es\",{\"_index\":831,\"name\":{\"1764\":{}},\"parent\":{}}],[\"et\",{\"_index\":827,\"name\":{\"1760\":{}},\"parent\":{}}],[\"eventgenerator\",{\"_index\":312,\"name\":{\"736\":{}},\"parent\":{\"737\":{},\"738\":{},\"739\":{}}}],[\"events\",{\"_index\":8,\"name\":{\"8\":{},\"188\":{},\"279\":{},\"301\":{}},\"parent\":{}}],[\"eventtype\",{\"_index\":316,\"name\":{\"741\":{},\"1575\":{}},\"parent\":{\"1576\":{},\"1577\":{},\"1578\":{},\"1579\":{},\"1580\":{},\"1581\":{},\"1582\":{},\"1583\":{}}}],[\"expecteddistance\",{\"_index\":369,\"name\":{\"838\":{}},\"parent\":{}}],[\"f\",{\"_index\":468,\"name\":{\"1035\":{}},\"parent\":{}}],[\"fadd\",{\"_index\":724,\"name\":{\"1650\":{}},\"parent\":{}}],[\"fade\",{\"_index\":677,\"name\":{\"1565\":{}},\"parent\":{}}],[\"fadein\",{\"_index\":227,\"name\":{\"477\":{}},\"parent\":{}}],[\"fail\",{\"_index\":690,\"name\":{\"1586\":{}},\"parent\":{}}],[\"fastrandom\",{\"_index\":1033,\"name\":{\"2062\":{}},\"parent\":{\"2063\":{},\"2064\":{},\"2065\":{},\"2066\":{},\"2067\":{},\"2068\":{},\"2069\":{},\"2070\":{},\"2071\":{},\"2072\":{}}}],[\"favourites\",{\"_index\":37,\"name\":{\"39\":{},\"205\":{},\"249\":{}},\"parent\":{}}],[\"fdistance\",{\"_index\":732,\"name\":{\"1662\":{}},\"parent\":{}}],[\"fdivide\",{\"_index\":728,\"name\":{\"1656\":{}},\"parent\":{}}],[\"fdot\",{\"_index\":730,\"name\":{\"1658\":{}},\"parent\":{}}],[\"fi\",{\"_index\":862,\"name\":{\"1796\":{}},\"parent\":{}}],[\"fileformat\",{\"_index\":11,\"name\":{\"11\":{},\"193\":{},\"283\":{},\"304\":{},\"1616\":{}},\"parent\":{}}],[\"filename\",{\"_index\":380,\"name\":{\"857\":{},\"861\":{}},\"parent\":{}}],[\"filepath\",{\"_index\":638,\"name\":{\"1460\":{},\"1487\":{},\"1495\":{},\"1521\":{},\"1531\":{},\"1535\":{},\"1541\":{}},\"parent\":{}}],[\"fileupdatedate\",{\"_index\":12,\"name\":{\"12\":{},\"305\":{}},\"parent\":{}}],[\"findcontrolpoint\",{\"_index\":1018,\"name\":{\"2046\":{}},\"parent\":{}}],[\"findcontrolpointindex\",{\"_index\":1017,\"name\":{\"2045\":{}},\"parent\":{}}],[\"findindex\",{\"_index\":1019,\"name\":{\"2047\":{}},\"parent\":{}}],[\"findnumber\",{\"_index\":1016,\"name\":{\"2044\":{}},\"parent\":{}}],[\"finish\",{\"_index\":288,\"name\":{\"708\":{}},\"parent\":{}}],[\"fj\",{\"_index\":863,\"name\":{\"1797\":{}},\"parent\":{}}],[\"fk\",{\"_index\":864,\"name\":{\"1798\":{}},\"parent\":{}}],[\"flashlight\",{\"_index\":217,\"name\":{\"467\":{},\"572\":{}},\"parent\":{\"573\":{},\"574\":{},\"575\":{},\"576\":{},\"577\":{},\"578\":{},\"579\":{},\"580\":{}}}],[\"flength\",{\"_index\":731,\"name\":{\"1660\":{}},\"parent\":{}}],[\"fliph\",{\"_index\":574,\"name\":{\"1303\":{},\"1334\":{},\"1363\":{}},\"parent\":{}}],[\"flipv\",{\"_index\":575,\"name\":{\"1304\":{},\"1335\":{},\"1364\":{}},\"parent\":{}}],[\"flipx\",{\"_index\":642,\"name\":{\"1469\":{},\"1504\":{}},\"parent\":{}}],[\"flipy\",{\"_index\":643,\"name\":{\"1470\":{},\"1505\":{}},\"parent\":{}}],[\"floatx\",{\"_index\":722,\"name\":{\"1647\":{}},\"parent\":{}}],[\"floaty\",{\"_index\":723,\"name\":{\"1648\":{}},\"parent\":{}}],[\"fm\",{\"_index\":865,\"name\":{\"1799\":{}},\"parent\":{}}],[\"fnormalize\",{\"_index\":734,\"name\":{\"1664\":{}},\"parent\":{}}],[\"fo\",{\"_index\":866,\"name\":{\"1800\":{}},\"parent\":{}}],[\"followerscount\",{\"_index\":1001,\"name\":{\"1960\":{},\"1986\":{},\"2030\":{}},\"parent\":{}}],[\"foreground\",{\"_index\":692,\"name\":{\"1588\":{}},\"parent\":{}}],[\"fr\",{\"_index\":860,\"name\":{\"1793\":{}},\"parent\":{}}],[\"framecount\",{\"_index\":633,\"name\":{\"1453\":{}},\"parent\":{}}],[\"framedelay\",{\"_index\":634,\"name\":{\"1454\":{}},\"parent\":{}}],[\"frames\",{\"_index\":415,\"name\":{\"938\":{},\"971\":{}},\"parent\":{}}],[\"fromjson\",{\"_index\":32,\"name\":{\"33\":{},\"1045\":{},\"1150\":{},\"1922\":{},\"1931\":{},\"2010\":{}},\"parent\":{}}],[\"fromlegacy\",{\"_index\":438,\"name\":{\"987\":{}},\"parent\":{}}],[\"fscale\",{\"_index\":726,\"name\":{\"1654\":{}},\"parent\":{}}],[\"fsubtract\",{\"_index\":725,\"name\":{\"1652\":{}},\"parent\":{}}],[\"full\",{\"_index\":200,\"name\":{\"441\":{}},\"parent\":{}}],[\"fun\",{\"_index\":245,\"name\":{\"496\":{}},\"parent\":{}}],[\"funcadd\",{\"_index\":514,\"name\":{\"1193\":{}},\"parent\":{}}],[\"funcreversesubtract\",{\"_index\":516,\"name\":{\"1197\":{}},\"parent\":{}}],[\"funcsubtract\",{\"_index\":515,\"name\":{\"1196\":{}},\"parent\":{}}],[\"ga\",{\"_index\":785,\"name\":{\"1718\":{}},\"parent\":{}}],[\"gameversion\",{\"_index\":414,\"name\":{\"935\":{},\"968\":{}},\"parent\":{}}],[\"gb\",{\"_index\":784,\"name\":{\"1717\":{}},\"parent\":{}}],[\"gd\",{\"_index\":783,\"name\":{\"1716\":{}},\"parent\":{}}],[\"ge\",{\"_index\":782,\"name\":{\"1715\":{}},\"parent\":{}}],[\"general\",{\"_index\":3,\"name\":{\"3\":{},\"183\":{},\"274\":{},\"296\":{}},\"parent\":{}}],[\"generate\",{\"_index\":314,\"name\":{\"738\":{}},\"parent\":{}}],[\"generateticks\",{\"_index\":91,\"name\":{\"113\":{}},\"parent\":{}}],[\"get\",{\"_index\":203,\"name\":{\"445\":{},\"450\":{},\"1047\":{},\"1924\":{}},\"parent\":{}}],[\"getallavailablewindows\",{\"_index\":479,\"name\":{\"1052\":{}},\"parent\":{}}],[\"getcurrentlist\",{\"_index\":86,\"name\":{\"104\":{}},\"parent\":{}}],[\"getcurrentstrainpeaks\",{\"_index\":196,\"name\":{\"431\":{},\"436\":{}},\"parent\":{}}],[\"geteasingfn\",{\"_index\":592,\"name\":{\"1377\":{}},\"parent\":{}}],[\"getlayerbyname\",{\"_index\":709,\"name\":{\"1624\":{}},\"parent\":{}}],[\"getlayerbytype\",{\"_index\":708,\"name\":{\"1623\":{}},\"parent\":{}}],[\"getprogress\",{\"_index\":560,\"name\":{\"1282\":{}},\"parent\":{}}],[\"getvalueatprogress\",{\"_index\":561,\"name\":{\"1283\":{}},\"parent\":{}}],[\"getvalueattime\",{\"_index\":562,\"name\":{\"1284\":{}},\"parent\":{}}],[\"gf\",{\"_index\":781,\"name\":{\"1714\":{}},\"parent\":{}}],[\"gg\",{\"_index\":780,\"name\":{\"1713\":{}},\"parent\":{}}],[\"gh\",{\"_index\":791,\"name\":{\"1724\":{}},\"parent\":{}}],[\"gi\",{\"_index\":790,\"name\":{\"1723\":{}},\"parent\":{}}],[\"gl\",{\"_index\":789,\"name\":{\"1722\":{}},\"parent\":{}}],[\"globalrank\",{\"_index\":995,\"name\":{\"1954\":{},\"1974\":{},\"2018\":{}},\"parent\":{}}],[\"gm\",{\"_index\":788,\"name\":{\"1721\":{}},\"parent\":{}}],[\"gn\",{\"_index\":787,\"name\":{\"1720\":{}},\"parent\":{}}],[\"good\",{\"_index\":457,\"name\":{\"1023\":{},\"1063\":{}},\"parent\":{}}],[\"gp\",{\"_index\":777,\"name\":{\"1710\":{}},\"parent\":{}}],[\"gq\",{\"_index\":776,\"name\":{\"1709\":{}},\"parent\":{}}],[\"gr\",{\"_index\":775,\"name\":{\"1708\":{}},\"parent\":{}}],[\"grades\",{\"_index\":985,\"name\":{\"1921\":{},\"1939\":{},\"1987\":{},\"2031\":{}},\"parent\":{\"1922\":{},\"1923\":{},\"1924\":{},\"1925\":{},\"1926\":{}}}],[\"great\",{\"_index\":458,\"name\":{\"1024\":{},\"1064\":{}},\"parent\":{}}],[\"green\",{\"_index\":718,\"name\":{\"1636\":{}},\"parent\":{}}],[\"gridsize\",{\"_index\":136,\"name\":{\"341\":{}},\"parent\":{}}],[\"group\",{\"_index\":66,\"name\":{\"79\":{},\"119\":{},\"132\":{},\"145\":{},\"158\":{}},\"parent\":{}}],[\"groupat\",{\"_index\":81,\"name\":{\"98\":{}},\"parent\":{}}],[\"groupnumber\",{\"_index\":591,\"name\":{\"1353\":{}},\"parent\":{}}],[\"groups\",{\"_index\":75,\"name\":{\"92\":{}},\"parent\":{}}],[\"gs\",{\"_index\":774,\"name\":{\"1707\":{}},\"parent\":{}}],[\"gt\",{\"_index\":773,\"name\":{\"1706\":{}},\"parent\":{}}],[\"gu\",{\"_index\":772,\"name\":{\"1705\":{}},\"parent\":{}}],[\"gw\",{\"_index\":771,\"name\":{\"1704\":{}},\"parent\":{}}],[\"gy\",{\"_index\":779,\"name\":{\"1712\":{}},\"parent\":{}}],[\"halftime\",{\"_index\":215,\"name\":{\"465\":{},\"581\":{}},\"parent\":{\"582\":{},\"583\":{},\"584\":{},\"585\":{},\"586\":{},\"587\":{},\"588\":{},\"589\":{},\"590\":{}}}],[\"hardrock\",{\"_index\":211,\"name\":{\"461\":{},\"591\":{}},\"parent\":{\"592\":{},\"593\":{},\"594\":{},\"595\":{},\"596\":{},\"597\":{},\"598\":{},\"599\":{},\"600\":{}}}],[\"has\",{\"_index\":270,\"name\":{\"679\":{}},\"parent\":{}}],[\"hascommands\",{\"_index\":583,\"name\":{\"1313\":{},\"1322\":{},\"1346\":{},\"1375\":{},\"1475\":{},\"1510\":{},\"1529\":{}},\"parent\":{}}],[\"hasdrawable\",{\"_index\":703,\"name\":{\"1618\":{}},\"parent\":{}}],[\"haseffect\",{\"_index\":114,\"name\":{\"179\":{}},\"parent\":{}}],[\"hasenoughdata\",{\"_index\":1013,\"name\":{\"2007\":{}},\"parent\":{}}],[\"hashmd5\",{\"_index\":57,\"name\":{\"67\":{},\"234\":{},\"270\":{},\"937\":{},\"970\":{}},\"parent\":{}}],[\"hasvariables\",{\"_index\":704,\"name\":{\"1619\":{}},\"parent\":{}}],[\"haszerogrades\",{\"_index\":986,\"name\":{\"1925\":{}},\"parent\":{}}],[\"head\",{\"_index\":309,\"name\":{\"733\":{}},\"parent\":{}}],[\"health\",{\"_index\":412,\"name\":{\"932\":{},\"964\":{}},\"parent\":{}}],[\"hex\",{\"_index\":720,\"name\":{\"1639\":{}},\"parent\":{}}],[\"hidden\",{\"_index\":210,\"name\":{\"460\":{},\"601\":{}},\"parent\":{\"602\":{},\"603\":{},\"604\":{},\"605\":{},\"606\":{},\"607\":{},\"608\":{},\"609\":{}}}],[\"highestrank\",{\"_index\":988,\"name\":{\"1930\":{},\"1940\":{},\"1976\":{},\"2020\":{}},\"parent\":{\"1931\":{},\"1932\":{},\"1933\":{},\"1934\":{},\"1935\":{},\"1936\":{}}}],[\"hitobject\",{\"_index\":320,\"name\":{\"746\":{}},\"parent\":{\"747\":{},\"748\":{},\"749\":{},\"750\":{},\"751\":{},\"752\":{},\"753\":{},\"754\":{},\"755\":{},\"756\":{},\"757\":{},\"758\":{},\"759\":{},\"760\":{},\"761\":{},\"762\":{}}}],[\"hitobjectmodat\",{\"_index\":275,\"name\":{\"684\":{}},\"parent\":{}}],[\"hitobjectmods\",{\"_index\":266,\"name\":{\"670\":{}},\"parent\":{}}],[\"hitobjectmodsat\",{\"_index\":274,\"name\":{\"683\":{}},\"parent\":{}}],[\"hitobjects\",{\"_index\":10,\"name\":{\"10\":{},\"190\":{},\"273\":{},\"303\":{}},\"parent\":{}}],[\"hitresult\",{\"_index\":453,\"name\":{\"1018\":{}},\"parent\":{\"1019\":{},\"1020\":{},\"1021\":{},\"1022\":{},\"1023\":{},\"1024\":{},\"1025\":{},\"1026\":{},\"1027\":{},\"1028\":{},\"1029\":{},\"1030\":{},\"1031\":{},\"1032\":{},\"1033\":{}}}],[\"hitsample\",{\"_index\":377,\"name\":{\"849\":{}},\"parent\":{\"850\":{},\"851\":{},\"852\":{},\"853\":{},\"854\":{},\"855\":{},\"856\":{},\"857\":{},\"858\":{}}}],[\"hitsound\",{\"_index\":285,\"name\":{\"704\":{},\"752\":{},\"766\":{},\"773\":{},\"795\":{},\"803\":{},\"852\":{}},\"parent\":{\"705\":{},\"706\":{},\"707\":{},\"708\":{},\"709\":{}}}],[\"hitstatistics\",{\"_index\":477,\"name\":{\"1044\":{}},\"parent\":{\"1045\":{},\"1046\":{},\"1047\":{},\"1048\":{}}}],[\"hittable\",{\"_index\":21,\"name\":{\"21\":{},\"46\":{},\"212\":{},\"256\":{},\"314\":{}},\"parent\":{}}],[\"hittype\",{\"_index\":290,\"name\":{\"710\":{},\"751\":{},\"765\":{},\"772\":{},\"794\":{},\"802\":{}},\"parent\":{\"711\":{},\"712\":{},\"713\":{},\"714\":{},\"715\":{},\"716\":{},\"717\":{},\"718\":{},\"719\":{}}}],[\"hitwindows\",{\"_index\":324,\"name\":{\"755\":{},\"768\":{},\"775\":{},\"797\":{},\"805\":{},\"1049\":{}},\"parent\":{\"1050\":{},\"1051\":{},\"1052\":{},\"1053\":{},\"1054\":{},\"1055\":{},\"1056\":{},\"1057\":{}}}],[\"hk\",{\"_index\":798,\"name\":{\"1731\":{}},\"parent\":{}}],[\"hm\",{\"_index\":800,\"name\":{\"1733\":{}},\"parent\":{}}],[\"hn\",{\"_index\":799,\"name\":{\"1732\":{}},\"parent\":{}}],[\"hold\",{\"_index\":298,\"name\":{\"719\":{}},\"parent\":{}}],[\"holdable\",{\"_index\":24,\"name\":{\"24\":{},\"49\":{},\"215\":{},\"259\":{},\"317\":{}},\"parent\":{}}],[\"horizontalflip\",{\"_index\":698,\"name\":{\"1607\":{}},\"parent\":{}}],[\"hr\",{\"_index\":795,\"name\":{\"1728\":{}},\"parent\":{}}],[\"ht\",{\"_index\":796,\"name\":{\"1729\":{}},\"parent\":{}}],[\"hu\",{\"_index\":797,\"name\":{\"1730\":{}},\"parent\":{}}],[\"iapplicabletobeatmap\",{\"_index\":260,\"name\":{\"525\":{}},\"parent\":{\"526\":{},\"527\":{},\"528\":{},\"529\":{},\"530\":{},\"531\":{},\"532\":{},\"533\":{}}}],[\"iapplicabletoconverter\",{\"_index\":247,\"name\":{\"498\":{}},\"parent\":{\"499\":{},\"500\":{},\"501\":{},\"502\":{},\"503\":{},\"504\":{},\"505\":{},\"506\":{}}}],[\"iapplicabletodifficulty\",{\"_index\":256,\"name\":{\"507\":{}},\"parent\":{\"508\":{},\"509\":{},\"510\":{},\"511\":{},\"512\":{},\"513\":{},\"514\":{},\"515\":{}}}],[\"iapplicabletohitobjects\",{\"_index\":258,\"name\":{\"516\":{}},\"parent\":{\"517\":{},\"518\":{},\"519\":{},\"520\":{},\"521\":{},\"522\":{},\"523\":{},\"524\":{}}}],[\"ibeatmap\",{\"_index\":116,\"name\":{\"181\":{}},\"parent\":{\"182\":{},\"183\":{},\"184\":{},\"185\":{},\"186\":{},\"187\":{},\"188\":{},\"189\":{},\"190\":{},\"191\":{},\"192\":{},\"193\":{},\"194\":{},\"195\":{},\"196\":{},\"197\":{},\"198\":{},\"199\":{}}}],[\"ibeatmapinfo\",{\"_index\":117,\"name\":{\"200\":{}},\"parent\":{\"201\":{},\"202\":{},\"203\":{},\"204\":{},\"205\":{},\"206\":{},\"207\":{},\"208\":{},\"209\":{},\"210\":{},\"211\":{},\"212\":{},\"213\":{},\"214\":{},\"215\":{},\"216\":{},\"217\":{},\"218\":{},\"219\":{},\"220\":{},\"221\":{},\"222\":{},\"223\":{},\"224\":{},\"225\":{},\"226\":{},\"227\":{},\"228\":{},\"229\":{},\"230\":{},\"231\":{},\"232\":{},\"233\":{},\"234\":{},\"235\":{}}}],[\"iconvertiblereplayframe\",{\"_index\":437,\"name\":{\"986\":{}},\"parent\":{\"987\":{},\"988\":{},\"989\":{},\"990\":{},\"991\":{}}}],[\"id\",{\"_index\":33,\"name\":{\"35\":{},\"201\":{},\"241\":{},\"994\":{},\"1003\":{},\"1081\":{},\"1105\":{},\"1152\":{},\"1916\":{},\"1943\":{},\"1968\":{},\"2012\":{}},\"parent\":{}}],[\"ie\",{\"_index\":980,\"name\":{\"1915\":{}},\"parent\":{}}],[\"ignorehit\",{\"_index\":466,\"name\":{\"1033\":{},\"1073\":{}},\"parent\":{}}],[\"ignoremiss\",{\"_index\":465,\"name\":{\"1032\":{},\"1072\":{}},\"parent\":{}}],[\"ihascolumn\",{\"_index\":384,\"name\":{\"867\":{}},\"parent\":{\"868\":{}}}],[\"ihascombo\",{\"_index\":386,\"name\":{\"869\":{}},\"parent\":{\"870\":{},\"871\":{}}}],[\"ihascomboinformation\",{\"_index\":388,\"name\":{\"872\":{}},\"parent\":{\"873\":{},\"874\":{},\"875\":{},\"876\":{},\"877\":{},\"878\":{}}}],[\"ihascommands\",{\"_index\":655,\"name\":{\"1523\":{}},\"parent\":{\"1524\":{},\"1525\":{},\"1526\":{},\"1527\":{},\"1528\":{},\"1529\":{},\"1530\":{},\"1531\":{},\"1532\":{}}}],[\"ihasdistance\",{\"_index\":393,\"name\":{\"879\":{}},\"parent\":{\"880\":{},\"881\":{},\"882\":{}}}],[\"ihasduration\",{\"_index\":394,\"name\":{\"883\":{}},\"parent\":{\"884\":{},\"885\":{}}}],[\"ihaslegacylasttickoffset\",{\"_index\":395,\"name\":{\"886\":{}},\"parent\":{\"887\":{}}}],[\"ihasnodesamples\",{\"_index\":396,\"name\":{\"888\":{}},\"parent\":{\"889\":{}}}],[\"ihaspath\",{\"_index\":397,\"name\":{\"890\":{}},\"parent\":{\"891\":{},\"892\":{},\"893\":{},\"894\":{}}}],[\"ihaspathwithrepeats\",{\"_index\":398,\"name\":{\"895\":{}},\"parent\":{\"896\":{},\"897\":{},\"898\":{},\"899\":{},\"900\":{},\"901\":{},\"902\":{},\"903\":{}}}],[\"ihasposition\",{\"_index\":399,\"name\":{\"904\":{}},\"parent\":{\"905\":{},\"906\":{},\"907\":{},\"908\":{},\"909\":{}}}],[\"ihasrepeats\",{\"_index\":402,\"name\":{\"910\":{}},\"parent\":{\"911\":{},\"912\":{},\"913\":{},\"914\":{},\"915\":{},\"916\":{}}}],[\"ihasx\",{\"_index\":403,\"name\":{\"917\":{}},\"parent\":{\"918\":{},\"919\":{}}}],[\"ihasy\",{\"_index\":404,\"name\":{\"920\":{}},\"parent\":{\"921\":{},\"922\":{}}}],[\"ihitobject\",{\"_index\":331,\"name\":{\"763\":{}},\"parent\":{\"764\":{},\"765\":{},\"766\":{},\"767\":{},\"768\":{},\"769\":{}}}],[\"iholdableobject\",{\"_index\":332,\"name\":{\"770\":{}},\"parent\":{\"771\":{},\"772\":{},\"773\":{},\"774\":{},\"775\":{},\"776\":{},\"777\":{},\"778\":{},\"779\":{}}}],[\"ijsonablebeatmapinfo\",{\"_index\":119,\"name\":{\"237\":{}},\"parent\":{\"238\":{},\"239\":{},\"240\":{},\"241\":{},\"242\":{},\"243\":{},\"244\":{},\"245\":{},\"246\":{},\"247\":{},\"248\":{},\"249\":{},\"250\":{},\"251\":{},\"252\":{},\"253\":{},\"254\":{},\"255\":{},\"256\":{},\"257\":{},\"258\":{},\"259\":{},\"260\":{},\"261\":{},\"262\":{},\"263\":{},\"264\":{},\"265\":{},\"266\":{},\"267\":{},\"268\":{},\"269\":{},\"270\":{}}}],[\"ijsonablegrades\",{\"_index\":984,\"name\":{\"1920\":{}},\"parent\":{}}],[\"ijsonablehighestrank\",{\"_index\":987,\"name\":{\"1927\":{}},\"parent\":{\"1928\":{},\"1929\":{}}}],[\"ijsonablehitstatistics\",{\"_index\":485,\"name\":{\"1058\":{}},\"parent\":{\"1059\":{},\"1060\":{},\"1061\":{},\"1062\":{},\"1063\":{},\"1064\":{},\"1065\":{},\"1066\":{},\"1067\":{},\"1068\":{},\"1069\":{},\"1070\":{},\"1071\":{},\"1072\":{},\"1073\":{}}}],[\"ijsonablescoreinfo\",{\"_index\":487,\"name\":{\"1075\":{}},\"parent\":{\"1076\":{},\"1077\":{},\"1078\":{},\"1079\":{},\"1080\":{},\"1081\":{},\"1082\":{},\"1083\":{},\"1084\":{},\"1085\":{},\"1086\":{},\"1087\":{},\"1088\":{},\"1089\":{},\"1090\":{},\"1091\":{},\"1092\":{},\"1093\":{},\"1094\":{},\"1095\":{},\"1096\":{},\"1097\":{},\"1098\":{},\"1099\":{},\"1100\":{}}}],[\"ijsonableuserinfo\",{\"_index\":990,\"name\":{\"1938\":{}},\"parent\":{\"1939\":{},\"1940\":{},\"1941\":{},\"1942\":{},\"1943\":{},\"1944\":{},\"1945\":{},\"1946\":{},\"1947\":{},\"1948\":{},\"1949\":{},\"1950\":{},\"1951\":{},\"1952\":{},\"1953\":{},\"1954\":{},\"1955\":{},\"1956\":{},\"1957\":{},\"1958\":{},\"1959\":{},\"1960\":{},\"1961\":{},\"1962\":{},\"1963\":{},\"1964\":{},\"1965\":{},\"1966\":{}}}],[\"il\",{\"_index\":859,\"name\":{\"1792\":{}},\"parent\":{}}],[\"ilifebarframe\",{\"_index\":411,\"name\":{\"930\":{}},\"parent\":{\"931\":{},\"932\":{},\"933\":{}}}],[\"im\",{\"_index\":854,\"name\":{\"1787\":{}},\"parent\":{}}],[\"imod\",{\"_index\":284,\"name\":{\"696\":{}},\"parent\":{\"697\":{},\"698\":{},\"699\":{},\"700\":{},\"701\":{},\"702\":{},\"703\":{}}}],[\"in\",{\"_index\":631,\"name\":{\"1417\":{},\"1912\":{}},\"parent\":{}}],[\"inback\",{\"_index\":622,\"name\":{\"1407\":{},\"1444\":{}},\"parent\":{}}],[\"inbounce\",{\"_index\":625,\"name\":{\"1410\":{},\"1447\":{}},\"parent\":{}}],[\"incirc\",{\"_index\":614,\"name\":{\"1399\":{},\"1436\":{}},\"parent\":{}}],[\"incompatibles\",{\"_index\":255,\"name\":{\"506\":{},\"515\":{},\"524\":{},\"533\":{},\"542\":{},\"551\":{},\"560\":{},\"570\":{},\"580\":{},\"589\":{},\"599\":{},\"609\":{},\"615\":{},\"628\":{},\"637\":{},\"646\":{},\"655\":{},\"664\":{},\"678\":{},\"703\":{}},\"parent\":{}}],[\"incubic\",{\"_index\":599,\"name\":{\"1384\":{},\"1421\":{}},\"parent\":{}}],[\"index\",{\"_index\":186,\"name\":{\"416\":{}},\"parent\":{}}],[\"inelastic\",{\"_index\":617,\"name\":{\"1402\":{},\"1439\":{}},\"parent\":{}}],[\"inexpo\",{\"_index\":611,\"name\":{\"1396\":{},\"1433\":{}},\"parent\":{}}],[\"info\",{\"_index\":504,\"name\":{\"1102\":{},\"1145\":{}},\"parent\":{}}],[\"inherit\",{\"_index\":510,\"name\":{\"1186\":{},\"1235\":{},\"1256\":{}},\"parent\":{}}],[\"inoutback\",{\"_index\":624,\"name\":{\"1409\":{},\"1446\":{}},\"parent\":{}}],[\"inoutbounce\",{\"_index\":627,\"name\":{\"1412\":{},\"1449\":{}},\"parent\":{}}],[\"inoutcirc\",{\"_index\":616,\"name\":{\"1401\":{},\"1438\":{}},\"parent\":{}}],[\"inoutcubic\",{\"_index\":601,\"name\":{\"1386\":{},\"1423\":{}},\"parent\":{}}],[\"inoutelastic\",{\"_index\":621,\"name\":{\"1406\":{},\"1443\":{}},\"parent\":{}}],[\"inoutexpo\",{\"_index\":613,\"name\":{\"1398\":{},\"1435\":{}},\"parent\":{}}],[\"inoutquad\",{\"_index\":598,\"name\":{\"1383\":{},\"1420\":{}},\"parent\":{}}],[\"inoutquart\",{\"_index\":604,\"name\":{\"1389\":{},\"1426\":{}},\"parent\":{}}],[\"inoutquint\",{\"_index\":607,\"name\":{\"1392\":{},\"1429\":{}},\"parent\":{}}],[\"inoutsine\",{\"_index\":610,\"name\":{\"1395\":{},\"1432\":{}},\"parent\":{}}],[\"inquad\",{\"_index\":596,\"name\":{\"1381\":{},\"1418\":{}},\"parent\":{}}],[\"inquart\",{\"_index\":602,\"name\":{\"1387\":{},\"1424\":{}},\"parent\":{}}],[\"inquint\",{\"_index\":605,\"name\":{\"1390\":{},\"1427\":{}},\"parent\":{}}],[\"insine\",{\"_index\":608,\"name\":{\"1393\":{},\"1430\":{}},\"parent\":{}}],[\"int_mask\",{\"_index\":1036,\"name\":{\"2065\":{}},\"parent\":{}}],[\"int_to_real\",{\"_index\":1037,\"name\":{\"2066\":{}},\"parent\":{}}],[\"interpolation\",{\"_index\":1022,\"name\":{\"2050\":{}},\"parent\":{\"2051\":{},\"2052\":{}}}],[\"interval\",{\"_index\":418,\"name\":{\"942\":{},\"960\":{},\"984\":{},\"990\":{}},\"parent\":{}}],[\"introsort\",{\"_index\":1050,\"name\":{\"2082\":{}},\"parent\":{}}],[\"invalidate\",{\"_index\":372,\"name\":{\"843\":{}},\"parent\":{}}],[\"io\",{\"_index\":861,\"name\":{\"1794\":{}},\"parent\":{}}],[\"iq\",{\"_index\":808,\"name\":{\"1741\":{}},\"parent\":{}}],[\"ir\",{\"_index\":968,\"name\":{\"1902\":{}},\"parent\":{}}],[\"ireplay\",{\"_index\":413,\"name\":{\"934\":{}},\"parent\":{\"935\":{},\"936\":{},\"937\":{},\"938\":{},\"939\":{}}}],[\"ireplayframe\",{\"_index\":417,\"name\":{\"940\":{}},\"parent\":{\"941\":{},\"942\":{},\"943\":{}}}],[\"iruleset\",{\"_index\":446,\"name\":{\"1002\":{}},\"parent\":{\"1003\":{},\"1004\":{},\"1005\":{},\"1006\":{},\"1007\":{},\"1008\":{},\"1009\":{},\"1010\":{}}}],[\"is\",{\"_index\":967,\"name\":{\"1901\":{}},\"parent\":{}}],[\"isactive\",{\"_index\":1003,\"name\":{\"1962\":{},\"1989\":{},\"2033\":{}},\"parent\":{}}],[\"isadditive\",{\"_index\":644,\"name\":{\"1471\":{},\"1506\":{}},\"parent\":{}}],[\"isatmidpoint\",{\"_index\":1047,\"name\":{\"2078\":{}},\"parent\":{}}],[\"isbackgroundreplaced\",{\"_index\":142,\"name\":{\"349\":{}},\"parent\":{}}],[\"isbot\",{\"_index\":1004,\"name\":{\"1963\":{},\"1990\":{},\"2034\":{}},\"parent\":{}}],[\"isconvert\",{\"_index\":54,\"name\":{\"64\":{},\"231\":{},\"269\":{}},\"parent\":{}}],[\"iscore\",{\"_index\":503,\"name\":{\"1101\":{}},\"parent\":{\"1102\":{},\"1103\":{}}}],[\"iscoreinfo\",{\"_index\":505,\"name\":{\"1104\":{}},\"parent\":{\"1105\":{},\"1106\":{},\"1107\":{},\"1108\":{},\"1109\":{},\"1110\":{},\"1111\":{},\"1112\":{},\"1113\":{},\"1114\":{},\"1115\":{},\"1116\":{},\"1117\":{},\"1118\":{},\"1119\":{},\"1120\":{},\"1121\":{},\"1122\":{},\"1123\":{},\"1124\":{},\"1125\":{},\"1126\":{},\"1127\":{},\"1128\":{},\"1129\":{},\"1130\":{},\"1131\":{}}}],[\"isdeleted\",{\"_index\":1005,\"name\":{\"1964\":{},\"1991\":{},\"2035\":{}},\"parent\":{}}],[\"isdisabled\",{\"_index\":547,\"name\":{\"1248\":{}},\"parent\":{}}],[\"isdrawable\",{\"_index\":645,\"name\":{\"1476\":{},\"1488\":{},\"1511\":{},\"1522\":{},\"1532\":{},\"1536\":{},\"1542\":{}},\"parent\":{}}],[\"ishitresultallowed\",{\"_index\":480,\"name\":{\"1053\":{}},\"parent\":{}}],[\"islayered\",{\"_index\":379,\"name\":{\"856\":{}},\"parent\":{}}],[\"islegacy\",{\"_index\":92,\"name\":{\"114\":{}},\"parent\":{}}],[\"islidableobject\",{\"_index\":334,\"name\":{\"780\":{}},\"parent\":{\"781\":{},\"782\":{},\"783\":{},\"784\":{},\"785\":{},\"786\":{},\"787\":{},\"788\":{},\"789\":{},\"790\":{},\"791\":{},\"792\":{},\"793\":{},\"794\":{},\"795\":{},\"796\":{},\"797\":{},\"798\":{},\"799\":{}}}],[\"islidereventdescriptor\",{\"_index\":315,\"name\":{\"740\":{}},\"parent\":{\"741\":{},\"742\":{},\"743\":{},\"744\":{},\"745\":{}}}],[\"isnewcombo\",{\"_index\":387,\"name\":{\"870\":{},\"877\":{}},\"parent\":{}}],[\"isonline\",{\"_index\":1006,\"name\":{\"1965\":{},\"1992\":{},\"2036\":{}},\"parent\":{}}],[\"ispinnableobject\",{\"_index\":345,\"name\":{\"800\":{}},\"parent\":{\"801\":{},\"802\":{},\"803\":{},\"804\":{},\"805\":{},\"806\":{},\"807\":{},\"808\":{}}}],[\"isranked\",{\"_index\":254,\"name\":{\"505\":{},\"514\":{},\"523\":{},\"532\":{},\"541\":{},\"550\":{},\"559\":{},\"569\":{},\"579\":{},\"588\":{},\"598\":{},\"608\":{},\"618\":{},\"627\":{},\"636\":{},\"645\":{},\"654\":{},\"663\":{},\"677\":{},\"702\":{}},\"parent\":{}}],[\"isredundant\",{\"_index\":70,\"name\":{\"83\":{},\"117\":{},\"130\":{},\"143\":{},\"156\":{}},\"parent\":{}}],[\"issupporter\",{\"_index\":1007,\"name\":{\"1966\":{},\"1993\":{},\"2037\":{}},\"parent\":{}}],[\"istoryboardelement\",{\"_index\":656,\"name\":{\"1533\":{}},\"parent\":{\"1534\":{},\"1535\":{},\"1536\":{}}}],[\"istoryboardelementwithduration\",{\"_index\":657,\"name\":{\"1537\":{}},\"parent\":{\"1538\":{},\"1539\":{},\"1540\":{},\"1541\":{},\"1542\":{}}}],[\"isvalid\",{\"_index\":358,\"name\":{\"823\":{}},\"parent\":{}}],[\"it\",{\"_index\":824,\"name\":{\"1757\":{}},\"parent\":{}}],[\"iterator\",{\"_index\":585,\"name\":{\"1323\":{}},\"parent\":{}}],[\"iuserinfo\",{\"_index\":1008,\"name\":{\"1967\":{}},\"parent\":{\"1968\":{},\"1969\":{},\"1970\":{},\"1971\":{},\"1972\":{},\"1973\":{},\"1974\":{},\"1975\":{},\"1976\":{},\"1977\":{},\"1978\":{},\"1979\":{},\"1980\":{},\"1981\":{},\"1982\":{},\"1983\":{},\"1984\":{},\"1985\":{},\"1986\":{},\"1987\":{},\"1988\":{},\"1989\":{},\"1990\":{},\"1991\":{},\"1992\":{},\"1993\":{},\"1994\":{},\"1995\":{}}}],[\"je\",{\"_index\":759,\"name\":{\"1692\":{}},\"parent\":{}}],[\"jm\",{\"_index\":752,\"name\":{\"1685\":{}},\"parent\":{}}],[\"jo\",{\"_index\":794,\"name\":{\"1727\":{}},\"parent\":{}}],[\"joinedat\",{\"_index\":992,\"name\":{\"1942\":{},\"1995\":{},\"2039\":{}},\"parent\":{}}],[\"jp\",{\"_index\":778,\"name\":{\"1711\":{}},\"parent\":{}}],[\"jsonablebeatmapinfo\",{\"_index\":118,\"name\":{\"236\":{}},\"parent\":{}}],[\"jsonablescoreinfo\",{\"_index\":486,\"name\":{\"1074\":{}},\"parent\":{}}],[\"jsonableuserinfo\",{\"_index\":989,\"name\":{\"1937\":{}},\"parent\":{}}],[\"ke\",{\"_index\":904,\"name\":{\"1838\":{}},\"parent\":{}}],[\"key1\",{\"_index\":233,\"name\":{\"483\":{}},\"parent\":{}}],[\"key2\",{\"_index\":235,\"name\":{\"485\":{}},\"parent\":{}}],[\"key3\",{\"_index\":234,\"name\":{\"484\":{}},\"parent\":{}}],[\"key4\",{\"_index\":222,\"name\":{\"472\":{}},\"parent\":{}}],[\"key5\",{\"_index\":223,\"name\":{\"473\":{}},\"parent\":{}}],[\"key6\",{\"_index\":224,\"name\":{\"474\":{}},\"parent\":{}}],[\"key7\",{\"_index\":225,\"name\":{\"475\":{}},\"parent\":{}}],[\"key8\",{\"_index\":226,\"name\":{\"476\":{}},\"parent\":{}}],[\"key9\",{\"_index\":231,\"name\":{\"481\":{}},\"parent\":{}}],[\"keycoop\",{\"_index\":232,\"name\":{\"482\":{}},\"parent\":{}}],[\"keymod\",{\"_index\":238,\"name\":{\"488\":{}},\"parent\":{}}],[\"kg\",{\"_index\":903,\"name\":{\"1837\":{}},\"parent\":{}}],[\"kh\",{\"_index\":908,\"name\":{\"1842\":{}},\"parent\":{}}],[\"ki\",{\"_index\":907,\"name\":{\"1841\":{}},\"parent\":{}}],[\"kiai\",{\"_index\":96,\"name\":{\"127\":{},\"169\":{},\"748\":{}},\"parent\":{}}],[\"km\",{\"_index\":910,\"name\":{\"1844\":{}},\"parent\":{}}],[\"kn\",{\"_index\":909,\"name\":{\"1843\":{}},\"parent\":{}}],[\"kp\",{\"_index\":915,\"name\":{\"1849\":{}},\"parent\":{}}],[\"kr\",{\"_index\":913,\"name\":{\"1847\":{}},\"parent\":{}}],[\"kw\",{\"_index\":916,\"name\":{\"1850\":{}},\"parent\":{}}],[\"ky\",{\"_index\":922,\"name\":{\"1856\":{}},\"parent\":{}}],[\"kz\",{\"_index\":921,\"name\":{\"1855\":{}},\"parent\":{}}],[\"la\",{\"_index\":940,\"name\":{\"1874\":{}},\"parent\":{}}],[\"largebonus\",{\"_index\":464,\"name\":{\"1031\":{},\"1071\":{}},\"parent\":{}}],[\"largetickhit\",{\"_index\":462,\"name\":{\"1029\":{},\"1069\":{}},\"parent\":{}}],[\"largetickmiss\",{\"_index\":461,\"name\":{\"1028\":{},\"1068\":{}},\"parent\":{}}],[\"lastincombo\",{\"_index\":392,\"name\":{\"876\":{}},\"parent\":{}}],[\"lastobject\",{\"_index\":188,\"name\":{\"418\":{}},\"parent\":{}}],[\"lastvisitat\",{\"_index\":991,\"name\":{\"1941\":{},\"1994\":{},\"2038\":{}},\"parent\":{}}],[\"latesteventtime\",{\"_index\":706,\"name\":{\"1621\":{}},\"parent\":{}}],[\"layers\",{\"_index\":702,\"name\":{\"1617\":{}},\"parent\":{}}],[\"layertype\",{\"_index\":689,\"name\":{\"1584\":{}},\"parent\":{\"1585\":{},\"1586\":{},\"1587\":{},\"1588\":{},\"1589\":{},\"1590\":{}}}],[\"lb\",{\"_index\":938,\"name\":{\"1872\":{}},\"parent\":{}}],[\"lc\",{\"_index\":939,\"name\":{\"1873\":{}},\"parent\":{}}],[\"left1\",{\"_index\":406,\"name\":{\"925\":{}},\"parent\":{}}],[\"left2\",{\"_index\":408,\"name\":{\"927\":{}},\"parent\":{}}],[\"legacylasttick\",{\"_index\":308,\"name\":{\"732\":{}},\"parent\":{}}],[\"legacylasttickoffset\",{\"_index\":344,\"name\":{\"799\":{},\"887\":{}},\"parent\":{}}],[\"legacyreplayframe\",{\"_index\":419,\"name\":{\"944\":{}},\"parent\":{\"945\":{},\"946\":{},\"947\":{},\"948\":{},\"949\":{},\"950\":{},\"951\":{},\"952\":{},\"953\":{},\"954\":{},\"955\":{},\"956\":{},\"957\":{},\"958\":{},\"959\":{},\"960\":{}}}],[\"legacyscoreextensions\",{\"_index\":506,\"name\":{\"1132\":{}},\"parent\":{\"1133\":{},\"1134\":{},\"1135\":{},\"1136\":{},\"1137\":{},\"1138\":{},\"1139\":{},\"1140\":{},\"1141\":{},\"1142\":{}}}],[\"length\",{\"_index\":15,\"name\":{\"15\":{},\"50\":{},\"194\":{},\"217\":{},\"260\":{},\"284\":{},\"308\":{},\"973\":{},\"1659\":{}},\"parent\":{}}],[\"lerp\",{\"_index\":1029,\"name\":{\"2058\":{}},\"parent\":{}}],[\"lerpclamped01\",{\"_index\":1030,\"name\":{\"2059\":{}},\"parent\":{}}],[\"lerpcolor4\",{\"_index\":1032,\"name\":{\"2061\":{}},\"parent\":{}}],[\"lerpvector2\",{\"_index\":1031,\"name\":{\"2060\":{}},\"parent\":{}}],[\"letterboxinbreaks\",{\"_index\":153,\"name\":{\"363\":{}},\"parent\":{}}],[\"level\",{\"_index\":997,\"name\":{\"1956\":{},\"1977\":{},\"2021\":{}},\"parent\":{}}],[\"levelinfo\",{\"_index\":1009,\"name\":{\"1996\":{}},\"parent\":{\"1997\":{},\"1998\":{},\"1999\":{},\"2000\":{},\"2001\":{}}}],[\"li\",{\"_index\":946,\"name\":{\"1880\":{}},\"parent\":{}}],[\"lifebar\",{\"_index\":416,\"name\":{\"939\":{},\"972\":{}},\"parent\":{}}],[\"lifebarframe\",{\"_index\":430,\"name\":{\"961\":{}},\"parent\":{\"962\":{},\"963\":{},\"964\":{},\"965\":{}}}],[\"limitedcapacityqueue\",{\"_index\":198,\"name\":{\"438\":{}},\"parent\":{\"439\":{},\"440\":{},\"441\":{},\"442\":{},\"443\":{},\"444\":{},\"445\":{},\"446\":{}}}],[\"linear\",{\"_index\":302,\"name\":{\"723\":{},\"1380\":{}},\"parent\":{}}],[\"lk\",{\"_index\":945,\"name\":{\"1879\":{}},\"parent\":{}}],[\"loop\",{\"_index\":679,\"name\":{\"1573\":{}},\"parent\":{}}],[\"loopcount\",{\"_index\":565,\"name\":{\"1290\":{}},\"parent\":{}}],[\"loopforever\",{\"_index\":694,\"name\":{\"1592\":{}},\"parent\":{}}],[\"looponce\",{\"_index\":695,\"name\":{\"1593\":{}},\"parent\":{}}],[\"loops\",{\"_index\":640,\"name\":{\"1463\":{},\"1498\":{},\"1526\":{}},\"parent\":{}}],[\"loopstarttime\",{\"_index\":564,\"name\":{\"1289\":{}},\"parent\":{}}],[\"looptype\",{\"_index\":635,\"name\":{\"1455\":{},\"1591\":{}},\"parent\":{\"1592\":{},\"1593\":{}}}],[\"lr\",{\"_index\":951,\"name\":{\"1885\":{}},\"parent\":{}}],[\"ls\",{\"_index\":952,\"name\":{\"1886\":{}},\"parent\":{}}],[\"lt\",{\"_index\":949,\"name\":{\"1883\":{}},\"parent\":{}}],[\"lu\",{\"_index\":950,\"name\":{\"1884\":{}},\"parent\":{}}],[\"lv\",{\"_index\":947,\"name\":{\"1881\":{}},\"parent\":{}}],[\"ly\",{\"_index\":958,\"name\":{\"1892\":{}},\"parent\":{}}],[\"ma\",{\"_index\":837,\"name\":{\"1770\":{}},\"parent\":{}}],[\"map\",{\"_index\":448,\"name\":{\"1012\":{},\"2056\":{}},\"parent\":{}}],[\"map01\",{\"_index\":1028,\"name\":{\"2057\":{}},\"parent\":{}}],[\"masking\",{\"_index\":712,\"name\":{\"1629\":{}},\"parent\":{}}],[\"mathutils\",{\"_index\":1025,\"name\":{\"2053\":{}},\"parent\":{\"2054\":{},\"2055\":{},\"2056\":{},\"2057\":{},\"2058\":{},\"2059\":{},\"2060\":{},\"2061\":{}}}],[\"max\",{\"_index\":452,\"name\":{\"1017\":{},\"1189\":{},\"1195\":{}},\"parent\":{}}],[\"max_int32\",{\"_index\":1034,\"name\":{\"2063\":{}},\"parent\":{}}],[\"max_uint32\",{\"_index\":1035,\"name\":{\"2064\":{}},\"parent\":{}}],[\"maxcombo\",{\"_index\":53,\"name\":{\"63\":{},\"230\":{},\"242\":{},\"292\":{},\"389\":{},\"1086\":{},\"1110\":{},\"1155\":{},\"1947\":{},\"1984\":{},\"2028\":{}},\"parent\":{}}],[\"mc\",{\"_index\":838,\"name\":{\"1771\":{}},\"parent\":{}}],[\"md\",{\"_index\":834,\"name\":{\"1767\":{}},\"parent\":{}}],[\"me\",{\"_index\":833,\"name\":{\"1766\":{}},\"parent\":{}}],[\"meh\",{\"_index\":455,\"name\":{\"1021\":{},\"1061\":{}},\"parent\":{}}],[\"metadata\",{\"_index\":6,\"name\":{\"6\":{},\"186\":{},\"277\":{},\"299\":{}},\"parent\":{}}],[\"mf\",{\"_index\":836,\"name\":{\"1769\":{}},\"parent\":{}}],[\"mg\",{\"_index\":835,\"name\":{\"1768\":{}},\"parent\":{}}],[\"mh\",{\"_index\":844,\"name\":{\"1777\":{}},\"parent\":{}}],[\"min\",{\"_index\":450,\"name\":{\"1015\":{},\"1188\":{},\"1194\":{}},\"parent\":{}}],[\"minimumlayerdepth\",{\"_index\":701,\"name\":{\"1615\":{}},\"parent\":{}}],[\"mirror\",{\"_index\":237,\"name\":{\"487\":{}},\"parent\":{}}],[\"miss\",{\"_index\":454,\"name\":{\"1020\":{},\"1060\":{}},\"parent\":{}}],[\"mixture\",{\"_index\":538,\"name\":{\"1236\":{}},\"parent\":{}}],[\"mk\",{\"_index\":845,\"name\":{\"1778\":{}},\"parent\":{}}],[\"ml\",{\"_index\":841,\"name\":{\"1774\":{}},\"parent\":{}}],[\"mm\",{\"_index\":840,\"name\":{\"1773\":{}},\"parent\":{}}],[\"mn\",{\"_index\":843,\"name\":{\"1776\":{}},\"parent\":{}}],[\"mo\",{\"_index\":842,\"name\":{\"1775\":{}},\"parent\":{}}],[\"modat\",{\"_index\":281,\"name\":{\"690\":{}},\"parent\":{}}],[\"modbitwise\",{\"_index\":206,\"name\":{\"455\":{}},\"parent\":{\"456\":{},\"457\":{},\"458\":{},\"459\":{},\"460\":{},\"461\":{},\"462\":{},\"463\":{},\"464\":{},\"465\":{},\"466\":{},\"467\":{},\"468\":{},\"469\":{},\"470\":{},\"471\":{},\"472\":{},\"473\":{},\"474\":{},\"475\":{},\"476\":{},\"477\":{},\"478\":{},\"479\":{},\"480\":{},\"481\":{},\"482\":{},\"483\":{},\"484\":{},\"485\":{},\"486\":{},\"487\":{},\"488\":{},\"489\":{},\"490\":{}}}],[\"modcombination\",{\"_index\":263,\"name\":{\"665\":{}},\"parent\":{\"666\":{},\"667\":{},\"668\":{},\"669\":{},\"670\":{},\"671\":{},\"672\":{},\"673\":{},\"674\":{},\"675\":{},\"676\":{},\"677\":{},\"678\":{},\"679\":{},\"680\":{},\"681\":{},\"682\":{},\"683\":{},\"684\":{},\"685\":{},\"686\":{},\"687\":{},\"688\":{},\"689\":{},\"690\":{},\"691\":{},\"692\":{},\"693\":{},\"694\":{},\"695\":{}}}],[\"mode\",{\"_index\":14,\"name\":{\"14\":{},\"191\":{},\"281\":{},\"307\":{},\"667\":{},\"936\":{},\"969\":{},\"2005\":{}},\"parent\":{}}],[\"mods\",{\"_index\":50,\"name\":{\"60\":{},\"227\":{},\"238\":{},\"293\":{},\"387\":{},\"392\":{},\"1076\":{},\"1115\":{},\"1162\":{}},\"parent\":{}}],[\"modsat\",{\"_index\":280,\"name\":{\"689\":{}},\"parent\":{}}],[\"modtype\",{\"_index\":241,\"name\":{\"491\":{}},\"parent\":{\"492\":{},\"493\":{},\"494\":{},\"495\":{},\"496\":{},\"497\":{}}}],[\"mouseleft\",{\"_index\":424,\"name\":{\"951\":{}},\"parent\":{}}],[\"mouseleft1\",{\"_index\":426,\"name\":{\"953\":{}},\"parent\":{}}],[\"mouseleft2\",{\"_index\":428,\"name\":{\"955\":{}},\"parent\":{}}],[\"mouseposition\",{\"_index\":423,\"name\":{\"950\":{}},\"parent\":{}}],[\"mouseright\",{\"_index\":425,\"name\":{\"952\":{}},\"parent\":{}}],[\"mouseright1\",{\"_index\":427,\"name\":{\"954\":{}},\"parent\":{}}],[\"mouseright2\",{\"_index\":429,\"name\":{\"956\":{}},\"parent\":{}}],[\"mousex\",{\"_index\":421,\"name\":{\"948\":{}},\"parent\":{}}],[\"mousey\",{\"_index\":422,\"name\":{\"949\":{}},\"parent\":{}}],[\"movement\",{\"_index\":674,\"name\":{\"1562\":{}},\"parent\":{}}],[\"movementx\",{\"_index\":675,\"name\":{\"1563\":{}},\"parent\":{}}],[\"movementy\",{\"_index\":676,\"name\":{\"1564\":{}},\"parent\":{}}],[\"mp\",{\"_index\":851,\"name\":{\"1784\":{}},\"parent\":{}}],[\"mq\",{\"_index\":850,\"name\":{\"1783\":{}},\"parent\":{}}],[\"mr\",{\"_index\":853,\"name\":{\"1786\":{}},\"parent\":{}}],[\"ms\",{\"_index\":852,\"name\":{\"1785\":{}},\"parent\":{}}],[\"mt\",{\"_index\":847,\"name\":{\"1780\":{}},\"parent\":{}}],[\"mu\",{\"_index\":846,\"name\":{\"1779\":{}},\"parent\":{}}],[\"multiplier\",{\"_index\":253,\"name\":{\"504\":{},\"513\":{},\"522\":{},\"531\":{},\"540\":{},\"549\":{},\"558\":{},\"568\":{},\"578\":{},\"587\":{},\"597\":{},\"607\":{},\"617\":{},\"626\":{},\"635\":{},\"644\":{},\"653\":{},\"662\":{},\"676\":{},\"701\":{}},\"parent\":{}}],[\"mv\",{\"_index\":849,\"name\":{\"1782\":{}},\"parent\":{}}],[\"mw\",{\"_index\":848,\"name\":{\"1781\":{}},\"parent\":{}}],[\"mx\",{\"_index\":858,\"name\":{\"1791\":{}},\"parent\":{}}],[\"my\",{\"_index\":857,\"name\":{\"1790\":{}},\"parent\":{}}],[\"mz\",{\"_index\":983,\"name\":{\"1919\":{}},\"parent\":{}}],[\"na\",{\"_index\":870,\"name\":{\"1804\":{}},\"parent\":{}}],[\"name\",{\"_index\":249,\"name\":{\"500\":{},\"509\":{},\"518\":{},\"527\":{},\"536\":{},\"545\":{},\"554\":{},\"564\":{},\"574\":{},\"583\":{},\"593\":{},\"603\":{},\"612\":{},\"622\":{},\"631\":{},\"640\":{},\"649\":{},\"658\":{},\"697\":{},\"1627\":{}},\"parent\":{}}],[\"names\",{\"_index\":268,\"name\":{\"673\":{}},\"parent\":{}}],[\"nc\",{\"_index\":872,\"name\":{\"1806\":{}},\"parent\":{}}],[\"ne\",{\"_index\":873,\"name\":{\"1807\":{}},\"parent\":{}}],[\"nestedhitobjects\",{\"_index\":321,\"name\":{\"749\":{}},\"parent\":{}}],[\"newcombo\",{\"_index\":292,\"name\":{\"713\":{}},\"parent\":{}}],[\"next\",{\"_index\":191,\"name\":{\"423\":{},\"2068\":{}},\"parent\":{}}],[\"nextbool\",{\"_index\":1041,\"name\":{\"2072\":{}},\"parent\":{}}],[\"nextdouble\",{\"_index\":1040,\"name\":{\"2071\":{}},\"parent\":{}}],[\"nextint\",{\"_index\":1039,\"name\":{\"2070\":{}},\"parent\":{}}],[\"nextuint\",{\"_index\":1038,\"name\":{\"2069\":{}},\"parent\":{}}],[\"nf\",{\"_index\":874,\"name\":{\"1808\":{}},\"parent\":{}}],[\"ng\",{\"_index\":875,\"name\":{\"1809\":{}},\"parent\":{}}],[\"ni\",{\"_index\":867,\"name\":{\"1801\":{}},\"parent\":{}}],[\"nightcore\",{\"_index\":216,\"name\":{\"466\":{},\"610\":{}},\"parent\":{\"611\":{},\"612\":{},\"613\":{},\"614\":{},\"615\":{},\"616\":{},\"617\":{},\"618\":{},\"619\":{}}}],[\"nl\",{\"_index\":868,\"name\":{\"1802\":{}},\"parent\":{}}],[\"no\",{\"_index\":869,\"name\":{\"1803\":{}},\"parent\":{}}],[\"nodesamples\",{\"_index\":333,\"name\":{\"779\":{},\"792\":{},\"889\":{},\"903\":{},\"916\":{}},\"parent\":{}}],[\"nofail\",{\"_index\":207,\"name\":{\"457\":{},\"620\":{}},\"parent\":{\"621\":{},\"622\":{},\"623\":{},\"624\":{},\"625\":{},\"626\":{},\"627\":{},\"628\":{}}}],[\"nomod\",{\"_index\":262,\"name\":{\"629\":{}},\"parent\":{\"630\":{},\"631\":{},\"632\":{},\"633\":{},\"634\":{},\"635\":{},\"636\":{},\"637\":{}}}],[\"none\",{\"_index\":108,\"name\":{\"168\":{},\"456\":{},\"705\":{},\"726\":{},\"924\":{},\"1019\":{},\"1059\":{},\"1234\":{},\"1415\":{},\"1561\":{},\"1572\":{},\"1606\":{}},\"parent\":{}}],[\"normal\",{\"_index\":286,\"name\":{\"706\":{},\"711\":{},\"727\":{}},\"parent\":{}}],[\"normalize\",{\"_index\":733,\"name\":{\"1663\":{}},\"parent\":{}}],[\"normalset\",{\"_index\":382,\"name\":{\"863\":{}},\"parent\":{}}],[\"np\",{\"_index\":877,\"name\":{\"1811\":{}},\"parent\":{}}],[\"nr\",{\"_index\":878,\"name\":{\"1812\":{}},\"parent\":{}}],[\"nu\",{\"_index\":879,\"name\":{\"1813\":{}},\"parent\":{}}],[\"nz\",{\"_index\":876,\"name\":{\"1810\":{}},\"parent\":{}}],[\"ok\",{\"_index\":456,\"name\":{\"1022\":{},\"1062\":{}},\"parent\":{}}],[\"om\",{\"_index\":792,\"name\":{\"1725\":{}},\"parent\":{}}],[\"omitfirstbarline\",{\"_index\":97,\"name\":{\"128\":{},\"170\":{}},\"parent\":{}}],[\"one\",{\"_index\":532,\"name\":{\"1213\":{},\"1229\":{},\"1261\":{}},\"parent\":{}}],[\"oneminusconstantalpha\",{\"_index\":531,\"name\":{\"1212\":{},\"1228\":{},\"1262\":{}},\"parent\":{}}],[\"oneminusconstantcolor\",{\"_index\":529,\"name\":{\"1210\":{},\"1226\":{},\"1263\":{}},\"parent\":{}}],[\"oneminusdstalpha\",{\"_index\":524,\"name\":{\"1205\":{},\"1221\":{},\"1264\":{}},\"parent\":{}}],[\"oneminusdstcolor\",{\"_index\":526,\"name\":{\"1207\":{},\"1223\":{},\"1265\":{}},\"parent\":{}}],[\"oneminussrcalpha\",{\"_index\":522,\"name\":{\"1203\":{},\"1219\":{},\"1266\":{}},\"parent\":{}}],[\"oneminussrccolor\",{\"_index\":520,\"name\":{\"1201\":{},\"1217\":{},\"1267\":{}},\"parent\":{}}],[\"origin\",{\"_index\":636,\"name\":{\"1456\":{},\"1491\":{}},\"parent\":{}}],[\"originalmode\",{\"_index\":13,\"name\":{\"13\":{},\"192\":{},\"282\":{},\"306\":{}},\"parent\":{}}],[\"origins\",{\"_index\":696,\"name\":{\"1594\":{}},\"parent\":{\"1595\":{},\"1596\":{},\"1597\":{},\"1598\":{},\"1599\":{},\"1600\":{},\"1601\":{},\"1602\":{},\"1603\":{},\"1604\":{}}}],[\"out\",{\"_index\":630,\"name\":{\"1416\":{}},\"parent\":{}}],[\"outback\",{\"_index\":623,\"name\":{\"1408\":{},\"1445\":{}},\"parent\":{}}],[\"outbounce\",{\"_index\":626,\"name\":{\"1411\":{},\"1448\":{}},\"parent\":{}}],[\"outcirc\",{\"_index\":615,\"name\":{\"1400\":{},\"1437\":{}},\"parent\":{}}],[\"outcubic\",{\"_index\":600,\"name\":{\"1385\":{},\"1422\":{}},\"parent\":{}}],[\"outelastic\",{\"_index\":618,\"name\":{\"1403\":{},\"1440\":{}},\"parent\":{}}],[\"outelastichalf\",{\"_index\":619,\"name\":{\"1404\":{},\"1441\":{}},\"parent\":{}}],[\"outelasticquarter\",{\"_index\":620,\"name\":{\"1405\":{},\"1442\":{}},\"parent\":{}}],[\"outexpo\",{\"_index\":612,\"name\":{\"1397\":{},\"1434\":{}},\"parent\":{}}],[\"outpow10\",{\"_index\":628,\"name\":{\"1413\":{},\"1450\":{}},\"parent\":{}}],[\"outquad\",{\"_index\":597,\"name\":{\"1382\":{},\"1419\":{}},\"parent\":{}}],[\"outquart\",{\"_index\":603,\"name\":{\"1388\":{},\"1425\":{}},\"parent\":{}}],[\"outquint\",{\"_index\":606,\"name\":{\"1391\":{},\"1428\":{}},\"parent\":{}}],[\"outsine\",{\"_index\":609,\"name\":{\"1394\":{},\"1431\":{}},\"parent\":{}}],[\"overalldifficulty\",{\"_index\":46,\"name\":{\"56\":{},\"223\":{},\"266\":{},\"330\":{}},\"parent\":{}}],[\"overlay\",{\"_index\":693,\"name\":{\"1589\":{}},\"parent\":{}}],[\"overlayposition\",{\"_index\":146,\"name\":{\"355\":{}},\"parent\":{}}],[\"pa\",{\"_index\":809,\"name\":{\"1742\":{}},\"parent\":{}}],[\"parameter\",{\"_index\":556,\"name\":{\"1275\":{},\"1570\":{}},\"parent\":{}}],[\"parametertype\",{\"_index\":697,\"name\":{\"1605\":{}},\"parent\":{\"1606\":{},\"1607\":{},\"1608\":{},\"1609\":{}}}],[\"pass\",{\"_index\":691,\"name\":{\"1587\":{}},\"parent\":{}}],[\"passcount\",{\"_index\":38,\"name\":{\"40\":{},\"206\":{},\"250\":{}},\"parent\":{}}],[\"passed\",{\"_index\":493,\"name\":{\"1087\":{},\"1111\":{},\"1156\":{}},\"parent\":{}}],[\"path\",{\"_index\":339,\"name\":{\"785\":{},\"841\":{},\"891\":{},\"896\":{}},\"parent\":{}}],[\"pathapproximator\",{\"_index\":346,\"name\":{\"809\":{}},\"parent\":{\"810\":{},\"811\":{},\"812\":{},\"813\":{},\"814\":{},\"815\":{},\"816\":{},\"817\":{},\"818\":{},\"819\":{},\"820\":{}}}],[\"pathpoint\",{\"_index\":365,\"name\":{\"830\":{}},\"parent\":{\"831\":{},\"832\":{},\"833\":{}}}],[\"pathtype\",{\"_index\":299,\"name\":{\"720\":{}},\"parent\":{\"721\":{},\"722\":{},\"723\":{},\"724\":{}}}],[\"pe\",{\"_index\":812,\"name\":{\"1745\":{}},\"parent\":{}}],[\"perfect\",{\"_index\":221,\"name\":{\"471\":{},\"638\":{},\"1025\":{},\"1065\":{},\"1080\":{},\"1112\":{},\"1157\":{}},\"parent\":{\"639\":{},\"640\":{},\"641\":{},\"642\":{},\"643\":{},\"644\":{},\"645\":{},\"646\":{}}}],[\"perfectcurve\",{\"_index\":303,\"name\":{\"724\":{}},\"parent\":{}}],[\"performanceattributes\",{\"_index\":168,\"name\":{\"390\":{}},\"parent\":{\"391\":{},\"392\":{},\"393\":{}}}],[\"performancecalculator\",{\"_index\":183,\"name\":{\"409\":{}},\"parent\":{\"410\":{},\"411\":{},\"412\":{},\"413\":{}}}],[\"pf\",{\"_index\":810,\"name\":{\"1743\":{}},\"parent\":{}}],[\"pg\",{\"_index\":811,\"name\":{\"1744\":{}},\"parent\":{}}],[\"ph\",{\"_index\":814,\"name\":{\"1747\":{}},\"parent\":{}}],[\"pk\",{\"_index\":813,\"name\":{\"1746\":{}},\"parent\":{}}],[\"pl\",{\"_index\":816,\"name\":{\"1749\":{}},\"parent\":{}}],[\"playcount\",{\"_index\":39,\"name\":{\"41\":{},\"207\":{},\"251\":{},\"1950\":{},\"1981\":{},\"2025\":{}},\"parent\":{}}],[\"playmode\",{\"_index\":994,\"name\":{\"1953\":{},\"1972\":{},\"2016\":{}},\"parent\":{}}],[\"playtime\",{\"_index\":999,\"name\":{\"1958\":{},\"1982\":{},\"2026\":{}},\"parent\":{}}],[\"pm\",{\"_index\":817,\"name\":{\"1750\":{}},\"parent\":{}}],[\"pn\",{\"_index\":815,\"name\":{\"1748\":{}},\"parent\":{}}],[\"pointtype\",{\"_index\":65,\"name\":{\"78\":{},\"112\":{},\"126\":{},\"139\":{},\"152\":{}},\"parent\":{}}],[\"position\",{\"_index\":366,\"name\":{\"832\":{},\"947\":{}},\"parent\":{}}],[\"positionat\",{\"_index\":375,\"name\":{\"846\":{}},\"parent\":{}}],[\"postprocess\",{\"_index\":63,\"name\":{\"75\":{}},\"parent\":{}}],[\"pr\",{\"_index\":802,\"name\":{\"1735\":{}},\"parent\":{}}],[\"precision_error\",{\"_index\":1043,\"name\":{\"2074\":{}},\"parent\":{}}],[\"preprocess\",{\"_index\":62,\"name\":{\"74\":{}},\"parent\":{}}],[\"previewtime\",{\"_index\":149,\"name\":{\"358\":{}},\"parent\":{}}],[\"previous\",{\"_index\":190,\"name\":{\"422\":{}},\"parent\":{}}],[\"previoususernames\",{\"_index\":993,\"name\":{\"1951\":{},\"1970\":{},\"2014\":{}},\"parent\":{}}],[\"process\",{\"_index\":193,\"name\":{\"426\":{},\"430\":{},\"435\":{}},\"parent\":{}}],[\"progress\",{\"_index\":319,\"name\":{\"745\":{},\"1999\":{}},\"parent\":{}}],[\"progressat\",{\"_index\":374,\"name\":{\"845\":{}},\"parent\":{}}],[\"progressivecalculationbeatmap\",{\"_index\":120,\"name\":{\"271\":{}},\"parent\":{\"272\":{},\"273\":{},\"274\":{},\"275\":{},\"276\":{},\"277\":{},\"278\":{},\"279\":{},\"280\":{},\"281\":{},\"282\":{},\"283\":{},\"284\":{},\"285\":{},\"286\":{},\"287\":{},\"288\":{},\"289\":{}}}],[\"ps\",{\"_index\":803,\"name\":{\"1736\":{}},\"parent\":{}}],[\"pt\",{\"_index\":805,\"name\":{\"1738\":{}},\"parent\":{}}],[\"pw\",{\"_index\":804,\"name\":{\"1737\":{}},\"parent\":{}}],[\"py\",{\"_index\":807,\"name\":{\"1740\":{}},\"parent\":{}}],[\"qa\",{\"_index\":982,\"name\":{\"1918\":{}},\"parent\":{}}],[\"radius\",{\"_index\":362,\"name\":{\"827\":{}},\"parent\":{}}],[\"random\",{\"_index\":228,\"name\":{\"478\":{}},\"parent\":{}}],[\"range\",{\"_index\":128,\"name\":{\"326\":{}},\"parent\":{}}],[\"rank\",{\"_index\":490,\"name\":{\"1082\":{},\"1106\":{},\"1159\":{},\"1183\":{},\"1928\":{},\"1933\":{}},\"parent\":{\"1184\":{}}}],[\"rankedscore\",{\"_index\":998,\"name\":{\"1957\":{},\"1978\":{},\"2022\":{}},\"parent\":{}}],[\"rankhistory\",{\"_index\":1002,\"name\":{\"1961\":{},\"1988\":{},\"2002\":{},\"2032\":{}},\"parent\":{\"2003\":{},\"2004\":{},\"2005\":{},\"2006\":{},\"2007\":{},\"2008\":{}}}],[\"rawmods\",{\"_index\":51,\"name\":{\"61\":{},\"228\":{},\"1116\":{},\"1163\":{}},\"parent\":{}}],[\"re\",{\"_index\":766,\"name\":{\"1699\":{}},\"parent\":{}}],[\"red\",{\"_index\":717,\"name\":{\"1635\":{}},\"parent\":{}}],[\"relax\",{\"_index\":214,\"name\":{\"464\":{},\"647\":{}},\"parent\":{\"648\":{},\"649\":{},\"650\":{},\"651\":{},\"652\":{},\"653\":{},\"654\":{},\"655\":{}}}],[\"relax2\",{\"_index\":220,\"name\":{\"470\":{}},\"parent\":{}}],[\"remove\",{\"_index\":73,\"name\":{\"89\":{},\"106\":{}},\"parent\":{}}],[\"repeat\",{\"_index\":311,\"name\":{\"735\":{}},\"parent\":{}}],[\"repeats\",{\"_index\":341,\"name\":{\"789\":{},\"900\":{},\"911\":{}},\"parent\":{}}],[\"replay\",{\"_index\":431,\"name\":{\"966\":{},\"1103\":{},\"1146\":{}},\"parent\":{\"967\":{},\"968\":{},\"969\":{},\"970\":{},\"971\":{},\"972\":{},\"973\":{},\"974\":{},\"975\":{}}}],[\"replaybuttonstate\",{\"_index\":405,\"name\":{\"923\":{}},\"parent\":{\"924\":{},\"925\":{},\"926\":{},\"927\":{},\"928\":{},\"929\":{}}}],[\"replayconverter\",{\"_index\":432,\"name\":{\"976\":{}},\"parent\":{\"977\":{},\"978\":{},\"979\":{},\"980\":{}}}],[\"replayframe\",{\"_index\":436,\"name\":{\"981\":{}},\"parent\":{\"982\":{},\"983\":{},\"984\":{},\"985\":{}}}],[\"replayswatched\",{\"_index\":1000,\"name\":{\"1959\":{},\"1985\":{},\"2029\":{}},\"parent\":{}}],[\"resetmods\",{\"_index\":442,\"name\":{\"998\":{},\"1007\":{}},\"parent\":{}}],[\"resetvaluestocommands\",{\"_index\":650,\"name\":{\"1481\":{},\"1516\":{}},\"parent\":{}}],[\"result\",{\"_index\":449,\"name\":{\"1014\":{}},\"parent\":{}}],[\"resultfor\",{\"_index\":482,\"name\":{\"1055\":{}},\"parent\":{}}],[\"reversequeue\",{\"_index\":205,\"name\":{\"447\":{}},\"parent\":{\"448\":{},\"449\":{},\"450\":{},\"451\":{},\"452\":{},\"453\":{},\"454\":{}}}],[\"reversesubtract\",{\"_index\":512,\"name\":{\"1191\":{}},\"parent\":{}}],[\"rgbequation\",{\"_index\":543,\"name\":{\"1243\":{}},\"parent\":{}}],[\"rgbequationmode\",{\"_index\":548,\"name\":{\"1249\":{}},\"parent\":{}}],[\"right1\",{\"_index\":407,\"name\":{\"926\":{}},\"parent\":{}}],[\"right2\",{\"_index\":409,\"name\":{\"928\":{}},\"parent\":{}}],[\"ro\",{\"_index\":769,\"name\":{\"1702\":{}},\"parent\":{}}],[\"rotation\",{\"_index\":571,\"name\":{\"1299\":{},\"1330\":{},\"1359\":{},\"1468\":{},\"1503\":{},\"1568\":{}},\"parent\":{}}],[\"round\",{\"_index\":1044,\"name\":{\"2075\":{}},\"parent\":{}}],[\"roundawayfromzero\",{\"_index\":1046,\"name\":{\"2077\":{}},\"parent\":{}}],[\"roundhelper\",{\"_index\":1042,\"name\":{\"2073\":{}},\"parent\":{\"2074\":{},\"2075\":{},\"2076\":{},\"2077\":{},\"2078\":{},\"2079\":{}}}],[\"roundtoeven\",{\"_index\":1045,\"name\":{\"2076\":{}},\"parent\":{}}],[\"rs\",{\"_index\":764,\"name\":{\"1697\":{}},\"parent\":{}}],[\"ru\",{\"_index\":762,\"name\":{\"1695\":{}},\"parent\":{}}],[\"ruleset\",{\"_index\":48,\"name\":{\"58\":{},\"225\":{},\"992\":{},\"1113\":{},\"1160\":{}},\"parent\":{\"993\":{},\"994\":{},\"995\":{},\"996\":{},\"997\":{},\"998\":{},\"999\":{},\"1000\":{},\"1001\":{}}}],[\"rulesetbeatmap\",{\"_index\":121,\"name\":{\"290\":{}},\"parent\":{\"291\":{},\"292\":{},\"293\":{},\"294\":{},\"295\":{},\"296\":{},\"297\":{},\"298\":{},\"299\":{},\"300\":{},\"301\":{},\"302\":{},\"303\":{},\"304\":{},\"305\":{},\"306\":{},\"307\":{},\"308\":{},\"309\":{},\"310\":{},\"311\":{},\"312\":{},\"313\":{},\"314\":{},\"315\":{},\"316\":{},\"317\":{}}}],[\"rulesetid\",{\"_index\":49,\"name\":{\"59\":{},\"226\":{},\"243\":{},\"1088\":{},\"1114\":{},\"1134\":{},\"1161\":{}},\"parent\":{}}],[\"rw\",{\"_index\":763,\"name\":{\"1696\":{}},\"parent\":{}}],[\"s\",{\"_index\":473,\"name\":{\"1040\":{}},\"parent\":{}}],[\"sa\",{\"_index\":830,\"name\":{\"1763\":{}},\"parent\":{}}],[\"sample\",{\"_index\":686,\"name\":{\"1581\":{}},\"parent\":{}}],[\"samplebank\",{\"_index\":381,\"name\":{\"859\":{}},\"parent\":{\"860\":{},\"861\":{},\"862\":{},\"863\":{},\"864\":{},\"865\":{},\"866\":{}}}],[\"samplepoint\",{\"_index\":99,\"name\":{\"136\":{},\"166\":{}},\"parent\":{\"137\":{},\"138\":{},\"139\":{},\"140\":{},\"141\":{},\"142\":{},\"143\":{},\"144\":{},\"145\":{},\"146\":{},\"147\":{},\"148\":{}}}],[\"samplepointat\",{\"_index\":84,\"name\":{\"101\":{}},\"parent\":{}}],[\"samplepoints\",{\"_index\":78,\"name\":{\"95\":{}},\"parent\":{}}],[\"samples\",{\"_index\":322,\"name\":{\"753\":{},\"767\":{},\"774\":{},\"796\":{},\"804\":{}},\"parent\":{}}],[\"sampleset\",{\"_index\":100,\"name\":{\"140\":{},\"362\":{},\"725\":{},\"851\":{}},\"parent\":{\"726\":{},\"727\":{},\"728\":{},\"729\":{}}}],[\"samplesmatchplaybackrate\",{\"_index\":160,\"name\":{\"370\":{}},\"parent\":{}}],[\"sb\",{\"_index\":826,\"name\":{\"1759\":{}},\"parent\":{}}],[\"sc\",{\"_index\":920,\"name\":{\"1854\":{}},\"parent\":{}}],[\"scale\",{\"_index\":569,\"name\":{\"1297\":{},\"1328\":{},\"1357\":{},\"1466\":{},\"1501\":{},\"1566\":{},\"1653\":{}},\"parent\":{}}],[\"score\",{\"_index\":507,\"name\":{\"1143\":{}},\"parent\":{\"1144\":{},\"1145\":{},\"1146\":{},\"1147\":{},\"1148\":{}}}],[\"scoreinfo\",{\"_index\":508,\"name\":{\"1149\":{}},\"parent\":{\"1150\":{},\"1151\":{},\"1152\":{},\"1153\":{},\"1154\":{},\"1155\":{},\"1156\":{},\"1157\":{},\"1158\":{},\"1159\":{},\"1160\":{},\"1161\":{},\"1162\":{},\"1163\":{},\"1164\":{},\"1165\":{},\"1166\":{},\"1167\":{},\"1168\":{},\"1169\":{},\"1170\":{},\"1171\":{},\"1172\":{},\"1173\":{},\"1174\":{},\"1175\":{},\"1176\":{},\"1177\":{},\"1178\":{},\"1179\":{},\"1180\":{}}}],[\"scorerank\",{\"_index\":467,\"name\":{\"1034\":{}},\"parent\":{\"1035\":{},\"1036\":{},\"1037\":{},\"1038\":{},\"1039\":{},\"1040\":{},\"1041\":{},\"1042\":{},\"1043\":{}}}],[\"scorev2\",{\"_index\":236,\"name\":{\"486\":{}},\"parent\":{}}],[\"scrollspeed\",{\"_index\":98,\"name\":{\"129\":{}},\"parent\":{}}],[\"sd\",{\"_index\":925,\"name\":{\"1859\":{}},\"parent\":{}}],[\"se\",{\"_index\":924,\"name\":{\"1858\":{}},\"parent\":{}}],[\"setdifficulty\",{\"_index\":481,\"name\":{\"1054\":{}},\"parent\":{}}],[\"setvaluefromcommand\",{\"_index\":651,\"name\":{\"1482\":{},\"1517\":{}},\"parent\":{}}],[\"sg\",{\"_index\":923,\"name\":{\"1857\":{}},\"parent\":{}}],[\"sh\",{\"_index\":474,\"name\":{\"1041\":{},\"1795\":{}},\"parent\":{}}],[\"si\",{\"_index\":914,\"name\":{\"1848\":{}},\"parent\":{}}],[\"simplequadruple\",{\"_index\":110,\"name\":{\"173\":{}},\"parent\":{}}],[\"simpletriple\",{\"_index\":109,\"name\":{\"172\":{}},\"parent\":{}}],[\"sj\",{\"_index\":806,\"name\":{\"1739\":{}},\"parent\":{}}],[\"sk\",{\"_index\":912,\"name\":{\"1846\":{}},\"parent\":{}}],[\"skill\",{\"_index\":192,\"name\":{\"424\":{}},\"parent\":{\"425\":{},\"426\":{},\"427\":{}}}],[\"skinpreference\",{\"_index\":147,\"name\":{\"356\":{}},\"parent\":{}}],[\"sl\",{\"_index\":919,\"name\":{\"1853\":{}},\"parent\":{}}],[\"slidable\",{\"_index\":22,\"name\":{\"22\":{},\"47\":{},\"213\":{},\"257\":{},\"315\":{}},\"parent\":{}}],[\"slider\",{\"_index\":291,\"name\":{\"712\":{}},\"parent\":{}}],[\"slider_max_distance\",{\"_index\":313,\"name\":{\"737\":{}},\"parent\":{}}],[\"sliderbordercolor\",{\"_index\":125,\"name\":{\"322\":{}},\"parent\":{}}],[\"slidereventtype\",{\"_index\":306,\"name\":{\"730\":{}},\"parent\":{\"731\":{},\"732\":{},\"733\":{},\"734\":{},\"735\":{}}}],[\"slidermultiplier\",{\"_index\":129,\"name\":{\"332\":{}},\"parent\":{}}],[\"sliderpath\",{\"_index\":367,\"name\":{\"834\":{}},\"parent\":{\"835\":{},\"836\":{},\"837\":{},\"838\":{},\"839\":{},\"840\":{},\"841\":{},\"842\":{},\"843\":{},\"844\":{},\"845\":{},\"846\":{},\"847\":{},\"848\":{}}}],[\"slidertickrate\",{\"_index\":130,\"name\":{\"333\":{}},\"parent\":{}}],[\"slidertrackcolor\",{\"_index\":124,\"name\":{\"321\":{}},\"parent\":{}}],[\"slidervelocity\",{\"_index\":93,\"name\":{\"115\":{}},\"parent\":{}}],[\"sm\",{\"_index\":918,\"name\":{\"1852\":{}},\"parent\":{}}],[\"smallbonus\",{\"_index\":463,\"name\":{\"1030\":{},\"1070\":{}},\"parent\":{}}],[\"smalltickhit\",{\"_index\":460,\"name\":{\"1027\":{},\"1067\":{}},\"parent\":{}}],[\"smalltickmiss\",{\"_index\":459,\"name\":{\"1026\":{},\"1066\":{}},\"parent\":{}}],[\"smoke\",{\"_index\":410,\"name\":{\"929\":{},\"957\":{}},\"parent\":{}}],[\"sn\",{\"_index\":917,\"name\":{\"1851\":{}},\"parent\":{}}],[\"so\",{\"_index\":828,\"name\":{\"1761\":{}},\"parent\":{}}],[\"soft\",{\"_index\":304,\"name\":{\"728\":{}},\"parent\":{}}],[\"sorthelper\",{\"_index\":1048,\"name\":{\"2080\":{}},\"parent\":{\"2081\":{},\"2082\":{},\"2083\":{},\"2084\":{},\"2085\":{}}}],[\"source\",{\"_index\":162,\"name\":{\"378\":{},\"1239\":{}},\"parent\":{}}],[\"sourcealpha\",{\"_index\":541,\"name\":{\"1241\":{}},\"parent\":{}}],[\"sourcealphablendingfactor\",{\"_index\":552,\"name\":{\"1253\":{}},\"parent\":{}}],[\"sourceblendingfactor\",{\"_index\":550,\"name\":{\"1251\":{}},\"parent\":{}}],[\"spanduration\",{\"_index\":343,\"name\":{\"791\":{},\"902\":{},\"913\":{}},\"parent\":{}}],[\"spanindex\",{\"_index\":317,\"name\":{\"742\":{}},\"parent\":{}}],[\"spans\",{\"_index\":342,\"name\":{\"790\":{},\"901\":{},\"912\":{}},\"parent\":{}}],[\"spanstarttime\",{\"_index\":318,\"name\":{\"743\":{}},\"parent\":{}}],[\"specialstyle\",{\"_index\":158,\"name\":{\"368\":{}},\"parent\":{}}],[\"spinnable\",{\"_index\":23,\"name\":{\"23\":{},\"48\":{},\"214\":{},\"258\":{},\"316\":{}},\"parent\":{}}],[\"spinner\",{\"_index\":293,\"name\":{\"714\":{}},\"parent\":{}}],[\"sprite\",{\"_index\":685,\"name\":{\"1580\":{}},\"parent\":{}}],[\"spunout\",{\"_index\":219,\"name\":{\"469\":{}},\"parent\":{}}],[\"sr\",{\"_index\":906,\"name\":{\"1840\":{}},\"parent\":{}}],[\"srcalpha\",{\"_index\":521,\"name\":{\"1202\":{},\"1218\":{},\"1268\":{}},\"parent\":{}}],[\"srcalphasaturate\",{\"_index\":527,\"name\":{\"1208\":{},\"1224\":{},\"1269\":{}},\"parent\":{}}],[\"srccolor\",{\"_index\":519,\"name\":{\"1200\":{},\"1216\":{},\"1270\":{}},\"parent\":{}}],[\"ss\",{\"_index\":905,\"name\":{\"1839\":{}},\"parent\":{}}],[\"st\",{\"_index\":911,\"name\":{\"1845\":{}},\"parent\":{}}],[\"stackleniency\",{\"_index\":151,\"name\":{\"360\":{}},\"parent\":{}}],[\"starrating\",{\"_index\":52,\"name\":{\"62\":{},\"229\":{},\"268\":{},\"388\":{}},\"parent\":{}}],[\"startposition\",{\"_index\":323,\"name\":{\"754\":{},\"905\":{},\"1465\":{},\"1500\":{}},\"parent\":{}}],[\"starttime\",{\"_index\":69,\"name\":{\"82\":{},\"87\":{},\"122\":{},\"135\":{},\"148\":{},\"161\":{},\"176\":{},\"420\":{},\"744\":{},\"750\":{},\"764\":{},\"771\":{},\"793\":{},\"801\":{},\"931\":{},\"941\":{},\"959\":{},\"963\":{},\"983\":{},\"989\":{},\"1277\":{},\"1292\":{},\"1316\":{},\"1343\":{},\"1372\":{},\"1458\":{},\"1485\":{},\"1493\":{},\"1520\":{},\"1530\":{},\"1534\":{},\"1540\":{}},\"parent\":{}}],[\"startvalue\",{\"_index\":558,\"name\":{\"1279\":{},\"1318\":{}},\"parent\":{}}],[\"startx\",{\"_index\":325,\"name\":{\"756\":{},\"907\":{},\"918\":{},\"1472\":{},\"1507\":{}},\"parent\":{}}],[\"starty\",{\"_index\":326,\"name\":{\"757\":{},\"909\":{},\"921\":{},\"1473\":{},\"1508\":{}},\"parent\":{}}],[\"statistics\",{\"_index\":488,\"name\":{\"1078\":{},\"1122\":{},\"1135\":{},\"1173\":{}},\"parent\":{}}],[\"status\",{\"_index\":40,\"name\":{\"42\":{},\"208\":{},\"252\":{}},\"parent\":{}}],[\"storyboard\",{\"_index\":141,\"name\":{\"348\":{},\"1610\":{}},\"parent\":{\"1611\":{},\"1612\":{},\"1613\":{},\"1614\":{},\"1615\":{},\"1616\":{},\"1617\":{},\"1618\":{},\"1619\":{},\"1620\":{},\"1621\":{},\"1622\":{},\"1623\":{},\"1624\":{}}}],[\"storyboardanimation\",{\"_index\":632,\"name\":{\"1451\":{}},\"parent\":{\"1452\":{},\"1453\":{},\"1454\":{},\"1455\":{},\"1456\":{},\"1457\":{},\"1458\":{},\"1459\":{},\"1460\":{},\"1461\":{},\"1462\":{},\"1463\":{},\"1464\":{},\"1465\":{},\"1466\":{},\"1467\":{},\"1468\":{},\"1469\":{},\"1470\":{},\"1471\":{},\"1472\":{},\"1473\":{},\"1474\":{},\"1475\":{},\"1476\":{},\"1477\":{},\"1478\":{},\"1479\":{},\"1480\":{},\"1481\":{},\"1482\":{}}}],[\"storyboardcommand\",{\"_index\":688,\"name\":{\"1583\":{}},\"parent\":{}}],[\"storyboardlayer\",{\"_index\":710,\"name\":{\"1625\":{}},\"parent\":{\"1626\":{},\"1627\":{},\"1628\":{},\"1629\":{},\"1630\":{},\"1631\":{},\"1632\":{}}}],[\"storyboardsample\",{\"_index\":652,\"name\":{\"1483\":{}},\"parent\":{\"1484\":{},\"1485\":{},\"1486\":{},\"1487\":{},\"1488\":{}}}],[\"storyboardsprite\",{\"_index\":653,\"name\":{\"1489\":{}},\"parent\":{\"1490\":{},\"1491\":{},\"1492\":{},\"1493\":{},\"1494\":{},\"1495\":{},\"1496\":{},\"1497\":{},\"1498\":{},\"1499\":{},\"1500\":{},\"1501\":{},\"1502\":{},\"1503\":{},\"1504\":{},\"1505\":{},\"1506\":{},\"1507\":{},\"1508\":{},\"1509\":{},\"1510\":{},\"1511\":{},\"1512\":{},\"1513\":{},\"1514\":{},\"1515\":{},\"1516\":{},\"1517\":{}}}],[\"storyboardvideo\",{\"_index\":654,\"name\":{\"1518\":{}},\"parent\":{\"1519\":{},\"1520\":{},\"1521\":{},\"1522\":{}}}],[\"storyfireinfront\",{\"_index\":154,\"name\":{\"364\":{}},\"parent\":{}}],[\"straindecayskill\",{\"_index\":195,\"name\":{\"428\":{}},\"parent\":{\"429\":{},\"430\":{},\"431\":{},\"432\":{}}}],[\"strainskill\",{\"_index\":197,\"name\":{\"433\":{}},\"parent\":{\"434\":{},\"435\":{},\"436\":{},\"437\":{}}}],[\"subtract\",{\"_index\":511,\"name\":{\"1190\":{},\"1651\":{}},\"parent\":{}}],[\"suddendeath\",{\"_index\":212,\"name\":{\"462\":{},\"656\":{}},\"parent\":{\"657\":{},\"658\":{},\"659\":{},\"660\":{},\"661\":{},\"662\":{},\"663\":{},\"664\":{}}}],[\"suffix\",{\"_index\":378,\"name\":{\"854\":{}},\"parent\":{}}],[\"sv\",{\"_index\":786,\"name\":{\"1719\":{}},\"parent\":{}}],[\"sx\",{\"_index\":902,\"name\":{\"1836\":{}},\"parent\":{}}],[\"sy\",{\"_index\":901,\"name\":{\"1835\":{}},\"parent\":{}}],[\"system\",{\"_index\":246,\"name\":{\"497\":{}},\"parent\":{}}],[\"sz\",{\"_index\":900,\"name\":{\"1834\":{}},\"parent\":{}}],[\"tags\",{\"_index\":163,\"name\":{\"379\":{}},\"parent\":{}}],[\"tail\",{\"_index\":310,\"name\":{\"734\":{}},\"parent\":{}}],[\"target\",{\"_index\":230,\"name\":{\"480\":{}},\"parent\":{}}],[\"tc\",{\"_index\":957,\"name\":{\"1891\":{}},\"parent\":{}}],[\"td\",{\"_index\":956,\"name\":{\"1890\":{}},\"parent\":{}}],[\"tf\",{\"_index\":954,\"name\":{\"1888\":{}},\"parent\":{}}],[\"tg\",{\"_index\":955,\"name\":{\"1889\":{}},\"parent\":{}}],[\"th\",{\"_index\":953,\"name\":{\"1887\":{}},\"parent\":{}}],[\"thetaend\",{\"_index\":364,\"name\":{\"829\":{}},\"parent\":{}}],[\"thetarange\",{\"_index\":360,\"name\":{\"825\":{}},\"parent\":{}}],[\"thetastart\",{\"_index\":359,\"name\":{\"824\":{}},\"parent\":{}}],[\"tick\",{\"_index\":307,\"name\":{\"731\":{}},\"parent\":{}}],[\"tickdistance\",{\"_index\":335,\"name\":{\"781\":{}},\"parent\":{}}],[\"tickinterval\",{\"_index\":336,\"name\":{\"782\":{}},\"parent\":{}}],[\"tickrate\",{\"_index\":337,\"name\":{\"783\":{}},\"parent\":{}}],[\"time\",{\"_index\":171,\"name\":{\"396\":{}},\"parent\":{}}],[\"timeddifficultyattributes\",{\"_index\":170,\"name\":{\"394\":{}},\"parent\":{\"395\":{},\"396\":{},\"397\":{},\"398\":{}}}],[\"timelinegroup\",{\"_index\":639,\"name\":{\"1462\":{},\"1497\":{},\"1525\":{}},\"parent\":{}}],[\"timelines\",{\"_index\":577,\"name\":{\"1306\":{},\"1337\":{},\"1366\":{}},\"parent\":{}}],[\"timelinezoom\",{\"_index\":137,\"name\":{\"342\":{}},\"parent\":{}}],[\"timesignature\",{\"_index\":105,\"name\":{\"154\":{},\"171\":{}},\"parent\":{\"172\":{},\"173\":{}}}],[\"timingpoint\",{\"_index\":103,\"name\":{\"149\":{},\"163\":{}},\"parent\":{\"150\":{},\"151\":{},\"152\":{},\"153\":{},\"154\":{},\"155\":{},\"156\":{},\"157\":{},\"158\":{},\"159\":{},\"160\":{},\"161\":{}}}],[\"timingpointat\",{\"_index\":85,\"name\":{\"102\":{}},\"parent\":{}}],[\"timingpoints\",{\"_index\":79,\"name\":{\"96\":{}},\"parent\":{}}],[\"title\",{\"_index\":41,\"name\":{\"43\":{},\"209\":{},\"253\":{},\"374\":{}},\"parent\":{}}],[\"titleunicode\",{\"_index\":165,\"name\":{\"382\":{}},\"parent\":{}}],[\"tj\",{\"_index\":768,\"name\":{\"1701\":{}},\"parent\":{}}],[\"tk\",{\"_index\":770,\"name\":{\"1703\":{}},\"parent\":{}}],[\"tl\",{\"_index\":765,\"name\":{\"1698\":{}},\"parent\":{}}],[\"tm\",{\"_index\":767,\"name\":{\"1700\":{}},\"parent\":{}}],[\"tn\",{\"_index\":793,\"name\":{\"1726\":{}},\"parent\":{}}],[\"to\",{\"_index\":948,\"name\":{\"1882\":{}},\"parent\":{}}],[\"tobitwise\",{\"_index\":283,\"name\":{\"693\":{}},\"parent\":{}}],[\"tojson\",{\"_index\":60,\"name\":{\"71\":{},\"235\":{},\"245\":{},\"692\":{},\"1048\":{},\"1100\":{},\"1131\":{},\"1172\":{},\"1926\":{},\"1936\":{},\"2042\":{}},\"parent\":{}}],[\"tolegacy\",{\"_index\":439,\"name\":{\"988\":{}},\"parent\":{}}],[\"topcentre\",{\"_index\":666,\"name\":{\"1552\":{},\"1600\":{}},\"parent\":{}}],[\"topleft\",{\"_index\":665,\"name\":{\"1551\":{},\"1595\":{}},\"parent\":{}}],[\"topright\",{\"_index\":667,\"name\":{\"1553\":{},\"1598\":{}},\"parent\":{}}],[\"tostring\",{\"_index\":282,\"name\":{\"691\":{},\"1642\":{},\"1667\":{},\"2001\":{},\"2084\":{}},\"parent\":{}}],[\"totalbreaktime\",{\"_index\":20,\"name\":{\"20\":{},\"198\":{},\"288\":{},\"313\":{}},\"parent\":{}}],[\"totalcommands\",{\"_index\":578,\"name\":{\"1307\":{},\"1338\":{},\"1367\":{}},\"parent\":{}}],[\"totalhits\",{\"_index\":58,\"name\":{\"68\":{},\"216\":{},\"244\":{},\"1099\":{},\"1130\":{},\"1142\":{},\"1180\":{},\"1949\":{},\"1983\":{},\"2027\":{}},\"parent\":{}}],[\"totaliterations\",{\"_index\":566,\"name\":{\"1291\":{}},\"parent\":{}}],[\"totallength\",{\"_index\":16,\"name\":{\"16\":{},\"309\":{}},\"parent\":{}}],[\"totalperformance\",{\"_index\":169,\"name\":{\"393\":{},\"1085\":{},\"1109\":{},\"1154\":{},\"1946\":{},\"1973\":{},\"2017\":{}},\"parent\":{}}],[\"totalscore\",{\"_index\":491,\"name\":{\"1083\":{},\"1107\":{},\"1153\":{},\"1944\":{},\"1979\":{},\"2023\":{}},\"parent\":{}}],[\"touchdevice\",{\"_index\":209,\"name\":{\"459\":{}},\"parent\":{}}],[\"tr\",{\"_index\":944,\"name\":{\"1878\":{}},\"parent\":{}}],[\"trigger\",{\"_index\":680,\"name\":{\"1574\":{}},\"parent\":{}}],[\"triggerendtime\",{\"_index\":590,\"name\":{\"1352\":{}},\"parent\":{}}],[\"triggername\",{\"_index\":588,\"name\":{\"1350\":{}},\"parent\":{}}],[\"triggers\",{\"_index\":641,\"name\":{\"1464\":{},\"1499\":{},\"1527\":{}},\"parent\":{}}],[\"triggerstarttime\",{\"_index\":589,\"name\":{\"1351\":{}},\"parent\":{}}],[\"tt\",{\"_index\":943,\"name\":{\"1877\":{}},\"parent\":{}}],[\"tv\",{\"_index\":941,\"name\":{\"1875\":{}},\"parent\":{}}],[\"tw\",{\"_index\":942,\"name\":{\"1876\":{}},\"parent\":{}}],[\"type\",{\"_index\":252,\"name\":{\"503\":{},\"512\":{},\"521\":{},\"530\":{},\"539\":{},\"548\":{},\"557\":{},\"567\":{},\"577\":{},\"586\":{},\"596\":{},\"606\":{},\"616\":{},\"625\":{},\"634\":{},\"643\":{},\"652\":{},\"661\":{},\"700\":{},\"833\":{},\"1274\":{},\"1288\":{},\"1349\":{}},\"parent\":{}}],[\"tz\",{\"_index\":856,\"name\":{\"1789\":{}},\"parent\":{}}],[\"ua\",{\"_index\":981,\"name\":{\"1917\":{}},\"parent\":{}}],[\"ug\",{\"_index\":855,\"name\":{\"1788\":{}},\"parent\":{}}],[\"um\",{\"_index\":937,\"name\":{\"1871\":{}},\"parent\":{}}],[\"unknown\",{\"_index\":736,\"name\":{\"1669\":{}},\"parent\":{}}],[\"unrollcommands\",{\"_index\":567,\"name\":{\"1294\":{},\"1354\":{}},\"parent\":{}}],[\"updatecommands\",{\"_index\":648,\"name\":{\"1479\":{},\"1514\":{},\"1528\":{}},\"parent\":{}}],[\"updatedat\",{\"_index\":56,\"name\":{\"66\":{},\"233\":{},\"240\":{},\"1929\":{},\"1934\":{}},\"parent\":{}}],[\"us\",{\"_index\":934,\"name\":{\"1868\":{}},\"parent\":{}}],[\"userid\",{\"_index\":495,\"name\":{\"1090\":{},\"1118\":{},\"1165\":{}},\"parent\":{}}],[\"userinfo\",{\"_index\":1014,\"name\":{\"2009\":{}},\"parent\":{\"2010\":{},\"2011\":{},\"2012\":{},\"2013\":{},\"2014\":{},\"2015\":{},\"2016\":{},\"2017\":{},\"2018\":{},\"2019\":{},\"2020\":{},\"2021\":{},\"2022\":{},\"2023\":{},\"2024\":{},\"2025\":{},\"2026\":{},\"2027\":{},\"2028\":{},\"2029\":{},\"2030\":{},\"2031\":{},\"2032\":{},\"2033\":{},\"2034\":{},\"2035\":{},\"2036\":{},\"2037\":{},\"2038\":{},\"2039\":{},\"2040\":{},\"2041\":{},\"2042\":{}}}],[\"username\",{\"_index\":494,\"name\":{\"1089\":{},\"1117\":{},\"1164\":{},\"1948\":{},\"1969\":{},\"2013\":{}},\"parent\":{}}],[\"useskinsprites\",{\"_index\":155,\"name\":{\"365\":{},\"1614\":{}},\"parent\":{}}],[\"uy\",{\"_index\":935,\"name\":{\"1869\":{}},\"parent\":{}}],[\"uz\",{\"_index\":839,\"name\":{\"1772\":{}},\"parent\":{}}],[\"va\",{\"_index\":959,\"name\":{\"1893\":{}},\"parent\":{}}],[\"variables\",{\"_index\":700,\"name\":{\"1612\":{}},\"parent\":{}}],[\"vc\",{\"_index\":960,\"name\":{\"1894\":{}},\"parent\":{}}],[\"ve\",{\"_index\":801,\"name\":{\"1734\":{}},\"parent\":{}}],[\"vector2\",{\"_index\":721,\"name\":{\"1643\":{}},\"parent\":{\"1644\":{},\"1645\":{},\"1646\":{},\"1647\":{},\"1648\":{},\"1649\":{},\"1650\":{},\"1651\":{},\"1652\":{},\"1653\":{},\"1654\":{},\"1655\":{},\"1656\":{},\"1657\":{},\"1658\":{},\"1659\":{},\"1660\":{},\"1661\":{},\"1662\":{},\"1663\":{},\"1664\":{},\"1665\":{},\"1666\":{},\"1667\":{}}}],[\"vectorscale\",{\"_index\":570,\"name\":{\"1298\":{},\"1329\":{},\"1358\":{},\"1567\":{}},\"parent\":{}}],[\"velocity\",{\"_index\":338,\"name\":{\"784\":{}},\"parent\":{}}],[\"version\",{\"_index\":43,\"name\":{\"45\":{},\"211\":{},\"255\":{},\"377\":{}},\"parent\":{}}],[\"verticalflip\",{\"_index\":699,\"name\":{\"1608\":{}},\"parent\":{}}],[\"vg\",{\"_index\":930,\"name\":{\"1864\":{}},\"parent\":{}}],[\"vi\",{\"_index\":966,\"name\":{\"1900\":{}},\"parent\":{}}],[\"video\",{\"_index\":682,\"name\":{\"1577\":{},\"1590\":{}},\"parent\":{}}],[\"visiblewhenfailing\",{\"_index\":714,\"name\":{\"1631\":{}},\"parent\":{}}],[\"visiblewhenpassing\",{\"_index\":713,\"name\":{\"1630\":{}},\"parent\":{}}],[\"vn\",{\"_index\":825,\"name\":{\"1758\":{}},\"parent\":{}}],[\"volume\",{\"_index\":102,\"name\":{\"142\":{},\"855\":{},\"862\":{},\"1486\":{}},\"parent\":{}}],[\"vu\",{\"_index\":871,\"name\":{\"1805\":{}},\"parent\":{}}],[\"wf\",{\"_index\":743,\"name\":{\"1676\":{}},\"parent\":{}}],[\"whistle\",{\"_index\":287,\"name\":{\"707\":{}},\"parent\":{}}],[\"widescreenstoryboard\",{\"_index\":159,\"name\":{\"369\":{}},\"parent\":{}}],[\"windowfor\",{\"_index\":483,\"name\":{\"1056\":{}},\"parent\":{}}],[\"ws\",{\"_index\":755,\"name\":{\"1688\":{}},\"parent\":{}}],[\"x\",{\"_index\":475,\"name\":{\"1042\":{},\"1295\":{},\"1326\":{},\"1355\":{},\"1645\":{}},\"parent\":{}}],[\"x0\",{\"_index\":661,\"name\":{\"1547\":{}},\"parent\":{}}],[\"x1\",{\"_index\":662,\"name\":{\"1548\":{}},\"parent\":{}}],[\"x2\",{\"_index\":663,\"name\":{\"1549\":{}},\"parent\":{}}],[\"xh\",{\"_index\":476,\"name\":{\"1043\":{}},\"parent\":{}}],[\"xk\",{\"_index\":881,\"name\":{\"1815\":{}},\"parent\":{}}],[\"y\",{\"_index\":568,\"name\":{\"1296\":{},\"1327\":{},\"1356\":{},\"1646\":{}},\"parent\":{}}],[\"y0\",{\"_index\":658,\"name\":{\"1544\":{}},\"parent\":{}}],[\"y1\",{\"_index\":659,\"name\":{\"1545\":{}},\"parent\":{}}],[\"y2\",{\"_index\":660,\"name\":{\"1546\":{}},\"parent\":{}}],[\"ye\",{\"_index\":932,\"name\":{\"1866\":{}},\"parent\":{}}],[\"yt\",{\"_index\":936,\"name\":{\"1870\":{}},\"parent\":{}}],[\"za\",{\"_index\":822,\"name\":{\"1755\":{}},\"parent\":{}}],[\"zero\",{\"_index\":518,\"name\":{\"1199\":{},\"1215\":{},\"1271\":{}},\"parent\":{}}],[\"zm\",{\"_index\":818,\"name\":{\"1751\":{}},\"parent\":{}}],[\"zw\",{\"_index\":829,\"name\":{\"1762\":{}},\"parent\":{}}]],\"pipeline\":[]}}"); \ No newline at end of file diff --git a/docs/assets/style.css b/docs/assets/style.css index ff48819..6127b27 100644 --- a/docs/assets/style.css +++ b/docs/assets/style.css @@ -152,6 +152,15 @@ body.dark { --external-icon: var(--dark-external-icon); } +h1, +h2, +h3, +h4, +h5, +h6 { + line-height: 1.2; +} + h1 { font-size: 2em; margin: 0.67em 0; @@ -641,6 +650,10 @@ footer { border-top: 1px solid var(--color-panel-divider); background-color: var(--color-panel); } +footer:after { + content: ""; + display: table; +} footer.with-border-bottom { border-bottom: 1px solid var(--color-panel-divider); } @@ -753,12 +766,13 @@ footer .tsd-legend { .tsd-flag { display: inline-block; - padding: 1px 5px; + padding: 0.25em 0.4em; border-radius: 4px; color: var(--color-comment-tag-text); background-color: var(--color-comment-tag); text-indent: 0; - font-size: 14px; + font-size: 75%; + line-height: 1; font-weight: normal; } @@ -1382,3 +1396,19 @@ input[type="checkbox"]:checked + .tsd-widget:before { img { max-width: 100%; } + +.tsd-anchor-icon { + margin-left: 10px; + vertical-align: middle; + color: var(--color-text); +} + +.tsd-anchor-icon svg { + width: 1em; + height: 1em; + visibility: hidden; +} + +.tsd-anchor-link:hover > .tsd-anchor-icon svg { + visibility: visible; +} diff --git a/docs/classes/Autoplay.html b/docs/classes/Autoplay.html index f6d5495..9e6a57f 100644 --- a/docs/classes/Autoplay.html +++ b/docs/classes/Autoplay.html @@ -1,15 +1,15 @@ -Autoplay | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Autoplay

Hierarchy

  • Autoplay

Implements

Index

Constructors

constructor

Properties

acronym

acronym: string = 'AT'
+Autoplay | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Autoplay Abstract

Hierarchy

  • Autoplay

Implements

Index

Constructors

Properties

acronym: string = 'AT'

The shortened name of this mod.

-

bitwise

bitwise: ModBitwise = ModBitwise.Autoplay
+
bitwise: ModBitwise = ModBitwise.Autoplay

Bitwise number of this mod.

-

incompatibles

incompatibles: ModBitwise = ...
+
incompatibles: ModBitwise = ...

Incompatible mods.

-

isRanked

isRanked: boolean = false
+
isRanked: boolean = false

Returns if this mod is ranked.

-

multiplier

multiplier: number = 1
+
multiplier: number = 1

The score multiplier of this mod.

-

name

name: string = 'Autoplay'
+
name: string = 'Autoplay'

The name of this mod.

-

type

type: ModType = ModType.Automation
+
type: ModType = ModType.Automation

The type of this mod.

-

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/Beatmap.html b/docs/classes/Beatmap.html index 62f6401..49241a5 100644 --- a/docs/classes/Beatmap.html +++ b/docs/classes/Beatmap.html @@ -1,50 +1,54 @@ -Beatmap | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Beatmap

+Beatmap | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Beatmap

A parsed beatmap.

-

Hierarchy

Implements

Index

Constructors

constructor

Properties

Optional base

base?: IBeatmap
+

Hierarchy

Implements

Index

Constructors

Properties

base?: IBeatmap

The optional link to the base beatmap. -Base beatmap prefered for beatmap convertation.

-

colors

colors: BeatmapColorSection = ...
+Base beatmap is preferrable for beatmap converters.

+
colors: BeatmapColorSection = ...

Beatmap skin configuration.

-

controlPoints

controlPoints: ControlPointInfo = ...
+
controlPoints: ControlPointInfo = ...

Beatmap control points.

-

difficulty

difficulty: BeatmapDifficultySection = ...
+
difficulty: BeatmapDifficultySection = ...

Beatmap difficulty.

-

editor

editor: BeatmapEditorSection = ...
+
editor: BeatmapEditorSection = ...

Beatmap editor settings.

-

events

events: BeatmapEventSection = ...
+
events: BeatmapEventSection = ...

Beatmap events & Storyboard.

-

fileFormat

fileFormat: number = 14
+
fileFormat: number = 14

Beatmap file version.

-

fileUpdateDate

fileUpdateDate: Date = ...
+
fileUpdateDate: Date = ...

The date when the beatmap file was updated last time.

-

general

general: BeatmapGeneralSection = ...
+
general: BeatmapGeneralSection = ...

Beatmap general info.

-

hitObjects

hitObjects: HitObject[] = []
+
hitObjects: HitObject[] = []

Beatmap hit objects.

-

metadata

metadata: BeatmapMetadataSection = ...
+
metadata: BeatmapMetadataSection = ...

Beatmap metadata.

-

originalMode

originalMode: number = 0
+
originalMode: number = 0

Original gamemode of a beatmap before any conversions.

-

Accessors

bpm

  • get bpm(): number

Accessors

  • get bpm(): number

bpmMax

  • get bpmMax(): number
  • get bpmMax(): number

bpmMin

  • get bpmMin(): number
  • get bpmMin(): number

bpmMode

  • get bpmMode(): number

length

  • get length(): number
  • get hittable(): number
  • get holdable(): number
  • get length(): number

mode

  • get mode(): number
  • get mode(): number

totalBreakTime

  • get totalBreakTime(): number
  • get slidable(): number
  • get spinnable(): number
  • get totalBreakTime(): number

totalLength

  • get totalLength(): number
  • get totalLength(): number

Methods

clone

Methods

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/BeatmapBreakEvent.html b/docs/classes/BeatmapBreakEvent.html index 572795f..621ccb2 100644 --- a/docs/classes/BeatmapBreakEvent.html +++ b/docs/classes/BeatmapBreakEvent.html @@ -1,19 +1,19 @@ -BeatmapBreakEvent | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class BeatmapBreakEvent

+BeatmapBreakEvent | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class BeatmapBreakEvent

A beatmap break event.

-

Hierarchy

  • BeatmapBreakEvent

Index

Constructors

Properties

Accessors

Methods

Constructors

constructor

Hierarchy

  • BeatmapBreakEvent

Index

Constructors

Properties

Accessors

Methods

Constructors

Properties

endTime

endTime: number
+

Returns BeatmapBreakEvent

Properties

endTime: number

The time at which break event ends.

-

startTime

startTime: number
+
startTime: number

The time at which break event starts.

-

Accessors

duration

  • get duration(): number

Accessors

  • get duration(): number

hasEffect

  • get hasEffect(): boolean

Methods

contains

  • contains(time: number): boolean
  • get hasEffect(): boolean

Methods

  • contains(time: number): boolean

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/BeatmapColorSection.html b/docs/classes/BeatmapColorSection.html index 104e675..6b37174 100644 --- a/docs/classes/BeatmapColorSection.html +++ b/docs/classes/BeatmapColorSection.html @@ -1,13 +1,13 @@ -BeatmapColorSection | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class BeatmapColorSection

+BeatmapColorSection | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class BeatmapColorSection

A beatmap colors section.

-

Hierarchy

  • BeatmapColorSection

Index

Constructors

constructor

Properties

comboColors

comboColors: Color4[] = []
+

Hierarchy

  • BeatmapColorSection

Index

Constructors

Properties

comboColors: Color4[] = []

Additive combo colors.

-

Optional sliderBorderColor

sliderBorderColor?: Color4
+
sliderBorderColor?: Color4

Slider border color.

-

Optional sliderTrackColor

sliderTrackColor?: Color4
+
sliderTrackColor?: Color4

Additive slider track color.

-

Methods

clone

Methods

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/BeatmapConverter.html b/docs/classes/BeatmapConverter.html index 5ea63fb..cf4516e 100644 --- a/docs/classes/BeatmapConverter.html +++ b/docs/classes/BeatmapConverter.html @@ -1,6 +1,6 @@ -BeatmapConverter | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class BeatmapConverter

+BeatmapConverter | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class BeatmapConverter Abstract

A beatmap converter.

-

Hierarchy

  • BeatmapConverter

Index

Constructors

constructor

Methods

Abstract canConvert

convertBeatmap

Hierarchy

  • BeatmapConverter

Index

Constructors

Methods

Abstract convertHitObjects

Abstract createBeatmap

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/BeatmapDifficultySection.html b/docs/classes/BeatmapDifficultySection.html index 703b706..3b39dc8 100644 --- a/docs/classes/BeatmapDifficultySection.html +++ b/docs/classes/BeatmapDifficultySection.html @@ -1,39 +1,39 @@ -BeatmapDifficultySection | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class BeatmapDifficultySection

Hierarchy

  • BeatmapDifficultySection

Index

Constructors

constructor

Properties

Static BASE_DIFFICULTY

BASE_DIFFICULTY: number = 5
+BeatmapDifficultySection | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class BeatmapDifficultySection

Hierarchy

  • BeatmapDifficultySection

Index

Constructors

Properties

BASE_DIFFICULTY: number = 5

The default value used for all difficulty settings except slider multiplier and slider tickrate.

-

Accessors

approachRate

  • get approachRate(): number
  • set approachRate(value: number): void

Accessors

  • get approachRate(): number
  • set approachRate(value: number): void

circleSize

  • get circleSize(): number
  • set circleSize(value: number): void
  • get circleSize(): number
  • set circleSize(value: number): void

clockRate

  • get clockRate(): number
  • set clockRate(value: number): void
  • get clockRate(): number
  • set clockRate(value: number): void

drainRate

  • get drainRate(): number
  • set drainRate(value: number): void
  • get drainRate(): number
  • set drainRate(value: number): void

overallDifficulty

  • get overallDifficulty(): number
  • set overallDifficulty(value: number): void
  • get overallDifficulty(): number
  • set overallDifficulty(value: number): void

sliderMultiplier

  • get sliderMultiplier(): number
  • set sliderMultiplier(value: number): void
  • get sliderMultiplier(): number
  • set sliderMultiplier(value: number): void

sliderTickRate

  • get sliderTickRate(): number
  • set sliderTickRate(value: number): void
  • get sliderTickRate(): number
  • set sliderTickRate(value: number): void

Methods

clone

Methods

Static range

  • range(diff: number, min: number, mid: number, max: number): number
  • range(diff: number, min: number, mid: number, max: number): number
  • Maps a difficulty value [0, 10] to a two-piece linear range of values.

    Parameters

    • diff: number

      The difficulty value to be mapped.

      @@ -44,4 +44,4 @@
    • max: number

      Maximum of the resulting range which will be achieved by a difficulty value of 10.

    Returns number

    Value to which the difficulty value maps in the specified range.

    -

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/BeatmapEditorSection.html b/docs/classes/BeatmapEditorSection.html index ac77cb1..9064046 100644 --- a/docs/classes/BeatmapEditorSection.html +++ b/docs/classes/BeatmapEditorSection.html @@ -1,17 +1,17 @@ -BeatmapEditorSection | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class BeatmapEditorSection

+BeatmapEditorSection | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class BeatmapEditorSection

A beatmap editor section.

-

Hierarchy

  • BeatmapEditorSection

Index

Constructors

constructor

Properties

beatDivisor

beatDivisor: number = 4
+

Hierarchy

  • BeatmapEditorSection

Index

Constructors

Properties

beatDivisor: number = 4

Beat snap divisor.

-

bookmarks

bookmarks: number[] = []
+
bookmarks: number[] = []

Time in milliseconds of bookmarks.

-

distanceSpacing

distanceSpacing: number = 1
+
distanceSpacing: number = 1

Distance snap multiplier.

-

gridSize

gridSize: number = 1
+
gridSize: number = 1

Grid size.

-

timelineZoom

timelineZoom: number = 2
+
timelineZoom: number = 2

Scale factor for the object timeline.

-

Methods

clone

Methods

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/BeatmapEventSection.html b/docs/classes/BeatmapEventSection.html index b92a63a..400d390 100644 --- a/docs/classes/BeatmapEventSection.html +++ b/docs/classes/BeatmapEventSection.html @@ -1,15 +1,15 @@ -BeatmapEventSection | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class BeatmapEventSection

+BeatmapEventSection | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class BeatmapEventSection

A beatmap events section.

-

Hierarchy

  • BeatmapEventSection

Index

Constructors

constructor

Properties

backgroundPath

backgroundPath: null | string = null
+

Hierarchy

  • BeatmapEventSection

Index

Constructors

Properties

backgroundPath: null | string = null

A beatmap background file path.

-

breaks

breaks: BeatmapBreakEvent[] = []
+
breaks: BeatmapBreakEvent[] = []

List of beatmap break events.

-

storyboard

storyboard: null | Storyboard = null
+
storyboard: null | Storyboard = null

A beatmap storyboard.

-

Accessors

isBackgroundReplaced

  • get isBackgroundReplaced(): boolean

Accessors

  • get isBackgroundReplaced(): boolean

Methods

clone

Methods

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/BeatmapGeneralSection.html b/docs/classes/BeatmapGeneralSection.html index d4b1506..ea2fd42 100644 --- a/docs/classes/BeatmapGeneralSection.html +++ b/docs/classes/BeatmapGeneralSection.html @@ -1,48 +1,48 @@ -BeatmapGeneralSection | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class BeatmapGeneralSection

+BeatmapGeneralSection | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class BeatmapGeneralSection

A beatmap general section.

-

Hierarchy

  • BeatmapGeneralSection

Index

Constructors

constructor

Properties

Optional alwaysShowPlayfield

alwaysShowPlayfield?: boolean
deprecated

audioFilename

audioFilename: string = ''
+

Hierarchy

  • BeatmapGeneralSection

Index

Constructors

Properties

alwaysShowPlayfield?: boolean
deprecated
audioFilename: string = ''

Location of the audio file relative to the current folder.

-

Optional audioHash

audioHash?: string
deprecated

audioLeadIn

audioLeadIn: number = 0
+
audioHash?: string
deprecated
audioLeadIn: number = 0

Milliseconds of silence before the audio starts playing.

-

countdown

countdown: number = 1
+
countdown: number = 1

Speed of the countdown before the first hit object. 0 = no countdown. 1 = normal. 2 = half. 3 = double.

-

countdownOffset

countdownOffset: number = 0
+
countdownOffset: number = 0

Time in beats that the countdown starts before the first hit object.

-

epilepsyWarning

epilepsyWarning: boolean = false
+
epilepsyWarning: boolean = false

Whether or not a warning about flashing colors should be shown at the beginning of the map.

-

letterboxInBreaks

letterboxInBreaks: boolean = false
+
letterboxInBreaks: boolean = false

Whether or not breaks have a letterboxing effect.

-

overlayPosition

overlayPosition: string = 'NoChange'
+
overlayPosition: string = 'NoChange'

Draw order of hit circle overlays compared to hit numbers. NoChange = use skin setting. Below = draw overlays under numbers. Above = draw overlays on top of numbers.

-

previewTime

previewTime: number = -1
+
previewTime: number = -1

Time in milliseconds when the audio preview should start.

-

sampleSet

sampleSet: SampleSet = SampleSet.Normal
+
sampleSet: SampleSet = SampleSet.Normal

Sample set that will be used if timing points do not override it (Normal, Soft, Drum).

-

samplesMatchPlaybackRate

samplesMatchPlaybackRate: boolean = false
+
samplesMatchPlaybackRate: boolean = false

Whether or not sound samples will change rate when playing with speed-changing mods.

-

skinPreference

skinPreference: string = ''
+
skinPreference: string = ''

Preferred skin to use during gameplay.

-

specialStyle

specialStyle: boolean = false
+
specialStyle: boolean = false

Whether or not the "N+1" style key layout is used for osu!mania.

-

stackLeniency

stackLeniency: number = 0.7
+
stackLeniency: number = 0.7

Multiplier for the threshold in time where hit objects placed close together stack (0–1).

-

Optional storyFireInFront

storyFireInFront?: boolean
deprecated

useSkinSprites

useSkinSprites: boolean = false
+
storyFireInFront?: boolean
deprecated
useSkinSprites: boolean = false

Whether or not the storyboard can use the user's skin images.

-

widescreenStoryboard

widescreenStoryboard: boolean = false
+
widescreenStoryboard: boolean = false

Whether or not the storyboard allows widescreen viewing.

-

Methods

clone

Methods

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/BeatmapInfo.html b/docs/classes/BeatmapInfo.html index 03fa63b..6d61672 100644 --- a/docs/classes/BeatmapInfo.html +++ b/docs/classes/BeatmapInfo.html @@ -1,92 +1,97 @@ -BeatmapInfo | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class BeatmapInfo

+BeatmapInfo | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class BeatmapInfo

A beatmap information.

-

Hierarchy

  • BeatmapInfo

Implements

Index

Constructors

constructor

Hierarchy

  • BeatmapInfo

Implements

Index

Constructors

Properties

approachRate

approachRate: number = 0
+

Returns BeatmapInfo

Properties

approachRate: number = 0

Approach rate of the beatmap.

-

artist

artist: string = 'Unknown artist'
+
artist: string = 'Unknown artist'

The beatmap artist.

-

beatmapsetId

beatmapsetId: number = 0
+
beatmapsetId: number = 0

ID of beatmapset of this beatmap.

-

bpmMax

bpmMax: number = 0
+
bpm: number = 0
+

The most common BPM of a beatmap.

+
bpmMax: number = 0

Maximal BPM of a beatmap.

-

bpmMin

bpmMin: number = 0
+
bpmMin: number = 0

Minimal BPM of a beatmap.

-

bpmMode

bpmMode: number = 0
-

The most common BPM of a beatmap.

-

circleSize

circleSize: number = 0
+
circleSize: number = 0

Circle size of the beatmap.

-

creator

creator: string = ''
+
creator: string = ''

The beatmap creator username.

-

creatorId

creatorId: number = 0
+
creatorId: number = 0

The beatmap creator ID.

-

deletedAt

deletedAt: null | Date = null
+
deletedAt: null | Date = null

The date of the beatmap deletion.

-

drainRate

drainRate: number = 0
+
drainRate: number = 0

HP drain rate of the beatmap.

-

favourites

favourites: number = 0
+
favourites: number = 0

Number of the beatmap favourites.

-

hittable

hittable: number = 0
+
hashMD5: string = ''
+

Beatmap MD5 hash.

+
hittable: number = 0

Number of hittable objects of the beatmap.

-

holdable

holdable: number = 0
+
holdable: number = 0

Number of holdable objects of the beatmap.

-

id

id: number = 0
+
id: number = 0

The beatmap ID.

-

isConvert

isConvert: boolean = false
+
isConvert: boolean = false

If this beatmap info is for converted beatmap.

-

length

length: number = 0
+
length: number = 0

Length of the beatmap in seconds.

-

maxCombo

maxCombo: number = 0
+
maxCombo: number = 0

Max combo of the beatmap.

-

md5

md5: string = ''
-

Beatmap MD5 hash.

-

overallDifficulty

overallDifficulty: number = 0
+
overallDifficulty: number = 0

Overall difficulty of the beatmap.

-

passcount

passcount: number = 0
+
passcount: number = 0

Number of passes of the beatmap.

-

playcount

playcount: number = 0
+
playcount: number = 0

Number of playcount of the beatmap.

-

slidable

slidable: number = 0
+
slidable: number = 0

Number of slidable objects of the beatmap.

-

spinnable

spinnable: number = 0
+
spinnable: number = 0

Number of spinnable objects of the beatmap.

-

starRating

starRating: number = 0
+
starRating: number = 0

Total star rating of the beatmap.

-

status

status: number = -2
+
status: number = -2

Rank status of the beatmap (Graveyard, Loved, Ranked...)

-

title

title: string = 'Unknown title'
+
title: string = 'Unknown title'

The beatmap title.

-

updatedAt

updatedAt: null | Date = null
+
updatedAt: null | Date = null

The date of the last beatmap update.

-

version

version: string = 'Normal'
+
version: string = 'Normal'

Difficulty name of the beatmap.

-

Accessors

mods

Accessors

rawMods

  • get rawMods(): string | number
  • set rawMods(value: string | number): void
  • get rawMods(): string | number
  • set rawMods(value: string | number): void

ruleset

rulesetId

  • get rulesetId(): number
  • set rulesetId(value: number): void
  • get rulesetId(): number
  • set rulesetId(value: number): void

totalHits

  • get totalHits(): number
  • get totalHits(): number

Methods

clone

Methods

equals

toJSON

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/BeatmapMetadataSection.html b/docs/classes/BeatmapMetadataSection.html index 05db644..c953aec 100644 --- a/docs/classes/BeatmapMetadataSection.html +++ b/docs/classes/BeatmapMetadataSection.html @@ -1,23 +1,23 @@ -BeatmapMetadataSection | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class BeatmapMetadataSection

+BeatmapMetadataSection | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class BeatmapMetadataSection

A beatmap metadata section.

-

Hierarchy

  • BeatmapMetadataSection

Index

Constructors

constructor

Properties

artist

artist: string = 'Unknown Artist'
+

Hierarchy

  • BeatmapMetadataSection

Index

Constructors

Properties

artist: string = 'Unknown Artist'

Romanised song artist.

-

beatmapId

beatmapId: number = 0
+
beatmapId: number = 0

Beatmap ID.

-

beatmapSetId

beatmapSetId: number = 0
+
beatmapSetId: number = 0

Beatmapset ID.

-

creator

creator: string = 'Unknown Creator'
+
creator: string = 'Unknown Creator'

Beatmap creator.

-

source

source: string = ''
+
source: string = ''

Original media the song was produced for.

-

tags

tags: string[] = []
+
tags: string[] = []

Search terms.

-

title

title: string = 'Unknown Title'
+
title: string = 'Unknown Title'

Romanised song title.

-

version

version: string = 'Normal'
+
version: string = 'Normal'

Difficulty name.

-

Accessors

artistUnicode

  • get artistUnicode(): string
  • set artistUnicode(value: string): void

titleUnicode

  • get titleUnicode(): string
  • set titleUnicode(value: string): void

Methods

clone

Accessors

  • get artistUnicode(): string
  • set artistUnicode(value: string): void
  • get titleUnicode(): string
  • set titleUnicode(value: string): void

Methods

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/BeatmapProcessor.html b/docs/classes/BeatmapProcessor.html index fdcc682..e1bf6d0 100644 --- a/docs/classes/BeatmapProcessor.html +++ b/docs/classes/BeatmapProcessor.html @@ -1,13 +1,13 @@ -BeatmapProcessor | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class BeatmapProcessor

+BeatmapProcessor | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class BeatmapProcessor Abstract

A beatmap processor.

-

Hierarchy

  • BeatmapProcessor

Index

Constructors

constructor

Methods

postProcess

Hierarchy

  • BeatmapProcessor

Index

Constructors

Methods

preProcess

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/BlendingParameters.html b/docs/classes/BlendingParameters.html index df07fdb..84eff21 100644 --- a/docs/classes/BlendingParameters.html +++ b/docs/classes/BlendingParameters.html @@ -1,35 +1,35 @@ -BlendingParameters | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class BlendingParameters

+BlendingParameters | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class BlendingParameters

Contains information about how a drawable should be blended into its destination.

-

Hierarchy

  • BlendingParameters

Index

Constructors

constructor

Properties

alphaEquation

alphaEquation: BlendingEquation
+

Hierarchy

  • BlendingParameters

Index

Constructors

Properties

alphaEquation: BlendingEquation

Gets or sets the blending equation to use for the alpha component of the blend.

-

destination

destination: BlendingType
+
destination: BlendingType

The blending factor for the destination color of the blend.

-

destinationAlpha

destinationAlpha: BlendingType
+
destinationAlpha: BlendingType

The blending factor for the destination alpha of the blend.

-

rgbEquation

rgbEquation: BlendingEquation
+
rgbEquation: BlendingEquation

Gets or sets the blending equation to use for the RGB components of the blend.

-

source

source: BlendingType
+
source: BlendingType

The blending factor for the source color of the blend.

-

sourceAlpha

sourceAlpha: BlendingType
+
sourceAlpha: BlendingType

The blending factor for the source alpha of the blend.

-

Static Additive

Additive: BlendingParameters = ...

Static Inherit

Inherit: BlendingParameters = ...

Static Mixture

Mixture: BlendingParameters = ...

Static None

None: BlendingParameters = ...

Accessors

alphaEquationMode

Additive: BlendingParameters = ...
Inherit: BlendingParameters = ...
Mixture: BlendingParameters = ...
None: BlendingParameters = ...

Accessors

destinationAlphaBlendingFactor

destinationBlendingFactor

isDisabled

  • get isDisabled(): boolean

rgbEquationMode

  • get isDisabled(): boolean

sourceAlphaBlendingFactor

sourceBlendingFactor

Methods

applyDefaultToInherited

  • applyDefaultToInherited(): void

Methods

  • applyDefaultToInherited(): void

copyFromParent

equals

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Returns void

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/Cinema.html b/docs/classes/Cinema.html index c7aca4c..6aa3fdc 100644 --- a/docs/classes/Cinema.html +++ b/docs/classes/Cinema.html @@ -1,15 +1,15 @@ -Cinema | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Cinema

Hierarchy

  • Cinema

Implements

Index

Constructors

constructor

Properties

acronym

acronym: string = 'CN'
+Cinema | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Cinema Abstract

Hierarchy

  • Cinema

Implements

Index

Constructors

Properties

acronym: string = 'CN'

The shortened name of this mod.

-

bitwise

bitwise: ModBitwise = ModBitwise.Cinema
+
bitwise: ModBitwise = ModBitwise.Cinema

Bitwise number of this mod.

-

incompatibles

incompatibles: ModBitwise = ...
+
incompatibles: ModBitwise = ...

Incompatible mods.

-

isRanked

isRanked: boolean = false
+
isRanked: boolean = false

Returns if this mod is ranked.

-

multiplier

multiplier: number = 1
+
multiplier: number = 1

The score multiplier of this mod.

-

name

name: string = 'Cinema'
+
name: string = 'Cinema'

The name of this mod.

-

type

type: ModType = ModType.Fun
+
type: ModType = ModType.Fun

The type of this mod.

-

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/CircularArcProperties.html b/docs/classes/CircularArcProperties.html index 8981240..93e1a55 100644 --- a/docs/classes/CircularArcProperties.html +++ b/docs/classes/CircularArcProperties.html @@ -1,15 +1,15 @@ -CircularArcProperties | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class CircularArcProperties

+CircularArcProperties | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class CircularArcProperties

The properties for approximation of the circular arc.

-

Hierarchy

  • CircularArcProperties

Index

Constructors

constructor

  • new CircularArcProperties(thetaStart?: number, thetaRange?: number, direction?: number, radius?: number, centre?: Vector2): CircularArcProperties

Properties

Readonly centre

centre: Vector2
+

Hierarchy

  • CircularArcProperties

Index

Constructors

  • new CircularArcProperties(thetaStart?: number, thetaRange?: number, direction?: number, radius?: number, centre?: Vector2): CircularArcProperties

Properties

centre: Vector2

The centre position of a circle.

-

Readonly direction

direction: number
+
direction: number

The direction in which the circle will be drawn.

-

Readonly isValid

isValid: boolean
+
isValid: boolean

Whether the properties are valid.

-

Readonly radius

radius: number
+
radius: number

The radius of a circle.

-

Readonly thetaRange

thetaRange: number
+
thetaRange: number

The angle of the drawn circle.

-

Readonly thetaStart

thetaStart: number
+
thetaStart: number

Starting angle of the circle.

-

Accessors

thetaEnd

  • get thetaEnd(): number

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Accessors

  • get thetaEnd(): number

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/Color4.html b/docs/classes/Color4.html index 169b240..7084dc6 100644 --- a/docs/classes/Color4.html +++ b/docs/classes/Color4.html @@ -1,6 +1,6 @@ -Color4 | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Color4

+Color4 | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Color4

A color that supports RGBA format.

-

Hierarchy

  • Color4

Index

Constructors

Properties

Accessors

Methods

Constructors

constructor

  • new Color4(red?: number, green?: number, blue?: number, alpha?: number): Color4

Hierarchy

  • Color4

Index

Constructors

Properties

Accessors

Methods

Constructors

  • new Color4(red?: number, green?: number, blue?: number, alpha?: number): Color4
  • Creates a new color.

    Parameters

    • Optional red: number

      Red value of the color in range from 0 to 255.

      @@ -10,25 +10,25 @@

      Blue value of the color in range from 0 to 255.

    • Optional alpha: number

      Alpha value of the color in range from 0 to 1.

      -

    Returns Color4

Properties

alpha

alpha: number
+

Returns Color4

Properties

alpha: number

The alpha value of the color in range from 0 to 1.

default

1

-

blue

blue: number
+
blue: number

The blue value of the color in range from 0 to 255.

default

255

-

green

green: number
+
green: number

The green value of the color in range from 0 to 255.

default

255

-

red

red: number
+
red: number

The red value of the color in range from 0 to 255.

default

255

-

Accessors

hex

  • get hex(): string

Accessors

  • get hex(): string

Methods

clone

Methods

equals

  • equals(color: Color4): boolean
  • equals(color: Color4): boolean

toString

  • toString(): string

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +
  • toString(): string

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/Command.html b/docs/classes/Command.html index 4ac152c..c789bfd 100644 --- a/docs/classes/Command.html +++ b/docs/classes/Command.html @@ -1,37 +1,37 @@ -Command | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Command<T>

+Command | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Command<T>

A storyboard command.

-

Type parameters

  • T = any

Hierarchy

  • Command

Index

Constructors

constructor

Properties

easing

easing: EasingType
+

Type Parameters

  • T = any

Hierarchy

  • Command

Index

Constructors

Properties

easing: EasingType

The easing of the storyboard command.

-

endTime

endTime: number
+
endTime: number

The time at which the command ends.

-

endValue

endValue: T
+
endValue: T

Ending value of this command.

-

parameter

parameter: ParameterType
+
parameter: ParameterType

Command type.

-

startTime

startTime: number
+
startTime: number

The time at which the command starts.

-

startValue

startValue: T
+
startValue: T

Starting value of this command.

-

type

+

Command type.

-

Accessors

duration

  • get duration(): number

Accessors

  • get duration(): number

Methods

equals

Methods

getProgress

  • getProgress(time: number): number
  • getProgress(time: number): number
  • Calculates the progress of this command.

    Parameters

    • time: number

      Current time in milliseconds.

    Returns number

    Progress of this command in range from 0 to 1.

    -

getValueAtProgress

  • getValueAtProgress(progress: number): T
  • getValueAtProgress(progress: number): T
  • Calculates the value of this command at a given progress.

    Parameters

    • progress: number

      Current progress in range from 0 to 1.

    Returns T

    Calculated value.

    -

getValueAtTime

  • getValueAtTime(time: number): T
  • getValueAtTime(time: number): T
  • Calculates the value of this command at a given momemnt of time.

    Parameters

    • time: number

      Current time in milliseconds.

    Returns T

    Calculated value.

    -

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/CommandLoop.html b/docs/classes/CommandLoop.html index 461bbdc..f20de97 100644 --- a/docs/classes/CommandLoop.html +++ b/docs/classes/CommandLoop.html @@ -1,21 +1,21 @@ -CommandLoop | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class CommandLoop

+CommandLoop | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class CommandLoop

A storyboard command loop.

-

Hierarchy

Index

Constructors

constructor

  • new CommandLoop(loopStartTime?: number, loopCount?: number): CommandLoop

Hierarchy

Index

Constructors

  • new CommandLoop(loopStartTime?: number, loopCount?: number): CommandLoop

Properties

Readonly _timelines

_timelines: CommandTimeline<any>[]

alpha

alpha: CommandTimeline<number> = ...

blendingParameters

blendingParameters: CommandTimeline<BlendingParameters> = ...

color

color: CommandTimeline<Color4> = ...

flipH

flipH: CommandTimeline<boolean> = ...

flipV

flipV: CommandTimeline<boolean> = ...

loopCount

loopCount: number
+

Returns CommandLoop

Properties

_timelines: CommandTimeline<any>[]
alpha: CommandTimeline<number> = ...
blendingParameters: CommandTimeline<BlendingParameters> = ...
color: CommandTimeline<Color4> = ...
flipH: CommandTimeline<boolean> = ...
flipV: CommandTimeline<boolean> = ...
loopCount: number

The total number of repeats.

-

loopStartTime

loopStartTime: number
+
loopStartTime: number

The start time of the loop.

-

rotation

rotation: CommandTimeline<number> = ...

scale

scale: CommandTimeline<number> = ...

type

type: CompoundType = CompoundType.Loop
+
rotation: CommandTimeline<number> = ...
scale: CommandTimeline<number> = ...
type: CompoundType = CompoundType.Loop

Compound type.

-

vectorScale

vectorScale: CommandTimeline<Vector2> = ...

x

x: CommandTimeline<number> = ...

y

y: CommandTimeline<number> = ...

Accessors

commands

commandsDuration

  • get commandsDuration(): number

commandsEndTime

  • get commandsEndTime(): number

commandsStartTime

  • get commandsStartTime(): number

duration

  • get duration(): number

endTime

  • get endTime(): number
vectorScale: CommandTimeline<Vector2> = ...
x: CommandTimeline<number> = ...
y: CommandTimeline<number> = ...

Accessors

  • get commandsDuration(): number
  • get commandsEndTime(): number
  • get commandsStartTime(): number
  • get duration(): number
  • get endTime(): number

hasCommands

  • get hasCommands(): boolean

startTime

  • get startTime(): number
  • get hasCommands(): boolean
  • get startTime(): number

timelines

totalCommands

  • get totalCommands(): number

totalIterations

  • get totalIterations(): number
  • get totalCommands(): number
  • get totalIterations(): number

Methods

unrollCommands

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Returns number

Methods

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/CommandTimeline.html b/docs/classes/CommandTimeline.html index fff6676..4f07b65 100644 --- a/docs/classes/CommandTimeline.html +++ b/docs/classes/CommandTimeline.html @@ -1,5 +1,5 @@ -CommandTimeline | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class CommandTimeline<T>

+CommandTimeline | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class CommandTimeline<T>

A storyboard command timeline.

-

Type parameters

  • T = any

Hierarchy

  • CommandTimeline

Implements

Index

Constructors

constructor

Properties

endTime

endTime: number = -Infinity

endValue

endValue: T

startTime

startTime: number = Infinity

startValue

startValue: T

Accessors

commands

Type Parameters

  • T = any

Hierarchy

  • CommandTimeline

Implements

Index

Constructors

Properties

endTime: number = -Infinity
endValue: T
startTime: number = Infinity
startValue: T

Accessors

hasCommands

  • get hasCommands(): boolean

Methods

[Symbol.iterator]

  • [Symbol.iterator](): Iterator<Command<T>, any, undefined>

add

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Returns Command<T>[]

  • get hasCommands(): boolean

Methods

  • [iterator](): Iterator<Command<T>, any, undefined>

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/CommandTimelineGroup.html b/docs/classes/CommandTimelineGroup.html index d840511..582e8cf 100644 --- a/docs/classes/CommandTimelineGroup.html +++ b/docs/classes/CommandTimelineGroup.html @@ -1,3 +1,3 @@ -CommandTimelineGroup | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class CommandTimelineGroup

+CommandTimelineGroup | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class CommandTimelineGroup

A command timeline group.

-

Hierarchy

Index

Constructors

constructor

Properties

Readonly _timelines

_timelines: CommandTimeline<any>[]

alpha

alpha: CommandTimeline<number> = ...

blendingParameters

blendingParameters: CommandTimeline<BlendingParameters> = ...

color

color: CommandTimeline<Color4> = ...

flipH

flipH: CommandTimeline<boolean> = ...

flipV

flipV: CommandTimeline<boolean> = ...

rotation

rotation: CommandTimeline<number> = ...

scale

scale: CommandTimeline<number> = ...

vectorScale

vectorScale: CommandTimeline<Vector2> = ...

x

x: CommandTimeline<number> = ...

y

y: CommandTimeline<number> = ...

Accessors

commands

commandsDuration

  • get commandsDuration(): number

commandsEndTime

  • get commandsEndTime(): number

commandsStartTime

  • get commandsStartTime(): number

duration

  • get duration(): number

endTime

  • get endTime(): number

hasCommands

  • get hasCommands(): boolean

startTime

  • get startTime(): number

timelines

totalCommands

  • get totalCommands(): number

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Hierarchy

Index

Constructors

Properties

_timelines: CommandTimeline<any>[]
alpha: CommandTimeline<number> = ...
blendingParameters: CommandTimeline<BlendingParameters> = ...
color: CommandTimeline<Color4> = ...
flipH: CommandTimeline<boolean> = ...
flipV: CommandTimeline<boolean> = ...
rotation: CommandTimeline<number> = ...
scale: CommandTimeline<number> = ...
vectorScale: CommandTimeline<Vector2> = ...
x: CommandTimeline<number> = ...
y: CommandTimeline<number> = ...

Accessors

  • get commandsDuration(): number
  • get commandsEndTime(): number
  • get commandsStartTime(): number
  • get duration(): number
  • get endTime(): number
  • get hasCommands(): boolean
  • get startTime(): number
  • get totalCommands(): number

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/CommandTrigger.html b/docs/classes/CommandTrigger.html index 631809d..fc79d28 100644 --- a/docs/classes/CommandTrigger.html +++ b/docs/classes/CommandTrigger.html @@ -1,4 +1,4 @@ -CommandTrigger | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class CommandTrigger

Hierarchy

Index

Constructors

constructor

  • new CommandTrigger(triggerName?: string, startTime?: number, endTime?: number, groupNumber?: number): CommandTrigger

Returns CommandTrigger

Properties

_timelines: CommandTimeline<any>[]
alpha: CommandTimeline<number> = ...
blendingParameters: CommandTimeline<BlendingParameters> = ...
color: CommandTimeline<Color4> = ...
flipH: CommandTimeline<boolean> = ...
flipV: CommandTimeline<boolean> = ...
groupNumber: number

The group of the command trigger.

-

rotation

rotation: CommandTimeline<number> = ...

scale

scale: CommandTimeline<number> = ...

triggerEndTime

triggerEndTime: number
+
rotation: CommandTimeline<number> = ...
scale: CommandTimeline<number> = ...
triggerEndTime: number

The end time of the command trigger.

-

triggerName

triggerName: string
+
triggerName: string

The name of the trigger.

-

triggerStartTime

triggerStartTime: number
+
triggerStartTime: number

The start time of the command trigger.

-

type

type: CompoundType = CompoundType.Trigger
+
type: CompoundType = CompoundType.Trigger

Compound type.

-

vectorScale

vectorScale: CommandTimeline<Vector2> = ...

x

x: CommandTimeline<number> = ...

y

y: CommandTimeline<number> = ...

Accessors

commands

commandsDuration

  • get commandsDuration(): number

commandsEndTime

  • get commandsEndTime(): number

commandsStartTime

  • get commandsStartTime(): number

duration

  • get duration(): number

endTime

  • get endTime(): number

hasCommands

  • get hasCommands(): boolean

startTime

  • get startTime(): number

timelines

totalCommands

  • get totalCommands(): number

Methods

unrollCommands

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +
vectorScale: CommandTimeline<Vector2> = ...
x: CommandTimeline<number> = ...
y: CommandTimeline<number> = ...

Accessors

  • get commandsDuration(): number
  • get commandsEndTime(): number
  • get commandsStartTime(): number
  • get duration(): number
  • get endTime(): number
  • get hasCommands(): boolean
  • get startTime(): number
  • get totalCommands(): number

Methods

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/ControlPoint.html b/docs/classes/ControlPoint.html index b336f0e..dbb2d33 100644 --- a/docs/classes/ControlPoint.html +++ b/docs/classes/ControlPoint.html @@ -1,17 +1,17 @@ -ControlPoint | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class ControlPoint

+ControlPoint | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class ControlPoint Abstract

A control point of a beatmap.

-

Hierarchy

Index

Constructors

constructor

Hierarchy

Index

Constructors

Properties

group

group: null | ControlPointGroup
+

Returns ControlPoint

Properties

group: null | ControlPointGroup

The group to which a control point belongs.

-

Abstract pointType

pointType: ControlPointType

Accessors

startTime

  • get startTime(): number
pointType: ControlPointType

Accessors

  • get startTime(): number

Methods

attachGroup

Methods

dettachGroup

  • dettachGroup(): void

Returns void

  • dettachGroup(): void

Abstract isRedundant

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Returns void

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/ControlPointGroup.html b/docs/classes/ControlPointGroup.html index 75b2d33..32d97a7 100644 --- a/docs/classes/ControlPointGroup.html +++ b/docs/classes/ControlPointGroup.html @@ -1,19 +1,19 @@ -ControlPointGroup | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class ControlPointGroup

+ControlPointGroup | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class ControlPointGroup

A group of control points.

-

Hierarchy

  • ControlPointGroup

Index

Constructors

Properties

Methods

Constructors

constructor

Hierarchy

  • ControlPointGroup

Index

Constructors

Properties

Methods

Constructors

Properties

controlPoints

controlPoints: ControlPoint[] = []
+

Returns ControlPointGroup

Properties

controlPoints: ControlPoint[] = []

A list of control points.

-

startTime

startTime: number
+
startTime: number

The time at which group starts.

-

Methods

add

Methods

remove

Returns void

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Returns void

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/ControlPointInfo.html b/docs/classes/ControlPointInfo.html index 15b2f12..da24a3d 100644 --- a/docs/classes/ControlPointInfo.html +++ b/docs/classes/ControlPointInfo.html @@ -1,60 +1,60 @@ -ControlPointInfo | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class ControlPointInfo

+ControlPointInfo | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class ControlPointInfo

The information about control points.

-

Hierarchy

  • ControlPointInfo

Index

Constructors

constructor

Properties

difficultyPoints

difficultyPoints: DifficultyPoint[] = []
+

Hierarchy

  • ControlPointInfo

Index

Constructors

Properties

difficultyPoints: DifficultyPoint[] = []

All difficulty points.

-

effectPoints

effectPoints: EffectPoint[] = []
+
effectPoints: EffectPoint[] = []

All effect points.

-

groups

groups: ControlPointGroup[] = []
+
groups: ControlPointGroup[] = []

All groups of control points.

-

samplePoints

samplePoints: SamplePoint[] = []
+
samplePoints: SamplePoint[] = []

All sample points.

-

timingPoints

timingPoints: TimingPoint[] = []
+
timingPoints: TimingPoint[] = []

All timing points.

-

Accessors

allPoints

Accessors

Methods

add

Methods

checkAlreadyExisting

  • checkAlreadyExisting(time: number, newPoint: ControlPoint): boolean

clear

  • clear(): void
  • checkAlreadyExisting(time: number, newPoint: ControlPoint): boolean
  • clear(): void

clone

difficultyPointAt

effectPointAt

getCurrentList

groupAt

remove

samplePointAt

timingPointAt

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/DifficultyAttributes.html b/docs/classes/DifficultyAttributes.html index fcfd564..82e949e 100644 --- a/docs/classes/DifficultyAttributes.html +++ b/docs/classes/DifficultyAttributes.html @@ -1,15 +1,15 @@ -DifficultyAttributes | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class DifficultyAttributes

+DifficultyAttributes | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class DifficultyAttributes Abstract

Describes the difficulty of a beatmap, as output by a difficulty calculator.

-

Hierarchy

  • DifficultyAttributes

Index

Constructors

Properties

Constructors

constructor

Hierarchy

  • DifficultyAttributes

Index

Constructors

Properties

Constructors

Properties

maxCombo

maxCombo: number = 0
+

Returns DifficultyAttributes

Properties

maxCombo: number = 0

The maximum achievable combo.

-

mods

+

The mods which were applied to the beatmap.

-

starRating

starRating: number
+
starRating: number

The combined star rating of all skill.

-

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/DifficultyCalculator.html b/docs/classes/DifficultyCalculator.html index f6b0c00..8c63e59 100644 --- a/docs/classes/DifficultyCalculator.html +++ b/docs/classes/DifficultyCalculator.html @@ -1,30 +1,30 @@ -DifficultyCalculator | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class DifficultyCalculator<T>

Type parameters

Hierarchy

  • DifficultyCalculator

Index

Constructors

constructor

Accessors

difficultyMods

  • get difficultyMods(): IMod[]

Methods

calculate

  • calculate(clockRate?: number): T

calculateWithMods

  • Calculates the difficulty of the beatmap using a specific mod combination.

    Parameters

    • mods: ModCombination

      The mods that should be applied to the beatmap.

    • Optional clockRate: number

      Custom clock rate for the difficulty calculation.

    Returns T

    A structure describing the difficulty of the beatmap.

    -

calculateWithModsAt

  • calculateWithModsAt(mods: ModCombination, objectCount?: number, clockRate?: number): T
  • calculateWithModsAt(mods: ModCombination, objectCount?: number, clockRate?: number): T
  • Calculates the difficulty of the beatmap with applied mods at a sepcific object count.

    Parameters

    • mods: ModCombination

      The mods that should be applied to the beatmap.

      @@ -49,4 +49,4 @@
    • Optional clockRate: number

      Custom clock rate for the difficulty calculation.

    Returns T

    Difficulty attributes at the specific object count.

    -

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/DifficultyHitObject.html b/docs/classes/DifficultyHitObject.html index cef4f3e..8eabdd9 100644 --- a/docs/classes/DifficultyHitObject.html +++ b/docs/classes/DifficultyHitObject.html @@ -1,6 +1,6 @@ -DifficultyHitObject | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class DifficultyHitObject

+DifficultyHitObject | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class DifficultyHitObject

Wraps a hit object and provides additional information to be used for difficulty calculation.

-

Hierarchy

  • DifficultyHitObject

Index

Constructors

constructor

Hierarchy

  • DifficultyHitObject

Index

Constructors

Properties

Readonly baseObject

baseObject: IHitObject
+

Returns DifficultyHitObject

Properties

baseObject: IHitObject

The IHitObject this DifficultyHitObject wraps.

-

Readonly deltaTime

deltaTime: number
+
deltaTime: number

Amount of time elapsed between baseObject and lastObject, adjusted by clockrate.

-

Readonly endTime

endTime: number
+
endTime: number

Clockrate adjusted end time of baseObject.

-

index

index: number
+
index: number

The index of this DifficultyHitObject in the list of all DifficultyHitObjects.

-

Readonly lastObject

lastObject: IHitObject
+
lastObject: IHitObject

The last hit object which occurs before IHitObject.

-

Readonly startTime

startTime: number
+
startTime: number

Clockrate adjusted start time of baseObject.

-

Methods

next

previous

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Methods

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/DifficultyPoint.html b/docs/classes/DifficultyPoint.html index 4cf5421..e12df27 100644 --- a/docs/classes/DifficultyPoint.html +++ b/docs/classes/DifficultyPoint.html @@ -1,40 +1,43 @@ -DifficultyPoint | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class DifficultyPoint

+DifficultyPoint | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class DifficultyPoint

A difficulty point.

-

Hierarchy

Index

Constructors

constructor

Hierarchy

Index

Constructors

Properties

bpmMultiplier

bpmMultiplier: number = 1
+

Returns DifficultyPoint

Properties

bpmMultiplier: number = 1

Legacy BPM multiplier that introduces floating-point errors for rulesets that depend on it. DO NOT USE THIS UNLESS 100% SURE.

-

generateTicks

generateTicks: boolean = true
+
generateTicks: boolean = true

Whether or not slider ticks should be generated at this control point. This exists for backwards compatibility with maps that abuse NaN slider velocity behavior on osu!stable (e.g. /b/2628991).

-

group

group: null | ControlPointGroup
+
group: null | ControlPointGroup

The group to which a control point belongs.

-

isLegacy

isLegacy: boolean = false
+
isLegacy: boolean = false

Indicates whether this difficulty control point should be considered as legacy or not.

-

pointType

pointType: ControlPointType = ControlPointType.DifficultyPoint
+
pointType: ControlPointType = ControlPointType.DifficultyPoint

The type of a difficulty point.

-

Static default

default: DifficultyPoint = ...
+
default: DifficultyPoint = ...

The default instance of a difficulty point.

-

Accessors

sliderVelocity

  • get sliderVelocity(): number
  • set sliderVelocity(value: number): void

Accessors

  • get sliderVelocity(): number
  • set sliderVelocity(value: number): void

startTime

  • get startTime(): number
  • get startTime(): number

Methods

attachGroup

Methods

dettachGroup

  • dettachGroup(): void

Returns void

  • dettachGroup(): void

isRedundant

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/DifficultyRange.html b/docs/classes/DifficultyRange.html index 125b6a7..2377f71 100644 --- a/docs/classes/DifficultyRange.html +++ b/docs/classes/DifficultyRange.html @@ -1,4 +1,4 @@ -DifficultyRange | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class DifficultyRange

Hierarchy

  • DifficultyRange

Index

Constructors

Properties

Methods

Constructors

constructor

Properties

average

average: number

max

max: number

min

min: number

Readonly result

result: HitResult

Methods

Static map

  • map(difficulty: number, min: number, mid: number, max: number): number

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/DoubleTime.html b/docs/classes/DoubleTime.html index a0cad28..dd084b1 100644 --- a/docs/classes/DoubleTime.html +++ b/docs/classes/DoubleTime.html @@ -1,17 +1,17 @@ -DoubleTime | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class DoubleTime

Hierarchy

Implements

Index

Constructors

constructor

Properties

acronym

acronym: string = 'DT'
+DoubleTime | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class DoubleTime Abstract

Hierarchy

Implements

Index

Constructors

Properties

acronym: string = 'DT'

The shortened name of this mod.

-

bitwise

bitwise: ModBitwise = ModBitwise.DoubleTime
+
bitwise: ModBitwise = ModBitwise.DoubleTime

Bitwise number of this mod.

-

incompatibles

incompatibles: ModBitwise = ...
+
incompatibles: ModBitwise = ...

Incompatible mods.

-

isRanked

isRanked: boolean = true
+
isRanked: boolean = true

Returns if this mod is ranked.

-

multiplier

multiplier: number = 1.12
+
multiplier: number = 1.12

The score multiplier of this mod.

-

name

name: string = 'Double Time'
+
name: string = 'Double Time'

The name of this mod.

-

type

type: ModType = ModType.DifficultyIncrease
+
type: ModType = ModType.DifficultyIncrease

The type of this mod.

-

Methods

applyToDifficulty

Methods

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Parameters

Returns void

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/Easy.html b/docs/classes/Easy.html index 4085a7a..16f6df2 100644 --- a/docs/classes/Easy.html +++ b/docs/classes/Easy.html @@ -1,17 +1,17 @@ -Easy | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Easy

Hierarchy

  • Easy

Implements

Index

Constructors

constructor

Properties

acronym

acronym: string = 'EZ'
+Easy | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Easy Abstract

Hierarchy

  • Easy

Implements

Index

Constructors

Properties

acronym: string = 'EZ'

The shortened name of this mod.

-

bitwise

bitwise: ModBitwise = ModBitwise.Easy
+
bitwise: ModBitwise = ModBitwise.Easy

Bitwise number of this mod.

-

incompatibles

incompatibles: ModBitwise = ModBitwise.HardRock
+
incompatibles: ModBitwise = ModBitwise.HardRock

Incompatible mods.

-

isRanked

isRanked: boolean = true
+
isRanked: boolean = true

Returns if this mod is ranked.

-

multiplier

multiplier: number = 0.5
+
multiplier: number = 0.5

The score multiplier of this mod.

-

name

name: string = 'Easy'
+
name: string = 'Easy'

The name of this mod.

-

type

type: ModType = ModType.DifficultyReduction
+
type: ModType = ModType.DifficultyReduction

The type of this mod.

-

Methods

applyToDifficulty

Methods

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Parameters

Returns void

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/EffectPoint.html b/docs/classes/EffectPoint.html index 6c34851..a158f63 100644 --- a/docs/classes/EffectPoint.html +++ b/docs/classes/EffectPoint.html @@ -1,30 +1,33 @@ -EffectPoint | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class EffectPoint

+EffectPoint | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class EffectPoint

An effect point.

-

Hierarchy

Index

Constructors

constructor

Hierarchy

Index

Constructors

Properties

group

group: null | ControlPointGroup
+

Returns EffectPoint

Properties

group: null | ControlPointGroup

The group to which a control point belongs.

-

kiai

kiai: boolean = false
+
kiai: boolean = false

Whether this control point enables kiai mode.

-

omitFirstBarLine

omitFirstBarLine: boolean = false
+
omitFirstBarLine: boolean = false

Whether the first bar line of this control point is ignored.

-

pointType

pointType: ControlPointType = ControlPointType.EffectPoint
+
pointType: ControlPointType = ControlPointType.EffectPoint

The type of an effect point.

-

Static default

default: EffectPoint = ...
+
default: EffectPoint = ...

The default instance of an effect point.

-

Accessors

scrollSpeed

  • get scrollSpeed(): number
  • set scrollSpeed(value: number): void

startTime

  • get startTime(): number

Accessors

  • get scrollSpeed(): number
  • set scrollSpeed(value: number): void
  • get startTime(): number

Methods

attachGroup

Methods

dettachGroup

  • dettachGroup(): void

Returns void

  • dettachGroup(): void

isRedundant

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/EventGenerator.html b/docs/classes/EventGenerator.html index e8335af..a088776 100644 --- a/docs/classes/EventGenerator.html +++ b/docs/classes/EventGenerator.html @@ -1,12 +1,12 @@ -EventGenerator | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class EventGenerator

+EventGenerator | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class EventGenerator Abstract

A tick generator for end time objects.

-

Hierarchy

  • EventGenerator

Index

Constructors

Properties

Methods

Constructors

constructor

Properties

Static SLIDER_MAX_DISTANCE

SLIDER_MAX_DISTANCE: number = 100000
+

Hierarchy

  • EventGenerator

Index

Constructors

Properties

Methods

Constructors

Properties

SLIDER_MAX_DISTANCE: number = 100000

A very lenient maximum distance of a slider for ticks to be generated. This exists for edge cases such as /b/1573664 where the beatmap has been edited by the user, and should never be reached in normal usage.

-

Methods

Static generate

Methods

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Returns Generator<ISliderEventDescriptor, any, unknown>

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/FastRandom.html b/docs/classes/FastRandom.html index b295606..b0282ea 100644 --- a/docs/classes/FastRandom.html +++ b/docs/classes/FastRandom.html @@ -1,18 +1,18 @@ -FastRandom | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class FastRandom

Hierarchy

  • FastRandom

Index

Constructors

constructor

Properties

INT_MASK: number = ...
INT_TO_REAL: number = ...
MAX_INT32: number = 2147483647
MAX_UINT32: number = 4294967295

Methods

  • next(): number
  • Generates a random unsigned integer within the range [0, MAX_UINT32).

    Returns number

    The random value.

    -

nextBool

  • nextBool(): boolean
  • nextBool(): boolean
  • Generates a random boolean value. Cached such that a random value is only generated once in every 32 calls.

    Returns boolean

    The random value.

    -

nextDouble

  • nextDouble(): number
  • nextDouble(): number

nextInt

  • nextInt(lowerBound?: number, upperBound?: number): number
  • nextInt(lowerBound?: number, upperBound?: number): number
  • Generates a random integer value within the range [lowerBound, upperBound).

    Parameters

    • lowerBound: number = 0
      @@ -20,7 +20,7 @@
    • upperBound: number = FastRandom.MAX_INT32

      The upper bound of the range.

    Returns number

    The random integer value.

    -

nextUInt

  • nextUInt(lowerBound?: number, upperBound?: number): number
  • nextUInt(lowerBound?: number, upperBound?: number): number
  • Generates a random unsigned integer value within the range [lowerBound, upperBound).

    Parameters

    • lowerBound: number = 0
      @@ -28,4 +28,4 @@
    • upperBound: number = FastRandom.MAX_INT32

      The upper bound of the range.

    Returns number

    The random integer value.

    -

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/Flashlight.html b/docs/classes/Flashlight.html index b391674..18338cd 100644 --- a/docs/classes/Flashlight.html +++ b/docs/classes/Flashlight.html @@ -1,15 +1,15 @@ -Flashlight | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Flashlight

Hierarchy

  • Flashlight

Implements

Index

Constructors

constructor

Properties

acronym

acronym: string = 'FL'
+Flashlight | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Flashlight Abstract

Hierarchy

  • Flashlight

Implements

Index

Constructors

Properties

acronym: string = 'FL'

The shortened name of this mod.

-

bitwise

bitwise: ModBitwise = ModBitwise.Flashlight
+
bitwise: ModBitwise = ModBitwise.Flashlight

Bitwise number of this mod.

-

incompatibles

incompatibles: ModBitwise = ModBitwise.None
+
incompatibles: ModBitwise = ModBitwise.None

Incompatible mods.

-

isRanked

isRanked: boolean = true
+
isRanked: boolean = true

Returns if this mod is ranked.

-

multiplier

multiplier: number = 1.12
+
multiplier: number = 1.12

The score multiplier of this mod.

-

name

name: string = 'Flashlight'
+
name: string = 'Flashlight'

The name of this mod.

-

type

type: ModType = ModType.DifficultyIncrease
+
type: ModType = ModType.DifficultyIncrease

The type of this mod.

-

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/Grades.html b/docs/classes/Grades.html new file mode 100644 index 0000000..c495583 --- /dev/null +++ b/docs/classes/Grades.html @@ -0,0 +1,13 @@ +Grades | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Grades

+

A special case of a map structure for storing the number of user's grades.

+

Hierarchy

Index

Constructors

Accessors

Methods

Constructors

  • new Grades(entries?: null | readonly (readonly ["F" | "D" | "C" | "B" | "A" | "S" | "SH" | "X" | "XH", number])[]): Grades
  • new Grades(iterable?: null | Iterable<readonly ["F" | "D" | "C" | "B" | "A" | "S" | "SH" | "X" | "XH", number]>): Grades
  • Parameters

    • Optional entries: null | readonly (readonly ["F" | "D" | "C" | "B" | "A" | "S" | "SH" | "X" | "XH", number])[]

    Returns Grades

  • Parameters

    • Optional iterable: null | Iterable<readonly ["F" | "D" | "C" | "B" | "A" | "S" | "SH" | "X" | "XH", number]>

    Returns Grades

Accessors

  • get hasZeroGrades(): boolean

Methods

  • get(key: "F" | "D" | "C" | "B" | "A" | "S" | "SH" | "X" | "XH"): number
  • +

    Gets the number of grades by their type. +If grade is not present sets it to default value and returns it.

    +

    Parameters

    • key: "F" | "D" | "C" | "B" | "A" | "S" | "SH" | "X" | "XH"
      +

      Score rank type.

      +

    Returns number

    The number of grades of this type.

    +
  • toJSON(): Partial<Record<"F" | "D" | "C" | "B" | "A" | "S" | "SH" | "X" | "XH", number>>
  • +

    Converts this map to a readable JSON format.

    +

    Returns Partial<Record<"F" | "D" | "C" | "B" | "A" | "S" | "SH" | "X" | "XH", number>>

  • fromJSON(json: Partial<Record<"F" | "D" | "C" | "B" | "A" | "S" | "SH" | "X" | "XH", number>>): Grades
  • Parameters

    • json: Partial<Record<"F" | "D" | "C" | "B" | "A" | "S" | "SH" | "X" | "XH", number>>

    Returns Grades

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/HalfTime.html b/docs/classes/HalfTime.html index bc47e78..9a31622 100644 --- a/docs/classes/HalfTime.html +++ b/docs/classes/HalfTime.html @@ -1,17 +1,17 @@ -HalfTime | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class HalfTime

Hierarchy

  • HalfTime

Implements

Index

Constructors

constructor

Properties

acronym

acronym: string = 'HT'
+HalfTime | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class HalfTime Abstract

Hierarchy

  • HalfTime

Implements

Index

Constructors

Properties

acronym: string = 'HT'

The shortened name of this mod.

-

bitwise

bitwise: ModBitwise = ModBitwise.HalfTime
+
bitwise: ModBitwise = ModBitwise.HalfTime

Bitwise number of this mod.

-

incompatibles

incompatibles: ModBitwise = ...
+
incompatibles: ModBitwise = ...

Incompatible mods.

-

isRanked

isRanked: boolean = true
+
isRanked: boolean = true

Returns if this mod is ranked.

-

multiplier

multiplier: number = 0.3
+
multiplier: number = 0.3

The score multiplier of this mod.

-

name

name: string = 'Half Time'
+
name: string = 'Half Time'

The name of this mod.

-

type

type: ModType = ModType.DifficultyReduction
+
type: ModType = ModType.DifficultyReduction

The type of this mod.

-

Methods

applyToDifficulty

Methods

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Parameters

Returns void

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/HardRock.html b/docs/classes/HardRock.html index 046b739..3048a67 100644 --- a/docs/classes/HardRock.html +++ b/docs/classes/HardRock.html @@ -1,17 +1,17 @@ -HardRock | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class HardRock

Hierarchy

  • HardRock

Implements

Index

Constructors

constructor

Properties

acronym

acronym: string = 'HR'
+HardRock | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class HardRock Abstract

Hierarchy

  • HardRock

Implements

Index

Constructors

Properties

acronym: string = 'HR'

The shortened name of this mod.

-

bitwise

bitwise: ModBitwise = ModBitwise.HardRock
+
bitwise: ModBitwise = ModBitwise.HardRock

Bitwise number of this mod.

-

incompatibles

incompatibles: ModBitwise = ModBitwise.Easy
+
incompatibles: ModBitwise = ModBitwise.Easy

Incompatible mods.

-

isRanked

isRanked: boolean = true
+
isRanked: boolean = true

Returns if this mod is ranked.

-

multiplier

multiplier: number = 1.06
+
multiplier: number = 1.06

The score multiplier of this mod.

-

name

name: string = 'Hard Rock'
+
name: string = 'Hard Rock'

The name of this mod.

-

type

type: ModType = ModType.DifficultyIncrease
+
type: ModType = ModType.DifficultyIncrease

The type of this mod.

-

Methods

applyToDifficulty

Methods

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Parameters

Returns void

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/Hidden.html b/docs/classes/Hidden.html index bfdb42a..e20a4a5 100644 --- a/docs/classes/Hidden.html +++ b/docs/classes/Hidden.html @@ -1,15 +1,15 @@ -Hidden | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Hidden

Hierarchy

  • Hidden

Implements

Index

Constructors

constructor

Properties

acronym

acronym: string = 'HD'
+Hidden | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Hidden Abstract

Hierarchy

  • Hidden

Implements

Index

Constructors

Properties

acronym: string = 'HD'

The shortened name of this mod.

-

bitwise

bitwise: ModBitwise = ModBitwise.Hidden
+
bitwise: ModBitwise = ModBitwise.Hidden

Bitwise number of this mod.

-

incompatibles

incompatibles: ModBitwise = ModBitwise.None
+
incompatibles: ModBitwise = ModBitwise.None

Incompatible mods.

-

isRanked

isRanked: boolean = true
+
isRanked: boolean = true

Returns if this mod is ranked.

-

multiplier

multiplier: number = 1.06
+
multiplier: number = 1.06

The score multiplier of this mod.

-

name

name: string = 'Hidden'
+
name: string = 'Hidden'

The name of this mod.

-

type

type: ModType = ModType.DifficultyIncrease
+
type: ModType = ModType.DifficultyIncrease

The type of this mod.

-

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/HighestRank.html b/docs/classes/HighestRank.html new file mode 100644 index 0000000..172dfba --- /dev/null +++ b/docs/classes/HighestRank.html @@ -0,0 +1,12 @@ +HighestRank | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class HighestRank

+

A class that represents highest rank of the user.

+

Hierarchy

  • HighestRank

Index

Constructors

Properties

Methods

Constructors

Properties

rank: number
+

Highest rank of the user.

+
updatedAt: Date
+

The date when highest rank was achieved.

+

Methods

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/HitObject.html b/docs/classes/HitObject.html index 1e7053c..9ae83c4 100644 --- a/docs/classes/HitObject.html +++ b/docs/classes/HitObject.html @@ -1,48 +1,48 @@ -HitObject | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class HitObject

+HitObject | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class HitObject Abstract

An object of a parsed beatmap.

-

Hierarchy

  • HitObject

Implements

Index

Constructors

constructor

Properties

hitSound

hitSound: HitSound = HitSound.Normal
+

Hierarchy

  • HitObject

Implements

Index

Constructors

Properties

hitSound: HitSound = HitSound.Normal

Parsed hit sound data of a hit object.

-

hitType

hitType: HitType = HitType.Normal
+
hitType: HitType = HitType.Normal

Parsed hit type data of a hit object.

-

hitWindows

hitWindows: HitWindows = ...
+
hitWindows: HitWindows = ...

Hit windows of this hit object.

-

kiai

kiai: boolean = false
+
kiai: boolean = false

The status of kiai mode at the current hit object.

-

nestedHitObjects

nestedHitObjects: HitObject[] = []
+
nestedHitObjects: HitObject[] = []

Nested objects of the hit object.

-

samples

samples: HitSample[] = []
+
samples: HitSample[] = []

The samples to be played when this hit object is hit.

-

startPosition

startPosition: Vector2 = ...
+
startPosition: Vector2 = ...

The position at which the hit object starts.

-

startTime

startTime: number = 0
+
startTime: number = 0

The time at which the hit object starts.

-

Accessors

startX

  • get startX(): number
  • set startX(value: number): void

Accessors

  • get startX(): number
  • set startX(value: number): void

startY

  • get startY(): number
  • set startY(value: number): void
  • get startY(): number
  • set startY(value: number): void

Methods

applyDefaults

Methods

applyDefaultsToNested

Returns void

applyDefaultsToSelf

Returns void

clone

Returns void

createNestedHitObjects

  • createNestedHitObjects(): void
  • createNestedHitObjects(): void

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Returns void

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/HitSample.html b/docs/classes/HitSample.html index 06a8a4a..d3b10a5 100644 --- a/docs/classes/HitSample.html +++ b/docs/classes/HitSample.html @@ -1,24 +1,24 @@ -HitSample | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class HitSample

+HitSample | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class HitSample

An object describing the name of a sound file, which has the following format:

-hit.wav

-

Hierarchy

  • HitSample

Index

Constructors

constructor

Properties

customIndex

customIndex: number = 0
+

Hierarchy

  • HitSample

Index

Constructors

Properties

customIndex: number = 0

Custom index of hit sample.

-

filename

filename: string = ''
+
filename: string = ''

The filename of this hit sample.

-

hitSound

hitSound: string = ...
+
hitSound: string = ...

Hit sound data.

-

isLayered

isLayered: boolean = false
+
isLayered: boolean = false

Whether this hit sample is layered.

-

sampleSet

sampleSet: string = ...
+
sampleSet: string = ...

The bank to load the sample from.

-

suffix

suffix: string = ''
+
suffix: string = ''

An optional suffix to provide priority lookup. Falls back to non-suffixed name.

-

volume

volume: number = 100
+
volume: number = 100

The sample volume.

-

Methods

clone

Methods

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/HitStatistics.html b/docs/classes/HitStatistics.html new file mode 100644 index 0000000..3836d2c --- /dev/null +++ b/docs/classes/HitStatistics.html @@ -0,0 +1,11 @@ +HitStatistics | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class HitStatistics

+

A special case of a map structure for storing hit statistics.

+

Hierarchy

Index

Constructors

Methods

Constructors

  • Parameters

    • Optional entries: null | readonly (readonly [HitResult, number])[]

    Returns HitStatistics

  • Parameters

    • Optional iterable: null | Iterable<readonly [HitResult, number]>

    Returns HitStatistics

Methods

  • +

    Gets the number of hit results by their type. +If hit result is not present sets it to default value and returns it.

    +

    Parameters

    Returns number

    The number of hit results of this type.

    +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/HitWindows.html b/docs/classes/HitWindows.html index a8264a0..fd2e984 100644 --- a/docs/classes/HitWindows.html +++ b/docs/classes/HitWindows.html @@ -1,35 +1,35 @@ -HitWindows | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class HitWindows

+HitWindows | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class HitWindows

A structure containing timing data for hit window based gameplay.

-

Hierarchy

  • HitWindows

Index

Constructors

constructor

Properties

Static empty

empty: HitWindows = ...
+

Hierarchy

  • HitWindows

Index

Constructors

Properties

empty: HitWindows = ...

An empty hit windows with only misses and perfects. No time values are provided (meaning instantaneous hit or miss).

-

Methods

canBeHit

  • canBeHit(timeOffset: number): boolean

Methods

  • canBeHit(timeOffset: number): boolean
  • Given a time offset, whether the hit object can ever be hit in the future with a non-miss result. This happens if time offset is less than what is required for lowest successful hit result.

    Parameters

    • timeOffset: number

      The time offset.

    Returns boolean

    Whether the hit object can be hit at any point in the future from this time offset.

    -

getAllAvailableWindows

  • getAllAvailableWindows(): Generator<[HitResult, number], any, unknown>
  • getAllAvailableWindows(): Generator<[HitResult, number], any, unknown>

isHitResultAllowed

  • isHitResultAllowed(result: HitResult): boolean
  • isHitResultAllowed(result: HitResult): boolean
  • Check whether it is possible to achieve the provided hit result.

    Parameters

    Returns boolean

    Whether the hit result can be achieved.

    -

resultFor

  • Retrieves the hit result for a time offset.

    Parameters

    • timeOffset: number

      The time offset.

    Returns HitResult

    The hit result, or HitResult.None if timeOffset doesn't result in a judgement.

    -

setDifficulty

  • setDifficulty(difficulty: number): void
  • setDifficulty(difficulty: number): void
  • Sets hit windows with values that correspond to a difficulty parameter.

    Parameters

    • difficulty: number

      The parameter.

      -

    Returns void

windowFor

Returns void

  • Retrieves the hit window for a hit result. This is the number of +/- milliseconds allowed for the requested result (so the actual hittable range is double this).

    Parameters

    Returns number

    One half of the hit window for result.

    -

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/LegacyReplayFrame.html b/docs/classes/LegacyReplayFrame.html new file mode 100644 index 0000000..b7a1e4b --- /dev/null +++ b/docs/classes/LegacyReplayFrame.html @@ -0,0 +1,20 @@ +LegacyReplayFrame | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class LegacyReplayFrame

+

Parsed replay frame.

+

Hierarchy

Index

Constructors

Properties

buttonState: ReplayButtonState
+

Button state of this replay frame.

+
interval: number
+

Interval between this and previous replay frames.

+
position: Vector2
+

Mouse position of this replay frame.

+
startTime: number
+

The time at which this ReplayFrame takes place.

+

Accessors

  • get mouseLeft(): boolean
  • get mouseLeft1(): boolean
  • get mouseLeft2(): boolean
  • get mouseRight(): boolean
  • get mouseRight1(): boolean
  • get mouseRight2(): boolean
  • get mouseX(): number
  • get mouseY(): number
  • get smoke(): boolean

Methods

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/LegacyScoreExtensions.html b/docs/classes/LegacyScoreExtensions.html index 5853e71..97a0157 100644 --- a/docs/classes/LegacyScoreExtensions.html +++ b/docs/classes/LegacyScoreExtensions.html @@ -1,33 +1,33 @@ -LegacyScoreExtensions | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class LegacyScoreExtensions

+LegacyScoreExtensions | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class LegacyScoreExtensions Abstract

Score extensions.

-

Hierarchy

Index

Constructors

constructor

Properties

Abstract rulesetId

rulesetId: number
+

Hierarchy

Index

Constructors

Properties

rulesetId: number

Ruleset ID of the play.

-

Abstract statistics

statistics: Partial<IHitStatistics>
+
statistics: HitStatistics = ...

Hit statistics.

-

Accessors

count100

  • get count100(): number
  • set count100(value: number): void

Accessors

  • get count100(): number
  • set count100(value: number): void

count300

  • get count300(): number
  • set count300(value: number): void
  • get count300(): number
  • set count300(value: number): void

count50

  • get count50(): number
  • set count50(value: number): void
  • get count50(): number
  • set count50(value: number): void

countGeki

  • get countGeki(): number
  • set countGeki(value: number): void
  • get countGeki(): number
  • set countGeki(value: number): void

countKatu

  • get countKatu(): number
  • set countKatu(value: number): void
  • get countKatu(): number
  • set countKatu(value: number): void

countMiss

  • get countMiss(): number
  • set countMiss(value: number): void
  • get countMiss(): number
  • set countMiss(value: number): void

totalHits

  • get totalHits(): number
  • get totalHits(): number

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Returns number

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/LevelInfo.html b/docs/classes/LevelInfo.html new file mode 100644 index 0000000..b258575 --- /dev/null +++ b/docs/classes/LevelInfo.html @@ -0,0 +1,11 @@ +LevelInfo | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class LevelInfo

+

A level information of a user.

+

Hierarchy

  • LevelInfo

Index

Constructors

Properties

Methods

Constructors

Properties

current: number
+

Current level of a user as integer.

+
progress: number
+

Progress to the next level as integer in range of 0-100.

+

Methods

  • toString(): string

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/LifeBarFrame.html b/docs/classes/LifeBarFrame.html index 9d0f372..75618fe 100644 --- a/docs/classes/LifeBarFrame.html +++ b/docs/classes/LifeBarFrame.html @@ -1,11 +1,11 @@ -LifeBarFrame | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class LifeBarFrame

+LifeBarFrame | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class LifeBarFrame

A life bar frame.

-

Hierarchy

  • LifeBarFrame

Implements

Index

Constructors

Properties

Methods

Constructors

constructor

Properties

health

health: number = 0
+

Hierarchy

  • LifeBarFrame

Implements

Index

Constructors

Properties

Methods

Constructors

  • new LifeBarFrame(startTime?: number, health?: number): LifeBarFrame

Properties

health: number

The amount of HP at that current time. This value is in range of 0-1.

-

startTime

startTime: number = 0
+
startTime: number

Starting time of this life bar frame.

-

Methods

clone

Methods

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/LimitedCapacityQueue.html b/docs/classes/LimitedCapacityQueue.html index ff78956..193054e 100644 --- a/docs/classes/LimitedCapacityQueue.html +++ b/docs/classes/LimitedCapacityQueue.html @@ -1,31 +1,31 @@ -LimitedCapacityQueue | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class LimitedCapacityQueue<T>

+LimitedCapacityQueue | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class LimitedCapacityQueue<T>

An indexed queue with limited capacity. Respects first-in-first-out insertion order.

-

Type parameters

  • T

Hierarchy

  • LimitedCapacityQueue

Index

Constructors

Properties

Accessors

Methods

Constructors

constructor

Type Parameters

  • T

Hierarchy

  • LimitedCapacityQueue

Index

Constructors

Properties

Accessors

Methods

Constructors

Properties

count

count: number = 0
+

Returns LimitedCapacityQueue<T>

Properties

count: number = 0

The number of elements in the queue.

-

Accessors

full

  • get full(): boolean

Accessors

  • get full(): boolean

Methods

clear

  • clear(): void

Methods

  • clear(): void

dequeue

  • dequeue(): T
  • dequeue(): T

enqueue

  • enqueue(item: T): void
  • enqueue(item: T): void
  • Adds an item to the back of the queue. If the queue is holding maximum elements at the point of addition, the item at the front of the queue will be removed.

    Parameters

    • item: T

      The item to be added to the back of the queue.

      -

    Returns void

enumerate

  • enumerate(): Generator<T, any, unknown>

Returns void

  • enumerate(): Generator<T, any, unknown>

get

  • get(index: number): T
  • get(index: number): T
  • Retrieves the item at the given index in the queue.

    Parameters

    • index: number

      The index of the item to retrieve. The item with index 0 is at the front of the queue (it was added the earliest).

      -

    Returns T

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Returns T

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/ModCombination.html b/docs/classes/ModCombination.html index ae6bbef..8a6ac92 100644 --- a/docs/classes/ModCombination.html +++ b/docs/classes/ModCombination.html @@ -1,98 +1,98 @@ -ModCombination | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class ModCombination

+ModCombination | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class ModCombination Abstract

A mod combination.

-

Hierarchy

  • ModCombination

Index

Constructors

constructor

Accessors

acronyms

  • get acronyms(): string[]

Hierarchy

  • ModCombination

Index

Constructors

Accessors

  • get acronyms(): string[]

all

beatmapMods

bitwise

  • get bitwise(): number
  • get bitwise(): number

converterMods

difficultyMods

hitObjectMods

incompatibles

  • get incompatibles(): number
  • get incompatibles(): number

isRanked

  • get isRanked(): boolean
  • get isRanked(): boolean

Abstract mode

  • get mode(): number

multiplier

  • get multiplier(): number
  • get mode(): number
  • get multiplier(): number

names

  • get names(): string[]
  • get names(): string[]

Methods

any

  • any(Mod: new () => IMod): boolean

Methods

  • any(Mod: (new () => IMod)): boolean

beatmapModAt

  • Finds a mod that is applicable to the beatmap by bitwise value or acronyms.

    Parameters

    • input: string | number

      The bitwise value or acronyms.

    Returns IApplicableToBeatmap

    First found mod. Otherwise returns null.

    -

beatmapModsAt

clone

converterModAt

  • Finds a mod that is applicable to the beatmap converter by bitwise value or acronyms.

    Parameters

    • input: string | number

      The bitwise value or acronyms.

    Returns IApplicableToConverter

    First found mod. Otherwise returns null.

    -

converterModsAt

difficultyModAt

  • Finds a mod that is applicable to the beatmap difficulty by bitwise value or acronyms.

    Parameters

    • input: string | number

      The bitwise value or acronyms.

    Returns IApplicableToDifficulty

    First found mod. Otherwise returns null.

    -

difficultyModsAt

equals

has

  • has(input: string | number): boolean
  • has(input: string | number): boolean
  • Parameters

    • input: string | number

      The bitwise value or acronyms.

    Returns boolean

    If the mod combination contain all of the mods from this bitwise or acronyms.

    -

hitObjectModAt

  • Finds a mod that is applicable to the beatmap hit objects by bitwise value or acronyms.

    Parameters

    • input: string | number

      The bitwise value or acronyms.

    Returns IApplicableToHitObjects

    First found mod. Otherwise returns null.

    -

hitObjectModsAt

modAt

  • modAt(input: string | number): IMod
  • modAt(input: string | number): IMod
  • Finds a mod by bitwise value or acronyms.

    Parameters

    • input: string | number

      The bitwise value or acronyms.

    Returns IMod

    First found mod. Otherwise returns null.

    -

modsAt

  • modsAt(input: string | number): IMod[]
  • modsAt(input: string | number): IMod[]
  • Finds mods by bitwise value or acronyms.

    Parameters

    • input: string | number

      The bitwise value or acronyms.

    Returns IMod[]

    The list of all found mods.

    -

toBitwise

  • toBitwise(input: unknown): number
  • toBitwise(input: unknown): number
  • Converts mod acronyms to a bitwise value.

    Parameters

    • input: unknown

      The mod acronyms.

    Returns number

    The bitwise value.

    -

toJSON

  • toJSON(): string
  • toJSON(): string

toString

  • toString(): string
  • toString(): string

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/Nightcore.html b/docs/classes/Nightcore.html index cde357e..2e23eb2 100644 --- a/docs/classes/Nightcore.html +++ b/docs/classes/Nightcore.html @@ -1,17 +1,17 @@ -Nightcore | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Nightcore

Hierarchy

Index

Constructors

constructor

Properties

acronym

acronym: string = 'NC'
+Nightcore | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Nightcore Abstract

Hierarchy

Index

Constructors

Properties

acronym: string = 'NC'

The shortened name of this mod.

-

bitwise

bitwise: ModBitwise = ModBitwise.Nightcore
+
bitwise: ModBitwise = ModBitwise.Nightcore

Bitwise number of this mod.

-

incompatibles

incompatibles: ModBitwise = ...
+
incompatibles: ModBitwise = ...

Incompatible mods.

-

isRanked

isRanked: boolean = true
+
isRanked: boolean = true

Returns if this mod is ranked.

-

multiplier

multiplier: number = 1.12
+
multiplier: number = 1.12

The score multiplier of this mod.

-

name

name: string = 'Nightcore'
+
name: string = 'Nightcore'

The name of this mod.

-

type

type: ModType = ModType.DifficultyIncrease
+
type: ModType = ModType.DifficultyIncrease

The type of this mod.

-

Methods

applyToDifficulty

Methods

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Parameters

Returns void

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/NoFail.html b/docs/classes/NoFail.html index 6393756..24fcd08 100644 --- a/docs/classes/NoFail.html +++ b/docs/classes/NoFail.html @@ -1,15 +1,15 @@ -NoFail | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class NoFail

Hierarchy

  • NoFail

Implements

Index

Constructors

constructor

Properties

acronym

acronym: string = 'NF'
+NoFail | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class NoFail Abstract

Hierarchy

  • NoFail

Implements

Index

Constructors

Properties

acronym: string = 'NF'

The shortened name of this mod.

-

bitwise

bitwise: ModBitwise = ModBitwise.NoFail
+
bitwise: ModBitwise = ModBitwise.NoFail

Bitwise number of this mod.

-

incompatibles

incompatibles: ModBitwise = ...
+
incompatibles: ModBitwise = ...

Incompatible mods.

-

isRanked

isRanked: boolean = true
+
isRanked: boolean = true

Returns if this mod is ranked.

-

multiplier

multiplier: number = 0.5
+
multiplier: number = 0.5

The score multiplier of this mod.

-

name

name: string = 'No Fail'
+
name: string = 'No Fail'

The name of this mod.

-

type

type: ModType = ModType.DifficultyReduction
+
type: ModType = ModType.DifficultyReduction

The type of this mod.

-

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/NoMod.html b/docs/classes/NoMod.html index a727f43..978b19c 100644 --- a/docs/classes/NoMod.html +++ b/docs/classes/NoMod.html @@ -1,15 +1,15 @@ -NoMod | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class NoMod

Hierarchy

  • NoMod

Implements

Index

Constructors

constructor

Properties

acronym

acronym: string = 'NM'
+NoMod | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class NoMod Abstract

Hierarchy

  • NoMod

Implements

Index

Constructors

Properties

acronym: string = 'NM'

The shortened name of this mod.

-

bitwise

bitwise: ModBitwise = ModBitwise.None
+
bitwise: ModBitwise = ModBitwise.None

Bitwise number of this mod.

-

incompatibles

incompatibles: ModBitwise = ModBitwise.None
+
incompatibles: ModBitwise = ModBitwise.None

Incompatible mods.

-

isRanked

isRanked: boolean = true
+
isRanked: boolean = true

Returns if this mod is ranked.

-

multiplier

multiplier: number = 1
+
multiplier: number = 1

The score multiplier of this mod.

-

name

name: string = 'No Mod'
+
name: string = 'No Mod'

The name of this mod.

-

type

type: ModType = ModType.System
+
type: ModType = ModType.System

The type of this mod.

-

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/PathApproximator.html b/docs/classes/PathApproximator.html index e230c93..fc581c0 100644 --- a/docs/classes/PathApproximator.html +++ b/docs/classes/PathApproximator.html @@ -1,13 +1,13 @@ -PathApproximator | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class PathApproximator

+PathApproximator | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class PathApproximator

Helper methods to approximate a path by interpolating a sequence of control points.

-

Hierarchy

  • PathApproximator

Index

Constructors

constructor

Properties

Static Readonly BEZIER_TOLERANCE

BEZIER_TOLERANCE: number = ...

Static Readonly CATMULL_DETAIL

CATMULL_DETAIL: 50 = 50
+

Hierarchy

  • PathApproximator

Index

Constructors

Properties

BEZIER_TOLERANCE: number = ...
CATMULL_DETAIL: 50 = 50

The amount of pieces to calculate for each control point quadruplet.

-

Static Readonly CIRCULAR_ARC_TOLERANCE

CIRCULAR_ARC_TOLERANCE: number = ...

Methods

Static _circularArcProperties

CIRCULAR_ARC_TOLERANCE: number = ...

Methods

Static approximateBSpline

  • Creates a piecewise-linear approximation of a clamped uniform B-spline with polynomial order p, by dividing it into a series of bezier control points at its knots, then adaptively repeatedly subdividing those until their approximation error vanishes below a given threshold. @@ -18,31 +18,31 @@

  • p: number = 0

    The polynomial order.

Returns Vector2[]

A list of vectors representing the piecewise-linear approximation.

-

Static approximateBezier

  • Creates a piecewise-linear approximation of a bezier curve, by adaptively repeatedly subdividing the control points until their approximation error vanishes below a given threshold.

    Parameters

    • controlPoints: Vector2[]

      The control points of the path.

    Returns Vector2[]

    A list of vectors representing the piecewise-linear approximation.

    -

Static approximateCatmull

  • Creates a piecewise-linear approximation of a Catmull-Rom spline.

    Parameters

    • controlPoints: Vector2[]

      The control points of the path.

    Returns Vector2[]

    A list of vectors representing the piecewise-linear approximation.

    -

Static approximateCircularArc

  • Creates a piecewise-linear approximation of a circular arc curve.

    Parameters

    • controlPoints: Vector2[]

      The control points of the path.

    Returns Vector2[]

    A list of vectors representing the piecewise-linear approximation.

    -

Static approximateLagrangePolynomial

  • Creates a piecewise-linear approximation of a lagrange polynomial.

    Parameters

    • controlPoints: Vector2[]

      The control points of the path.

    Returns Vector2[]

    A list of vectors representing the piecewise-linear approximation.

    -

Static approximateLinear

  • Creates a piecewise-linear approximation of a linear curve. Basically, returns the input.

    Parameters

    • controlPoints: Vector2[]

      The control points of the path.

    Returns Vector2[]

    A list of vectors representing the piecewise-linear approximation.

    -

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/PathPoint.html b/docs/classes/PathPoint.html index e49dabb..a47c383 100644 --- a/docs/classes/PathPoint.html +++ b/docs/classes/PathPoint.html @@ -1,13 +1,13 @@ -PathPoint | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class PathPoint

+PathPoint | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class PathPoint

A path point.

-

Hierarchy

  • PathPoint

Index

Constructors

Properties

Constructors

constructor

Hierarchy

  • PathPoint

Index

Constructors

Properties

Constructors

Properties

position

position: Vector2
+

Returns PathPoint

Properties

position: Vector2

The position at which path point starts.

-

type

type: null | PathType
+
type: null | PathType

A type of path point.

-

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/Perfect.html b/docs/classes/Perfect.html index 42da4e2..79c0cc1 100644 --- a/docs/classes/Perfect.html +++ b/docs/classes/Perfect.html @@ -1,15 +1,15 @@ -Perfect | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Perfect

Hierarchy

  • Perfect

Implements

Index

Constructors

constructor

Properties

acronym

acronym: string = 'PF'
+Perfect | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Perfect Abstract

Hierarchy

  • Perfect

Implements

Index

Constructors

Properties

acronym: string = 'PF'

The shortened name of this mod.

-

bitwise

bitwise: ModBitwise = ModBitwise.Perfect
+
bitwise: ModBitwise = ModBitwise.Perfect

Bitwise number of this mod.

-

incompatibles

incompatibles: ModBitwise = ...
+
incompatibles: ModBitwise = ...

Incompatible mods.

-

isRanked

isRanked: boolean = true
+
isRanked: boolean = true

Returns if this mod is ranked.

-

multiplier

multiplier: number = 1
+
multiplier: number = 1

The score multiplier of this mod.

-

name

name: string = 'Perfect'
+
name: string = 'Perfect'

The name of this mod.

-

type

type: ModType = ModType.DifficultyIncrease
+
type: ModType = ModType.DifficultyIncrease

The type of this mod.

-

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/PerformanceAttributes.html b/docs/classes/PerformanceAttributes.html index 2d24b58..de79196 100644 --- a/docs/classes/PerformanceAttributes.html +++ b/docs/classes/PerformanceAttributes.html @@ -1,13 +1,13 @@ -PerformanceAttributes | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class PerformanceAttributes

+PerformanceAttributes | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class PerformanceAttributes Abstract

Describes the performance of a score, as output by a performance calculator.

-

Hierarchy

  • PerformanceAttributes

Index

Constructors

Properties

Constructors

constructor

Hierarchy

  • PerformanceAttributes

Index

Constructors

Properties

Constructors

Properties

mods

+

Returns PerformanceAttributes

Properties

The mods which were applied to the beatmap.

-

totalPerformance

totalPerformance: number
+
totalPerformance: number

The total performance of a score.

-

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/PerformanceCalculator.html b/docs/classes/PerformanceCalculator.html index d2568df..9bc8c54 100644 --- a/docs/classes/PerformanceCalculator.html +++ b/docs/classes/PerformanceCalculator.html @@ -1,15 +1,15 @@ -PerformanceCalculator | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class PerformanceCalculator

Hierarchy

  • PerformanceCalculator

Index

Constructors

constructor

Properties

Optional Readonly attributes

Methods

calculate

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/ProgressiveCalculationBeatmap.html b/docs/classes/ProgressiveCalculationBeatmap.html index c716674..8f9862a 100644 --- a/docs/classes/ProgressiveCalculationBeatmap.html +++ b/docs/classes/ProgressiveCalculationBeatmap.html @@ -1,53 +1,53 @@ -ProgressiveCalculationBeatmap | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class ProgressiveCalculationBeatmap

+ProgressiveCalculationBeatmap | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class ProgressiveCalculationBeatmap

Used to calculate timed difficulty attributes, where only a subset of hitobjects should be visible at any point in time.

-

Hierarchy

  • ProgressiveCalculationBeatmap

Implements

Index

Constructors

constructor

Properties

hitObjects

hitObjects: IHitObject[] = []
+

Hierarchy

  • ProgressiveCalculationBeatmap

Implements

Index

Constructors

Properties

hitObjects: IHitObject[] = []

Beatmap hit objects.

-

Accessors

bpmMax

  • get bpmMax(): number

Accessors

  • get bpm(): number
  • get bpmMax(): number

bpmMin

  • get bpmMin(): number
  • get bpmMin(): number

bpmMode

  • get bpmMode(): number

colors

controlPoints

difficulty

editor

events

fileFormat

  • get fileFormat(): number
  • get fileFormat(): number

general

length

  • get length(): number
  • get length(): number

metadata

mode

  • get mode(): number
  • get mode(): number

originalMode

  • get originalMode(): number
  • get originalMode(): number

totalBreakTime

  • get totalBreakTime(): number
  • get totalBreakTime(): number

Methods

clone

Methods

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/RankHistory.html b/docs/classes/RankHistory.html new file mode 100644 index 0000000..c5b40d0 --- /dev/null +++ b/docs/classes/RankHistory.html @@ -0,0 +1,12 @@ +RankHistory | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class RankHistory

+

A class that represents rank history of a user.

+

Hierarchy

  • RankHistory

Index

Constructors

Properties

Accessors

Methods

Constructors

Properties

data: number[]
+

List of previous ranks at different points of history.

+
mode: string
+

A mode to which this data belongs.

+
DEFAULT_MODE: string = 'Unknown'

Accessors

  • get hasEnoughData(): boolean

Methods

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/Relax.html b/docs/classes/Relax.html index 21d23fb..11b7c84 100644 --- a/docs/classes/Relax.html +++ b/docs/classes/Relax.html @@ -1,15 +1,15 @@ -Relax | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Relax

Hierarchy

  • Relax

Implements

Index

Constructors

constructor

Properties

acronym

acronym: string = 'RX'
+Relax | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Relax Abstract

Hierarchy

  • Relax

Implements

Index

Constructors

Properties

acronym: string = 'RX'

The shortened name of this mod.

-

bitwise

bitwise: ModBitwise = ModBitwise.Relax
+
bitwise: ModBitwise = ModBitwise.Relax

Bitwise number of this mod.

-

incompatibles

incompatibles: ModBitwise = ...
+
incompatibles: ModBitwise = ...

Incompatible mods.

-

isRanked

isRanked: boolean = false
+
isRanked: boolean = false

Returns if this mod is ranked.

-

multiplier

multiplier: number = 1
+
multiplier: number = 1

The score multiplier of this mod.

-

name

name: string = 'Relax'
+
name: string = 'Relax'

The name of this mod.

-

type

type: ModType = ModType.Automation
+
type: ModType = ModType.Automation

The type of this mod.

-

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/Replay.html b/docs/classes/Replay.html index e0786c1..bbb9dd8 100644 --- a/docs/classes/Replay.html +++ b/docs/classes/Replay.html @@ -1,18 +1,18 @@ -Replay | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Replay

+Replay | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Replay

A replay.

-

Hierarchy

  • Replay

Implements

Index

Constructors

constructor

Properties

frames

frames: ReplayFrame[] = []
+

Hierarchy

  • Replay

Implements

Index

Constructors

Properties

frames: ReplayFrame[] = []

Replay frames.

-

gameVersion

gameVersion: number = 0
+
gameVersion: number = 0

osu! game version of this replay.

-

hashMD5

hashMD5: string = ''
+
hashMD5: string = ''

Replay MD5 hash.

-

lifeBar

lifeBar: LifeBarFrame[] = []
+
lifeBar: LifeBarFrame[] = []

Life bar of the replay.

-

mode

mode: number = 0
+
mode: number = 0

Game mode of this replay.

-

Accessors

length

  • get length(): number

Accessors

  • get length(): number

Methods

clone

Methods

equals

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/ReplayConverter.html b/docs/classes/ReplayConverter.html new file mode 100644 index 0000000..0c92cc0 --- /dev/null +++ b/docs/classes/ReplayConverter.html @@ -0,0 +1,8 @@ +ReplayConverter | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class ReplayConverter Abstract

+

A replay converter.

+

Hierarchy

  • ReplayConverter

Index

Constructors

Methods

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/ReplayFrame.html b/docs/classes/ReplayFrame.html index aa9a7fe..94c8c08 100644 --- a/docs/classes/ReplayFrame.html +++ b/docs/classes/ReplayFrame.html @@ -1,18 +1,10 @@ -ReplayFrame | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class ReplayFrame

+ReplayFrame | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class ReplayFrame Abstract

A replay frame.

-

Hierarchy

  • ReplayFrame

Implements

Index

Constructors

constructor

Properties

buttonState

buttonState: ReplayButtonState = ReplayButtonState.None
-

Button state of this replay frame.

-

interval

interval: number = 0
+

Hierarchy

Implements

Index

Constructors

Properties

Methods

Constructors

  • new ReplayFrame(startTime?: number, interval?: number): ReplayFrame

Properties

interval: number

Interval between this and previous replay frames.

-

mouseX

mouseX: number = 0
-

Mouse X-position of this replay frame.

-

mouseY

mouseY: number = 0
-

Mouse Y-position of this replay frame.

-

startTime

startTime: number = 0
-

Starting time of this replay frame.

-

Accessors

mouseLeft

  • get mouseLeft(): boolean

mouseLeft1

  • get mouseLeft1(): boolean

mouseLeft2

  • get mouseLeft2(): boolean

mousePosition

mouseRight

  • get mouseRight(): boolean

mouseRight1

  • get mouseRight1(): boolean

mouseRight2

  • get mouseRight2(): boolean

Methods

clone

startTime: number
+

The time at which this ReplayFrame takes place.

+

Methods

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/ReverseQueue.html b/docs/classes/ReverseQueue.html index 80774f8..d876202 100644 --- a/docs/classes/ReverseQueue.html +++ b/docs/classes/ReverseQueue.html @@ -1,24 +1,24 @@ -ReverseQueue | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class ReverseQueue<T>

+ReverseQueue | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class ReverseQueue<T>

An indexed queue where items are indexed beginning from the most recently enqueued item. Enqueuing an item pushes all existing indexes up by one and inserts the item at index 0. Dequeuing an item removes the item from the highest index and returns it.

-

Type parameters

  • T

Hierarchy

  • ReverseQueue

Index

Constructors

constructor

  • new ReverseQueue<T>(initialCapacity: number): ReverseQueue<T>

Properties

count

count: number = 0
+

Type Parameters

  • T

Hierarchy

  • ReverseQueue

Index

Constructors

  • new ReverseQueue<T>(initialCapacity: number): ReverseQueue<T>

Properties

count: number = 0

The number of elements in the queue.

-

Methods

clear

  • clear(): void

Methods

  • clear(): void

dequeue

  • dequeue(): T
  • dequeue(): T

enqueue

  • enqueue(item: T): void
  • enqueue(item: T): void

enumerate

  • enumerate(): Generator<T, any, unknown>

Returns void

  • enumerate(): Generator<T, any, unknown>
  • Enumerates the queue starting from the most recently enqueued item.

    Returns Generator<T, any, unknown>

    An enumerator which enumerates items in the queue.

    -

get

  • get(index: number): T
  • get(index: number): T
  • Retrieves the item at an index in the queue.

    Parameters

    • index: number

      The index of the item to retrieve. The most recently enqueued item is at index 0.

      -

    Returns T

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Returns T

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/RoundHelper.html b/docs/classes/RoundHelper.html index c7458ab..c5e0651 100644 --- a/docs/classes/RoundHelper.html +++ b/docs/classes/RoundHelper.html @@ -1,11 +1,11 @@ -RoundHelper | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class RoundHelper

Hierarchy

  • RoundHelper

Index

Constructors

constructor

Properties

Static PRECISION_ERROR

PRECISION_ERROR: number = 1e-15
+RoundHelper | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class RoundHelper

Hierarchy

  • RoundHelper

Index

Constructors

Properties

PRECISION_ERROR: number = 1e-15

Precision error to check if value is at midpoint.

-

Methods

Static isAtMidPoint

  • isAtMidPoint(x: number): boolean

Methods

  • isAtMidPoint(x: number): boolean
  • Checks if a number is at midpoint.

    Parameters

    • x: number

      The number to check.

    Returns boolean

    If the number is at midpoint.

    -

Static round

  • round(x: number, mode?: number): number
  • round(x: number, mode?: number): number
  • Rounds a value using "to even" or "away from zero" algroithm.

    Parameters

    • x: number

      The number to round.

      @@ -14,16 +14,16 @@ 0 - "away from zero" algorithm. 1 - "to even" algorithm.

    Returns number

    Rounded number using one of two algorithms.

    -

Static roundAwayFromZero

  • roundAwayFromZero(x: number): number
  • roundAwayFromZero(x: number): number
  • Rounds a value to the nearest number. Midpoint values are rounded toward the nearest number that's away from zero.

    Parameters

    • x: number

      The number to round.

    Returns number

    The rounded even number.

    -

Static roundToEven

  • roundToEven(x: number): number
  • roundToEven(x: number): number
  • Rounds a value to the nearest number. Midpoint values are rounded toward the nearest even number.

    Parameters

    • x: number

      The number to round.

    Returns number

    The rounded even number.

    -

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/Ruleset.html b/docs/classes/Ruleset.html index 7ec1c46..eee7339 100644 --- a/docs/classes/Ruleset.html +++ b/docs/classes/Ruleset.html @@ -1,37 +1,43 @@ -Ruleset | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Ruleset

+Ruleset | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Ruleset Abstract

A ruleset.

-

Hierarchy

  • Ruleset

Implements

Index

Constructors

constructor

Properties

Abstract id

id: number
+

Hierarchy

  • Ruleset

Implements

Index

Constructors

Properties

id: number

Ruleset ID.

-

Methods

applyToBeatmap

Methods

applyToBeatmapWithMods

Abstract createBeatmapConverter

Abstract createBeatmapProcessor

Abstract createDifficultyCalculator

  • +

    Applies ruleset to a replay. +Converts legacy replay frames to ruleset specific frames.

    +

    Parameters

    • replay: IReplay
      +

      The replay.

      +
    • Optional beatmap: IBeatmap
      +

      The beatmap of the replay which is used to get some data.

      +

    Returns Replay

    A new instance of the replay with applied ruleset.

    +

Abstract createModCombination

Abstract createPerformanceCalculator

resetMods

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/RulesetBeatmap.html b/docs/classes/RulesetBeatmap.html index 17e461e..6d7457e 100644 --- a/docs/classes/RulesetBeatmap.html +++ b/docs/classes/RulesetBeatmap.html @@ -1,53 +1,57 @@ -RulesetBeatmap | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class RulesetBeatmap

+RulesetBeatmap | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class RulesetBeatmap Abstract

A ruleset beatmap.

-

Hierarchy

Index

Constructors

constructor

Properties

Optional base

base?: IBeatmap
+

Hierarchy

Index

Constructors

Properties

base?: IBeatmap

The optional link to the base beatmap. -Base beatmap prefered for beatmap convertation.

-

colors

colors: BeatmapColorSection = ...
+Base beatmap is preferrable for beatmap converters.

+
colors: BeatmapColorSection = ...

Beatmap skin configuration.

-

controlPoints

controlPoints: ControlPointInfo = ...
+
controlPoints: ControlPointInfo = ...

Beatmap control points.

-

difficulty

difficulty: BeatmapDifficultySection = ...
+
difficulty: BeatmapDifficultySection = ...

Beatmap difficulty.

-

editor

editor: BeatmapEditorSection = ...
+
editor: BeatmapEditorSection = ...

Beatmap editor settings.

-

events

events: BeatmapEventSection = ...
+
events: BeatmapEventSection = ...

Beatmap events & Storyboard.

-

fileFormat

fileFormat: number = 14
+
fileFormat: number = 14

Beatmap file version.

-

fileUpdateDate

fileUpdateDate: Date = ...
+
fileUpdateDate: Date = ...

The date when the beatmap file was updated last time.

-

general

general: BeatmapGeneralSection = ...
+
general: BeatmapGeneralSection = ...

Beatmap general info.

-

hitObjects

hitObjects: HitObject[] = []
+
hitObjects: HitObject[] = []

Beatmap hit objects.

-

metadata

metadata: BeatmapMetadataSection = ...
+
metadata: BeatmapMetadataSection = ...

Beatmap metadata.

-

Abstract mods

+

Applied mods of a beatmap.

-

originalMode

originalMode: number = 0
+
originalMode: number = 0

Original gamemode of a beatmap before any conversions.

-

Accessors

bpm

  • get bpm(): number

Accessors

  • get bpm(): number

bpmMax

  • get bpmMax(): number
  • get bpmMax(): number

bpmMin

  • get bpmMin(): number
  • get bpmMin(): number

bpmMode

  • get bpmMode(): number
  • -

    The most common BPM of a beatmap. -Use the bpm instead.

    -
    deprecated

    Since 2.1.1

    -

    Returns number

length

  • get length(): number
  • get hittable(): number
  • get holdable(): number
  • get length(): number

Abstract maxCombo

  • get maxCombo(): number
  • get maxCombo(): number

mode

  • get mode(): number
  • get mode(): number

totalBreakTime

  • get totalBreakTime(): number
  • get slidable(): number
  • get spinnable(): number
  • get totalBreakTime(): number

totalLength

  • get totalLength(): number
  • get totalLength(): number

Methods

clone

Methods

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/SampleBank.html b/docs/classes/SampleBank.html index f17c904..c276512 100644 --- a/docs/classes/SampleBank.html +++ b/docs/classes/SampleBank.html @@ -1,15 +1,15 @@ -SampleBank | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class SampleBank

Hierarchy

  • SampleBank

Index

Constructors

constructor

Properties

additionSet

additionSet: SampleSet = SampleSet.Normal
+SampleBank | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class SampleBank

Hierarchy

  • SampleBank

Index

Constructors

Properties

additionSet: SampleSet = SampleSet.Normal

The addition sample set of the bank.

-

customIndex

customIndex: number = 0
+
customIndex: number = 0

Custom index of the sample bank.

-

filename

filename: string = ''
+
filename: string = ''

The filepath of this sample bank.

-

normalSet

normalSet: SampleSet = SampleSet.Normal
+
normalSet: SampleSet = SampleSet.Normal

The normal sample set of the bank.

-

volume

volume: number = 100
+
volume: number = 100

The volume of the bank.

-

Methods

clone

Methods

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/SamplePoint.html b/docs/classes/SamplePoint.html index 5d0ffe1..3f2d736 100644 --- a/docs/classes/SamplePoint.html +++ b/docs/classes/SamplePoint.html @@ -1,32 +1,35 @@ -SamplePoint | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class SamplePoint

+SamplePoint | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class SamplePoint

A sample point.

-

Hierarchy

Index

Constructors

constructor

Hierarchy

Index

Constructors

Properties

customIndex

customIndex: number = 0
+

Returns SamplePoint

Properties

customIndex: number = 0

The custom index of this sample point.

-

group

group: null | ControlPointGroup
+
group: null | ControlPointGroup

The group to which a control point belongs.

-

pointType

pointType: ControlPointType = ControlPointType.SamplePoint
+
pointType: ControlPointType = ControlPointType.SamplePoint

The type of a sample point.

-

sampleSet

sampleSet: string = ...
+
sampleSet: string = ...

The sample bank of this sample point.

-

volume

volume: number = 100
+
volume: number = 100

The volume of this sample point.

-

Static default

default: SamplePoint = ...
+
default: SamplePoint = ...

The default instance of a sample point.

-

Accessors

startTime

  • get startTime(): number

Accessors

  • get startTime(): number

Methods

attachGroup

Methods

dettachGroup

  • dettachGroup(): void

Returns void

  • dettachGroup(): void

isRedundant

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/Score.html b/docs/classes/Score.html index 3d5feb4..5f5154b 100644 --- a/docs/classes/Score.html +++ b/docs/classes/Score.html @@ -1,7 +1,7 @@ -Score | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Score

+Score | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Score

A score.

-

Hierarchy

  • Score

Index

Constructors

Properties

Methods

Constructors

constructor

Properties

info

info: ScoreInfo = ...
+

Hierarchy

  • Score

Index

Constructors

Properties

Methods

Constructors

Properties

info: ScoreInfo = ...

Score information.

-

replay

replay: null | Replay = null
+
replay: null | Replay = null

Score replay.

-

Methods

clone

equals

  • equals(other: IScore): boolean

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Methods

  • equals(other: IScore): boolean

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/ScoreInfo.html b/docs/classes/ScoreInfo.html index cb53b57..b57ec6e 100644 --- a/docs/classes/ScoreInfo.html +++ b/docs/classes/ScoreInfo.html @@ -1,94 +1,102 @@ -ScoreInfo | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class ScoreInfo

+ScoreInfo | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class ScoreInfo

A score information.

-

Hierarchy

Implements

Index

Constructors

constructor

Hierarchy

Implements

Index

Constructors

Properties

beatmap

beatmap: null | IBeatmapInfo = null
+

Returns ScoreInfo

Properties

beatmap: null | IBeatmapInfo = null

Beatmap of the play.

-

beatmapHashMD5

beatmapHashMD5: string = ''
+
beatmapHashMD5: string = ''

Beatmap MD5 hash.

-

beatmapId

beatmapId: number = 0
+
beatmapId: number = 0

Beatmap ID.

-

date

date: Date = ...
+
date: Date = ...

The date when this play was set.

-

id

id: number = 0
+
id: number = 0

A score ID.

-

maxCombo

maxCombo: number = 0
+
maxCombo: number = 0

Max combo of the play.

-

passed

passed: boolean = false
-

Whether the map was passed or not.

-

perfect

perfect: boolean = false
+
passed: boolean = false
+

Whether the map was passed or not. +Score rank will always be F on passed = false.

+
perfect: boolean = false

Perfect combo or not?

-

pp

pp: null | number = null
-

The performance of the play.

-

statistics

statistics: IHitStatistics = ...
+
statistics: HitStatistics = ...

Hit statistics.

-

totalScore

totalScore: number = 0
+
totalPerformance: null | number = null
+

The performance of the play.

+
totalScore: number = 0

Total score of the play.

-

userId

userId: number = 0
+
userId: number = 0

User ID of the player who set this play.

-

username

username: string = ''
+
username: string = ''

Username of the player who set this play.

-

Accessors

accuracy

  • get accuracy(): number
  • set accuracy(_: number): void

Accessors

  • get accuracy(): number
  • set accuracy(_: number): void

count100

  • get count100(): number
  • set count100(value: number): void
  • get count100(): number
  • set count100(value: number): void

count300

  • get count300(): number
  • set count300(value: number): void
  • get count300(): number
  • set count300(value: number): void

count50

  • get count50(): number
  • set count50(value: number): void
  • get count50(): number
  • set count50(value: number): void

countGeki

  • get countGeki(): number
  • set countGeki(value: number): void
  • get countGeki(): number
  • set countGeki(value: number): void

countKatu

  • get countKatu(): number
  • set countKatu(value: number): void
  • get countKatu(): number
  • set countKatu(value: number): void

countMiss

  • get countMiss(): number
  • set countMiss(value: number): void
  • get countMiss(): number
  • set countMiss(value: number): void

mods

rank

  • get rank(): "F" | "D" | "C" | "B" | "A" | "S" | "SH" | "X" | "XH"
  • set rank(_: "F" | "D" | "C" | "B" | "A" | "S" | "SH" | "X" | "XH"): void
  • get rank(): "F" | "D" | "C" | "B" | "A" | "S" | "SH" | "X" | "XH"
  • set rank(value: "F" | "D" | "C" | "B" | "A" | "S" | "SH" | "X" | "XH"): void

rawMods

  • get rawMods(): string | number
  • set rawMods(value: string | number): void
  • get rawMods(): string | number
  • set rawMods(value: string | number): void

ruleset

rulesetId

  • get rulesetId(): number
  • set rulesetId(value: number): void
  • get rulesetId(): number
  • set rulesetId(value: number): void

totalHits

  • get totalHits(): number
  • get totalHits(): number

Methods

clone

Methods

equals

toJSON

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/Skill.html b/docs/classes/Skill.html index 6198e6f..e04a13f 100644 --- a/docs/classes/Skill.html +++ b/docs/classes/Skill.html @@ -1,11 +1,11 @@ -Skill | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Skill

+Skill | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Skill Abstract

A bare minimal abstract skill for fully custom skill implementations. This class should be considered a "processing" class and not persisted.

-

Hierarchy

Index

Constructors

Accessors

Methods

Constructors

constructor

Accessors

Abstract difficultyValue

  • get difficultyValue(): number

Hierarchy

Index

Constructors

Accessors

Methods

Constructors

Accessors

  • get difficultyValue(): number
  • Returns the calculated difficulty value representing all difficulty hit objects that have been processed up to this point.

    -

    Returns number

Methods

Abstract process

Methods

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Returns void

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/SliderPath.html b/docs/classes/SliderPath.html index 62f88fe..0274a3a 100644 --- a/docs/classes/SliderPath.html +++ b/docs/classes/SliderPath.html @@ -1,35 +1,35 @@ -SliderPath | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class SliderPath

Hierarchy

  • SliderPath

Index

Constructors

constructor

Accessors

calculatedDistance

  • get calculatedDistance(): number
  • curvePositionAt(progress: number, spans: number): Vector2
  • Computes the position on the curve relative to how much of the hit object has been completed.

    Parameters

    • progress: number
      @@ -46,18 +46,18 @@
    • spans: number

      Number of spans of the object.

    Returns Vector2

    The position on the curve.

    -

invalidate

  • invalidate(): void
  • invalidate(): void

positionAt

  • positionAt(progress: number): Vector2
  • positionAt(progress: number): Vector2
  • Computes the position on the slider at a given progress that ranges from 0 (beginning of the path) to 1 (end of the path).

    Parameters

    • progress: number

      Ranges from 0 (beginning of the path) to 1 (end of the path).

      -

    Returns Vector2

progressAt

  • progressAt(progress: number, spans: number): number

Returns Vector2

  • progressAt(progress: number, spans: number): number
  • Computes the progress along the curve relative to how much of the hit object has been completed.

    Parameters

    • progress: number

      Where 0 is the start time of the hit object and 1 is the end time of the hit object.

    • spans: number

      Number of spans of the object.

    Returns number

    Progress of the object on the current span.

    -

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/SortHelper.html b/docs/classes/SortHelper.html index 90f971c..7523921 100644 --- a/docs/classes/SortHelper.html +++ b/docs/classes/SortHelper.html @@ -1,15 +1,15 @@ -SortHelper | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class SortHelper

Hierarchy

  • SortHelper

Index

Constructors

constructor

Methods

Static defaultCompare

  • defaultCompare(x: unknown, y: unknown): number

Static depthSort

  • depthSort(keys: any[], comparerFn?: (a: any, b: any) => number): any[]
  • +SortHelper | osu-classes
    Options
    All
    • Public
    • Public/Protected
    • All
    Menu

    Class SortHelper

    Hierarchy

    • SortHelper

    Index

    Constructors

    Methods

    • defaultCompare(x: unknown, y: unknown): number
    • depthSort(keys: any[], comparerFn?: ((a: any, b: any) => number)): any[]
    • Sorts an array with mutation via depth limited quick sort algorithm.

      Parameters

      • keys: any[]

        The array to be sorted.

        -
      • Optional comparerFn: (a: any, b: any) => number
        +
      • Optional comparerFn: ((a: any, b: any) => number)

        The sorting function.

          • (a: any, b: any): number
          • Parameters

            • a: any
            • b: any

            Returns number

      Returns any[]

      The same array.

      -

    Static introSort

    • introSort(keys: any[], comparerFn?: (a: any, b: any) => number): any[]
    • introSort(keys: any[], comparerFn?: ((a: any, b: any) => number)): any[]
    • Sorts an array with mutation via introspective sort algorithm.

      Parameters

      • keys: any[]

        The array to be sorted.

        -
      • Optional comparerFn: (a: any, b: any) => number
        +
      • Optional comparerFn: ((a: any, b: any) => number)

        The sorting function.

          • (a: any, b: any): number
          • Parameters

            • a: any
            • b: any

            Returns number

      Returns any[]

      The same array.

      -

    Static toString

    • toString(obj: unknown): string

    Legend

    • Constructor
    • Property
    • Method
    • Accessor
    • Inherited constructor
    • Inherited property
    • Inherited method
    • Inherited accessor
    • Property
    • Method
    • Static property
    • Static method

    Settings

    Theme

    \ No newline at end of file +
  • toString(obj: unknown): string

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/Storyboard.html b/docs/classes/Storyboard.html index 1d1c7a9..a63ec7d 100644 --- a/docs/classes/Storyboard.html +++ b/docs/classes/Storyboard.html @@ -1,37 +1,37 @@ -Storyboard | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Storyboard

+Storyboard | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Storyboard

A beatmap storyboard.

-

Hierarchy

  • Storyboard

Index

Constructors

constructor

Properties

colors

colors: BeatmapColorSection = ...
+

Hierarchy

  • Storyboard

Index

Constructors

Properties

colors: BeatmapColorSection = ...

Custom beatmap colors.

-

fileFormat

fileFormat: number = 14
+
fileFormat: number = 14

Beatmap file version for which this storyboard was created.

-

minimumLayerDepth

minimumLayerDepth: number = 0
+
minimumLayerDepth: number = 0

Depth of the currently front-most storyboard layer, excluding the overlay layer.

-

useSkinSprites

useSkinSprites: boolean = false
+
useSkinSprites: boolean = false

Whether the storyboard can fall back to skin sprites in case no matching storyboard sprites are found.

-

variables

variables: Record<string, string> = {}
+
variables: Map<string, string> = ...

Variables of the storyboard.

-

Accessors

earliestEventTime

  • get earliestEventTime(): null | number

Accessors

  • get earliestEventTime(): null | number
  • Across all layers, find the earliest point in time that a storyboard element exists at. -Will return null if there are no elements. +Will return null if there are no elements. This iterates all elements and as such should be used sparingly or stored locally.

    -

    Returns null | number

hasDrawable

  • get hasDrawable(): boolean

hasVariables

  • get hasVariables(): boolean

latestEventTime

  • get latestEventTime(): null | number
  • get hasDrawable(): boolean
  • get hasVariables(): boolean
  • get latestEventTime(): null | number
  • Across all layers, find the latest point in time that a storyboard element ends at. Will return null if there are no elements. This iterates all elements and as such should be used sparingly or stored locally. Videos and samples return start time as their end time.

    -

    Returns null | number

layers

Methods

addLayer

Methods

getLayerByName

Returns void

  • Finds a storyboard layer by its name. Otherwise will create a new storyboard layer with this name.

    Parameters

    • name: string

      The name of the storyboard layer.

    Returns StoryboardLayer

    The storyboard layer.

    -

getLayerByType

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/StoryboardAnimation.html b/docs/classes/StoryboardAnimation.html index 78a2c27..026732e 100644 --- a/docs/classes/StoryboardAnimation.html +++ b/docs/classes/StoryboardAnimation.html @@ -1,6 +1,6 @@ -StoryboardAnimation | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class StoryboardAnimation

+StoryboardAnimation | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class StoryboardAnimation

A storyboard animation.

-

Hierarchy

Index

Constructors

constructor

Hierarchy

Index

Constructors

Properties

anchor

anchor: Anchor
+

Returns StoryboardAnimation

Properties

anchor: Anchor

The anchor of the image on the screen.

-

color

color: Color4 = ...
+
color: Color4 = ...

Current color of this sprite.

-

commands

commands: Command<any>[] = []
+
commands: Command<any>[] = []

The list of commands of the storyboard element. This is not synchronized with timelineGroup as constantly updating it can be very expensive. If you need to update this array, use updateCommands.

-

endTime

endTime: number = -Infinity
+
endTime: number = -Infinity

The end time of the storyboard sprite.

-

filePath

filePath: string
+
filePath: string

The file path of the content of this storyboard sprite.

-

flipX

flipX: boolean = false
+
flipX: boolean = false

If this sprite is fliped horizontally.

-

flipY

flipY: boolean = false
+
flipY: boolean = false

If this sprite is fliped vertically.

-

frameCount

frameCount: number
+
frameCount: number

The number of frames in this animation.

-

frameDelay

frameDelay: number
+
frameDelay: number

The delay (in milliseconds) between each frame of the animation.

-

isAdditive

isAdditive: boolean = false
+
isAdditive: boolean = false

If this sprite is using additive blending.

-

loopType

loopType: LoopType
+
loopType: LoopType

Indicates if the animation should loop or not.

-

loops

loops: CommandLoop[] = []
+
loops: CommandLoop[] = []

The list of command loops of the storyboard sprite.

-

origin

origin: Origins
+
origin: Origins

The origin of the image on the screen.

-

rotation

rotation: number = 0
+
rotation: number = 0

Current rotation of this sprite.

-

scale

scale: Vector2 = ...
+
scale: Vector2 = ...

Current scale of this sprite.

-

startPosition

startPosition: Vector2
+
startPosition: Vector2

The relative start position of the storyboard sprite.

-

startTime

startTime: number = Infinity
+
startTime: number = Infinity

The start time of the storyboard sprite.

-

timelineGroup

timelineGroup: CommandTimelineGroup = ...
+
timelineGroup: CommandTimelineGroup = ...

The list of commands of the storyboard sprite.

-

triggers

triggers: CommandTrigger[] = []
+
triggers: CommandTrigger[] = []

The list of command triggers of the storyboard sprite.

-

Accessors

duration

  • get duration(): number

hasCommands

  • get hasCommands(): boolean

isDrawable

  • get isDrawable(): boolean

startX

  • get startX(): number
  • set startX(value: number): void

Accessors

  • get duration(): number
  • get hasCommands(): boolean
  • get isDrawable(): boolean
  • get startX(): number
  • set startX(value: number): void

startY

  • get startY(): number
  • set startY(value: number): void
  • get startY(): number
  • set startY(value: number): void

Methods

addLoop

  • addLoop(startTime: number, repeatCount: number): CommandLoop

Methods

  • addLoop(startTime: number, repeatCount: number): CommandLoop

addTrigger

  • addTrigger(triggerName: string, startTime: number, endTime: number, groupNumber: number): CommandTrigger

Returns CommandLoop

  • addTrigger(triggerName: string, startTime: number, endTime: number, groupNumber: number): CommandTrigger

adjustTimesToCommands

  • adjustTimesToCommands(): void

Returns CommandTrigger

  • adjustTimesToCommands(): void

resetValuesToCommands

  • resetValuesToCommands(): void
  • resetValuesToCommands(): void

setValueFromCommand

  • setValueFromCommand(command: Command<any>, progress: number): void
  • setValueFromCommand(command: Command<any>, progress: number): void

updateCommands

Returns void

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/StoryboardLayer.html b/docs/classes/StoryboardLayer.html index 80be2c6..d19cb5d 100644 --- a/docs/classes/StoryboardLayer.html +++ b/docs/classes/StoryboardLayer.html @@ -1,15 +1,15 @@ -StoryboardLayer | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class StoryboardLayer

+StoryboardLayer | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class StoryboardLayer

A storyboard layer.

-

Hierarchy

  • StoryboardLayer

Index

Constructors

constructor

Properties

Readonly depth

depth: number
+

Hierarchy

  • StoryboardLayer

Index

Constructors

Properties

depth: number

Storyboard layer name.

-

elements

elements: IStoryboardElement[] = []
+
elements: IStoryboardElement[] = []

Storyboard layer elements.

-

Readonly masking

masking: boolean
+
masking: boolean

Should this layer be masked or not?

-

Readonly name

name: string
+
name: string

Storyboard layer name.

-

visibleWhenFailing

visibleWhenFailing: boolean = true
+
visibleWhenFailing: boolean = true

Is this layer visible when player fails.

-

visibleWhenPassing

visibleWhenPassing: boolean = true
+
visibleWhenPassing: boolean = true

Is this layer visible when player is alive.

-

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/StoryboardSample.html b/docs/classes/StoryboardSample.html index 72b708a..f8547ca 100644 --- a/docs/classes/StoryboardSample.html +++ b/docs/classes/StoryboardSample.html @@ -1,11 +1,11 @@ -StoryboardSample | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class StoryboardSample

+StoryboardSample | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class StoryboardSample

A storyboard sample.

-

Hierarchy

  • StoryboardSample

Implements

Index

Constructors

Properties

Accessors

Constructors

constructor

  • new StoryboardSample(path: string, time: number, volume: number): StoryboardSample

Properties

filePath

filePath: string
+

Hierarchy

  • StoryboardSample

Implements

Index

Constructors

Properties

Accessors

Constructors

  • new StoryboardSample(path: string, time: number, volume: number): StoryboardSample

Properties

filePath: string

The file path of the sound of this sample.

-

startTime

startTime: number
+
startTime: number

The start time of the storyboard sample.

-

volume

volume: number
+
volume: number

The volume of the storyboard sample.

-

Accessors

isDrawable

  • get isDrawable(): boolean

Accessors

  • get isDrawable(): boolean

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Returns boolean

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/StoryboardSprite.html b/docs/classes/StoryboardSprite.html index 35cc6b2..067fd0d 100644 --- a/docs/classes/StoryboardSprite.html +++ b/docs/classes/StoryboardSprite.html @@ -1,6 +1,6 @@ -StoryboardSprite | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class StoryboardSprite

+StoryboardSprite | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class StoryboardSprite

A storyboard sprite.

-

Hierarchy

Implements

Index

Constructors

constructor

Hierarchy

Implements

Index

Constructors

Properties

anchor

anchor: Anchor
+

Returns StoryboardSprite

Properties

anchor: Anchor

The anchor of the image on the screen.

-

color

color: Color4 = ...
+
color: Color4 = ...

Current color of this sprite.

-

commands

commands: Command<any>[] = []
+
commands: Command<any>[] = []

The list of commands of the storyboard element. This is not synchronized with timelineGroup as constantly updating it can be very expensive. If you need to update this array, use updateCommands.

-

endTime

endTime: number = -Infinity
+
endTime: number = -Infinity

The end time of the storyboard sprite.

-

filePath

filePath: string
+
filePath: string

The file path of the content of this storyboard sprite.

-

flipX

flipX: boolean = false
+
flipX: boolean = false

If this sprite is fliped horizontally.

-

flipY

flipY: boolean = false
+
flipY: boolean = false

If this sprite is fliped vertically.

-

isAdditive

isAdditive: boolean = false
+
isAdditive: boolean = false

If this sprite is using additive blending.

-

loops

loops: CommandLoop[] = []
+
loops: CommandLoop[] = []

The list of command loops of the storyboard sprite.

-

origin

origin: Origins
+
origin: Origins

The origin of the image on the screen.

-

rotation

rotation: number = 0
+
rotation: number = 0

Current rotation of this sprite.

-

scale

scale: Vector2 = ...
+
scale: Vector2 = ...

Current scale of this sprite.

-

startPosition

startPosition: Vector2
+
startPosition: Vector2

The relative start position of the storyboard sprite.

-

startTime

startTime: number = Infinity
+
startTime: number = Infinity

The start time of the storyboard sprite.

-

timelineGroup

timelineGroup: CommandTimelineGroup = ...
+
timelineGroup: CommandTimelineGroup = ...

The list of commands of the storyboard sprite.

-

triggers

triggers: CommandTrigger[] = []
+
triggers: CommandTrigger[] = []

The list of command triggers of the storyboard sprite.

-

Accessors

duration

  • get duration(): number

Accessors

  • get duration(): number

hasCommands

  • get hasCommands(): boolean
  • get hasCommands(): boolean

isDrawable

  • get isDrawable(): boolean
  • get isDrawable(): boolean

startX

  • get startX(): number
  • set startX(value: number): void
  • get startX(): number
  • set startX(value: number): void

startY

  • get startY(): number
  • set startY(value: number): void
  • get startY(): number
  • set startY(value: number): void

Methods

addLoop

  • addLoop(startTime: number, repeatCount: number): CommandLoop

Methods

  • addLoop(startTime: number, repeatCount: number): CommandLoop

addTrigger

  • addTrigger(triggerName: string, startTime: number, endTime: number, groupNumber: number): CommandTrigger

Returns CommandLoop

  • addTrigger(triggerName: string, startTime: number, endTime: number, groupNumber: number): CommandTrigger

adjustTimesToCommands

  • adjustTimesToCommands(): void

Returns CommandTrigger

  • adjustTimesToCommands(): void

resetValuesToCommands

  • resetValuesToCommands(): void
  • resetValuesToCommands(): void

setValueFromCommand

  • setValueFromCommand(command: Command<any>, progress: number): void
  • setValueFromCommand(command: Command<any>, progress: number): void

updateCommands

Returns void

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/StoryboardVideo.html b/docs/classes/StoryboardVideo.html index 51db3c2..c912f9a 100644 --- a/docs/classes/StoryboardVideo.html +++ b/docs/classes/StoryboardVideo.html @@ -1,9 +1,9 @@ -StoryboardVideo | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class StoryboardVideo

+StoryboardVideo | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class StoryboardVideo

A storyboard video.

-

Hierarchy

  • StoryboardVideo

Implements

Index

Constructors

Properties

Accessors

Constructors

constructor

Properties

filePath

filePath: string
+

Hierarchy

  • StoryboardVideo

Implements

Index

Constructors

Properties

Accessors

Constructors

Properties

filePath: string

The file path of this video.

-

startTime

startTime: number
+
startTime: number

The start time of the storyboard video.

-

Accessors

isDrawable

  • get isDrawable(): boolean

Accessors

  • get isDrawable(): boolean

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Returns boolean

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/StrainDecaySkill.html b/docs/classes/StrainDecaySkill.html index 40148b5..51571c0 100644 --- a/docs/classes/StrainDecaySkill.html +++ b/docs/classes/StrainDecaySkill.html @@ -1,15 +1,15 @@ -StrainDecaySkill | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class StrainDecaySkill

+StrainDecaySkill | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class StrainDecaySkill Abstract

Used to processes strain values of difficulty hit objects, keep track of strain levels caused by the processed objects and to calculate a final difficulty value representing the difficulty of hitting all the processed objects.

-

Hierarchy

Index

Constructors

constructor

Accessors

difficultyValue

  • get difficultyValue(): number

Hierarchy

Index

Constructors

Accessors

  • get difficultyValue(): number
  • Returns the calculated difficulty value representing all difficulty hit objects that have been processed up to this point.

    -

    Returns number

Methods

getCurrentStrainPeaks

  • getCurrentStrainPeaks(): Generator<number, any, unknown>

Methods

  • getCurrentStrainPeaks(): Generator<number, any, unknown>

process

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Parameters

Returns void

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/StrainSkill.html b/docs/classes/StrainSkill.html index 810ceef..aa32255 100644 --- a/docs/classes/StrainSkill.html +++ b/docs/classes/StrainSkill.html @@ -1,15 +1,15 @@ -StrainSkill | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class StrainSkill

+StrainSkill | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class StrainSkill Abstract

Used to processes strain values of DifficultyHitObjects, keep track of strain levels caused by the processed objects and to calculate a final difficulty value representing the difficulty of hitting all the processed objects.

-

Hierarchy

Index

Constructors

constructor

Accessors

difficultyValue

  • get difficultyValue(): number

Hierarchy

Index

Constructors

Accessors

  • get difficultyValue(): number
  • Returns the calculated difficulty value representing all difficulty hit objects that have been processed up to this point.

    -

    Returns number

Methods

getCurrentStrainPeaks

  • getCurrentStrainPeaks(): Generator<number, any, unknown>

Methods

  • getCurrentStrainPeaks(): Generator<number, any, unknown>
  • Returns a live enumerable of the peak strains for each "section length" section of the beatmap, including the peak of the current section.

    -

    Returns Generator<number, any, unknown>

process

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Parameters

Returns void

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/SuddenDeath.html b/docs/classes/SuddenDeath.html index 2c39b89..cf54777 100644 --- a/docs/classes/SuddenDeath.html +++ b/docs/classes/SuddenDeath.html @@ -1,15 +1,15 @@ -SuddenDeath | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class SuddenDeath

Hierarchy

  • SuddenDeath

Implements

Index

Constructors

constructor

Properties

acronym

acronym: string = 'SD'
+SuddenDeath | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class SuddenDeath Abstract

Hierarchy

  • SuddenDeath

Implements

Index

Constructors

Properties

acronym: string = 'SD'

The shortened name of this mod.

-

bitwise

bitwise: ModBitwise = ModBitwise.SuddenDeath
+
bitwise: ModBitwise = ModBitwise.SuddenDeath

Bitwise number of this mod.

-

incompatibles

incompatibles: ModBitwise = ...
+
incompatibles: ModBitwise = ...

Incompatible mods.

-

isRanked

isRanked: boolean = true
+
isRanked: boolean = true

Returns if this mod is ranked.

-

multiplier

multiplier: number = 1
+
multiplier: number = 1

The score multiplier of this mod.

-

name

name: string = 'Sudden Death'
+
name: string = 'Sudden Death'

The name of this mod.

-

type

type: ModType = ModType.DifficultyIncrease
+
type: ModType = ModType.DifficultyIncrease

The type of this mod.

-

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/TimedDifficultyAttributes.html b/docs/classes/TimedDifficultyAttributes.html index 948c447..d6be1d0 100644 --- a/docs/classes/TimedDifficultyAttributes.html +++ b/docs/classes/TimedDifficultyAttributes.html @@ -1,13 +1,13 @@ -TimedDifficultyAttributes | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class TimedDifficultyAttributes<T>

+TimedDifficultyAttributes | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class TimedDifficultyAttributes<T>

Wraps a DifficultyAttributes object and adds a time value for which the attribute is valid.

-

Type parameters

Hierarchy

  • TimedDifficultyAttributes

Index

Constructors

Properties

Methods

Constructors

constructor

Type Parameters

Hierarchy

  • TimedDifficultyAttributes

Index

Constructors

Properties

Methods

Constructors

Properties

Readonly attributes

attributes: T
+

Returns TimedDifficultyAttributes<T>

Properties

attributes: T

The difficulty attributes.

-

Readonly time

time: number
+
time: number

The non-clock-adjusted time value at which the attributes take effect.

-

Methods

compareTo

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Methods

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/TimingPoint.html b/docs/classes/TimingPoint.html index 361ce7f..c8bb7a7 100644 --- a/docs/classes/TimingPoint.html +++ b/docs/classes/TimingPoint.html @@ -1,27 +1,30 @@ -TimingPoint | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class TimingPoint

+TimingPoint | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class TimingPoint

A timing point.

-

Hierarchy

Index

Constructors

constructor

Hierarchy

Index

Constructors

Properties

group

group: null | ControlPointGroup
+

Returns TimingPoint

Properties

group: null | ControlPointGroup

The group to which a control point belongs.

-

pointType

pointType: ControlPointType = ControlPointType.TimingPoint
+
pointType: ControlPointType = ControlPointType.TimingPoint

The type of a timing point.

-

timeSignature

timeSignature: TimeSignature = TimeSignature.SimpleQuadruple
+
timeSignature: TimeSignature = TimeSignature.SimpleQuadruple

The time signature of this timing point.

-

Static default

default: TimingPoint = ...
+
default: TimingPoint = ...

The default instance of a timing point.

-

Accessors

beatLength

  • get beatLength(): number
  • set beatLength(value: number): void

bpm

  • get bpm(): number

Accessors

  • get beatLength(): number
  • set beatLength(value: number): void
  • get bpm(): number

startTime

  • get startTime(): number
  • get startTime(): number

Methods

attachGroup

Methods

dettachGroup

  • dettachGroup(): void

Returns void

  • dettachGroup(): void

isRedundant

  • isRedundant(): false
  • isRedundant(): false

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Returns false

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/UserInfo.html b/docs/classes/UserInfo.html index 9a78124..950c1c7 100644 --- a/docs/classes/UserInfo.html +++ b/docs/classes/UserInfo.html @@ -1,39 +1,77 @@ -UserInfo | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class UserInfo

-

An user information.

-

Hierarchy

  • UserInfo

Implements

Index

Constructors

constructor

Returns UserInfo

Properties

accuracy: number = 0
+

Total accuracy of a user.

+
countryCode: "AT" | "CN" | "HT" | "HR" | "NC" | "NF" | "PF" | "SD" | "SH" | "Unknown" | "BD" | "BE" | "BF" | "BG" | "BA" | "BB" | "WF" | "BL" | "BM" | "BN" | "BO" | "BH" | "BI" | "BJ" | "BT" | "JM" | "BV" | "BW" | "WS" | "BQ" | "BR" | "BS" | "JE" | "BY" | "BZ" | "RU" | "RW" | "RS" | "TL" | "RE" | "TM" | "TJ" | "RO" | "TK" | "GW" | "GU" | "GT" | "GS" | "GR" | "GQ" | "GP" | "JP" | "GY" | "GG" | "GF" | "GE" | "GD" | "GB" | "GA" | "SV" | "GN" | "GM" | "GL" | "GI" | "GH" | "OM" | "TN" | "JO" | "HU" | "HK" | "HN" | "HM" | "VE" | "PR" | "PS" | "PW" | "PT" | "SJ" | "PY" | "IQ" | "PA" | "PG" | "PE" | "PK" | "PH" | "PN" | "PL" | "PM" | "ZM" | "EH" | "EE" | "EG" | "ZA" | "EC" | "IT" | "VN" | "SB" | "ET" | "SO" | "ZW" | "SA" | "ES" | "ER" | "ME" | "MD" | "MG" | "MF" | "MA" | "MC" | "UZ" | "MM" | "ML" | "MO" | "MN" | "MH" | "MK" | "MU" | "MT" | "MW" | "MV" | "MQ" | "MP" | "MS" | "MR" | "IM" | "UG" | "TZ" | "MY" | "MX" | "IL" | "FR" | "IO" | "FI" | "FJ" | "FK" | "FM" | "FO" | "NI" | "NL" | "NO" | "NA" | "VU" | "NE" | "NG" | "NZ" | "NP" | "NR" | "NU" | "CK" | "XK" | "CI" | "CH" | "CO" | "CM" | "CL" | "CC" | "CA" | "CG" | "CF" | "CD" | "CZ" | "CY" | "CX" | "CR" | "CW" | "CV" | "CU" | "SZ" | "SY" | "SX" | "KG" | "KE" | "SS" | "SR" | "KI" | "KH" | "KN" | "KM" | "ST" | "SK" | "KR" | "SI" | "KP" | "KW" | "SN" | "SM" | "SL" | "SC" | "KZ" | "KY" | "SG" | "SE" | "DO" | "DM" | "DJ" | "DK" | "VG" | "DE" | "YE" | "DZ" | "US" | "UY" | "YT" | "UM" | "LB" | "LC" | "LA" | "TV" | "TW" | "TT" | "TR" | "LK" | "LI" | "LV" | "TO" | "LT" | "LU" | "LR" | "LS" | "TH" | "TF" | "TG" | "TD" | "TC" | "LY" | "VA" | "VC" | "AE" | "AD" | "AG" | "AF" | "AI" | "VI" | "IS" | "IR" | "AM" | "AL" | "AO" | "AQ" | "AS" | "AR" | "AU" | "AW" | "IN" | "AX" | "AZ" | "IE" | "ID" | "UA" | "QA" | "MZ" = 'Unknown'

User country code.

-

countryRank

countryRank: number = 0
+
countryRank: null | number = null

Rank in the country top.

-

globalRank

globalRank: number = 0
+
followersCount: number = 0
+

How many followers does user have.

+
globalRank: null | number = null

Rank in the global top.

-

id

id: number = 0
+
grades: Grades = ...
+

Grades count of a user.

+
highestRank: null | HighestRank = null
+

Highest rank of the user.

+
id: number = 0

User ID.

-

isActive

isActive: boolean = false
+
isActive: boolean = true

Whether the user is active or not.

-

isBot

isBot: boolean = false
+
isBot: boolean = false

Whether the user is bot or not.

-

isDeleted

isDeleted: boolean = false
+
isDeleted: boolean = false

Whether the user is deleted or not.

-

isOnline

isOnline: boolean = false
+
isOnline: boolean = false

Whether the user is online or not.

-

isSupporter

isSupporter: boolean = false
+
isSupporter: boolean = false

Whether the user is supporter or not.

-

lastVisitAt

lastVisitAt: null | Date = null
+
joinedAt: Date = ...
+

Join date of the user.

+
lastVisitAt: null | Date = null

Last visit date of the user.

-

playmode

playmode: number = 0
+
level: LevelInfo = ...
+

Information about a user's level.

+
maxCombo: number = 0
+

Max combo of a user.

+
playcount: number = 0
+

Total playcount of a user.

+
playmode: number = 0

Playmode of the user.

-

totalPerformance

totalPerformance: number = 0
+
playtime: number = 0
+

Total playtime of a user.

+
previousUsernames: string[] = []
+

Previous nicknames of the user.

+
rankHistory: null | RankHistory = null
+

Rank history of a user.

+
rankedScore: number = 0
+

Ranked score of a user.

+
replaysWatched: number = 0
+

How many times this user's replays have been watched.

+
totalHits: number = 0
+

Total hits of a user.

+
totalPerformance: number = 0

User performance points.

-

username

username: string = ''
+
totalScore: number = 0
+

Total score of a user.

+
username: string = ''

User's name.

-

Methods

clone

Methods

equals

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/classes/Vector2.html b/docs/classes/Vector2.html index 5bb40e8..b31504d 100644 --- a/docs/classes/Vector2.html +++ b/docs/classes/Vector2.html @@ -1,71 +1,71 @@ -Vector2 | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Vector2

Hierarchy

  • Vector2

Index

Constructors

constructor

  • new Vector2(x: number, y?: number): Vector2

Returns Vector2

Properties

x: number

The X-position.

-

y

y: number
+
y: number

The Y-position.

-

Accessors

floatX

  • get floatX(): number

floatY

  • get floatY(): number

Methods

add

Accessors

  • get floatX(): number
  • get floatY(): number

Methods

clone

Returns Vector2

distance

divide

Returns number

dot

Returns Vector2

equals

Returns number

fadd

Returns boolean

fdistance

fdivide

Returns Vector2

  • Subtracts a vector from the current and returns a new instance with single precision.

    -

    Parameters

    • divisor: number

    Returns Vector2

fdot

flength

  • flength(): number

Returns number

  • flength(): number

fnormalize

fscale

  • fscale(multiplier: number): Vector2
  • fscale(multiplier: number): Vector2
  • Scales the current vector and returns a new instance with single precision.

    -

    Parameters

    • multiplier: number

    Returns Vector2

fsubtract

length

  • length(): number

Returns Vector2

  • length(): number

normalize

scale

  • Scales the current vector and returns a new instance.

    Parameters

    • multiplier: number

      Vector multiplier.

      -

    Returns Vector2

subtract

Returns Vector2

toString

  • toString(): string

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Returns Vector2

  • toString(): string

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/enums/Anchor.html b/docs/enums/Anchor.html index ba9cc35..4255169 100644 --- a/docs/enums/Anchor.html +++ b/docs/enums/Anchor.html @@ -1,17 +1,17 @@ -Anchor | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration Anchor

+Anchor | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration Anchor

Origins of the storyboard sprite.

-

Index

Enumeration members

BottomCentre

BottomCentre = 20

BottomLeft

BottomLeft = 12

BottomRight

BottomRight = 36

Centre

Centre = 18

CentreLeft

CentreLeft = 10

CentreRight

CentreRight = 34

Custom

Custom = 64
+

Index

Enumeration Members

BottomCentre: 20
BottomLeft: 12
BottomRight: 36
Centre: 18
CentreLeft: 10
CentreRight: 34
Custom: 64

The user is manually updating the outcome.

-

TopCentre

TopCentre = 17

TopLeft

TopLeft = 9

TopRight

TopRight = 33

x0

x0 = 8
+
TopCentre: 17
TopLeft: 9
TopRight: 33
x0: 8

The horizontal counterpart is at "Left" position.

-

x1

x1 = 16
+
x1: 16

The horizontal counterpart is at "Centre" position.

-

x2

x2 = 32
+
x2: 32

The horizontal counterpart is at "Right" position.

-

y0

y0 = 1
+
y0: 1

The vertical counterpart is at "Top" position.

-

y1

y1 = 2
+
y1: 2

The vertical counterpart is at "Centre" position.

-

y2

y2 = 4
+
y2: 4

The vertical counterpart is at "Bottom" position.

-

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/enums/BlendEquationMode.html b/docs/enums/BlendEquationMode.html index b28e191..1dbe2e5 100644 --- a/docs/enums/BlendEquationMode.html +++ b/docs/enums/BlendEquationMode.html @@ -1 +1 @@ -BlendEquationMode | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration BlendEquationMode

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +BlendEquationMode | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration BlendEquationMode Const

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/enums/BlendingEquation.html b/docs/enums/BlendingEquation.html index 969b0af..3ee8604 100644 --- a/docs/enums/BlendingEquation.html +++ b/docs/enums/BlendingEquation.html @@ -1,13 +1,13 @@ -BlendingEquation | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration BlendingEquation

Index

Enumeration members

Add

Add = 1
+BlendingEquation | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration BlendingEquation Const

Index

Enumeration Members

Add: 1

Adds the source and destination colors.

-

Inherit

Inherit = 0
+
Inherit: 0

Inherits from parent.

-

Max

Max = 3
+
Max: 3

Chooses the maximum of each component of the source and destination colors.

-

Min

Min = 2
+
Min: 2

Chooses the minimum of each component of the source and destination colors.

-

ReverseSubtract

ReverseSubtract = 5
+
ReverseSubtract: 5

Subtracts the source color from the destination color.

-

Subtract

Subtract = 4
+
Subtract: 4

Subtracts the destination color from the source color.

-

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/enums/BlendingFactorDest.html b/docs/enums/BlendingFactorDest.html index 710d090..b526492 100644 --- a/docs/enums/BlendingFactorDest.html +++ b/docs/enums/BlendingFactorDest.html @@ -1 +1 @@ -BlendingFactorDest | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration BlendingFactorDest

Index

Enumeration members

ConstantAlpha

ConstantAlpha = 32771

ConstantColor

ConstantColor = 32769

DstAlpha

DstAlpha = 772

DstColor

DstColor = 774

One

One = 1

OneMinusConstantAlpha

OneMinusConstantAlpha = 32772

OneMinusConstantColor

OneMinusConstantColor = 32770

OneMinusDstAlpha

OneMinusDstAlpha = 773

OneMinusDstColor

OneMinusDstColor = 775

OneMinusSrcAlpha

OneMinusSrcAlpha = 771

OneMinusSrcColor

OneMinusSrcColor = 769

SrcAlpha

SrcAlpha = 770

SrcAlphaSaturate

SrcAlphaSaturate = 776

SrcColor

SrcColor = 768

Zero

Zero = 0

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +BlendingFactorDest | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration BlendingFactorDest Const

Index

Enumeration Members

ConstantAlpha: 32771
ConstantColor: 32769
DstAlpha: 772
DstColor: 774
One: 1
OneMinusConstantAlpha: 32772
OneMinusConstantColor: 32770
OneMinusDstAlpha: 773
OneMinusDstColor: 775
OneMinusSrcAlpha: 771
OneMinusSrcColor: 769
SrcAlpha: 770
SrcAlphaSaturate: 776
SrcColor: 768
Zero: 0

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/enums/BlendingFactorSrc.html b/docs/enums/BlendingFactorSrc.html index 92ab705..a712677 100644 --- a/docs/enums/BlendingFactorSrc.html +++ b/docs/enums/BlendingFactorSrc.html @@ -1 +1 @@ -BlendingFactorSrc | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration BlendingFactorSrc

Index

Enumeration members

ConstantAlpha

ConstantAlpha = 32771

ConstantColor

ConstantColor = 32769

DstAlpha

DstAlpha = 772

DstColor

DstColor = 774

One

One = 1

OneMinusConstantAlpha

OneMinusConstantAlpha = 32772

OneMinusConstantColor

OneMinusConstantColor = 32770

OneMinusDstAlpha

OneMinusDstAlpha = 773

OneMinusDstColor

OneMinusDstColor = 775

OneMinusSrcAlpha

OneMinusSrcAlpha = 771

OneMinusSrcColor

OneMinusSrcColor = 769

SrcAlpha

SrcAlpha = 770

SrcAlphaSaturate

SrcAlphaSaturate = 776

SrcColor

SrcColor = 768

Zero

Zero = 0

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +BlendingFactorSrc | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration BlendingFactorSrc Const

Index

Enumeration Members

ConstantAlpha: 32771
ConstantColor: 32769
DstAlpha: 772
DstColor: 774
One: 1
OneMinusConstantAlpha: 32772
OneMinusConstantColor: 32770
OneMinusDstAlpha: 773
OneMinusDstColor: 775
OneMinusSrcAlpha: 771
OneMinusSrcColor: 769
SrcAlpha: 770
SrcAlphaSaturate: 776
SrcColor: 768
Zero: 0

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/enums/BlendingMode.html b/docs/enums/BlendingMode.html index 4751432..a04672f 100644 --- a/docs/enums/BlendingMode.html +++ b/docs/enums/BlendingMode.html @@ -1,3 +1,3 @@ -BlendingMode | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration BlendingMode

+BlendingMode | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration BlendingMode

Types of blending.

-

Index

Enumeration members

AdditiveBlending

AdditiveBlending = 0

AlphaBlending

AlphaBlending = 1

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Index

Enumeration Members

AdditiveBlending: 0
AlphaBlending: 1

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/enums/BlendingType.html b/docs/enums/BlendingType.html index c1def0e..8d67119 100644 --- a/docs/enums/BlendingType.html +++ b/docs/enums/BlendingType.html @@ -1,3 +1,3 @@ -BlendingType | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration BlendingType

+BlendingType | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration BlendingType Const

Types of blending.

-

Index

Enumeration members

ConstantAlpha

ConstantAlpha = 1

ConstantColor

ConstantColor = 2

DstAlpha

DstAlpha = 3

DstColor

DstColor = 4

Inherit

Inherit = 0

One

One = 5

OneMinusConstantAlpha

OneMinusConstantAlpha = 6

OneMinusConstantColor

OneMinusConstantColor = 7

OneMinusDstAlpha

OneMinusDstAlpha = 8

OneMinusDstColor

OneMinusDstColor = 9

OneMinusSrcAlpha

OneMinusSrcAlpha = 10

OneMinusSrcColor

OneMinusSrcColor = 11

SrcAlpha

SrcAlpha = 12

SrcAlphaSaturate

SrcAlphaSaturate = 13

SrcColor

SrcColor = 14

Zero

Zero = 15

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Index

Enumeration Members

ConstantAlpha: 1
ConstantColor: 2
DstAlpha: 3
DstColor: 4
Inherit: 0
One: 5
OneMinusConstantAlpha: 6
OneMinusConstantColor: 7
OneMinusDstAlpha: 8
OneMinusDstColor: 9
OneMinusSrcAlpha: 10
OneMinusSrcColor: 11
SrcAlpha: 12
SrcAlphaSaturate: 13
SrcColor: 14
Zero: 15

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/enums/CommandType.html b/docs/enums/CommandType.html index 5eccbad..8773dd4 100644 --- a/docs/enums/CommandType.html +++ b/docs/enums/CommandType.html @@ -1,3 +1,3 @@ -CommandType | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration CommandType

+CommandType | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration CommandType

Types of storyboard commands.

-

Index

Enumeration members

Color

Color = "C"

Fade

Fade = "F"

Movement

Movement = "M"

MovementX

MovementX = "MX"

MovementY

MovementY = "MY"

None

None = ""

Parameter

Parameter = "P"

Rotation

Rotation = "R"

Scale

Scale = "S"

VectorScale

VectorScale = "V"

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Index

Enumeration Members

Color: "C"
Fade: "F"
Movement: "M"
MovementX: "MX"
MovementY: "MY"
None: ""
Parameter: "P"
Rotation: "R"
Scale: "S"
VectorScale: "V"

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/enums/CompoundType.html b/docs/enums/CompoundType.html index e32f7b4..4e7ab8b 100644 --- a/docs/enums/CompoundType.html +++ b/docs/enums/CompoundType.html @@ -1,3 +1,3 @@ -CompoundType | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration CompoundType

+CompoundType | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration CompoundType

Types of storyboard compounds.

-

Index

Enumeration members

Enumeration members

Loop

Loop = "L"

None

None = ""

Trigger

Trigger = "T"

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Index

Enumeration Members

Enumeration Members

Loop: "L"
None: ""
Trigger: "T"

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/enums/ControlPointType.html b/docs/enums/ControlPointType.html index 41a08ac..4c871af 100644 --- a/docs/enums/ControlPointType.html +++ b/docs/enums/ControlPointType.html @@ -1,3 +1,3 @@ -ControlPointType | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration ControlPointType

+ControlPointType | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration ControlPointType

All types of control points.

-

Index

Enumeration members

DifficultyPoint

DifficultyPoint = 1

EffectPoint

EffectPoint = 2

SamplePoint

SamplePoint = 3

TimingPoint

TimingPoint = 0

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Index

Enumeration Members

DifficultyPoint: 1
EffectPoint: 2
SamplePoint: 3
TimingPoint: 0

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/enums/CountryCode.html b/docs/enums/CountryCode.html new file mode 100644 index 0000000..0a80d40 --- /dev/null +++ b/docs/enums/CountryCode.html @@ -0,0 +1 @@ +CountryCode | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration CountryCode

Index

Enumeration Members

AD: 227
AE: 226
AF: 229
AG: 228
AI: 230
AL: 235
AM: 234
AO: 236
AQ: 237
AR: 239
AS: 238
AT: 241
AU: 240
AW: 242
AX: 244
AZ: 245
BA: 5
BB: 6
BD: 1
BE: 2
BF: 3
BG: 4
BH: 12
BI: 13
BJ: 14
BL: 8
BM: 9
BN: 10
BO: 11
BQ: 20
BR: 21
BS: 22
BT: 15
BV: 17
BW: 18
BY: 24
BZ: 25
CA: 154
CC: 153
CD: 157
CF: 156
CG: 155
CH: 148
CI: 147
CK: 145
CL: 152
CM: 151
CN: 150
CO: 149
CR: 161
CU: 164
CV: 163
CW: 162
CX: 160
CY: 159
CZ: 158
DE: 196
DJ: 193
DK: 194
DM: 192
DO: 191
DZ: 198
EC: 87
EE: 84
EG: 85
EH: 83
ER: 96
ES: 95
ET: 91
FI: 127
FJ: 128
FK: 129
FM: 130
FO: 131
FR: 124
GA: 49
GB: 48
GD: 47
GE: 46
GF: 45
GG: 44
GH: 55
GI: 54
GL: 53
GM: 52
GN: 51
GP: 41
GQ: 40
GR: 39
GS: 38
GT: 37
GU: 36
GW: 35
GY: 43
HK: 62
HM: 64
HN: 63
HR: 59
HT: 60
HU: 61
ID: 247
IE: 246
IL: 123
IM: 118
IN: 243
IO: 125
IQ: 72
IR: 233
IS: 232
IT: 88
JE: 23
JM: 16
JO: 58
JP: 42
KE: 169
KG: 168
KH: 173
KI: 172
KM: 175
KN: 174
KP: 180
KR: 178
KW: 181
KY: 187
KZ: 186
LA: 205
LB: 203
LC: 204
LI: 211
LK: 210
LR: 216
LS: 217
LT: 214
LU: 215
LV: 212
LY: 223
MA: 101
MC: 102
MD: 98
ME: 97
MF: 100
MG: 99
MH: 108
MK: 109
ML: 105
MM: 104
MN: 107
MO: 106
MP: 115
MQ: 114
MR: 117
MS: 116
MT: 111
MU: 110
MV: 113
MW: 112
MX: 122
MY: 121
MZ: 250
NA: 135
NC: 137
NE: 138
NF: 139
NG: 140
NI: 132
NL: 133
NO: 134
NP: 142
NR: 143
NU: 144
NZ: 141
OM: 56
PA: 73
PE: 76
PF: 74
PG: 75
PH: 78
PK: 77
PL: 80
PM: 81
PN: 79
PR: 66
PS: 67
PT: 69
PW: 68
PY: 71
QA: 249
RE: 30
RO: 33
RS: 28
RU: 26
RW: 27
SA: 94
SB: 90
SC: 185
SD: 190
SE: 189
SG: 188
SH: 126
SI: 179
SJ: 70
SK: 177
SL: 184
SM: 183
SN: 182
SO: 92
SR: 171
SS: 170
ST: 176
SV: 50
SX: 167
SY: 166
SZ: 165
TC: 222
TD: 221
TF: 219
TG: 220
TH: 218
TJ: 32
TK: 34
TL: 29
TM: 31
TN: 57
TO: 213
TR: 209
TT: 208
TV: 206
TW: 207
TZ: 120
UA: 248
UG: 119
UM: 202
US: 199
UY: 200
UZ: 103
Unknown: 0
VA: 224
VC: 225
VE: 65
VG: 195
VI: 231
VN: 89
VU: 136
WF: 7
WS: 19
XK: 146
YE: 197
YT: 201
ZA: 86
ZM: 82
ZW: 93

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/enums/EasingType.html b/docs/enums/EasingType.html index 076f5bb..7f4c1a8 100644 --- a/docs/enums/EasingType.html +++ b/docs/enums/EasingType.html @@ -1,3 +1,3 @@ -EasingType | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration EasingType

+EasingType | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration EasingType

Types of easing.

-

Index

Enumeration members

In

In = 2

InBack

InBack = 29

InBounce

InBounce = 32

InCirc

InCirc = 21

InCubic

InCubic = 6

InElastic

InElastic = 24

InExpo

InExpo = 18

InOutBack

InOutBack = 31

InOutBounce

InOutBounce = 34

InOutCirc

InOutCirc = 23

InOutCubic

InOutCubic = 8

InOutElastic

InOutElastic = 28

InOutExpo

InOutExpo = 20

InOutQuad

InOutQuad = 5

InOutQuart

InOutQuart = 11

InOutQuint

InOutQuint = 14

InOutSine

InOutSine = 17

InQuad

InQuad = 3

InQuart

InQuart = 9

InQuint

InQuint = 12

InSine

InSine = 15

None

None = 0

Out

Out = 1

OutBack

OutBack = 30

OutBounce

OutBounce = 33

OutCirc

OutCirc = 22

OutCubic

OutCubic = 7

OutElastic

OutElastic = 25

OutElasticHalf

OutElasticHalf = 26

OutElasticQuarter

OutElasticQuarter = 27

OutExpo

OutExpo = 19

OutPow10

OutPow10 = 35

OutQuad

OutQuad = 4

OutQuart

OutQuart = 10

OutQuint

OutQuint = 13

OutSine

OutSine = 16

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Index

Enumeration Members

In: 2
InBack: 29
InBounce: 32
InCirc: 21
InCubic: 6
InElastic: 24
InExpo: 18
InOutBack: 31
InOutBounce: 34
InOutCirc: 23
InOutCubic: 8
InOutElastic: 28
InOutExpo: 20
InOutQuad: 5
InOutQuart: 11
InOutQuint: 14
InOutSine: 17
InQuad: 3
InQuart: 9
InQuint: 12
InSine: 15
None: 0
Out: 1
OutBack: 30
OutBounce: 33
OutCirc: 22
OutCubic: 7
OutElastic: 25
OutElasticHalf: 26
OutElasticQuarter: 27
OutExpo: 19
OutPow10: 35
OutQuad: 4
OutQuart: 10
OutQuint: 13
OutSine: 16

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/enums/EffectType.html b/docs/enums/EffectType.html index 24cc705..f3895a4 100644 --- a/docs/enums/EffectType.html +++ b/docs/enums/EffectType.html @@ -1,3 +1,3 @@ -EffectType | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration EffectType

+EffectType | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration EffectType

All types of effects.

-

Index

Enumeration members

Enumeration members

Kiai

Kiai = 1

None

None = 0

OmitFirstBarLine

OmitFirstBarLine = 8

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Index

Enumeration Members

Enumeration Members

Kiai: 1
None: 0
OmitFirstBarLine: 8

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/enums/EventType.html b/docs/enums/EventType.html index 4e98abf..d49b167 100644 --- a/docs/enums/EventType.html +++ b/docs/enums/EventType.html @@ -1,3 +1,3 @@ -EventType | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration EventType

+EventType | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration EventType

Types of storyboard events.

-

Index

Enumeration members

Animation

Animation = 6

Background

Background = 0

Break

Break = 2

Colour

Colour = 3

Sample

Sample = 5

Sprite

Sprite = 4

StoryboardCommand

StoryboardCommand = 7

Video

Video = 1

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Index

Enumeration Members

Animation: 6
Background: 0
Break: 2
Colour: 3
Sample: 5
Sprite: 4
StoryboardCommand: 7
Video: 1

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/enums/HitResult.html b/docs/enums/HitResult.html index dfb274b..5a87a1c 100644 --- a/docs/enums/HitResult.html +++ b/docs/enums/HitResult.html @@ -1,24 +1,24 @@ -HitResult | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration HitResult

Index

Enumeration members

Good

Good = 4

Great

Great = 5

IgnoreHit

IgnoreHit = 14
+HitResult | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration HitResult

Index

Enumeration Members

Good: 4
Great: 5
IgnoreHit: 14

Indicates a hit that should be ignored for scoring purposes.

-

IgnoreMiss

IgnoreMiss = 13
+
IgnoreMiss: 13

Indicates a miss that should be ignored for scoring purposes.

-

LargeBonus

LargeBonus = 12
+
LargeBonus: 12

Indicates a large bonus.

-

LargeTickHit

LargeTickHit = 10
+
LargeTickHit: 10

Indicates a large tick hit.

-

LargeTickMiss

LargeTickMiss = 9
+
LargeTickMiss: 9

Indicates a large tick miss.

-

Meh

Meh = 2

Miss

Miss = 1
+
Meh: 2
Miss: 1

Indicates that the object has been judged as a miss. This miss window should determine how early a hit can be before it is considered for judgement (as opposed to being ignored as "too far in the future"). It should also define when a forced miss should be triggered (as a result of no user input in time).

-

None

None = 0
+
None: 0

Indicates that the object has not been judged yet.

-

Ok

Ok = 3

Perfect

Perfect = 6

SmallBonus

SmallBonus = 11
+
Ok: 3
Perfect: 6
SmallBonus: 11

Indicates a small bonus.

-

SmallTickHit

SmallTickHit = 8
+
SmallTickHit: 8

Indicates a small tick hit.

-

SmallTickMiss

SmallTickMiss = 7
+
SmallTickMiss: 7

Indicates small tick miss.

-

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/enums/HitSound.html b/docs/enums/HitSound.html index 7334c2e..1ab14bb 100644 --- a/docs/enums/HitSound.html +++ b/docs/enums/HitSound.html @@ -1,3 +1,3 @@ -HitSound | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration HitSound

+HitSound | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration HitSound

Hit sound types.

-

Index

Enumeration members

Enumeration members

Clap

Clap = 8

Finish

Finish = 4

None

None = 0

Normal

Normal = 1

Whistle

Whistle = 2

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Index

Enumeration Members

Enumeration Members

Clap: 8
Finish: 4
None: 0
Normal: 1
Whistle: 2

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/enums/HitType.html b/docs/enums/HitType.html index 7d5eea0..a31b583 100644 --- a/docs/enums/HitType.html +++ b/docs/enums/HitType.html @@ -1,3 +1,3 @@ -HitType | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration HitType

+HitType | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration HitType

Hit types.

-

Index

Enumeration members

ComboOffset

ComboOffset = 112

ComboSkip1

ComboSkip1 = 16

ComboSkip2

ComboSkip2 = 32

ComboSkip3

ComboSkip3 = 64

Hold

Hold = 128

NewCombo

NewCombo = 4

Normal

Normal = 1

Slider

Slider = 2

Spinner

Spinner = 8

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Index

Enumeration Members

ComboOffset: 112
ComboSkip1: 16
ComboSkip2: 32
ComboSkip3: 64
Hold: 128
NewCombo: 4
Normal: 1
Slider: 2
Spinner: 8

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/enums/LayerType.html b/docs/enums/LayerType.html index 68a4d4f..b997894 100644 --- a/docs/enums/LayerType.html +++ b/docs/enums/LayerType.html @@ -1,3 +1,3 @@ -LayerType | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration LayerType

+LayerType | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration LayerType

Types of storyboard layers.

-

Index

Enumeration members

Background

Background = 0

Fail

Fail = 1

Foreground

Foreground = 3

Overlay

Overlay = 4

Pass

Pass = 2

Video

Video = 5

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Index

Enumeration Members

Background: 0
Fail: 1
Foreground: 3
Overlay: 4
Pass: 2
Video: 5

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/enums/LoopType.html b/docs/enums/LoopType.html index 3b06b09..33b3e73 100644 --- a/docs/enums/LoopType.html +++ b/docs/enums/LoopType.html @@ -1,3 +1,3 @@ -LoopType | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration LoopType

+LoopType | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration LoopType

Types of animation loops.

-

Index

Enumeration members

Enumeration members

LoopForever

LoopForever = 0

LoopOnce

LoopOnce = 1

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Index

Enumeration Members

Enumeration Members

LoopForever: 0
LoopOnce: 1

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/enums/ModBitwise.html b/docs/enums/ModBitwise.html index 2e25d76..5fe9199 100644 --- a/docs/enums/ModBitwise.html +++ b/docs/enums/ModBitwise.html @@ -1,3 +1,3 @@ -ModBitwise | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration ModBitwise

+ModBitwise | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration ModBitwise

Bitwise flags of all mods.

-

Index

Enumeration members

Autoplay

Autoplay = 2048

Cinema

Cinema = 4194304

DifficultyDecrease

DifficultyDecrease = 258

DifficultyIncrease

DifficultyIncrease = 1616

DoubleTime

DoubleTime = 64

Easy

Easy = 2

FadeIn

FadeIn = 1048576

Flashlight

Flashlight = 1024

HalfTime

HalfTime = 256

HardRock

HardRock = 16

Hidden

Hidden = 8

Key1

Key1 = 67108864

Key2

Key2 = 268435456

Key3

Key3 = 134217728

Key4

Key4 = 32768

Key5

Key5 = 65536

Key6

Key6 = 131072

Key7

Key7 = 262144

Key8

Key8 = 524288

Key9

Key9 = 16777216

KeyCoop

KeyCoop = 33554432

KeyMod

KeyMod = 487555072

Mirror

Mirror = 1073741824

Nightcore

Nightcore = 512

NoFail

NoFail = 1

None

None = 0

Perfect

Perfect = 16384

Random

Random = 2097152

Relax

Relax = 128

Relax2

Relax2 = 8192

ScoreV2

ScoreV2 = 536870912

SpunOut

SpunOut = 4096

SuddenDeath

SuddenDeath = 32

Target

Target = 8388608

TouchDevice

TouchDevice = 4

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Index

Enumeration Members

Autoplay: 2048
Cinema: 4194304
DifficultyDecrease: 258
DifficultyIncrease: 1616
DoubleTime: 64
Easy: 2
FadeIn: 1048576
Flashlight: 1024
HalfTime: 256
HardRock: 16
Hidden: 8
Key1: 67108864
Key2: 268435456
Key3: 134217728
Key4: 32768
Key5: 65536
Key6: 131072
Key7: 262144
Key8: 524288
Key9: 16777216
KeyCoop: 33554432
KeyMod: 487555072
Mirror: 1073741824
Nightcore: 512
NoFail: 1
None: 0
Perfect: 16384
Random: 2097152
Relax: 128
Relax2: 8192
ScoreV2: 536870912
SpunOut: 4096
SuddenDeath: 32
Target: 8388608
TouchDevice: 4

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/enums/ModType.html b/docs/enums/ModType.html index a87d575..edef76f 100644 --- a/docs/enums/ModType.html +++ b/docs/enums/ModType.html @@ -1,3 +1,3 @@ -ModType | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration ModType

+ModType | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration ModType

Types of mods.

-

Index

Enumeration members

Automation

Automation = 3

Conversion

Conversion = 2

DifficultyIncrease

DifficultyIncrease = 1

DifficultyReduction

DifficultyReduction = 0

Fun

Fun = 4

System

System = 5

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Index

Enumeration Members

Automation: 3
Conversion: 2
DifficultyIncrease: 1
DifficultyReduction: 0
Fun: 4
System: 5

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/enums/Origins.html b/docs/enums/Origins.html index ceecdf2..0574e9f 100644 --- a/docs/enums/Origins.html +++ b/docs/enums/Origins.html @@ -1,3 +1,3 @@ -Origins | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration Origins

+Origins | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration Origins

This is used by osu!lazer to convert legacy origins to the new format.

-

Index

Enumeration members

BottomCentre

BottomCentre = 4

BottomLeft

BottomLeft = 8

BottomRight

BottomRight = 9

Centre

Centre = 1

CentreLeft

CentreLeft = 2

CentreRight

CentreRight = 7

Custom

Custom = 6

TopCentre

TopCentre = 5

TopLeft

TopLeft = 0

TopRight

TopRight = 3

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Index

Enumeration Members

BottomCentre: 4
BottomLeft: 8
BottomRight: 9
Centre: 1
CentreLeft: 2
CentreRight: 7
Custom: 6
TopCentre: 5
TopLeft: 0
TopRight: 3

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/enums/ParameterType.html b/docs/enums/ParameterType.html index 47e8d1c..e3656ff 100644 --- a/docs/enums/ParameterType.html +++ b/docs/enums/ParameterType.html @@ -1,3 +1,3 @@ -ParameterType | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration ParameterType

+ParameterType | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration ParameterType

Types of the parameter command.

-

Index

Enumeration members

BlendingMode

BlendingMode = "A"

HorizontalFlip

HorizontalFlip = "H"

None

None = ""

VerticalFlip

VerticalFlip = "V"

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Index

Enumeration Members

BlendingMode: "A"
HorizontalFlip: "H"
None: ""
VerticalFlip: "V"

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/enums/PathType.html b/docs/enums/PathType.html index 3f65d6d..905e511 100644 --- a/docs/enums/PathType.html +++ b/docs/enums/PathType.html @@ -1,3 +1,3 @@ -PathType | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration PathType

+PathType | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration PathType

Slider curve types.

-

Index

Enumeration members

Bezier

Bezier = "B"

Catmull

Catmull = "C"

Linear

Linear = "L"

PerfectCurve

PerfectCurve = "P"

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Index

Enumeration Members

Bezier: "B"
Catmull: "C"
Linear: "L"
PerfectCurve: "P"

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/enums/ReplayButtonState.html b/docs/enums/ReplayButtonState.html index c34b1cd..637645f 100644 --- a/docs/enums/ReplayButtonState.html +++ b/docs/enums/ReplayButtonState.html @@ -1 +1 @@ -ReplayButtonState | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration ReplayButtonState

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +ReplayButtonState | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration ReplayButtonState

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/enums/SampleSet.html b/docs/enums/SampleSet.html index 229db93..024092c 100644 --- a/docs/enums/SampleSet.html +++ b/docs/enums/SampleSet.html @@ -1,3 +1,3 @@ -SampleSet | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration SampleSet

+SampleSet | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration SampleSet

Types of sample set.

-

Index

Enumeration members

Enumeration members

Drum

Drum = 3

None

None = 0

Normal

Normal = 1

Soft

Soft = 2

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Index

Enumeration Members

Enumeration Members

Drum: 3
None: 0
Normal: 1
Soft: 2

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/enums/ScoreRank.html b/docs/enums/ScoreRank.html index 916bc3c..31b2ce7 100644 --- a/docs/enums/ScoreRank.html +++ b/docs/enums/ScoreRank.html @@ -1 +1 @@ -ScoreRank | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration ScoreRank

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +ScoreRank | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration ScoreRank

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/enums/SliderEventType.html b/docs/enums/SliderEventType.html index 0eacf2a..22f8617 100644 --- a/docs/enums/SliderEventType.html +++ b/docs/enums/SliderEventType.html @@ -1,3 +1,3 @@ -SliderEventType | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration SliderEventType

+SliderEventType | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration SliderEventType

Types of slider events.

-

Index

Enumeration members

Head

Head = 4

LegacyLastTick

LegacyLastTick = 2

Repeat

Repeat = 16

Tail

Tail = 8

Tick

Tick = 1

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Index

Enumeration Members

Head: 4
LegacyLastTick: 2
Repeat: 16
Tail: 8
Tick: 1

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/enums/TimeSignature.html b/docs/enums/TimeSignature.html index bf8e92b..ede4259 100644 --- a/docs/enums/TimeSignature.html +++ b/docs/enums/TimeSignature.html @@ -1,3 +1,3 @@ -TimeSignature | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration TimeSignature

+TimeSignature | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration TimeSignature

All time signatures.

-

Index

Enumeration members

Enumeration members

SimpleQuadruple

SimpleQuadruple = 4

SimpleTriple

SimpleTriple = 3

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Index

Enumeration Members

Enumeration Members

SimpleQuadruple: 4
SimpleTriple: 3

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/index.html b/docs/index.html index 009c612..c134d76 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1,4 +1,4 @@ -osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

osu-classes

+osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

osu-classes

osu-classes

@@ -48,4 +48,4 @@

Contributing

License

This project is licensed under the MIT License - see the LICENSE for details.

-

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/interfaces/IApplicableToBeatmap.html b/docs/interfaces/IApplicableToBeatmap.html index 5e8a8ee..1979a05 100644 --- a/docs/interfaces/IApplicableToBeatmap.html +++ b/docs/interfaces/IApplicableToBeatmap.html @@ -1,21 +1,21 @@ -IApplicableToBeatmap | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IApplicableToBeatmap

+IApplicableToBeatmap | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IApplicableToBeatmap

Mod that applicable to the beatmap.

-

Hierarchy

  • IMod
    • IApplicableToBeatmap

Index

Properties

acronym

acronym: string
+

Hierarchy

  • IMod
    • IApplicableToBeatmap

Index

Properties

acronym: string

The shortened name of this mod.

-

bitwise

bitwise: ModBitwise
+
bitwise: ModBitwise

Bitwise number of this mod.

-

incompatibles

incompatibles: ModBitwise
+
incompatibles: ModBitwise

Incompatible mods.

-

isRanked

isRanked: boolean
+
isRanked: boolean

Returns if this mod is ranked.

-

multiplier

multiplier: number
+
multiplier: number

The score multiplier of this mod.

-

name

name: string
+
name: string

The name of this mod.

-

type

type: ModType
+
type: ModType

The type of this mod.

-

Methods

applyToBeatmap

Methods

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Returns void

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/interfaces/IApplicableToConverter.html b/docs/interfaces/IApplicableToConverter.html index 6417f71..ddf7e53 100644 --- a/docs/interfaces/IApplicableToConverter.html +++ b/docs/interfaces/IApplicableToConverter.html @@ -1,21 +1,21 @@ -IApplicableToConverter | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IApplicableToConverter

+IApplicableToConverter | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IApplicableToConverter

Mod that applicable to the converter.

-

Hierarchy

  • IMod
    • IApplicableToConverter

Index

Properties

acronym

acronym: string
+

Hierarchy

  • IMod
    • IApplicableToConverter

Index

Properties

acronym: string

The shortened name of this mod.

-

bitwise

bitwise: ModBitwise
+
bitwise: ModBitwise

Bitwise number of this mod.

-

incompatibles

incompatibles: ModBitwise
+
incompatibles: ModBitwise

Incompatible mods.

-

isRanked

isRanked: boolean
+
isRanked: boolean

Returns if this mod is ranked.

-

multiplier

multiplier: number
+
multiplier: number

The score multiplier of this mod.

-

name

name: string
+
name: string

The name of this mod.

-

type

type: ModType
+
type: ModType

The type of this mod.

-

Methods

applyToConverter

Methods

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Returns void

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/interfaces/IApplicableToDifficulty.html b/docs/interfaces/IApplicableToDifficulty.html index 3678177..94e3748 100644 --- a/docs/interfaces/IApplicableToDifficulty.html +++ b/docs/interfaces/IApplicableToDifficulty.html @@ -1,21 +1,21 @@ -IApplicableToDifficulty | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IApplicableToDifficulty

+IApplicableToDifficulty | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IApplicableToDifficulty

Mod that applicable to the beatmap.

-

Hierarchy

  • IMod
    • IApplicableToDifficulty

Implemented by

Index

Properties

acronym

acronym: string
+

Hierarchy

  • IMod
    • IApplicableToDifficulty

Implemented by

Index

Properties

acronym: string

The shortened name of this mod.

-

bitwise

bitwise: ModBitwise
+
bitwise: ModBitwise

Bitwise number of this mod.

-

incompatibles

incompatibles: ModBitwise
+
incompatibles: ModBitwise

Incompatible mods.

-

isRanked

isRanked: boolean
+
isRanked: boolean

Returns if this mod is ranked.

-

multiplier

multiplier: number
+
multiplier: number

The score multiplier of this mod.

-

name

name: string
+
name: string

The name of this mod.

-

type

type: ModType
+
type: ModType

The type of this mod.

-

Methods

applyToDifficulty

Methods

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Returns void

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/interfaces/IApplicableToHitObjects.html b/docs/interfaces/IApplicableToHitObjects.html index 950ddf3..3a3a145 100644 --- a/docs/interfaces/IApplicableToHitObjects.html +++ b/docs/interfaces/IApplicableToHitObjects.html @@ -1,21 +1,21 @@ -IApplicableToHitObjects | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IApplicableToHitObjects

+IApplicableToHitObjects | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IApplicableToHitObjects

Mod that applicable to the hit objects.

-

Hierarchy

  • IMod
    • IApplicableToHitObjects

Index

Properties

acronym

acronym: string
+

Hierarchy

  • IMod
    • IApplicableToHitObjects

Index

Properties

acronym: string

The shortened name of this mod.

-

bitwise

bitwise: ModBitwise
+
bitwise: ModBitwise

Bitwise number of this mod.

-

incompatibles

incompatibles: ModBitwise
+
incompatibles: ModBitwise

Incompatible mods.

-

isRanked

isRanked: boolean
+
isRanked: boolean

Returns if this mod is ranked.

-

multiplier

multiplier: number
+
multiplier: number

The score multiplier of this mod.

-

name

name: string
+
name: string

The name of this mod.

-

type

type: ModType
+
type: ModType

The type of this mod.

-

Methods

applyToHitObjects

Methods

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Returns void

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/interfaces/IBeatmap.html b/docs/interfaces/IBeatmap.html index 64df72c..8080beb 100644 --- a/docs/interfaces/IBeatmap.html +++ b/docs/interfaces/IBeatmap.html @@ -1,41 +1,41 @@ -IBeatmap | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IBeatmap

+IBeatmap | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IBeatmap

A beatmap.

-

Hierarchy

  • IBeatmap

Implemented by

Index

Properties

Optional base

base?: IBeatmap
+

Hierarchy

  • IBeatmap

Implemented by

Index

Properties

base?: IBeatmap

The optional link to the base beatmap. Base beatmap prefered for beatmap convertation.

-

bpmMax

bpmMax: number
+
bpm: number
+

The most common BPM of a beatmap.

+
bpmMax: number

Maximal BPM of a beatmap.

-

bpmMin

bpmMin: number
+
bpmMin: number

Minimal BPM of a beatmap.

-

bpmMode

bpmMode: number
-

The most common BPM of a beatmap.

-

colors

+

Beatmap skin configuration.

-

controlPoints

controlPoints: ControlPointInfo
+
controlPoints: ControlPointInfo

Beatmap control points.

-

difficulty

+

Beatmap difficulty.

-

editor

+

Beatmap editor settings.

-

events

+

Beatmap events & storyboard.

-

fileFormat

fileFormat: number
+
fileFormat: number

Beatmap file version.

-

general

+

Beatmap general info.

-

hitObjects

hitObjects: IHitObject[]
+
hitObjects: IHitObject[]

Beatmap hit objects.

-

length

length: number
+
length: number

Beatmap length in milliseconds.

-

metadata

+

Beatmap metadata.

-

mode

mode: number
+
mode: number

Beatmap game mode.

-

originalMode

originalMode: number
+
originalMode: number

Beatmap original game mode.

-

totalBreakTime

totalBreakTime: number
+
totalBreakTime: number

The total break time of a beatmap.

-

Methods

clone

Methods

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/interfaces/IBeatmapInfo.html b/docs/interfaces/IBeatmapInfo.html index da71c2f..e97720f 100644 --- a/docs/interfaces/IBeatmapInfo.html +++ b/docs/interfaces/IBeatmapInfo.html @@ -1,74 +1,74 @@ -IBeatmapInfo | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IBeatmapInfo

+IBeatmapInfo | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IBeatmapInfo

A beatmap information.

-

Hierarchy

  • IBeatmapInfo

Implemented by

Index

Properties

approachRate

approachRate: number
+

Hierarchy

  • IBeatmapInfo

Implemented by

Index

Properties

approachRate: number

Approach rate of the beatmap.

-

artist

artist: string
+
artist: string

The beatmap artist.

-

beatmapsetId

beatmapsetId: number
+
beatmapsetId: number

ID of beatmapset of this beatmap.

-

bpmMax

bpmMax: number
+
bpm: number
+

The most common BPM of a beatmap.

+
bpmMax: number

Maximal BPM of a beatmap.

-

bpmMin

bpmMin: number
+
bpmMin: number

Minimal BPM of a beatmap.

-

bpmMode

bpmMode: number
-

The most common BPM of a beatmap.

-

circleSize

circleSize: number
+
circleSize: number

Circle size of the beatmap.

-

creator

creator: string
+
creator: string

The beatmap creator username.

-

creatorId

creatorId: number
+
creatorId: number

The beatmap creator ID.

-

deletedAt

deletedAt: null | Date
+
deletedAt: null | Date

The date of the beatmap deletion.

-

drainRate

drainRate: number
+
drainRate: number

HP drain rate of the beatmap.

-

favourites

favourites: number
+
favourites: number

Number of the beatmap favourites.

-

hittable

hittable: number
+
hashMD5: string
+

Beatmap MD5 hash.

+
hittable: number

Number of hittable objects of the beatmap.

-

holdable

holdable: number
+
holdable: number

Number of holdable objects of the beatmap.

-

id

id: number
+
id: number

The beatmap ID.

-

isConvert

isConvert: boolean
+
isConvert: boolean

If this beatmap info is for converted beatmap.

-

length

length: number
+
length: number

Length of the beatmap in seconds.

-

maxCombo

maxCombo: number
+
maxCombo: number

Max combo of the beatmap.

-

md5

md5: string
-

Beatmap MD5 hash.

-

mods

mods: null | ModCombination
+
mods: null | ModCombination

Mods of this beatmap info.

-

overallDifficulty

overallDifficulty: number
+
overallDifficulty: number

Overall difficulty of the beatmap.

-

passcount

passcount: number
+
passcount: number

Number of passes of the beatmap.

-

playcount

playcount: number
+
playcount: number

Number of playcount of the beatmap.

-

rawMods

rawMods: string | number
+
rawMods: string | number

Raw mods of this beatmap info.

-

ruleset

ruleset: null | IRuleset
+
ruleset: null | IRuleset

Ruleset instance.

-

rulesetId

rulesetId: number
+
rulesetId: number

The ruleset ID of this beatmap info.

-

slidable

slidable: number
+
slidable: number

Number of slidable objects of the beatmap.

-

spinnable

spinnable: number
+
spinnable: number

Number of spinnable objects of the beatmap.

-

starRating

starRating: number
+
starRating: number

Total star rating of the beatmap.

-

status

status: number
+
status: number

Rank status of the beatmap (Graveyard, Loved, Ranked...)

-

title

title: string
+
title: string

The beatmap title.

-

totalHits

totalHits: number
+
totalHits: number

Beatmap total hits.

-

updatedAt

updatedAt: null | Date
+
updatedAt: null | Date

The date of the last beatmap update.

-

version

version: string
+
version: string

Difficulty name of the beatmap.

-

Methods

toJSON

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Methods

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/interfaces/IConvertibleReplayFrame.html b/docs/interfaces/IConvertibleReplayFrame.html new file mode 100644 index 0000000..47e8a69 --- /dev/null +++ b/docs/interfaces/IConvertibleReplayFrame.html @@ -0,0 +1,25 @@ +IConvertibleReplayFrame | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IConvertibleReplayFrame

+

A type of IReplayFrame which can be converted from a LegacyReplayFrame.

+

Hierarchy

Index

Properties

interval: number
+

Interval between this and previous replay frames.

+
startTime: number
+

Starting time of this replay frame.

+

Methods

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/interfaces/IHasColumn.html b/docs/interfaces/IHasColumn.html index 47b8adb..13969b5 100644 --- a/docs/interfaces/IHasColumn.html +++ b/docs/interfaces/IHasColumn.html @@ -1,5 +1,5 @@ -IHasColumn | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IHasColumn

+IHasColumn | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IHasColumn

A type of hit object which lies in one of a number of predetermined columns.

-

Hierarchy

  • IHasColumn

Index

Properties

Properties

column

column: number
+

Hierarchy

  • IHasColumn

Index

Properties

Properties

column: number

The column which the hit object lies in.

-

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/interfaces/IHasCombo.html b/docs/interfaces/IHasCombo.html index 257b955..b6a0a56 100644 --- a/docs/interfaces/IHasCombo.html +++ b/docs/interfaces/IHasCombo.html @@ -1,7 +1,7 @@ -IHasCombo | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IHasCombo

+IHasCombo | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IHasCombo

A hit object that is part of a combo.

-

Hierarchy

Index

Properties

comboOffset

comboOffset: number
+

Hierarchy

Index

Properties

comboOffset: number

When starting a new combo, the offset of the new combo relative to the current one.

-

isNewCombo

isNewCombo: boolean
+
isNewCombo: boolean

Whether the hit object starts a new combo.

-

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/interfaces/IHasComboInformation.html b/docs/interfaces/IHasComboInformation.html index 9b52e20..e269afb 100644 --- a/docs/interfaces/IHasComboInformation.html +++ b/docs/interfaces/IHasComboInformation.html @@ -1,18 +1,18 @@ -IHasComboInformation | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IHasComboInformation

+IHasComboInformation | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IHasComboInformation

A hit object that is part of a combo and has extended information about its position relative to other combo objects.

-

Hierarchy

Index

Properties

comboIndex

comboIndex: number
+

Hierarchy

Index

Properties

comboIndex: number

The index of this combo in relation to the beatmap.

-

comboIndexWithOffsets

comboIndexWithOffsets: number
+
comboIndexWithOffsets: number

The index of this combo in relation to the beatmap, with applied combo offset. This should be used instead of original combo index only when retrieving combo colors from the beatmap's skin.

-

comboOffset

comboOffset: number
+
comboOffset: number

When starting a new combo, the offset of the new combo relative to the current one.

-

currentComboIndex

currentComboIndex: number
+
currentComboIndex: number

The index of this hit object in the current combo.

-

isNewCombo

isNewCombo: boolean
+
isNewCombo: boolean

Whether the hit object starts a new combo.

-

lastInCombo

lastInCombo: boolean
+
lastInCombo: boolean

Whether this is the last object in the current combo.

-

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/interfaces/IHasCommands.html b/docs/interfaces/IHasCommands.html index 7f082b4..0cc4d9e 100644 --- a/docs/interfaces/IHasCommands.html +++ b/docs/interfaces/IHasCommands.html @@ -1,27 +1,27 @@ -IHasCommands | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IHasCommands

+IHasCommands | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IHasCommands

A storyboard element that has commands.

-

Hierarchy

Implemented by

Index

Properties

commands

commands: Command<any>[]
+

Hierarchy

Implemented by

Index

Properties

commands: Command<any>[]

The list of commands of the storyboard element. This is not synchronized with timelineGroup as constantly updating it can be very expensive. If you need to update this array, use updateCommands.

-

filePath

filePath: string
+
filePath: string

The file path of the content of the storyboard element.

-

hasCommands

hasCommands: boolean
+
hasCommands: boolean

If this storyboard element has commands or not.

-

isDrawable

isDrawable: boolean
+
isDrawable: boolean

Whether this storyboard element can be drawn or not.

-

loops

loops: CommandLoop[]
+
loops: CommandLoop[]

The list of command loops of the storyboard element.

-

startTime

startTime: number
+
startTime: number

The start time of the storyboard element.

-

timelineGroup

timelineGroup: CommandTimelineGroup
+
timelineGroup: CommandTimelineGroup

The command timeline group of this storyboard element.

-

triggers

triggers: CommandTrigger[]
+
triggers: CommandTrigger[]

The list of command triggers of the storyboard element.

-

Methods

updateCommands

Methods

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/interfaces/IHasDistance.html b/docs/interfaces/IHasDistance.html index e1bce8d..1fc20a1 100644 --- a/docs/interfaces/IHasDistance.html +++ b/docs/interfaces/IHasDistance.html @@ -1,9 +1,9 @@ -IHasDistance | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IHasDistance

+IHasDistance | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IHasDistance

A hit object that has a positional length.

-

Hierarchy

Index

Properties

distance

distance: number
+

Hierarchy

Index

Properties

distance: number

The positional length of the hit object.

-

duration

duration: number
+
duration: number

The duration of the hit object.

-

endTime

endTime: number
+
endTime: number

The time at which the hit object ends.

-

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/interfaces/IHasDuration.html b/docs/interfaces/IHasDuration.html index 92e129c..f4826af 100644 --- a/docs/interfaces/IHasDuration.html +++ b/docs/interfaces/IHasDuration.html @@ -1,7 +1,7 @@ -IHasDuration | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IHasDuration

+IHasDuration | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IHasDuration

A hit object that ends at a different time than its start time.

-

Hierarchy

Index

Properties

Properties

duration

duration: number
+

Hierarchy

Index

Properties

Properties

duration: number

The duration of the hit object.

-

endTime

endTime: number
+
endTime: number

The time at which the hit object ends.

-

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/interfaces/IHasLegacyLastTickOffset.html b/docs/interfaces/IHasLegacyLastTickOffset.html index 594ba07..cb52d1d 100644 --- a/docs/interfaces/IHasLegacyLastTickOffset.html +++ b/docs/interfaces/IHasLegacyLastTickOffset.html @@ -1,6 +1,6 @@ -IHasLegacyLastTickOffset | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IHasLegacyLastTickOffset

+IHasLegacyLastTickOffset | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IHasLegacyLastTickOffset

A type of hit object which may require the last tick to be offset. This is specific to osu!stable conversion, and should not be used elsewhere.

-

Hierarchy

Index

Properties

Optional legacyLastTickOffset

legacyLastTickOffset?: number
+

Hierarchy

Index

Properties

legacyLastTickOffset?: number

Offset to the last tick.

-

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/interfaces/IHasNodeSamples.html b/docs/interfaces/IHasNodeSamples.html index 2bab414..ba42674 100644 --- a/docs/interfaces/IHasNodeSamples.html +++ b/docs/interfaces/IHasNodeSamples.html @@ -1,6 +1,6 @@ -IHasNodeSamples | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IHasNodeSamples

+IHasNodeSamples | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IHasNodeSamples

A hit object with node samples.

-

Hierarchy

Index

Properties

Properties

nodeSamples

nodeSamples: HitSample[][]
+

Hierarchy

Index

Properties

Properties

nodeSamples: HitSample[][]

The samples to be played when each node of the IHasPath is hit. 0: The first node. 1: The first repeat. @@ -8,4 +8,4 @@ ... n-1: The last repeat. n: The last node.

-

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/interfaces/IHasPath.html b/docs/interfaces/IHasPath.html index 73f5c38..0bc0238 100644 --- a/docs/interfaces/IHasPath.html +++ b/docs/interfaces/IHasPath.html @@ -1,11 +1,11 @@ -IHasPath | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IHasPath

+IHasPath | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IHasPath

A hit object with path.

-

Hierarchy

Index

Properties

distance

distance: number
+

Hierarchy

Index

Properties

distance: number

The positional length of the hit object.

-

duration

duration: number
+
duration: number

The duration of the hit object.

-

endTime

endTime: number
+
endTime: number

The time at which the hit object ends.

-

path

+

The curve.

-

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/interfaces/IHasPathWithRepeats.html b/docs/interfaces/IHasPathWithRepeats.html index 45882f3..672e128 100644 --- a/docs/interfaces/IHasPathWithRepeats.html +++ b/docs/interfaces/IHasPathWithRepeats.html @@ -1,12 +1,12 @@ -IHasPathWithRepeats | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IHasPathWithRepeats

+IHasPathWithRepeats | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IHasPathWithRepeats

A HitObject that has a curve.

-

Hierarchy

Index

Properties

distance

distance: number
+

Hierarchy

Index

Properties

distance: number

The positional length of the hit object.

-

duration

duration: number
+
duration: number

The duration of the hit object.

-

endTime

endTime: number
+
endTime: number

The time at which the hit object ends.

-

nodeSamples

nodeSamples: HitSample[][]
+
nodeSamples: HitSample[][]

The samples to be played when each node of the IHasPath is hit. 0: The first node. 1: The first repeat. @@ -14,12 +14,12 @@ ... n-1: The last repeat. n: The last node.

-

path

+

The curve.

-

repeats

repeats: number
+
repeats: number

The amount of times the hit object repeats.

-

spanDuration

spanDuration: number
+
spanDuration: number

The duration of a single span.

-

spans

spans: number
+
spans: number

The number of spans of the hit object.

-

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/interfaces/IHasPosition.html b/docs/interfaces/IHasPosition.html index 2d010c6..38219f2 100644 --- a/docs/interfaces/IHasPosition.html +++ b/docs/interfaces/IHasPosition.html @@ -1,13 +1,13 @@ -IHasPosition | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IHasPosition

+IHasPosition | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IHasPosition

A hit object that has a position.

-

Hierarchy

Index

Properties

endPosition

endPosition: Vector2
+

Hierarchy

Index

Properties

endPosition: Vector2

The position at which hit object ends.

-

endX

endX: number
+
endX: number

Ending X-position of the hit object.

-

startPosition

startPosition: Vector2
+
startPosition: Vector2

The position at which hit object starts.

-

startX

startX: number
+
startX: number

Starting X-position of the hit object.

-

startY

startY: number
+
startY: number

Starting Y-position of the hit object.

-

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/interfaces/IHasRepeats.html b/docs/interfaces/IHasRepeats.html index cf7d02d..6e15dcd 100644 --- a/docs/interfaces/IHasRepeats.html +++ b/docs/interfaces/IHasRepeats.html @@ -1,10 +1,10 @@ -IHasRepeats | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IHasRepeats

+IHasRepeats | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IHasRepeats

A hit object that spans some length.

-

Hierarchy

Index

Properties

duration

duration: number
+

Hierarchy

Index

Properties

duration: number

The duration of the hit object.

-

endTime

endTime: number
+
endTime: number

The time at which the hit object ends.

-

nodeSamples

nodeSamples: HitSample[][]
+
nodeSamples: HitSample[][]

The samples to be played when each node of the IHasPath is hit. 0: The first node. 1: The first repeat. @@ -12,10 +12,10 @@ ... n-1: The last repeat. n: The last node.

-

repeats

repeats: number
+
repeats: number

The amount of times the hit object repeats.

-

spanDuration

spanDuration: number
+
spanDuration: number

The duration of a single span.

-

spans

spans: number
+
spans: number

The number of spans of the hit object.

-

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/interfaces/IHasX.html b/docs/interfaces/IHasX.html index 42e842f..4f2b984 100644 --- a/docs/interfaces/IHasX.html +++ b/docs/interfaces/IHasX.html @@ -1,7 +1,7 @@ -IHasX | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IHasX

+IHasX | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IHasX

A hit object with X-position.

-

Hierarchy

Index

Properties

Properties

endX

endX: number
+

Hierarchy

Index

Properties

Properties

endX: number

Ending X-position of the hit object.

-

startX

startX: number
+
startX: number

Starting X-position of the hit object.

-

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/interfaces/IHasY.html b/docs/interfaces/IHasY.html index 14e9d38..c202d0d 100644 --- a/docs/interfaces/IHasY.html +++ b/docs/interfaces/IHasY.html @@ -1,7 +1,7 @@ -IHasY | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IHasY

+IHasY | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IHasY

A hit object with Y-position.

-

Hierarchy

Index

Properties

Properties

endX

endX: number
+

Hierarchy

Index

Properties

Properties

endX: number

Ending Y-position of the hit object.

-

startY

startY: number
+
startY: number

Starting Y-position of the hit object.

-

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/interfaces/IHitObject.html b/docs/interfaces/IHitObject.html index a468262..c00cb29 100644 --- a/docs/interfaces/IHitObject.html +++ b/docs/interfaces/IHitObject.html @@ -1,16 +1,16 @@ -IHitObject | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IHitObject

+IHitObject | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IHitObject

A hit object.

-

Hierarchy

Implemented by

Index

Properties

hitSound

hitSound: HitSound
+

Hierarchy

Implemented by

Index

Properties

hitSound: HitSound

Hit sound data of this hit object.

-

hitType

hitType: HitType
+
hitType: HitType

Hit type data of this hit object.

-

hitWindows

hitWindows: HitWindows
+
hitWindows: HitWindows

Hit windows of this hit object.

-

samples

samples: HitSample[]
+
samples: HitSample[]

Samples of this hit object.

-

startTime

startTime: number
+
startTime: number

The time at which hit object starts.

-

Methods

clone

Methods

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/interfaces/IHitStatistics.html b/docs/interfaces/IHitStatistics.html deleted file mode 100644 index 6b6a579..0000000 --- a/docs/interfaces/IHitStatistics.html +++ /dev/null @@ -1,3 +0,0 @@ -IHitStatistics | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IHitStatistics

-

Hit statistics.

-

Hierarchy

  • IHitStatistics

Index

Properties

good

good: number

great

great: number

ignoreHit

ignoreHit: number

ignoreMiss

ignoreMiss: number

largeBonus

largeBonus: number

largeTickHit

largeTickHit: number

largeTickMiss

largeTickMiss: number

meh

meh: number

miss

miss: number

none

none: number

ok

ok: number

perfect

perfect: number

smallBonus

smallBonus: number

smallTickHit

smallTickHit: number

smallTickMiss

smallTickMiss: number

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/interfaces/IHoldableObject.html b/docs/interfaces/IHoldableObject.html index a18ece3..cf21d22 100644 --- a/docs/interfaces/IHoldableObject.html +++ b/docs/interfaces/IHoldableObject.html @@ -1,14 +1,14 @@ -IHoldableObject | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IHoldableObject

Hierarchy

Index

Properties

duration

duration: number
+IHoldableObject | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IHoldableObject

Hierarchy

Index

Properties

duration: number

The duration of the hit object.

-

endTime

endTime: number
+
endTime: number

The time at which the hit object ends.

-

hitSound

hitSound: HitSound
+
hitSound: HitSound

Hit sound data of this hit object.

-

hitType

hitType: HitType
+
hitType: HitType

Hit type data of this hit object.

-

hitWindows

hitWindows: HitWindows
+
hitWindows: HitWindows

Hit windows of this hit object.

-

nodeSamples

nodeSamples: HitSample[][]
+
nodeSamples: HitSample[][]

The samples to be played when each node of the IHasPath is hit. 0: The first node. 1: The first repeat. @@ -16,11 +16,11 @@ ... n-1: The last repeat. n: The last node.

-

samples

samples: HitSample[]
+
samples: HitSample[]

Samples of this hit object.

-

startTime

startTime: number
+
startTime: number

The time at which hit object starts.

-

Methods

clone

Methods

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/interfaces/IJsonableBeatmapInfo.html b/docs/interfaces/IJsonableBeatmapInfo.html index 910d73d..a1e326e 100644 --- a/docs/interfaces/IJsonableBeatmapInfo.html +++ b/docs/interfaces/IJsonableBeatmapInfo.html @@ -1,70 +1,70 @@ -IJsonableBeatmapInfo | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IJsonableBeatmapInfo

+IJsonableBeatmapInfo | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IJsonableBeatmapInfo

A beatmap information that can be converted to JSON.

-

Hierarchy

Index

Properties

approachRate

approachRate: number
+

Hierarchy

Index

Properties

approachRate: number

Approach rate of the beatmap.

-

artist

artist: string
+
artist: string

The beatmap artist.

-

beatmapsetId

beatmapsetId: number
+
beatmapsetId: number

ID of beatmapset of this beatmap.

-

bpmMax

bpmMax: number
+
bpm: number
+

The most common BPM of a beatmap.

+
bpmMax: number

Maximal BPM of a beatmap.

-

bpmMin

bpmMin: number
+
bpmMin: number

Minimal BPM of a beatmap.

-

bpmMode

bpmMode: number
-

The most common BPM of a beatmap.

-

circleSize

circleSize: number
+
circleSize: number

Circle size of the beatmap.

-

creator

creator: string
+
creator: string

The beatmap creator username.

-

creatorId

creatorId: number
+
creatorId: number

The beatmap creator ID.

-

deletedAt

deletedAt: null | Date
-

The date of the beatmap deletion.

-

drainRate

drainRate: number
+
deletedAt: null | number
+

Timestamp of the beatmap deletion.

+
drainRate: number

HP drain rate of the beatmap.

-

favourites

favourites: number
+
favourites: number

Number of the beatmap favourites.

-

hittable

hittable: number
+
hashMD5: string
+

Beatmap MD5 hash.

+
hittable: number

Number of hittable objects of the beatmap.

-

holdable

holdable: number
+
holdable: number

Number of holdable objects of the beatmap.

-

id

id: number
+
id: number

The beatmap ID.

-

isConvert

isConvert: boolean
+
isConvert: boolean

If this beatmap info is for converted beatmap.

-

length

length: number
+
length: number

Length of the beatmap in seconds.

-

maxCombo

maxCombo: number
+
maxCombo: number

Max combo of the beatmap.

-

md5

md5: string
-

Beatmap MD5 hash.

-

mods

mods: string
+
mods: string

Stringified mods of the play.

-

overallDifficulty

overallDifficulty: number
+
overallDifficulty: number

Overall difficulty of the beatmap.

-

passcount

passcount: number
+
passcount: number

Number of passes of the beatmap.

-

playcount

playcount: number
+
playcount: number

Number of playcount of the beatmap.

-

rulesetId

rulesetId: number
+
rulesetId: number

The ruleset ID of this beatmap info.

-

slidable

slidable: number
+
slidable: number

Number of slidable objects of the beatmap.

-

spinnable

spinnable: number
+
spinnable: number

Number of spinnable objects of the beatmap.

-

starRating

starRating: number
+
starRating: number

Total star rating of the beatmap.

-

status

status: number
+
status: number

Rank status of the beatmap (Graveyard, Loved, Ranked...)

-

title

title: string
+
title: string

The beatmap title.

-

totalHits

totalHits: number
+
totalHits: number

Beatmap total hits.

-

updatedAt

updatedAt: null | Date
-

The date of the last beatmap update.

-

version

version: string
+
updatedAt: null | number
+

Timestamp of the last beatmap update.

+
version: string

Difficulty name of the beatmap.

-

Methods

toJSON

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Methods

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/interfaces/IJsonableHighestRank.html b/docs/interfaces/IJsonableHighestRank.html new file mode 100644 index 0000000..bb02e7b --- /dev/null +++ b/docs/interfaces/IJsonableHighestRank.html @@ -0,0 +1,7 @@ +IJsonableHighestRank | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IJsonableHighestRank

+

A highest rank information that can be converted to JSON.

+

Hierarchy

  • IJsonableHighestRank

Index

Properties

Properties

rank: number
+

Highest rank of the user.

+
updatedAt: number
+

Timestamp of the date when this rank was achieved.

+

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/interfaces/IJsonableHitStatistics.html b/docs/interfaces/IJsonableHitStatistics.html new file mode 100644 index 0000000..a658201 --- /dev/null +++ b/docs/interfaces/IJsonableHitStatistics.html @@ -0,0 +1 @@ +IJsonableHitStatistics | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IJsonableHitStatistics

Hierarchy

  • IJsonableHitStatistics

Index

Properties

good?: number
great?: number
ignoreHit?: number
ignoreMiss?: number
largeBonus?: number
largeTickHit?: number
largeTickMiss?: number
meh?: number
miss?: number
none?: number
ok?: number
perfect?: number
smallBonus?: number
smallTickHit?: number
smallTickMiss?: number

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/interfaces/IJsonableScoreInfo.html b/docs/interfaces/IJsonableScoreInfo.html index 126ecf8..5d84c2d 100644 --- a/docs/interfaces/IJsonableScoreInfo.html +++ b/docs/interfaces/IJsonableScoreInfo.html @@ -1,54 +1,54 @@ -IJsonableScoreInfo | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IJsonableScoreInfo

+IJsonableScoreInfo | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IJsonableScoreInfo

A score information that can be converted to JSON.

-

Hierarchy

Index

Properties

accuracy

accuracy: number
+

Hierarchy

Index

Properties

accuracy: number

Total accuracy of the play.

-

beatmap

beatmap: null | IJsonableBeatmapInfo
+
beatmap: null | IJsonableBeatmapInfo

A beatmap information that can be converted to JSON.

-

beatmapHashMD5

beatmapHashMD5: string
+
beatmapHashMD5: string

Beatmap MD5 hash.

-

beatmapId

beatmapId: number
+
beatmapId: number

Beatmap ID.

-

count100

count100: number
+
count100: number

Number of 100s in standard, 150s in Taiko, 100s in CTB, 100s in mania.

-

count300

count300: number
+
count300: number

Number of 300s.

-

count50

count50: number
+
count50: number

Number of 50s in standard, small fruit in CTB, 50s in mania.

-

countGeki

countGeki: number
+
countGeki: number

Number of Gekis in standard, Max 300s in mania.

-

countKatu

countKatu: number
+
countKatu: number

Number of Katus in standard, 200s in mania.

-

countMiss

countMiss: number
+
countMiss: number

Number of misses.

-

date

date: Date
-

The date when this play was set.

-

id

id: number
+
date: number
+

Timestamp when this play was set.

+
id: number

A score ID.

-

maxCombo

maxCombo: number
+
maxCombo: number

Max combo of the play.

-

mods

mods: string
+
mods: string

Stringified mods of the play.

-

passed

passed: boolean
+
passed: boolean

Whether the map was passed or not.

-

perfect

perfect: boolean
+
perfect: boolean

Perfect combo or not?

-

pp

pp: null | number
-

The performance of the play.

-

rank

rank: "F" | "D" | "C" | "B" | "A" | "S" | "SH" | "X" | "XH"
+
rank: "F" | "D" | "C" | "B" | "A" | "S" | "SH" | "X" | "XH"

A rank of the play.

-

rulesetId

rulesetId: number
+
rulesetId: number

Ruleset ID of the play.

-

statistics

statistics: Partial<IHitStatistics>
-

Hit statistics.

-

totalHits

totalHits: number
+
+

Hit statistics that can be converted to JSON.

+
totalHits: number

Total hits of a score.

-

totalScore

totalScore: number
+
totalPerformance: null | number
+

The performance of the play.

+
totalScore: number

Total score of the play.

-

userId

userId: number
+
userId: number

User ID of the player who set this play.

-

username

username: string
+
username: string

Username of the player who set this play.

-

Methods

toJSON

Methods

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Returns IJsonableScoreInfo

Score information convertible to JSON.

+

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/interfaces/IJsonableUserInfo.html b/docs/interfaces/IJsonableUserInfo.html new file mode 100644 index 0000000..056a443 --- /dev/null +++ b/docs/interfaces/IJsonableUserInfo.html @@ -0,0 +1,57 @@ +IJsonableUserInfo | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IJsonableUserInfo

Hierarchy

Index

Properties

accuracy: number
+

Total accuracy of a user.

+
countryCode: "AT" | "CN" | "HT" | "HR" | "NC" | "NF" | "PF" | "SD" | "SH" | "Unknown" | "BD" | "BE" | "BF" | "BG" | "BA" | "BB" | "WF" | "BL" | "BM" | "BN" | "BO" | "BH" | "BI" | "BJ" | "BT" | "JM" | "BV" | "BW" | "WS" | "BQ" | "BR" | "BS" | "JE" | "BY" | "BZ" | "RU" | "RW" | "RS" | "TL" | "RE" | "TM" | "TJ" | "RO" | "TK" | "GW" | "GU" | "GT" | "GS" | "GR" | "GQ" | "GP" | "JP" | "GY" | "GG" | "GF" | "GE" | "GD" | "GB" | "GA" | "SV" | "GN" | "GM" | "GL" | "GI" | "GH" | "OM" | "TN" | "JO" | "HU" | "HK" | "HN" | "HM" | "VE" | "PR" | "PS" | "PW" | "PT" | "SJ" | "PY" | "IQ" | "PA" | "PG" | "PE" | "PK" | "PH" | "PN" | "PL" | "PM" | "ZM" | "EH" | "EE" | "EG" | "ZA" | "EC" | "IT" | "VN" | "SB" | "ET" | "SO" | "ZW" | "SA" | "ES" | "ER" | "ME" | "MD" | "MG" | "MF" | "MA" | "MC" | "UZ" | "MM" | "ML" | "MO" | "MN" | "MH" | "MK" | "MU" | "MT" | "MW" | "MV" | "MQ" | "MP" | "MS" | "MR" | "IM" | "UG" | "TZ" | "MY" | "MX" | "IL" | "FR" | "IO" | "FI" | "FJ" | "FK" | "FM" | "FO" | "NI" | "NL" | "NO" | "NA" | "VU" | "NE" | "NG" | "NZ" | "NP" | "NR" | "NU" | "CK" | "XK" | "CI" | "CH" | "CO" | "CM" | "CL" | "CC" | "CA" | "CG" | "CF" | "CD" | "CZ" | "CY" | "CX" | "CR" | "CW" | "CV" | "CU" | "SZ" | "SY" | "SX" | "KG" | "KE" | "SS" | "SR" | "KI" | "KH" | "KN" | "KM" | "ST" | "SK" | "KR" | "SI" | "KP" | "KW" | "SN" | "SM" | "SL" | "SC" | "KZ" | "KY" | "SG" | "SE" | "DO" | "DM" | "DJ" | "DK" | "VG" | "DE" | "YE" | "DZ" | "US" | "UY" | "YT" | "UM" | "LB" | "LC" | "LA" | "TV" | "TW" | "TT" | "TR" | "LK" | "LI" | "LV" | "TO" | "LT" | "LU" | "LR" | "LS" | "TH" | "TF" | "TG" | "TD" | "TC" | "LY" | "VA" | "VC" | "AE" | "AD" | "AG" | "AF" | "AI" | "VI" | "IS" | "IR" | "AM" | "AL" | "AO" | "AQ" | "AS" | "AR" | "AU" | "AW" | "IN" | "AX" | "AZ" | "IE" | "ID" | "UA" | "QA" | "MZ"
+

User country code.

+
countryRank: null | number
+

Rank in the country top.

+
followersCount: number
+

How many followers does user have.

+
globalRank: null | number
+

Rank in the global top.

+
grades: Partial<Record<"F" | "D" | "C" | "B" | "A" | "S" | "SH" | "X" | "XH", number>>
+

Grades count of a user.

+
highestRank: null | IJsonableHighestRank
+

Highest rank of the user.

+
id: number
+

User ID.

+
isActive: boolean
+

Whether the user is active or not.

+
isBot: boolean
+

Whether the user is bot or not.

+
isDeleted: boolean
+

Whether the user is deleted or not.

+
isOnline: boolean
+

Whether the user is online or not.

+
isSupporter: boolean
+

Whether the user is supporter or not.

+
joinedAt: number
+

Timestamp of join date of the user.

+
lastVisitAt: null | number
+

Timestamp of last visit of the user.

+
level: LevelInfo
+

Information about a user's level.

+
maxCombo: number
+

Max combo of a user.

+
playcount: number
+

Total playcount of a user.

+
playmode: number
+

Playmode of the user.

+
playtime: number
+

Total playtime of a user.

+
previousUsernames: string[]
+

Previous nicknames of the user.

+
rankHistory: null | RankHistory
+

Rank history of a user.

+
rankedScore: number
+

Ranked score of a user.

+
replaysWatched: number
+

How many times this user's replays have been watched.

+
totalHits: number
+

Total hits of a user.

+
totalPerformance: number
+

User performance points.

+
totalScore: number
+

Total score of a user.

+
username: string
+

User's name.

+

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/interfaces/ILifeBarFrame.html b/docs/interfaces/ILifeBarFrame.html index 0e79949..0c059c5 100644 --- a/docs/interfaces/ILifeBarFrame.html +++ b/docs/interfaces/ILifeBarFrame.html @@ -1,11 +1,11 @@ -ILifeBarFrame | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface ILifeBarFrame

+ILifeBarFrame | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface ILifeBarFrame

A life bar frame.

-

Hierarchy

  • ILifeBarFrame

Implemented by

Index

Properties

Methods

Properties

health

health: number
+

Hierarchy

  • ILifeBarFrame

Implemented by

Index

Properties

Methods

Properties

health: number

The amount of HP at that current time. This value is in range of 0-1.

-

startTime

startTime: number
+
startTime: number

Starting time of this life bar frame.

-

Methods

clone

Methods

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/interfaces/IMod.html b/docs/interfaces/IMod.html index e384059..7cf66ba 100644 --- a/docs/interfaces/IMod.html +++ b/docs/interfaces/IMod.html @@ -1,15 +1,15 @@ -IMod | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IMod

Hierarchy

Implemented by

Index

Properties

acronym

acronym: string
+IMod | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IMod

Hierarchy

Implemented by

Index

Properties

acronym: string

The shortened name of this mod.

-

bitwise

bitwise: ModBitwise
+
bitwise: ModBitwise

Bitwise number of this mod.

-

incompatibles

incompatibles: ModBitwise
+
incompatibles: ModBitwise

Incompatible mods.

-

isRanked

isRanked: boolean
+
isRanked: boolean

Returns if this mod is ranked.

-

multiplier

multiplier: number
+
multiplier: number

The score multiplier of this mod.

-

name

name: string
+
name: string

The name of this mod.

-

type

type: ModType
+
type: ModType

The type of this mod.

-

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/interfaces/IReplay.html b/docs/interfaces/IReplay.html index 6bf1667..50fbe0b 100644 --- a/docs/interfaces/IReplay.html +++ b/docs/interfaces/IReplay.html @@ -1,13 +1,13 @@ -IReplay | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IReplay

+IReplay | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IReplay

A replay.

-

Hierarchy

  • IReplay

Implemented by

Index

Properties

frames

frames: IReplayFrame[]
+

Hierarchy

  • IReplay

Implemented by

Index

Properties

frames: IReplayFrame[]

Replay frames.

-

gameVersion

gameVersion: number
+
gameVersion: number

osu! game version of this replay.

-

hashMD5

hashMD5: string
+
hashMD5: string

Replay MD5 hash.

-

lifeBar

lifeBar: ILifeBarFrame[]
+
lifeBar: ILifeBarFrame[]

Life bar of the replay.

-

mode

mode: number
+
mode: number

Game mode of this replay.

-

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/interfaces/IReplayFrame.html b/docs/interfaces/IReplayFrame.html index e172884..715acb6 100644 --- a/docs/interfaces/IReplayFrame.html +++ b/docs/interfaces/IReplayFrame.html @@ -1,16 +1,10 @@ -IReplayFrame | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IReplayFrame

+IReplayFrame | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IReplayFrame

A replay frame.

-

Hierarchy

  • IReplayFrame

Implemented by

Index

Properties

buttonState

buttonState: ReplayButtonState
-

Button state of this replay frame.

-

interval

interval: number
+

Hierarchy

Implemented by

Index

Properties

Methods

Properties

interval: number

Interval between this and previous replay frames.

-

mouseX

mouseX: number
-

Mouse X-position of this replay frame.

-

mouseY

mouseY: number
-

Mouse Y-position of this replay frame.

-

startTime

startTime: number
+
startTime: number

Starting time of this replay frame.

-

Methods

clone

Methods

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/interfaces/IRuleset.html b/docs/interfaces/IRuleset.html index 5556623..546f7be 100644 --- a/docs/interfaces/IRuleset.html +++ b/docs/interfaces/IRuleset.html @@ -1,37 +1,43 @@ -IRuleset | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IRuleset

+IRuleset | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IRuleset

A ruleset.

-

Hierarchy

  • IRuleset

Implemented by

Index

Properties

id

id: number
+

Hierarchy

  • IRuleset

Implemented by

Index

Properties

id: number

Ruleset ID.

-

Methods

applyToBeatmap

Methods

applyToBeatmapWithMods

createBeatmapConverter

createBeatmapProcessor

createDifficultyCalculator

  • +

    Applies ruleset to a replay. +Converts legacy replay frames to ruleset specific frames.

    +

    Parameters

    • replay: IReplay
      +

      The replay.

      +
    • Optional beatmap: IBeatmap
      +

      The beatmap of the replay which is used to get some data.

      +

    Returns Replay

    A new instance of the replay with applied ruleset.

    +

createModCombination

  • Creates a new mod combination by converting legacy mod bitwise or string acronyms.

    Parameters

    • Optional input: string | number

      Mod bitwise or string acronyms.

    Returns ModCombination

    A new mod combination.

    -

createPerformanceCalculator

resetMods

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/interfaces/IScore.html b/docs/interfaces/IScore.html index 8b649d6..eecd22a 100644 --- a/docs/interfaces/IScore.html +++ b/docs/interfaces/IScore.html @@ -1,7 +1,7 @@ -IScore | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IScore

+IScore | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IScore

A score.

-

Hierarchy

  • IScore

Index

Properties

Properties

info

+

Hierarchy

  • IScore

Index

Properties

Properties

Score information.

-

replay

replay: null | IReplay
+
replay: null | IReplay

Score replay.

-

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/interfaces/IScoreInfo.html b/docs/interfaces/IScoreInfo.html index 0dccb26..8c8f137 100644 --- a/docs/interfaces/IScoreInfo.html +++ b/docs/interfaces/IScoreInfo.html @@ -1,58 +1,58 @@ -IScoreInfo | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IScoreInfo

+IScoreInfo | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IScoreInfo

A score information.

-

Hierarchy

  • IScoreInfo

Implemented by

Index

Properties

accuracy

accuracy: number
+

Hierarchy

  • IScoreInfo

Implemented by

Index

Properties

accuracy: number

Total accuracy of the play.

-

beatmap

beatmap: null | IBeatmapInfo
+
beatmap: null | IBeatmapInfo

Beatmap of the play.

-

beatmapHashMD5

beatmapHashMD5: string
+
beatmapHashMD5: string

Beatmap MD5 hash.

-

beatmapId

beatmapId: number
+
beatmapId: number

Beatmap ID.

-

count100

count100: number
+
count100: number

Number of 100s in standard, 150s in Taiko, 100s in CTB, 100s in mania.

-

count300

count300: number
+
count300: number

Number of 300s.

-

count50

count50: number
+
count50: number

Number of 50s in standard, small fruit in CTB, 50s in mania.

-

countGeki

countGeki: number
+
countGeki: number

Number of Gekis in standard, Max 300s in mania.

-

countKatu

countKatu: number
+
countKatu: number

Number of Katus in standard, 200s in mania.

-

countMiss

countMiss: number
+
countMiss: number

Number of misses.

-

date

date: Date
+
date: Date

The date when this play was set.

-

id

id: number
+
id: number

A score ID.

-

maxCombo

maxCombo: number
+
maxCombo: number

Max combo of the play.

-

mods

mods: null | ModCombination
+
mods: null | ModCombination

Mods of the play.

-

passed

passed: boolean
+
passed: boolean

Whether the map was passed or not.

-

perfect

perfect: boolean
+
perfect: boolean

Perfect combo or not?

-

pp

pp: null | number
-

The performance of the play.

-

rank

rank: "F" | "D" | "C" | "B" | "A" | "S" | "SH" | "X" | "XH"
+
rank: "F" | "D" | "C" | "B" | "A" | "S" | "SH" | "X" | "XH"

A rank of the play.

-

rawMods

rawMods: string | number
+
rawMods: string | number

Raw mods of the play.

-

ruleset

ruleset: null | IRuleset
+
ruleset: null | IRuleset

Ruleset instance.

-

rulesetId

rulesetId: number
+
rulesetId: number

Ruleset ID of the play.

-

statistics

statistics: Partial<IHitStatistics>
+
statistics: HitStatistics

Hit statistics.

-

totalHits

totalHits: number
+
totalHits: number

Total hits of a score.

-

totalScore

totalScore: number
+
totalPerformance: null | number
+

The performance of the play.

+
totalScore: number

Total score of the play.

-

userId

userId: number
+
userId: number

User ID of the player who set this play.

-

username

username: string
+
username: string

Username of the player who set this play.

-

Methods

toJSON

Methods

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Returns IJsonableScoreInfo

Score information convertible to JSON.

+

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/interfaces/ISlidableObject.html b/docs/interfaces/ISlidableObject.html index 8d57136..173ab3c 100644 --- a/docs/interfaces/ISlidableObject.html +++ b/docs/interfaces/ISlidableObject.html @@ -1,18 +1,18 @@ -ISlidableObject | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface ISlidableObject

Hierarchy

Index

Properties

distance

distance: number
+ISlidableObject | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface ISlidableObject

Hierarchy

Index

Properties

distance: number

The positional length of the hit object.

-

duration

duration: number
+
duration: number

The duration of the hit object.

-

endTime

endTime: number
+
endTime: number

The time at which the hit object ends.

-

hitSound

hitSound: HitSound
+
hitSound: HitSound

Hit sound data of this hit object.

-

hitType

hitType: HitType
+
hitType: HitType

Hit type data of this hit object.

-

hitWindows

hitWindows: HitWindows
+
hitWindows: HitWindows

Hit windows of this hit object.

-

Optional legacyLastTickOffset

legacyLastTickOffset?: number
+
legacyLastTickOffset?: number

Offset to the last tick.

-

nodeSamples

nodeSamples: HitSample[][]
+
nodeSamples: HitSample[][]

The samples to be played when each node of the IHasPath is hit. 0: The first node. 1: The first repeat. @@ -20,30 +20,30 @@ ... n-1: The last repeat. n: The last node.

-

path

+

The curve.

-

repeats

repeats: number
+
repeats: number

The amount of times the hit object repeats.

-

samples

samples: HitSample[]
+
samples: HitSample[]

Samples of this hit object.

-

spanDuration

spanDuration: number
+
spanDuration: number

The duration of a single span.

-

spans

spans: number
+
spans: number

The number of spans of the hit object.

-

startTime

startTime: number
+
startTime: number

The time at which hit object starts.

-

Optional tickDistance

tickDistance?: number
+
tickDistance?: number

Spacing between ticks of a slidable object.

-

Optional tickInterval

tickInterval?: number
+
tickInterval?: number

The length (in milliseconds) between ticks of this slidable object.

-

Optional tickRate

tickRate?: number
+
tickRate?: number

An extra multiplier that affects the number of ticks generated by this slidable object. An increase in this value increases tick distance, which reduces the number of ticks generated.

-

velocity

velocity: number
+
velocity: number

Velocity of a slidable object.

-

Methods

clone

Methods

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/interfaces/ISliderEventDescriptor.html b/docs/interfaces/ISliderEventDescriptor.html index 5c41c15..41b9c6b 100644 --- a/docs/interfaces/ISliderEventDescriptor.html +++ b/docs/interfaces/ISliderEventDescriptor.html @@ -1,14 +1,14 @@ -ISliderEventDescriptor | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface ISliderEventDescriptor

+ISliderEventDescriptor | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface ISliderEventDescriptor

A nested event.

-

Hierarchy

  • ISliderEventDescriptor

Index

Properties

eventType

eventType: SliderEventType
+

Hierarchy

  • ISliderEventDescriptor

Index

Properties

eventType: SliderEventType

The type of event.

-

progress

progress: number
+
progress: number

The progress along the slider's path at which this event occurs.

-

spanIndex

spanIndex: number
+
spanIndex: number

The zero-based index of the span. In the case of repeat sliders, this will increase after each slider repeat.

-

spanStartTime

spanStartTime: number
+
spanStartTime: number

The time at which the contained span index begins.

-

startTime

startTime: number
+
startTime: number

The time at which this nested event starts.

-

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/interfaces/ISpinnableObject.html b/docs/interfaces/ISpinnableObject.html index 2b992d9..e0965f4 100644 --- a/docs/interfaces/ISpinnableObject.html +++ b/docs/interfaces/ISpinnableObject.html @@ -1,18 +1,18 @@ -ISpinnableObject | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface ISpinnableObject

Hierarchy

Index

Properties

duration

duration: number
+ISpinnableObject | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface ISpinnableObject

Hierarchy

Index

Properties

duration: number

The duration of the hit object.

-

endTime

endTime: number
+
endTime: number

The time at which the hit object ends.

-

hitSound

hitSound: HitSound
+
hitSound: HitSound

Hit sound data of this hit object.

-

hitType

hitType: HitType
+
hitType: HitType

Hit type data of this hit object.

-

hitWindows

hitWindows: HitWindows
+
hitWindows: HitWindows

Hit windows of this hit object.

-

samples

samples: HitSample[]
+
samples: HitSample[]

Samples of this hit object.

-

startTime

startTime: number
+
startTime: number

The time at which hit object starts.

-

Methods

clone

Methods

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/interfaces/IStoryboardElement.html b/docs/interfaces/IStoryboardElement.html index fd3c3ee..3f4196a 100644 --- a/docs/interfaces/IStoryboardElement.html +++ b/docs/interfaces/IStoryboardElement.html @@ -1,9 +1,9 @@ -IStoryboardElement | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IStoryboardElement

+IStoryboardElement | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IStoryboardElement

A storyboard element.

-

Hierarchy

Implemented by

Index

Properties

filePath

filePath: string
+

Hierarchy

Implemented by

Index

Properties

filePath: string

The file path of the content of the storyboard element.

-

isDrawable

isDrawable: boolean
+
isDrawable: boolean

Whether this storyboard element can be drawn or not.

-

startTime

startTime: number
+
startTime: number

The start time of the storyboard element.

-

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/interfaces/IStoryboardElementWithDuration.html b/docs/interfaces/IStoryboardElementWithDuration.html index 5c7fa05..5117e33 100644 --- a/docs/interfaces/IStoryboardElementWithDuration.html +++ b/docs/interfaces/IStoryboardElementWithDuration.html @@ -1,13 +1,13 @@ -IStoryboardElementWithDuration | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IStoryboardElementWithDuration

+IStoryboardElementWithDuration | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IStoryboardElementWithDuration

A storyboard element that ends at a different time than its start time.

-

Hierarchy

Implemented by

Index

Properties

duration

duration: number
+

Hierarchy

Implemented by

Index

Properties

duration: number

The duration of the storyboard element.

-

endTime

endTime: number
+
endTime: number

The time at which this storyboard element ends.

-

filePath

filePath: string
+
filePath: string

The file path of the content of the storyboard element.

-

isDrawable

isDrawable: boolean
+
isDrawable: boolean

Whether this storyboard element can be drawn or not.

-

startTime

startTime: number
+
startTime: number

The start time of the storyboard element.

-

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/interfaces/IUserInfo.html b/docs/interfaces/IUserInfo.html index 471c43e..bdd5849 100644 --- a/docs/interfaces/IUserInfo.html +++ b/docs/interfaces/IUserInfo.html @@ -1,29 +1,59 @@ -IUserInfo | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IUserInfo

-

An user information.

-

Hierarchy

  • IUserInfo

Implemented by

Index

Properties

countryCode

countryCode: string
+IUserInfo | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IUserInfo

+

A user information.

+

Hierarchy

  • IUserInfo

Implemented by

Index

Properties

accuracy: number
+

Total accuracy of a user.

+
countryCode: "AT" | "CN" | "HT" | "HR" | "NC" | "NF" | "PF" | "SD" | "SH" | "Unknown" | "BD" | "BE" | "BF" | "BG" | "BA" | "BB" | "WF" | "BL" | "BM" | "BN" | "BO" | "BH" | "BI" | "BJ" | "BT" | "JM" | "BV" | "BW" | "WS" | "BQ" | "BR" | "BS" | "JE" | "BY" | "BZ" | "RU" | "RW" | "RS" | "TL" | "RE" | "TM" | "TJ" | "RO" | "TK" | "GW" | "GU" | "GT" | "GS" | "GR" | "GQ" | "GP" | "JP" | "GY" | "GG" | "GF" | "GE" | "GD" | "GB" | "GA" | "SV" | "GN" | "GM" | "GL" | "GI" | "GH" | "OM" | "TN" | "JO" | "HU" | "HK" | "HN" | "HM" | "VE" | "PR" | "PS" | "PW" | "PT" | "SJ" | "PY" | "IQ" | "PA" | "PG" | "PE" | "PK" | "PH" | "PN" | "PL" | "PM" | "ZM" | "EH" | "EE" | "EG" | "ZA" | "EC" | "IT" | "VN" | "SB" | "ET" | "SO" | "ZW" | "SA" | "ES" | "ER" | "ME" | "MD" | "MG" | "MF" | "MA" | "MC" | "UZ" | "MM" | "ML" | "MO" | "MN" | "MH" | "MK" | "MU" | "MT" | "MW" | "MV" | "MQ" | "MP" | "MS" | "MR" | "IM" | "UG" | "TZ" | "MY" | "MX" | "IL" | "FR" | "IO" | "FI" | "FJ" | "FK" | "FM" | "FO" | "NI" | "NL" | "NO" | "NA" | "VU" | "NE" | "NG" | "NZ" | "NP" | "NR" | "NU" | "CK" | "XK" | "CI" | "CH" | "CO" | "CM" | "CL" | "CC" | "CA" | "CG" | "CF" | "CD" | "CZ" | "CY" | "CX" | "CR" | "CW" | "CV" | "CU" | "SZ" | "SY" | "SX" | "KG" | "KE" | "SS" | "SR" | "KI" | "KH" | "KN" | "KM" | "ST" | "SK" | "KR" | "SI" | "KP" | "KW" | "SN" | "SM" | "SL" | "SC" | "KZ" | "KY" | "SG" | "SE" | "DO" | "DM" | "DJ" | "DK" | "VG" | "DE" | "YE" | "DZ" | "US" | "UY" | "YT" | "UM" | "LB" | "LC" | "LA" | "TV" | "TW" | "TT" | "TR" | "LK" | "LI" | "LV" | "TO" | "LT" | "LU" | "LR" | "LS" | "TH" | "TF" | "TG" | "TD" | "TC" | "LY" | "VA" | "VC" | "AE" | "AD" | "AG" | "AF" | "AI" | "VI" | "IS" | "IR" | "AM" | "AL" | "AO" | "AQ" | "AS" | "AR" | "AU" | "AW" | "IN" | "AX" | "AZ" | "IE" | "ID" | "UA" | "QA" | "MZ"

User country code.

-

countryRank

countryRank: number
+
countryRank: null | number

Rank in the country top.

-

globalRank

globalRank: number
+
followersCount: number
+

How many followers does user have.

+
globalRank: null | number

Rank in the global top.

-

id

id: number
+
grades: Grades
+

Grades count of a user.

+
highestRank: null | HighestRank
+

Highest rank of the user.

+
id: number

User ID.

-

isActive

isActive: boolean
+
isActive: boolean

Whether the user is active or not.

-

isBot

isBot: boolean
+
isBot: boolean

Whether the user is bot or not.

-

isDeleted

isDeleted: boolean
+
isDeleted: boolean

Whether the user is deleted or not.

-

isOnline

isOnline: boolean
+
isOnline: boolean

Whether the user is online or not.

-

isSupporter

isSupporter: boolean
+
isSupporter: boolean

Whether the user is supporter or not.

-

lastVisitAt

lastVisitAt: null | Date
+
joinedAt: Date
+

Join date of the user.

+
lastVisitAt: null | Date

Last visit date of the user.

-

playmode

playmode: number
+
level: LevelInfo
+

Information about a user's level.

+
maxCombo: number
+

Max combo of a user.

+
playcount: number
+

Total playcount of a user.

+
playmode: number

Playmode of the user.

-

totalPerformance

totalPerformance: number
+
playtime: number
+

Total playtime of a user.

+
previousUsernames: string[]
+

Previous nicknames of the user.

+
rankHistory: null | RankHistory
+

Rank history of a user.

+
rankedScore: number
+

Ranked score of a user.

+
replaysWatched: number
+

How many times this user's replays have been watched.

+
totalHits: number
+

Total hits of a user.

+
totalPerformance: number

User performance points.

-

username

username: string
+
totalScore: number
+

Total score of a user.

+
username: string

User's name.

-

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/modules.html b/docs/modules.html index 9f8ce4e..252a050 100644 --- a/docs/modules.html +++ b/docs/modules.html @@ -1 +1 @@ -osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

osu-classes

Index

Namespaces

Enumerations

Classes

Interfaces

Type aliases

Type aliases

JsonableBeatmapInfo

JsonableBeatmapInfo: Omit<IBeatmapInfo, "beatmap" | "ruleset" | "mods" | "rawMods">

JsonableScoreInfo

JsonableScoreInfo: Omit<IScoreInfo, "beatmap" | "ruleset" | "mods" | "rawMods">

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

osu-classes

Index

Namespaces

Enumerations

Classes

Interfaces

Type Aliases

Type Aliases

IJsonableGrades: Partial<Record<keyof typeof ScoreRank, number>>
JsonableBeatmapInfo: Omit<IBeatmapInfo, "ruleset" | "mods" | "rawMods" | "deletedAt" | "updatedAt">
JsonableScoreInfo: Omit<IScoreInfo, "beatmap" | "ruleset" | "mods" | "rawMods" | "statistics" | "date">
JsonableUserInfo: Omit<IUserInfo, "grades" | "lastVisitAt" | "joinedAt" | "highestRank">

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/modules/Accuracy.html b/docs/modules/Accuracy.html new file mode 100644 index 0000000..a495cff --- /dev/null +++ b/docs/modules/Accuracy.html @@ -0,0 +1,6 @@ +Accuracy | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Namespace Accuracy

Index

Functions

Functions

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/modules/BinarySearch.html b/docs/modules/BinarySearch.html index d69a9c7..3dfe6e6 100644 --- a/docs/modules/BinarySearch.html +++ b/docs/modules/BinarySearch.html @@ -1,29 +1,29 @@ -BinarySearch | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Namespace BinarySearch

Index

Type aliases

BinarySearchPredicate

BinarySearchPredicate<T>: (value: T, index: number, arr: T[]) => boolean

Type parameters

  • T

Type declaration

    • (value: T, index: number, arr: T[]): boolean
    • Parameters

      • value: T
      • index: number
      • arr: T[]

      Returns boolean

Functions

findControlPoint

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/modules/Easing.html b/docs/modules/Easing.html index 3f3cca5..c217044 100644 --- a/docs/modules/Easing.html +++ b/docs/modules/Easing.html @@ -1 +1 @@ -Easing | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Namespace Easing

Index

Type aliases

EasingFn

EasingFn: (p: number) => number

Type declaration

    • (p: number): number
    • Parameters

      • p: number

      Returns number

Functions

getEasingFn

Const inBack

  • inBack(p: number): number

Const inBounce

  • inBounce(p: number): number

Const inCirc

  • inCirc(p: number): number

Const inCubic

  • inCubic(p: number): number

Const inElastic

  • inElastic(p: number): number

Const inExpo

  • inExpo(p: number): number

Const inOutBack

  • inOutBack(p: number): number

Const inOutBounce

  • inOutBounce(p: number): number

Const inOutCirc

  • inOutCirc(p: number): number

Const inOutCubic

  • inOutCubic(p: number): number

Const inOutElastic

  • inOutElastic(p: number): number

Const inOutExpo

  • inOutExpo(p: number): number

Const inOutQuad

  • inOutQuad(p: number): number

Const inOutQuart

  • inOutQuart(p: number): number

Const inOutQuint

  • inOutQuint(p: number): number

Const inOutSine

  • inOutSine(p: number): number

Const inQuad

  • inQuad(p: number): number

Const inQuart

  • inQuart(p: number): number

Const inQuint

  • inQuint(p: number): number

Const inSine

  • inSine(p: number): number

Const linear

  • linear(p: number): number

Const outBack

  • outBack(p: number): number

Const outBounce

  • outBounce(p: number): number

Const outCirc

  • outCirc(p: number): number

Const outCubic

  • outCubic(p: number): number

Const outElastic

  • outElastic(p: number): number

Const outElasticHalf

  • outElasticHalf(p: number): number

Const outElasticQuarter

  • outElasticQuarter(p: number): number

Const outExpo

  • outExpo(p: number): number

Const outPow10

  • outPow10(p: number): number

Const outQuad

  • outQuad(p: number): number

Const outQuart

  • outQuart(p: number): number

Const outQuint

  • outQuint(p: number): number

Const outSine

  • outSine(p: number): number

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +Easing | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Namespace Easing

Index

Type Aliases

EasingFn: ((p: number) => number)

Type declaration

    • (p: number): number
    • Parameters

      • p: number

      Returns number

Functions

  • inBack(p: number): number
  • inBounce(p: number): number
  • inCirc(p: number): number
  • inCubic(p: number): number
  • inElastic(p: number): number
  • inExpo(p: number): number
  • inOutBack(p: number): number
  • inOutBounce(p: number): number
  • inOutCirc(p: number): number
  • inOutCubic(p: number): number
  • inOutElastic(p: number): number
  • inOutExpo(p: number): number
  • inOutQuad(p: number): number
  • inOutQuart(p: number): number
  • inOutQuint(p: number): number
  • inOutSine(p: number): number
  • inQuad(p: number): number
  • inQuart(p: number): number
  • inQuint(p: number): number
  • inSine(p: number): number
  • linear(p: number): number
  • outBack(p: number): number
  • outBounce(p: number): number
  • outCirc(p: number): number
  • outCubic(p: number): number
  • outElastic(p: number): number
  • outElasticHalf(p: number): number
  • outElasticQuarter(p: number): number
  • outExpo(p: number): number
  • outPow10(p: number): number
  • outQuad(p: number): number
  • outQuart(p: number): number
  • outQuint(p: number): number
  • outSine(p: number): number

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/modules/Interpolation.html b/docs/modules/Interpolation.html index f8ffb27..ce68586 100644 --- a/docs/modules/Interpolation.html +++ b/docs/modules/Interpolation.html @@ -1,4 +1,4 @@ -Interpolation | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Namespace Interpolation

Index

Functions

barycentricLagrange

  • barycentricLagrange(points: Vector2[], weights: number[], time: number): number
  • +Interpolation | osu-classes
    Options
    All
    • Public
    • Public/Protected
    • All
    Menu

    Namespace Interpolation

    Index

    Functions

    • barycentricLagrange(points: Vector2[], weights: number[], time: number): number
    • Calculates the Lagrange basis polynomial for a given set of x coordinates based on previously computed barycentric weights.

      @@ -8,11 +8,11 @@

      An array of precomputed barycentric weights.

    • time: number

      The x coordinate to calculate the basis polynomial for.

      -

    Returns number

barycentricWeights

  • barycentricWeights(points: Vector2[]): number[]

Returns number

  • barycentricWeights(points: Vector2[]): number[]
  • Calculates the Barycentric weights for a Lagrange polynomial for a given set of coordinates. Can be used as a helper function to compute a Lagrange polynomial repeatedly.

    Parameters

    • points: Vector2[]

      An array of coordinates. No two x should be the same.

      -

    Returns number[]

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +

Returns number[]

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/modules/MathUtils.html b/docs/modules/MathUtils.html index b3f0fbe..2146b25 100644 --- a/docs/modules/MathUtils.html +++ b/docs/modules/MathUtils.html @@ -1 +1 @@ -MathUtils | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Namespace MathUtils

Index

Functions

clamp

  • clamp(value: number, min: number, max: number): number

clamp01

  • clamp01(value: number): number

lerp

  • lerp(value: number, a: number, b: number): number

lerpClamped01

  • lerpClamped01(value: number, a: number, b: number): number

lerpColor4

lerpVector2

map

  • map(value: number, from1: number, to1: number, from2: number, to2: number): number
  • Parameters

    • value: number
    • from1: number
    • to1: number
    • from2: number
    • to2: number

    Returns number

map01

  • map01(value: number, from1: number, to1: number): number

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file +MathUtils | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Namespace MathUtils

Index

Functions

  • clamp(value: number, min: number, max: number): number
  • clamp01(value: number): number
  • lerp(value: number, a: number, b: number): number
  • lerpClamped01(value: number, a: number, b: number): number
  • map(value: number, from1: number, to1: number, from2: number, to2: number): number
  • map01(value: number, from1: number, to1: number): number

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/modules/Rank.html b/docs/modules/Rank.html new file mode 100644 index 0000000..ddd606b --- /dev/null +++ b/docs/modules/Rank.html @@ -0,0 +1,6 @@ +Rank | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Namespace Rank

Index

Functions

Functions

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/docs/modules/ScoreUtils.html b/docs/modules/ScoreUtils.html deleted file mode 100644 index db50ea7..0000000 --- a/docs/modules/ScoreUtils.html +++ /dev/null @@ -1,11 +0,0 @@ -ScoreUtils | osu-classes
Options
All
  • Public
  • Public/Protected
  • All
Menu

Namespace ScoreUtils

Index

Functions

calculateAccuracy

calculateRank

Legend

  • Constructor
  • Property
  • Method
  • Accessor
  • Inherited constructor
  • Inherited property
  • Inherited method
  • Inherited accessor
  • Property
  • Method
  • Static property
  • Static method

Settings

Theme

\ No newline at end of file