From 51285810167b6119b0aa9982fdbf1e41807f8dd5 Mon Sep 17 00:00:00 2001 From: zkldi Date: Fri, 10 May 2024 12:52:59 +0100 Subject: [PATCH] feat: get rid of isHot and isLatest in code (#1066) * feat: get rid of isHot and isLatest in code * feat: remove hot/latest from seeds * feat: migrate away from them too * fix: 21 * fix: again * fix: again * fix: again --- .../tables/cells/DifficultyCell.tsx | 8 - common/src/config/game-support/gitadora.ts | 9 +- common/src/config/game-support/maimai-dx.ts | 9 +- common/src/config/game-support/wacca.ts | 5 - .../collections/charts-maimaidx.json | 20460 ++++------------ database-seeds/collections/charts-wacca.json | 3597 +-- .../collections/songs-gitadora.json | 5412 +--- .../maimaidx/add-maimaidx-internal-levels.ts | 9 - .../rerunners/maimaidx/merge-options.ts | 172 +- .../maimaidx/parse-maimaidx-dataset.js | 12 +- .../scripts/rerunners/ongeki/fetch-ongeki.ts | 3 - docs/docs/game-support/common-config/index.md | 4 +- docs/docs/game-support/games/gitadora-Dora.md | 1 - docs/docs/game-support/games/gitadora-Gita.md | 1 - server/src/external/mongo/indexes.ts | 2 +- .../games/gitadora.test.ts | 2 +- .../game-implementations/games/gitadora.ts | 35 +- .../games/maimaidx.test.ts | 2 +- .../game-implementations/games/maimaidx.ts | 63 +- .../game-implementations/games/wacca.test.ts | 2 +- .../src/game-implementations/games/wacca.ts | 63 +- server/src/lib/migration/migrations.ts | 4 +- server/src/lib/migration/migrations/rm-hot.ts | 50 + .../profile-calculated-data/classes.test.ts | 2 +- .../api/v1/users/_userID/router.test.ts | 2 +- .../src/test-utils/mock-db/charts-wacca.json | 3 +- server/src/test-utils/test-data.ts | 7 +- 27 files changed, 7832 insertions(+), 22107 deletions(-) create mode 100644 server/src/lib/migration/migrations/rm-hot.ts diff --git a/client/src/components/tables/cells/DifficultyCell.tsx b/client/src/components/tables/cells/DifficultyCell.tsx index afa1cfd41..384714688 100644 --- a/client/src/components/tables/cells/DifficultyCell.tsx +++ b/client/src/components/tables/cells/DifficultyCell.tsx @@ -76,14 +76,6 @@ export default function DifficultyCell({ {FormatDifficultyShort(chart, game)} - {(("isHot" in chart.data && chart.data.isHot) || - ("isLatest" in chart.data && chart.data.isLatest)) && ( - -
- -
-
- )} {!noTierlist && gptImpl.ratingSystems.length > 0 && ( )} diff --git a/common/src/config/game-support/gitadora.ts b/common/src/config/game-support/gitadora.ts index 7b7460955..67a8de48a 100644 --- a/common/src/config/game-support/gitadora.ts +++ b/common/src/config/game-support/gitadora.ts @@ -8,9 +8,7 @@ import type { INTERNAL_GAME_CONFIG, INTERNAL_GAME_PT_CONFIG } from "../../types/ export const GITADORA_CONF = { name: "GITADORA", playtypes: ["Gita", "Dora"], - songData: z.strictObject({ - isHot: z.boolean(), - }), + songData: z.strictObject({}), } as const satisfies INTERNAL_GAME_CONFIG; const GitadoraColours = [ @@ -71,9 +69,6 @@ export const GITADORA_GITA_CONF = { skill: { description: "The average of your best 10 skill ratings this session." }, }, profileRatingAlgs: { - skill: { - description: "Your profile skill as it's implemented in game -- 25 HOT and 25 not HOT.", - }, naiveSkill: { description: "Your best 50 skill levels added together, regardless of whether the chart is HOT or not.", @@ -82,7 +77,7 @@ export const GITADORA_GITA_CONF = { defaultScoreRatingAlg: "skill", defaultSessionRatingAlg: "skill", - defaultProfileRatingAlg: "skill", + defaultProfileRatingAlg: "naiveSkill", difficulties: { type: "FIXED", diff --git a/common/src/config/game-support/maimai-dx.ts b/common/src/config/game-support/maimai-dx.ts index 208868842..dd298ee14 100644 --- a/common/src/config/game-support/maimai-dx.ts +++ b/common/src/config/game-support/maimai-dx.ts @@ -151,11 +151,6 @@ export const MAIMAI_DX_SINGLE_CONF = { description: "A naive rating algorithm that just sums your 50 best scores.", formatter: NoDecimalPlace, }, - rate: { - description: - "Rating as it's implemented in game, taking 15 scores from the latest version and 35 from all old versions.", - formatter: NoDecimalPlace, - }, }, defaultScoreRatingAlg: "rate", @@ -215,9 +210,7 @@ export const MAIMAI_DX_SINGLE_CONF = { buddies: "BUDDiES", }, - chartData: z.strictObject({ - isLatest: z.boolean(), - }), + chartData: z.strictObject({}), preferences: z.strictObject({}), scoreMeta: z.strictObject({}), diff --git a/common/src/config/game-support/wacca.ts b/common/src/config/game-support/wacca.ts index aff4a28f7..7141fb827 100644 --- a/common/src/config/game-support/wacca.ts +++ b/common/src/config/game-support/wacca.ts @@ -98,10 +98,6 @@ export const WACCA_SINGLE_CONF = { naiveRate: { description: "A naive rating algorithm that just sums your 50 best scores.", }, - rate: { - description: - "Rating as it's implemented in game, taking 15 scores from the latest version and 35 from all old versions.", - }, }, sessionRatingAlgs: { rate: { description: "The average of your best 10 ratings this session." }, @@ -141,7 +137,6 @@ export const WACCA_SINGLE_CONF = { }, chartData: z.strictObject({ - isHot: z.boolean(), inGameID: zodNonNegativeInt, }), diff --git a/database-seeds/collections/charts-maimaidx.json b/database-seeds/collections/charts-maimaidx.json index d8c0b5449..768cf716f 100644 --- a/database-seeds/collections/charts-maimaidx.json +++ b/database-seeds/collections/charts-maimaidx.json @@ -1,9 +1,7 @@ [ { "chartID": "fbde73d543f93cbad9ec67052a7165700c5c8df6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -19,9 +17,7 @@ }, { "chartID": "38a7fddfe899418656e8da4b9b7ee93ebb5bac69", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -37,9 +33,7 @@ }, { "chartID": "c312cbedbdd0fa9efc8bce12a28e58acf69265b7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -55,9 +49,7 @@ }, { "chartID": "f3e7ba3d400480b4811dd201b3738918cbcdbfc2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -73,9 +65,7 @@ }, { "chartID": "da10b78c1684a62bb9228ff58244927d2fab8cd5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -91,9 +81,7 @@ }, { "chartID": "87b9b1fb937d28fcc056b1fd94e4d9544b6082dd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -109,9 +97,7 @@ }, { "chartID": "2908734a3c85627eff4d47c299a81046ce419d82", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -127,9 +113,7 @@ }, { "chartID": "70cdf038ca6ebd4a3511c7979f6718ad2b4ed399", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -145,9 +129,7 @@ }, { "chartID": "61ce0e1da32ad6c59c31806d0396b015f5213ca4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -163,9 +145,7 @@ }, { "chartID": "21c90306be7a254eaf161f0f4abb9aaf93991167", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "7", @@ -181,9 +161,7 @@ }, { "chartID": "c6b860dd47f4a35c94ecc91bbc93ee1d17593215", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9", @@ -199,9 +177,7 @@ }, { "chartID": "590a4c1614c4ac680ec9892ba49523d96d84b1ea", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "10+", @@ -217,9 +193,7 @@ }, { "chartID": "0aad5edab180631ddffffece95892e39f1857003", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "12+", @@ -235,9 +209,7 @@ }, { "chartID": "75e3bff766604a6ae94a70eddbd72d86bec9a4ae", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "6", @@ -253,9 +225,7 @@ }, { "chartID": "60c842021b4915e5a3be1b8791cdfdc677f5d943", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -271,9 +241,7 @@ }, { "chartID": "38d752e907b615826c4685a773047621e861e59a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9", @@ -289,9 +257,7 @@ }, { "chartID": "0e3edfc60b97acc3976786b030bcd8c538a41a67", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "11+", @@ -307,9 +273,7 @@ }, { "chartID": "2b8edc7b5131d3692f21a34d8f306efe38d5e13d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -325,9 +289,7 @@ }, { "chartID": "8adb20f08e13b465748e2234368b1a0cf1a266e7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -343,9 +305,7 @@ }, { "chartID": "d7aec4bd13545448939d10c158bcf89761e8b379", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -361,9 +321,7 @@ }, { "chartID": "b930bb3b1998329b823606ca673e95e2d9795898", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -379,9 +337,7 @@ }, { "chartID": "9ebfe088e3979663494b17ac3d0b77af0b69a9bd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "14+", @@ -397,9 +353,7 @@ }, { "chartID": "dab046ef482194b8d99b9fdc3c9d71326e0a6a13", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -415,9 +369,7 @@ }, { "chartID": "c9057069aecdf3ec38a2ef9a979d111b794e111b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -433,9 +385,7 @@ }, { "chartID": "7e36a8f5d2d347996fe0d1636e61df1467d398b2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9", @@ -451,9 +401,7 @@ }, { "chartID": "28119df39cd3722fb3d5d09a6ba5bb8100cd5939", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "11", @@ -469,9 +417,7 @@ }, { "chartID": "24de8ec01d94d14bb178c90487f46ef327c93725", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "13+", @@ -487,9 +433,7 @@ }, { "chartID": "a207526566f732c2e825904df76ae4a78089ce12", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -505,9 +449,7 @@ }, { "chartID": "10d8779711308f2fa5657d75818ea0fed884e30d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -523,9 +465,7 @@ }, { "chartID": "3ea3ba3b9da24e308270a02f0bbc86dbbb02d242", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "8+", @@ -541,9 +481,7 @@ }, { "chartID": "c2f0d3ad0f4c5c68a85f20dcc51d5fbd46046ebb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "11", @@ -559,9 +497,7 @@ }, { "chartID": "b8f164208348c665e8e67372bfcc1387c8b0e9c4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "13+", @@ -577,9 +513,7 @@ }, { "chartID": "80dc067c9d272e2a4657f21821bb3ba86b901456", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -595,9 +529,7 @@ }, { "chartID": "0243aeb66ae210fc4f0fade045a81fb158b2f3fa", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -613,9 +545,7 @@ }, { "chartID": "7f639902348769f5476b950da9fe1e54c09e3df1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9", @@ -631,9 +561,7 @@ }, { "chartID": "7cabcbc8f97e7165206d61d6232bb3b3610f020f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "11", @@ -649,9 +577,7 @@ }, { "chartID": "6388b0426e00d86b65f314739c0324f33be08d4e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "6", @@ -667,9 +593,7 @@ }, { "chartID": "edc0818cfc831754d75490b3fe6493e9bee8a032", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -685,9 +609,7 @@ }, { "chartID": "4284a34440843e75d1b4fb137e92d9d3c03a79a5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9", @@ -703,9 +625,7 @@ }, { "chartID": "8d9f3d302f040bf10ad2858148cc020d340559e5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "11+", @@ -721,9 +641,7 @@ }, { "chartID": "7956b287ec378f23556b6b46f7d57f99d79b7d50", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -739,9 +657,7 @@ }, { "chartID": "fc97f5d73771355e6909a5f23d58ebfcef9a304d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -757,9 +673,7 @@ }, { "chartID": "c5cd6abe6bf37ec50bf4cd1e894157656278d6ac", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "8+", @@ -775,9 +689,7 @@ }, { "chartID": "16f33e75c7df72e13af6d3929241c6dd6864bf1d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "11+", @@ -793,9 +705,7 @@ }, { "chartID": "022feead54c4144dea4dbe195e96089ab0199ee0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -811,9 +721,7 @@ }, { "chartID": "a7a8ba1a7c0d73aaa6c8aac2951f479beb6bc6d6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -829,9 +737,7 @@ }, { "chartID": "ea82615ad9836e5264ffa67686189df156548e07", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -847,9 +753,7 @@ }, { "chartID": "dcfc4235a5b7c04b0ec2174e3a661e941ee56a25", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -865,9 +769,7 @@ }, { "chartID": "8607d1a7533e2bfc103843fdf51d8441bb6391a1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -883,9 +785,7 @@ }, { "chartID": "849f3c47bf155c0ab28a2ffcbb0ea8103361c3b9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -901,9 +801,7 @@ }, { "chartID": "71df4b7ee20a507077a4858e3fb0d5401e42cbba", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -919,9 +817,7 @@ }, { "chartID": "e9f936171470df00b5345c5b6dd1e1bad58473e1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -937,9 +833,7 @@ }, { "chartID": "f9390085cc5a3a3391930203f620b40b3352cc6b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -955,9 +849,7 @@ }, { "chartID": "16046a78ab5735cf935e1f327bd38d276d13ceff", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "7", @@ -973,9 +865,7 @@ }, { "chartID": "8e2dd5916f84b384bb9d2cf9717651dfdc8564a5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -991,9 +881,7 @@ }, { "chartID": "dae215fd4dd978ee7012401186a9962d4662a2e9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "11+", @@ -1009,9 +897,7 @@ }, { "chartID": "a6b2a92b6e5787293216c969aeb7d34891154cea", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -1027,9 +913,7 @@ }, { "chartID": "c15b7e86207b391e34a144b36ac652a900a3b4be", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -1045,9 +929,7 @@ }, { "chartID": "7cb34af6f9afe5db681af78fe29b98fc9bf390ac", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -1063,9 +945,7 @@ }, { "chartID": "d4ee2872dddc9c01a77c721399ae2ccac96e5a0e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -1081,9 +961,7 @@ }, { "chartID": "301574a3ab3fd660c23405bfb4114e6dde58f088", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -1099,9 +977,7 @@ }, { "chartID": "eb229a1579b151269ba7604f646003f8c54675e3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -1117,9 +993,7 @@ }, { "chartID": "a44b36c8c67683d388ff7ae86e2cec75140cb497", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9", @@ -1135,9 +1009,7 @@ }, { "chartID": "d529f0631f0839efa3ab2bfb0c59f0bbe834d445", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -1153,9 +1025,7 @@ }, { "chartID": "52e08a52c584ece3245be2aa4a5ebb114077d5e3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -1171,9 +1041,7 @@ }, { "chartID": "da64667783771d1c465cf96146387b5cdd9f1f8d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -1189,9 +1057,7 @@ }, { "chartID": "8b69b00ce12042ca768bfa8a0184e833f5d6eba0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9", @@ -1207,9 +1073,7 @@ }, { "chartID": "615750c5ef4f596912b17de7ce033400a167474d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -1225,9 +1089,7 @@ }, { "chartID": "7c845e3bcaa2c867b4a4f2f4b290f8194c7ef65d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -1243,9 +1105,7 @@ }, { "chartID": "d2cc5b5b175af2dad782f8a9be72733e0da81aa8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -1261,9 +1121,7 @@ }, { "chartID": "ab2041ec6d7c0a5e9eaf1048407c589df7589b55", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9", @@ -1279,9 +1137,7 @@ }, { "chartID": "000697b01a6773c594c2ed666f29ef90b8663c1f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "11+", @@ -1297,9 +1153,7 @@ }, { "chartID": "dd6bdb408dc051d59f31bff9a4d6d69228002516", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -1315,9 +1169,7 @@ }, { "chartID": "f10a37d0f68d0b5161e494c82ff54298a1647b11", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -1333,9 +1185,7 @@ }, { "chartID": "fe65d71fab86e5dcfc7dce08d87dfe608679f5be", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -1351,9 +1201,7 @@ }, { "chartID": "45431dd70c9bf2746483333afcfdec2b2e8cf15a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -1369,9 +1217,7 @@ }, { "chartID": "974807bcc243dc42684a55039dc90b6bd6b946f6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "14", @@ -1387,9 +1233,7 @@ }, { "chartID": "89ed3aea9b88dda4ae7a08fd7b5077b41fd89da0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -1405,9 +1249,7 @@ }, { "chartID": "15e51b501832390872267eca4cf335f36b6025b8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -1423,9 +1265,7 @@ }, { "chartID": "d32d7d1e22da41a6ab6ea21aaaba354464860299", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9", @@ -1441,9 +1281,7 @@ }, { "chartID": "e5b223d00c13e0a7eddd78a1225746309d7bce1e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "10+", @@ -1459,9 +1297,7 @@ }, { "chartID": "f7b5567ffdd546db8469773a1c0073ca8e901d78", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -1477,9 +1313,7 @@ }, { "chartID": "0703367acd14929744f5bd2a4122534e3352a2de", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -1495,9 +1329,7 @@ }, { "chartID": "be4f29f4e0aeedb47dc83831c78c5427484288e1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -1513,9 +1345,7 @@ }, { "chartID": "25dc8c1a7f61c06f58225581c2cf07acf2d17503", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -1531,9 +1361,7 @@ }, { "chartID": "da1e26ae7f48802717e2bbfabb8c4f34ebbfa4f2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -1549,9 +1377,7 @@ }, { "chartID": "f232bd54c3b30c218302102305c1831c5d8ed8b5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -1567,9 +1393,7 @@ }, { "chartID": "c994f3601fa4de0e59bba07f6c13127aa9915cff", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -1585,9 +1409,7 @@ }, { "chartID": "cb01c998d6ad0e5203bdee01ddedc9d7b8a68eb2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -1603,9 +1425,7 @@ }, { "chartID": "044d08362ca300ce1f839c4dc68f8907c26f3353", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "13", @@ -1621,9 +1441,7 @@ }, { "chartID": "496fd6be7590c47f9a2ac142092bb7d2986659ef", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -1639,9 +1457,7 @@ }, { "chartID": "5620f079caa732be44b257f74b70ddd2c0daeeb9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -1657,9 +1473,7 @@ }, { "chartID": "96577d6828a1d8b5f6f08d8c5f0054ae64113a4d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -1675,9 +1489,7 @@ }, { "chartID": "e6acc4ee8a037f9f3105fab61a19ad8c28fd84bd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -1693,9 +1505,7 @@ }, { "chartID": "0f7d9d3badc3c3bb46edcd29bc170834edb06bc3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "14", @@ -1711,9 +1521,7 @@ }, { "chartID": "51cceb69be0a2b5a278e636817fdd90924bab348", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -1729,9 +1537,7 @@ }, { "chartID": "05fac0846cea6c278c801eabf657863e40442355", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -1747,9 +1553,7 @@ }, { "chartID": "4800fb21beffaf93739045b3baa4b5e75110444f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9", @@ -1765,9 +1569,7 @@ }, { "chartID": "e5babafbfd89e248357825e997c21097711e6593", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "10+", @@ -1783,9 +1585,7 @@ }, { "chartID": "a423ca24c44d48ce0c5f9ece1a05bbcf0a3872b3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "13", @@ -1801,9 +1601,7 @@ }, { "chartID": "2408ba18a004abd705dc3c1b95e255b3ed56ebca", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -1819,9 +1617,7 @@ }, { "chartID": "1f8385d53317fd54e8a486e73f2d61fb0d4c6ad5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "7", @@ -1837,9 +1633,7 @@ }, { "chartID": "2775e71808ec64701f7b5406809566aa7537e0ef", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9", @@ -1855,9 +1649,7 @@ }, { "chartID": "00882c196adf9b02703640ece893f0c5fc194409", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "11+", @@ -1873,9 +1665,7 @@ }, { "chartID": "6d2d0741ccd3bff1822cf10a24bc5ba13a181fbc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -1891,9 +1681,7 @@ }, { "chartID": "6aede81e2469ddf06191acfb0a78a9f41307a154", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "7", @@ -1909,9 +1697,7 @@ }, { "chartID": "accecf3624483f8cfa9ea771d622f5d1f60dcba2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -1927,9 +1713,7 @@ }, { "chartID": "315ddc858e894a7d1a0939da1abf55c39ca654ce", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -1945,9 +1729,7 @@ }, { "chartID": "c9ab53363c0c43c3b05de88d97ce2e5e9bc31c67", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -1963,9 +1745,7 @@ }, { "chartID": "fce36276648fd825ba8cf1f6f006ef6d4f5807ff", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "7", @@ -1981,9 +1761,7 @@ }, { "chartID": "f3698ba6531af6cd9e8b5cb625f5f6302fcad3a4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9", @@ -1999,9 +1777,7 @@ }, { "chartID": "db6384f0aff7e0dc933d8ba01f12f51907921f65", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "11", @@ -2017,9 +1793,7 @@ }, { "chartID": "7ffafd7c17bb85deb0c0612a57b5165727640e66", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "12", @@ -2035,9 +1809,7 @@ }, { "chartID": "9538266184e0ba678184dbdfc83d845f627cc31f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -2053,9 +1825,7 @@ }, { "chartID": "d1b2221d285aa443b53dadad838ba88a7b341a83", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "7", @@ -2071,9 +1841,7 @@ }, { "chartID": "aa21947fc6dbf1ec27b6043fabf661816568e2a2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -2089,9 +1857,7 @@ }, { "chartID": "1516f81197ea30ef1ad012662d6aabb1c21c1e8a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -2107,9 +1873,7 @@ }, { "chartID": "633e5f5375ea5e3dc4cbeec71aea73c959f49724", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "13", @@ -2125,9 +1889,7 @@ }, { "chartID": "7fadddf3a32dcbc0e88bbb33ad50c83e033802ca", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -2143,9 +1905,7 @@ }, { "chartID": "098a134675ff9d04a16b4c62343cd6b3b74f16db", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -2161,9 +1921,7 @@ }, { "chartID": "4eb71a7a67f3054469c820bd668402ec821464a0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -2179,9 +1937,7 @@ }, { "chartID": "c87f9772bab5fcad78639f9b129dd21a6989d5dd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -2197,9 +1953,7 @@ }, { "chartID": "7f416f545b70ce1c8d6f56d583d76614908fc055", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -2215,9 +1969,7 @@ }, { "chartID": "44fa49070b446a3d7c0d0505c5090cc206fb618d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -2233,9 +1985,7 @@ }, { "chartID": "9f8d79021fd01b9285a4ff41cd630997996893ac", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -2251,9 +2001,7 @@ }, { "chartID": "adb2ed867f85f38de742cc63d5c994a03b481220", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -2269,9 +2017,7 @@ }, { "chartID": "e87ec802ee2f11444701771028c273ab03d92a8b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -2287,9 +2033,7 @@ }, { "chartID": "2b041e0c4f2314b3bbbc283b9378f5a7f37fd2b9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -2305,9 +2049,7 @@ }, { "chartID": "a68724d231f0b6713056e5f6c7bc816588a34579", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12", @@ -2323,9 +2065,7 @@ }, { "chartID": "2b9c64da92b4e0815d8a6c133980977fc0f81b18", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -2341,9 +2081,7 @@ }, { "chartID": "bb5647ff616adbffc3742e9f58825944c8f4c727", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -2359,9 +2097,7 @@ }, { "chartID": "c18594caf4d763dbed2f3370eeecfc4ced197c2f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -2377,9 +2113,7 @@ }, { "chartID": "6ec0e67258f2e63581b4fa4ea74d218ae07afdd9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -2394,9 +2128,7 @@ }, { "chartID": "98b6476f9666926957a53ca0b07a4f981a82cd50", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -2411,9 +2143,7 @@ }, { "chartID": "84998c5a2e6a86df1493b9a881b8bb6b2917ec25", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -2428,9 +2158,7 @@ }, { "chartID": "b463dc1f681cae7980ca1692b7e9df71b2850143", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14+", @@ -2445,9 +2173,7 @@ }, { "chartID": "5936f2c7edcf01cbb568feb2a4c3da9c5c657855", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -2463,9 +2189,7 @@ }, { "chartID": "0866edda07a63a647c170cc9aa0b4c861eea4816", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -2481,9 +2205,7 @@ }, { "chartID": "35a29d7edbc61a72417a02665e6d139855bdf34e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "14", @@ -2499,9 +2221,7 @@ }, { "chartID": "ccd19c797dc2fb49fa1fd00894c4d8675f1afb3f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -2517,9 +2237,7 @@ }, { "chartID": "a7aadf6ccd935e6be297505a053452f2f84e1ea8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -2535,9 +2253,7 @@ }, { "chartID": "c49e562f8d3788c82d505fd93337fc0017004eb9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -2553,9 +2269,7 @@ }, { "chartID": "0a959f382d3cc2ae3bc2231cf0f3fd85df6cf932", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "11+", @@ -2571,9 +2285,7 @@ }, { "chartID": "1dfae5912b510e137fce33ae634199bd4507be23", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "13", @@ -2589,9 +2301,7 @@ }, { "chartID": "949a35e786025460af9195c61d7323ac29046e9e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -2607,9 +2317,7 @@ }, { "chartID": "e60ab68924b36f8f34bce6380da1d00b985aaad7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "7", @@ -2625,9 +2333,7 @@ }, { "chartID": "7040df8525020e4da138fa6c067d8866edccbb3b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "8+", @@ -2643,9 +2349,7 @@ }, { "chartID": "986b27dbb319f6f0eb1d0ad89259232be03a1d35", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "11+", @@ -2661,9 +2365,7 @@ }, { "chartID": "821a30143060a9576f873c97dc871db7fb14eda9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -2679,9 +2381,7 @@ }, { "chartID": "d175e700039ac42ec9cbc631bcfe0c2bd2b4d147", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -2697,9 +2397,7 @@ }, { "chartID": "f5fb724520030a55ccdb6163fdb3a7675386f877", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -2715,9 +2413,7 @@ }, { "chartID": "9e6a0ae78bde04f19056dbf1ada0cc10819d3303", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -2733,9 +2429,7 @@ }, { "chartID": "d9db2fe98c7546458d9ff13aa5ac796e5f5c043b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -2751,9 +2445,7 @@ }, { "chartID": "03d38ed14956c2aeeed2d634467eb073fc60f5da", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -2769,9 +2461,7 @@ }, { "chartID": "99eaf40ce36d4babd9454c56e475c16d7c404af5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -2787,9 +2477,7 @@ }, { "chartID": "28ab05f05e4f88aa24f2b4e6354565d05839015c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -2805,9 +2493,7 @@ }, { "chartID": "d1fdcaf6fc6e51b93415dff46d3c1b6c56ca3f98", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -2823,9 +2509,7 @@ }, { "chartID": "f4f6bf0f326f460928984a0db0cde2f340e503f6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -2841,9 +2525,7 @@ }, { "chartID": "b35d61a02c76170e61df2cf6de7e08422f1cb231", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -2859,9 +2541,7 @@ }, { "chartID": "eef4b4ab4439e586f4e5f5b081a9d8540634a810", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -2877,9 +2557,7 @@ }, { "chartID": "483ffdbc9f9d09504ab6faf742e4ba4281cd8821", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -2895,9 +2573,7 @@ }, { "chartID": "a1b054f3be00e5744b77fb2e1f8061e335bb3ed3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -2913,9 +2589,7 @@ }, { "chartID": "83fc494411aea0bef0afad3ae0dfab0e3351ef07", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "8+", @@ -2931,9 +2605,7 @@ }, { "chartID": "ddc33062ca1e95e15a2bf4faf432a35da4fd4137", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "11+", @@ -2949,9 +2621,7 @@ }, { "chartID": "e5634e7d148f2ebb320a2f2dcfa22ef9d773918a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "6", @@ -2967,9 +2637,7 @@ }, { "chartID": "1657660abe0c1b96ebf92ff0a886dcb31a7d9ced", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -2985,9 +2653,7 @@ }, { "chartID": "d84767a91ab6faab346bd910eac80b3945806d5b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "8+", @@ -3003,9 +2669,7 @@ }, { "chartID": "caac1952b6ef35c119a5575191fd4de12b67555e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -3021,9 +2685,7 @@ }, { "chartID": "f3351f0136b5eaaf2b40a19f4d3631c7b9153be4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "6", @@ -3039,9 +2701,7 @@ }, { "chartID": "448ecbf7845bd18090ba42460805da3e037d5be8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -3057,9 +2717,7 @@ }, { "chartID": "9463b6ab5b861f53ceb492d26c91a4af155daeed", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -3075,9 +2733,7 @@ }, { "chartID": "ed5c5b820243a378f99d6bb6ca02290d99542602", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -3093,9 +2749,7 @@ }, { "chartID": "077db9fa885096f618cf203e33ffabbf6a9e7ff3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "12+", @@ -3111,9 +2765,7 @@ }, { "chartID": "19913fb0ebd4f3f95daf7d2ce875ec14a8222da7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -3129,9 +2781,7 @@ }, { "chartID": "bbac8e807bade910a706d7fb51358d5fec5010a6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -3147,9 +2797,7 @@ }, { "chartID": "7478d98ab6ab3b14443afd5dba076972ae2fdeae", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -3165,9 +2813,7 @@ }, { "chartID": "1f763a83bf904001e7f39cbe2c30af86b726e3a9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -3183,9 +2829,7 @@ }, { "chartID": "ff732ec82732c342aea86a33c037ac02f69624f4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "13", @@ -3201,9 +2845,7 @@ }, { "chartID": "7bb7288e8c002818a1041e6647fdd1d2da2f0d09", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -3219,9 +2861,7 @@ }, { "chartID": "dffa4f552a78db091265c3a343fcf200d5713a5a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -3237,9 +2877,7 @@ }, { "chartID": "a7ed7238fd29c47e5903daa5e8c1ac8bc5dea1a9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -3255,9 +2893,7 @@ }, { "chartID": "4e41e3d7b796cb44f9117d35c31b55a230a6d174", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -3273,9 +2909,7 @@ }, { "chartID": "d4d1e5662835e6b2e5224ccacab5e1de5f2654b0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -3291,9 +2925,7 @@ }, { "chartID": "7e8344804789d881f2df91f3fa59ab8d9a2a96d7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -3309,9 +2941,7 @@ }, { "chartID": "a039befc4334c26708dc98c5519470793ee13a3a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -3327,9 +2957,7 @@ }, { "chartID": "5191ec9b205ad4dcb40802c9cd85e90ad4414f0a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -3345,9 +2973,7 @@ }, { "chartID": "7664fc7bd46c910a50fa0da70b62f3e5fbca3c9b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8+", @@ -3363,9 +2989,7 @@ }, { "chartID": "ab416953b4dfc9148bf472c0ee553775e72739b4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -3381,9 +3005,7 @@ }, { "chartID": "018f7f74b3b048efe7591cf12e907e4f2f0a17b3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -3399,9 +3021,7 @@ }, { "chartID": "a0bdbbabf5bf09dc1db3600583d1358a2cdf9512", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -3417,9 +3037,7 @@ }, { "chartID": "9189de02d910bddf090325243b4aef4f005741f5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -3435,9 +3053,7 @@ }, { "chartID": "f38314546839167c194412c5a4894556eb1a4c2f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -3453,9 +3069,7 @@ }, { "chartID": "09324d8125291d378ccc7938f4d04381535fa580", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -3471,9 +3085,7 @@ }, { "chartID": "4d2e86d43848485b46237768ae25285c09f302bf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -3489,9 +3101,7 @@ }, { "chartID": "aa11004ce039f1906d0ecb26aacb86b6c9cdebc4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "13+", @@ -3507,9 +3117,7 @@ }, { "chartID": "b6a7c9fd98304971fa24d268af070e5a72536260", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -3525,9 +3133,7 @@ }, { "chartID": "edd0f7e78a8f41108341b47b15f9bb0aaa80d163", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -3543,9 +3149,7 @@ }, { "chartID": "fdc8ccdf54b54fc82b5bc8d499fbe46b840f69e6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -3561,9 +3165,7 @@ }, { "chartID": "12d3beb9d1f93db288d0fb49380cb86becaf0add", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -3579,9 +3181,7 @@ }, { "chartID": "ef5a1ca01a5f84a59f4cc87e6c8ea7141a9a348d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "13", @@ -3597,9 +3197,7 @@ }, { "chartID": "9d0b6c52e09599a46c2836b20b764830a6f78f1d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -3615,9 +3213,7 @@ }, { "chartID": "457e30bf52bbb5faccde38af7ee04de3fbb9059b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -3633,9 +3229,7 @@ }, { "chartID": "611d85b299f85bf1de27c7798783b17aac322755", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9", @@ -3651,9 +3245,7 @@ }, { "chartID": "d4cbc79bb965c8e264a68da696897358cb302d2f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -3669,9 +3261,7 @@ }, { "chartID": "32a7f15ece7f1828b97c52c1e898b543c066d8d4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -3687,9 +3277,7 @@ }, { "chartID": "3eb47b44776f2a5c3ff10ef8404f0ed9c3d5c372", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -3705,9 +3293,7 @@ }, { "chartID": "265e367d0c775291b9dfe563c440f4cb74843490", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -3723,9 +3309,7 @@ }, { "chartID": "915299a10391d3e48c9c433c391bbc5a3afcd32e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -3741,9 +3325,7 @@ }, { "chartID": "bbed656d9efcd26fa3bed24fc4e9aaac10e95eaf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -3759,9 +3341,7 @@ }, { "chartID": "b48cb986e5277587e3e688022daf8e2a8749035f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -3777,9 +3357,7 @@ }, { "chartID": "17b52005288c83a29411fa1023791000f7a04493", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -3795,9 +3373,7 @@ }, { "chartID": "85871afc615c3dc4a183d4bcfabd5e5e3dcdbaf6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -3813,9 +3389,7 @@ }, { "chartID": "e3d345c23eb543399bef4f38aec963503512910d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -3831,9 +3405,7 @@ }, { "chartID": "2b746b4d463452c910f9d1a43e226b423ca4baea", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -3849,9 +3421,7 @@ }, { "chartID": "4b440fab9169f22e71b325ec9f8d481190d7a32a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -3867,9 +3437,7 @@ }, { "chartID": "b2df0a2163bdd957f9c92da54244c9c350c5b99e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -3885,9 +3453,7 @@ }, { "chartID": "7ce26db1107fd8bb8211f58bcb7ba9e7548527c7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "13", @@ -3903,9 +3469,7 @@ }, { "chartID": "02979f55a1b6a74b3bc875b52ff19cb1c739aa5a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "6", @@ -3921,9 +3485,7 @@ }, { "chartID": "d1767deca0b01803982de7dcde004561f1ff9e26", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -3939,9 +3501,7 @@ }, { "chartID": "d9e956e567e05c5c37528bee8836ee9cf7b83f94", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "8", @@ -3957,9 +3517,7 @@ }, { "chartID": "562ef5e76bafe3e0c9dd45cc2789cf3d927a33cd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -3975,9 +3533,7 @@ }, { "chartID": "516c6632f85e7ce0fd7c530deeb615367a9f0d5a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -3993,9 +3549,7 @@ }, { "chartID": "e35cdcb1bf60ebaf91577a7de497b245c5a0da65", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -4011,9 +3565,7 @@ }, { "chartID": "f4eba394c71beaf53c01521e2b5f0202f7d26ebb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -4029,9 +3581,7 @@ }, { "chartID": "ff052b91877a0f21af6d98dfe75601fca5933879", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -4047,9 +3597,7 @@ }, { "chartID": "b28fc35be8d93d43762dd4cc629f29acb7728db3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -4065,9 +3613,7 @@ }, { "chartID": "f39760ae72dc011f1ec34d7fec2b24f0f2168572", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -4083,9 +3629,7 @@ }, { "chartID": "1626a9b74c3cb8a587235496372a0e58ee217bca", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -4101,9 +3645,7 @@ }, { "chartID": "37de5159c09ee8140f79df05389a02f313a74ab5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -4119,9 +3661,7 @@ }, { "chartID": "e4782ac4a00d13e2b0488b0f6c214504c1d6ebd5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -4137,9 +3677,7 @@ }, { "chartID": "56b5e0e5fea1bb1c0a419ec7964916246971d5b4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -4155,9 +3693,7 @@ }, { "chartID": "3009eea4d916a8a5a80990902783a2f83b0d49ee", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -4173,9 +3709,7 @@ }, { "chartID": "25bf593c27f833a930761f7a3251a81c47f8f68f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -4191,9 +3725,7 @@ }, { "chartID": "02662c10e132bdc3e83f65cadbf7d0adcdbe9048", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "12+", @@ -4209,9 +3741,7 @@ }, { "chartID": "dd0db5bd64edf3e80a69a7b851aca00085e38fb4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -4227,9 +3757,7 @@ }, { "chartID": "e55933f56638f2084f2cd936ace62a467cc9511c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -4245,9 +3773,7 @@ }, { "chartID": "376f8e1c84b260b8e922ea031c0ae9114d901057", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -4263,9 +3789,7 @@ }, { "chartID": "52243fccdb5df91748fa3e7f388c9a736922a90d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -4281,9 +3805,7 @@ }, { "chartID": "0620faf45c5416d0d831daa741abdd3b6ed5aaab", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8+", @@ -4299,9 +3821,7 @@ }, { "chartID": "4fe3ca2ff548cfcec21e22f72914361aa70c5229", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -4317,9 +3837,7 @@ }, { "chartID": "763b7aaaf4a1c33707114548fca81ab43383586a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "13", @@ -4335,9 +3853,7 @@ }, { "chartID": "f4afff11cf7f2fdab47267729787d25d67e80691", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -4353,9 +3869,7 @@ }, { "chartID": "2f778b4cc4ea23a6731894b4480a252b177174b9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -4371,9 +3885,7 @@ }, { "chartID": "08a94360dd945bed03f98cb1b3863fb26e111bad", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -4389,9 +3901,7 @@ }, { "chartID": "261ac5953518b08c39ae975b7fa63532b60a85dd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -4407,9 +3917,7 @@ }, { "chartID": "2e9e5f8922b3bc7ce0b5cbe850388b6d8332697a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -4425,9 +3933,7 @@ }, { "chartID": "5fcd76e09178519095e20fed17d0c5700238f28e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -4443,9 +3949,7 @@ }, { "chartID": "158eaa1d1293624e04e7a12ec0ab29361ad64149", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -4461,9 +3965,7 @@ }, { "chartID": "957317af13e13ff4def003d7b4e6749b0f2b62bf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12", @@ -4479,9 +3981,7 @@ }, { "chartID": "f7e71e07cafe7ed4b0a80d9ec7cda03262e7d04c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -4497,9 +3997,7 @@ }, { "chartID": "a2e5c7af767a0a31a3b05f480de828de0de222ad", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "13+", @@ -4515,9 +4013,7 @@ }, { "chartID": "43eb4de36e9926ce19562541630228aa6f67b712", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -4533,9 +4029,7 @@ }, { "chartID": "2eb15ab8b57ae38e36402a2b3b92e9274e03bafa", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -4551,9 +4045,7 @@ }, { "chartID": "fd3920383b03e579e02f1e21081af7b4dcf01824", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -4569,9 +4061,7 @@ }, { "chartID": "729ab8ba41c44fe6570c46a134d9c3ee65e49176", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -4587,9 +4077,7 @@ }, { "chartID": "3a216df0504a4facee0578169613bd277ec0525a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -4605,9 +4093,7 @@ }, { "chartID": "750710366e6f95872285ca72c19ce6058a9f6cfd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -4623,9 +4109,7 @@ }, { "chartID": "fdd04ac20f69ef24e929601606cf0666011cf57e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12", @@ -4641,9 +4125,7 @@ }, { "chartID": "229581272da4e65649f4a1c6736d886d7591f938", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -4659,9 +4141,7 @@ }, { "chartID": "86d1cf01f3ea8a958fb67da9ea0fccce12438d57", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -4677,9 +4157,7 @@ }, { "chartID": "596232dfe71a4be499fee99b4b9c6deb1917a1f9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -4695,9 +4173,7 @@ }, { "chartID": "8ce4c75f4efc9ff3539431e67b4b3fb42e477396", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -4713,9 +4189,7 @@ }, { "chartID": "dec33f4e8ad0e391326e6cc24bc04c1cf5ce66d1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -4731,9 +4205,7 @@ }, { "chartID": "f5a6b1012c98cd64243ebf92a9eb62a63708ae9d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -4749,9 +4221,7 @@ }, { "chartID": "ec9847edb5f3189d35ab4967ae9e89f1eea8dedd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -4767,9 +4237,7 @@ }, { "chartID": "fca0f40779238916360302332a783237fa7c008c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -4785,9 +4253,7 @@ }, { "chartID": "6a2d1d23a8e637e7063a4108a44f993ffa2d4647", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -4803,9 +4269,7 @@ }, { "chartID": "07e024e35d5028f6eddf1c2a43069957c29956b3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "6", @@ -4821,9 +4285,7 @@ }, { "chartID": "b999d358874135276687d314d7f25f0f486853fa", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -4839,9 +4301,7 @@ }, { "chartID": "a81b3b3c00ef5f4ca0ba7a6c5ca4c414308bd3b3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9", @@ -4857,9 +4317,7 @@ }, { "chartID": "4e74791967e53765fef9a398fbe5fdd8ead5d354", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "10+", @@ -4875,9 +4333,7 @@ }, { "chartID": "ea69672c9f46cf1e34ec1d2dc5cc3ac7d2852939", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -4893,9 +4349,7 @@ }, { "chartID": "56099ac99f0a67bca20858f66e4314bd86a21aec", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -4911,9 +4365,7 @@ }, { "chartID": "562e19918b7c9256a6bf861c925e5713dca1f799", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -4929,9 +4381,7 @@ }, { "chartID": "ad3ab9a8c4ea0601bd9d0dba60c665d5812140b9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -4947,9 +4397,7 @@ }, { "chartID": "b4920aabbf2e989e8fef68dbdd42cccad42e96cb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -4965,9 +4413,7 @@ }, { "chartID": "71edfb55908a2f0bd82a83db6b9ffb4cd5bbb77d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -4983,9 +4429,7 @@ }, { "chartID": "63dcc70136fd2d6ff0fb6d451ddada4c051d86d0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -5001,9 +4445,7 @@ }, { "chartID": "e8e6c796cb543adb7a31e98b71f67e50b10c3771", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -5019,9 +4461,7 @@ }, { "chartID": "13da37b513bdaa05315fb47d29dc6557906a73e8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -5037,9 +4477,7 @@ }, { "chartID": "e131e6c50a14690b46794828b0aea7e7284654ae", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -5055,9 +4493,7 @@ }, { "chartID": "ed44c285433ff349f4c5166c9f83b2541c0aff26", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -5073,9 +4509,7 @@ }, { "chartID": "7648567b7d661ac3460a44c0aff05053a1d94a2e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -5091,9 +4525,7 @@ }, { "chartID": "fae55752d9ed721abb8f63f100e9667fad1b1ed5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -5109,9 +4541,7 @@ }, { "chartID": "226cd340a108ddd967526c6cf77d82e6be263d11", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -5127,9 +4557,7 @@ }, { "chartID": "ff7eb4285df9ac8380b4e1e19ba96f095af23bb4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -5145,9 +4573,7 @@ }, { "chartID": "382d7da38ea3b8bbd1f86d044ebc8b108cc44462", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -5163,9 +4589,7 @@ }, { "chartID": "c1540d7d74b33ec695c8d58a5f368ecc7a949da6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -5181,9 +4605,7 @@ }, { "chartID": "bdf322288f6bdaaae0efe63ed4f57a2e7329c1e2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -5199,9 +4621,7 @@ }, { "chartID": "93d9c8ad45f65d0830d941c8f07c745b0e27ff6c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12", @@ -5217,9 +4637,7 @@ }, { "chartID": "b35179028d8386cb912651dba698ab59d32adbff", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -5235,9 +4653,7 @@ }, { "chartID": "981936f4001120358a543f0ba050d2be8a9c5efd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8+", @@ -5253,9 +4669,7 @@ }, { "chartID": "0e29b1559b80115d15dbc66de1aea8006d2f7566", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -5271,9 +4685,7 @@ }, { "chartID": "e936ace83ad3c083e7e963af5b3d9184cfab42f1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12", @@ -5289,9 +4701,7 @@ }, { "chartID": "99e2fcdcd0c11701fab1ca07f6194b984f75d95b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -5307,9 +4717,7 @@ }, { "chartID": "793b5cca2605f116225f287bd8deb514fb311333", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -5325,9 +4733,7 @@ }, { "chartID": "b9fc8463ac4c36fcea6675b43dfc0cfc8fbb54ad", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -5343,9 +4749,7 @@ }, { "chartID": "6c53c1b430aa311017ff0ec5a20c904a8f878c18", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12", @@ -5361,9 +4765,7 @@ }, { "chartID": "4b251f2e99e7d7dcd2e9772621b204558db2fcca", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -5379,9 +4781,7 @@ }, { "chartID": "3e0c6248f34f202e6116b6ede2748841be2d1d68", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "13", @@ -5394,9 +4794,7 @@ }, { "chartID": "3c76660f8b4ca5311a825f6e4a84427e37d50527", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -5412,9 +4810,7 @@ }, { "chartID": "56753ef59f504855fd4408796abd286a7f7efc0b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -5430,9 +4826,7 @@ }, { "chartID": "95e530cfcb42f1cfa4fcec6258be093a94d67648", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "13", @@ -5448,9 +4842,7 @@ }, { "chartID": "11739c890d49751401c19a409b712ac78f4d56c7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -5466,9 +4858,7 @@ }, { "chartID": "875e5e62d68f6e2b778bee340a26ae6d18229b5c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -5484,9 +4874,7 @@ }, { "chartID": "5a87f67d33d94b76a72dea1744bbead99b566079", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -5502,9 +4890,7 @@ }, { "chartID": "cdc1b3b336499eff218ecefd02499130f5817722", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -5520,9 +4906,7 @@ }, { "chartID": "a35ff4af48def54d0d5dda4b9e156e4c3dda82b4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -5538,9 +4922,7 @@ }, { "chartID": "d8f38ca0196ad1a5aad056574b8463a5eddbc6ba", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "13+", @@ -5556,9 +4938,7 @@ }, { "chartID": "d50aef7cd65ee1c8b73fc8cc1c626a8762da4aa1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -5574,9 +4954,7 @@ }, { "chartID": "4f772976dce67475d067b4e1c0c5828ae091739c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -5592,9 +4970,7 @@ }, { "chartID": "cf1293bafdaa5eff025011de8ffd4b40bd5c696b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -5610,9 +4986,7 @@ }, { "chartID": "166d9e8197befe81b0252e79dc23ce80611ae6e5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -5628,9 +5002,7 @@ }, { "chartID": "4778c82d0ec197728f244832625f68855704afb0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "13", @@ -5646,9 +5018,7 @@ }, { "chartID": "07888c43d9d6fff08b0a2cf78049b2ca6aba9cb9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -5664,9 +5034,7 @@ }, { "chartID": "f1800fbee586da4dc9a89c12c0e683a5b8580702", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -5682,9 +5050,7 @@ }, { "chartID": "a56909015f948d5008e0e07e75b8f2743bb65e8c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -5700,9 +5066,7 @@ }, { "chartID": "4d3a9c563f0b65a782fa1e5fc62798815061e08b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -5718,9 +5082,7 @@ }, { "chartID": "fd74c7f9a6a9cefa3eb34c74958611acdcd4e2ec", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -5736,9 +5098,7 @@ }, { "chartID": "df1832546c1de5305f7aa4a87fcf192056091b1e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -5754,9 +5114,7 @@ }, { "chartID": "fad1eabe066c3f5837c90b25379815d05631eb92", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -5772,9 +5130,7 @@ }, { "chartID": "d86678852282964d48bb00858545d88a1af2c965", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -5790,9 +5146,7 @@ }, { "chartID": "d1c1c636527d7104d992c6bef39c1619a18e19d6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -5808,9 +5162,7 @@ }, { "chartID": "c16ce995d9c1073389f0012932565fb3d46d82d1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -5826,9 +5178,7 @@ }, { "chartID": "186920508f4c747b51ea90165cb0d1a79a1c9562", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12", @@ -5844,9 +5194,7 @@ }, { "chartID": "f0d9a188d52230a8929ab933afb66776493ec32e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -5862,9 +5210,7 @@ }, { "chartID": "58c65e474c3c297a8ede6984274e85ccce269806", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -5880,9 +5226,7 @@ }, { "chartID": "6b4d0b0de8f5aefa0ced396d5c4c83a5cb69e7e8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -5898,9 +5242,7 @@ }, { "chartID": "9fd63a779a771ea503cd099e2784c53daabdfc39", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -5916,9 +5258,7 @@ }, { "chartID": "29796461729304994b7a36dfff4fb75d1f1ee5ff", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -5934,9 +5274,7 @@ }, { "chartID": "554c1ab01c504fdeaa91e7d733cb0c718d999ada", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8+", @@ -5952,9 +5290,7 @@ }, { "chartID": "c651efe8caa069b2a2a3d9c2276473eeb7751e8b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "7", @@ -5970,9 +5306,7 @@ }, { "chartID": "4460d319138bb9eeb0e39cb741313951eb6e6716", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -5988,9 +5322,7 @@ }, { "chartID": "69e1d38187da6abb129e5c5994e9c707cd916dc7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -6006,9 +5338,7 @@ }, { "chartID": "0c80c8e6077730daeb7b980f03c6179ed7098575", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -6024,9 +5354,7 @@ }, { "chartID": "7bd4f612f787dcaab21ed55f4a15b9ee2511703e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -6042,9 +5370,7 @@ }, { "chartID": "9c04ca1f120621cebbe9c3b31f6635e29764de7b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -6060,9 +5386,7 @@ }, { "chartID": "97c2619c9cc8b52653d74d0ef618b8be5ad2673b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -6078,9 +5402,7 @@ }, { "chartID": "a7718f620395c7fff6520b169b5f7cc50059ab0d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -6096,9 +5418,7 @@ }, { "chartID": "deb7ab4cf3416ad9a491866a84a03548a27eb1e2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "7", @@ -6114,9 +5434,7 @@ }, { "chartID": "788947259b2ff17b12f79acc3ed18d3b1b0c8915", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -6132,9 +5450,7 @@ }, { "chartID": "21f5b86cdcb75dbfc5491a0213fdbb499e044f4d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -6150,9 +5466,7 @@ }, { "chartID": "049c66aa19baf4d4078e33928a975079c636358a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -6168,9 +5482,7 @@ }, { "chartID": "585d9a35c9faf4da9c15d27daa69f6f58ab302d1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -6186,9 +5498,7 @@ }, { "chartID": "d76d81e8f22fe28d9e3758827d9ef39ddc16f4f4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "13", @@ -6204,9 +5514,7 @@ }, { "chartID": "65f23364fa5b74e25a03d2d579ac1939f05b9ae4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -6222,9 +5530,7 @@ }, { "chartID": "d39744e8d41d78df6f501def944d5a54ea441808", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -6240,9 +5546,7 @@ }, { "chartID": "a11fa23145eb383ffff3a59f61ef9d3371d4e42e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -6258,9 +5562,7 @@ }, { "chartID": "b878acdec028905e62e724929a6de077a9f52395", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -6276,9 +5578,7 @@ }, { "chartID": "28edaf167371208558a77a62634896c63ef520cf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -6294,9 +5594,7 @@ }, { "chartID": "8537b56d56b4b8c6527057b3735b858ff77f9b90", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "14", @@ -6312,9 +5610,7 @@ }, { "chartID": "3ac104922c59afb70bcb8ffe1b284c17b2d8a173", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -6330,9 +5626,7 @@ }, { "chartID": "6428524d331ec8ae2f3a98982ccc1562e61bf237", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "7", @@ -6348,9 +5642,7 @@ }, { "chartID": "48970954f2ae285e060d42bb3006bc96468c2274", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -6366,9 +5658,7 @@ }, { "chartID": "f37c43d338cdee7642d9bfb59ddfef1d0c71f80b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -6384,9 +5674,7 @@ }, { "chartID": "76c9b48b6881e4007b784fc92e811154614e0cba", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "13", @@ -6402,9 +5690,7 @@ }, { "chartID": "8e880648206227bac3f79b388e71faeb88d7773c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -6420,9 +5706,7 @@ }, { "chartID": "7a2e2c3674a1415a339a05b1cd199b4ae3669ace", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -6438,9 +5722,7 @@ }, { "chartID": "a44aa62c5dd27b67d61a59345ae7d8f5da6845fd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -6456,9 +5738,7 @@ }, { "chartID": "99f0ab09d8b9e0ecfc3cfc26efb0db560513ace0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -6474,9 +5754,7 @@ }, { "chartID": "941ce2e8d2d7f2e6af2afb5a4f14021805ab6e86", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11+", @@ -6492,9 +5770,7 @@ }, { "chartID": "e94ab058ccacbe9941766e4c8e2170069cd0acc1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -6510,9 +5786,7 @@ }, { "chartID": "1299c6d4d33a4fcf7c9229e80e1c3d1cceda8b15", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -6528,9 +5802,7 @@ }, { "chartID": "4e75fc92c94ab468f4a33d53189a2f5260559478", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -6546,9 +5818,7 @@ }, { "chartID": "abe89b59372c6939d5da0197ff7f2b543de0f2db", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "12+", @@ -6564,9 +5834,7 @@ }, { "chartID": "322350a81642f122ee8dc4fd6dc200049a164dc0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -6582,9 +5850,7 @@ }, { "chartID": "935f38d217605f887bfa2f90a196002a2ede0f6b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -6600,9 +5866,7 @@ }, { "chartID": "14c91da1bad39bb8eba5dc25355fefc8ea0cfb1b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -6618,9 +5882,7 @@ }, { "chartID": "09443c30f1d9f7b8230ff2dc7f8f7324b424b331", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -6636,9 +5898,7 @@ }, { "chartID": "3eb9c370d511bdc15f251b5aedbcc8727508fd03", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -6654,9 +5914,7 @@ }, { "chartID": "e2353a8a9eee3fefa6dc388f2930535f4671c674", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -6672,9 +5930,7 @@ }, { "chartID": "4dfbb7b630b9bcfecf4e3ab218e079dffb1490e7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -6690,9 +5946,7 @@ }, { "chartID": "5f892933a4a878b75e141411b2d4eade1ed3bab8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -6708,9 +5962,7 @@ }, { "chartID": "154fcb76f6ae22132ee8f175a94be0dedc1918ce", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "13", @@ -6726,9 +5978,7 @@ }, { "chartID": "f756e8c6bfee3a1499404b93eb450fae417770c9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -6744,9 +5994,7 @@ }, { "chartID": "70f4c29c7287a69c175982bde6c2b5cd51e6e045", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -6762,9 +6010,7 @@ }, { "chartID": "3ebdb26827702b454a089c7d201335dd18b4a852", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -6780,9 +6026,7 @@ }, { "chartID": "266ce72d9b7167ff3fbb75993e4a79b1cdd572b9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -6798,9 +6042,7 @@ }, { "chartID": "158fd984dbad3da8662070df18597ae8ab6ef2be", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8+", @@ -6816,9 +6058,7 @@ }, { "chartID": "fb61fe087a7d6e8880e98922869bfd4b30e4d839", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -6834,9 +6074,7 @@ }, { "chartID": "5a00f2397dfc63ff90c999e1e5d8cd33d29aec2b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -6852,9 +6090,7 @@ }, { "chartID": "9c5f547326303c5d41c649a927ba6cef1108b64b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -6870,9 +6106,7 @@ }, { "chartID": "83883b9b75ecfc1abbd49bb174641ea8979a830e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -6888,9 +6122,7 @@ }, { "chartID": "b0353547e52ccfc329ee497cf16c5c5d44db2777", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -6906,9 +6138,7 @@ }, { "chartID": "004a29703b7bbf15feef8272defa0ae07a4400f0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -6924,9 +6154,7 @@ }, { "chartID": "174ccc5754735b74631afd45878090585ba5ab28", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -6942,9 +6170,7 @@ }, { "chartID": "91551180c34e0226fc9adae3d02721b27255d6dd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8+", @@ -6960,9 +6186,7 @@ }, { "chartID": "f7a8831d049664f49bbc4a14c345b82a3dbb80eb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -6978,9 +6202,7 @@ }, { "chartID": "714b9e36cdfcd6aaccf027c4380c6b86bb90b0df", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "13", @@ -6996,9 +6218,7 @@ }, { "chartID": "df4bbf2358802e5b099ddac98aac1fec7c789524", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -7014,9 +6234,7 @@ }, { "chartID": "4a1a0d342a292e7f071acca964383f7cfceeb0ac", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -7032,9 +6250,7 @@ }, { "chartID": "621ed621bf67c80cae116016e55b826e841ff015", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -7050,9 +6266,7 @@ }, { "chartID": "0d6bdcf4433bd31d6bafcea749f48753dc553b8b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -7068,9 +6282,7 @@ }, { "chartID": "b869cf8d4def09765c15e550a4a853b2f3f65d79", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -7086,9 +6298,7 @@ }, { "chartID": "a20b739008b7dd2b335cf406636cbfedaa0ec593", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "12+", @@ -7104,9 +6314,7 @@ }, { "chartID": "2560cc8043ea07430347a1bcb196f0a3f2678a16", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -7122,9 +6330,7 @@ }, { "chartID": "363112800d2dda02b1477993f1198cfd730aa3c4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -7140,9 +6346,7 @@ }, { "chartID": "4ca9808caf698debaad6af9979fc9832408273ee", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -7158,9 +6362,7 @@ }, { "chartID": "1275f921a8c267096ed6106740f072ddf974e4bb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -7176,9 +6378,7 @@ }, { "chartID": "9a7b215ad9ff9051507c374759c09f1b05e7b20c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -7194,9 +6394,7 @@ }, { "chartID": "595baeaffd8f6c48db4ddaf7ae980bc88a43b177", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -7212,9 +6410,7 @@ }, { "chartID": "a19f9600fe49340aa454a989df3411883ab6732a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9", @@ -7230,9 +6426,7 @@ }, { "chartID": "9111cb317489b02b6dc1b70d6cabd62ec731dc51", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -7248,9 +6442,7 @@ }, { "chartID": "fa0f9dcbc52431e8abdc0c1a909b6c74122e17cc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -7266,9 +6458,7 @@ }, { "chartID": "68580e5fd309d16f66bcacce9ed6d52829a01f96", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "2", @@ -7284,9 +6474,7 @@ }, { "chartID": "2f3cb03715fd0eece61b63f47928ecf48780bbf6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -7302,9 +6490,7 @@ }, { "chartID": "b1e0d76dfbc56a6ed09c058838e7bdfbfe6036b1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -7320,9 +6506,7 @@ }, { "chartID": "c3cb909eabb7052912fc02bf84f87c6585b7a7e0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "8", @@ -7338,9 +6522,7 @@ }, { "chartID": "529afdac9de9a3116a509ff64fa1322fc0cd5e0b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -7356,9 +6538,7 @@ }, { "chartID": "f9ed40464567a3884aee528669c3a08faab1e6da", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9", @@ -7374,9 +6554,7 @@ }, { "chartID": "95baec79feae41b20477a0dc091740f2ad329040", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "11+", @@ -7392,9 +6570,7 @@ }, { "chartID": "b8fb461ac84dbde5dd59f5d502b9208dcb9a9ded", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -7410,9 +6586,7 @@ }, { "chartID": "3a0cb0a8a67e5b364a4d64c75262dab51a854931", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -7428,9 +6602,7 @@ }, { "chartID": "6b9d2e8fb889d0c72d40893c1b0f91cfe2fc45f8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9", @@ -7446,9 +6618,7 @@ }, { "chartID": "326e3283ddce9975acc5bc144a7a5584520835c8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -7464,9 +6634,7 @@ }, { "chartID": "5ff2a982a9c74bcaf6cfd5ad53e5e75ada165a82", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "6", @@ -7482,9 +6650,7 @@ }, { "chartID": "5b06776455c16c3ce6b8da9927f14b4b11ff080a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -7500,9 +6666,7 @@ }, { "chartID": "3a6710ed803d9b286723c9d507aadb0047587e4b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -7515,9 +6679,7 @@ }, { "chartID": "6ba358e42b5260d81eb3711fcd0346bf6b76547f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -7530,9 +6692,7 @@ }, { "chartID": "b46fecfc91b93fd2ddb7ad94bbc5cf05d5606f3c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -7545,9 +6705,7 @@ }, { "chartID": "2cbfe3bef4c0bbf7c795965f21c617d9e8177984", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -7560,9 +6718,7 @@ }, { "chartID": "f5874bc970e55632266555ed528131e82f3f4e63", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9", @@ -7578,9 +6734,7 @@ }, { "chartID": "594da3c1f9c410b37203814dfa93f0fa3ed3f494", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -7596,9 +6750,7 @@ }, { "chartID": "4b1dace9b80f395b766eba0eca9597a378380499", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -7614,9 +6766,7 @@ }, { "chartID": "ed97ed92ac2b5c5fcb555656a0b71ace6104c6c2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -7632,9 +6782,7 @@ }, { "chartID": "84a662af7735f4dfdc87513283b7387228c29fe3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -7650,9 +6798,7 @@ }, { "chartID": "18e11ab39490d96937f96cc1dbfed5106f5378dd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "11", @@ -7668,9 +6814,7 @@ }, { "chartID": "b21eb8cbf4a5344d116a9c4db96d30c207f5e85b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -7686,9 +6830,7 @@ }, { "chartID": "3e3fa4b53f405f20387cd4810e2627aec08cc7e4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -7704,9 +6846,7 @@ }, { "chartID": "dbf525efab45d1c9147363da9836749f8a9402e5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -7722,9 +6862,7 @@ }, { "chartID": "8c952acdcb17f15c9998c4563f52f5ae2355b28e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -7740,9 +6878,7 @@ }, { "chartID": "469faeae0abd3bb7950cb7af2da3621ee54587f0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -7758,9 +6894,7 @@ }, { "chartID": "cf5129de1781a494c5c18b10093c6c696337a6c2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -7776,9 +6910,7 @@ }, { "chartID": "f3a057afed961885da1a611f4051d33e60ad9f6a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -7794,9 +6926,7 @@ }, { "chartID": "e4f1faeb3308e104b31c1b00b571bfa546f41cb2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -7812,9 +6942,7 @@ }, { "chartID": "4e366302b62f29fc4212f3d6c65ef29d825de83f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -7830,9 +6958,7 @@ }, { "chartID": "44418f450d1476b1187bc3a6e0fe9db2703f0b49", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -7848,9 +6974,7 @@ }, { "chartID": "582ab8b52b111037df15dbed8220671ced26f88d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -7866,9 +6990,7 @@ }, { "chartID": "d3f9694a2eb163354e955084335ff0a8d2d09f67", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -7884,9 +7006,7 @@ }, { "chartID": "0500bc76c104a96d21a03e378d053570c6604c18", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -7902,9 +7022,7 @@ }, { "chartID": "370b620197c21298c4eb012b7e30b05589002470", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -7920,9 +7038,7 @@ }, { "chartID": "1baa80fab919a0d6bb7504597391562e0119a46c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -7938,9 +7054,7 @@ }, { "chartID": "cc18ad57f9a563edd926976f7f7a38da1848f7f9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -7956,9 +7070,7 @@ }, { "chartID": "362fc82b691fb8b0683cd48788c21df148eb739e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -7974,9 +7086,7 @@ }, { "chartID": "64e601123046e1d37d35aeb9e36c94f4b6f9ebdf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -7992,9 +7102,7 @@ }, { "chartID": "20c5f6de02838408e05074d5e9b01cf64e951df4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -8009,9 +7117,7 @@ }, { "chartID": "c70c1dc59e61b7bb9100e43a64714da725bb7ba7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -8026,9 +7132,7 @@ }, { "chartID": "59e60ea1a6ee0f2d02a41d21835fc6f90788c3af", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -8043,9 +7147,7 @@ }, { "chartID": "7fc87ffb9cc56903b459ace006c7c1e08e58077f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -8060,9 +7162,7 @@ }, { "chartID": "6a64ab52d6ad30f715a1ed8fc4e52a81239373d9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -8078,9 +7178,7 @@ }, { "chartID": "b8c2046b1b499c5aa4358c5f032db7974c355bca", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -8096,9 +7194,7 @@ }, { "chartID": "19cde695e92ddcae0772927c8a2889e57f32f3d5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -8114,9 +7210,7 @@ }, { "chartID": "07389874aa0042fc3d929edf0c49d4d29322d7d4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -8132,9 +7226,7 @@ }, { "chartID": "3eb1360df9815a255e871a1cdfb7d5980bc4d633", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -8150,9 +7242,7 @@ }, { "chartID": "80604ca2973aed4f0ec82c24c2e5cd3e75e96616", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -8168,9 +7258,7 @@ }, { "chartID": "6574a151232253ff73c4a52f91d07878032834dd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -8186,9 +7274,7 @@ }, { "chartID": "e190d64aacbccd75532a529e0b712cee0bf78475", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -8204,9 +7290,7 @@ }, { "chartID": "e54245b16aa1dc4d95d43731309101461c1d6ea6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -8222,9 +7306,7 @@ }, { "chartID": "ff9b8828359781dc9ca0288db81a4d3dd5178b0f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -8240,9 +7322,7 @@ }, { "chartID": "29cfc9f1bd38f9dcfba28dd58e2eadc31148a56c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -8258,9 +7338,7 @@ }, { "chartID": "166570f3eae4e11ec04789fce0941e8ad39b136b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -8276,9 +7354,7 @@ }, { "chartID": "c68d7653ccf3e09b7b83ac6bb7c092bd5cf7ec6f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -8294,9 +7370,7 @@ }, { "chartID": "8e9b9836d3078741a22450471bb7eb77ffebaa37", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -8312,9 +7386,7 @@ }, { "chartID": "7201292342979a5cc424f9f7d50dcb3ac7f4cb13", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -8330,9 +7402,7 @@ }, { "chartID": "43ae72ce03a94265403b2c0d702ddd58c24dbf81", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -8348,9 +7418,7 @@ }, { "chartID": "c976bec484f7dc8c5f465fd2d1139cf761ec6789", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -8366,9 +7434,7 @@ }, { "chartID": "4d85ea806e247c366518ad3748cd74651467e1cc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -8384,9 +7450,7 @@ }, { "chartID": "d89277166cb88ecfdd75b9e797a9957c18b0416e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -8402,9 +7466,7 @@ }, { "chartID": "5e364650b5c07176348bb282384b93a245b50f86", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -8420,9 +7482,7 @@ }, { "chartID": "eb9e02a3ea45d6be2e6f780a77a66b8e2b6a6656", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -8438,9 +7498,7 @@ }, { "chartID": "08e23d9e3ac26857c11ac6f6e08174511d7966a1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -8456,9 +7514,7 @@ }, { "chartID": "c1d3f905e42d19a754743e1901277be9096d2a4f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -8474,9 +7530,7 @@ }, { "chartID": "874589822c75d6d666e52049d8537f2f42a2ff3a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -8492,9 +7546,7 @@ }, { "chartID": "f6b11521efb1d040a2d5912dab2648649f4dcdc6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -8510,9 +7562,7 @@ }, { "chartID": "bcf2147d685996d1db945afbcaf840ff2f2c8b3e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -8528,9 +7578,7 @@ }, { "chartID": "88d9551ec893a74d2375b7967bf78e7c74c85b4a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -8546,9 +7594,7 @@ }, { "chartID": "3304b32707b574cfc1421d054173f1f780103b75", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -8564,9 +7610,7 @@ }, { "chartID": "da02c766a750f2230c2b283df3f02fc47c749c38", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -8582,9 +7626,7 @@ }, { "chartID": "a2d722d836766603d7a0f66620d008931796f414", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -8600,9 +7642,7 @@ }, { "chartID": "8212ce1b84da461059397631f1721443ac0786f6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "14", @@ -8618,9 +7658,7 @@ }, { "chartID": "e5a78217c792e0d9f90b5a17c2ca080f7d463f86", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -8636,9 +7674,7 @@ }, { "chartID": "d5d7afaa2c88fddad4f5edb40e1a6b61d6ffafa2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -8654,9 +7690,7 @@ }, { "chartID": "69f0bf5849255d661773ae855f97bbf6a1cc7f13", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -8672,9 +7706,7 @@ }, { "chartID": "fc777aeb13dffe275557b17fde09af5f461d6cdc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -8690,9 +7722,7 @@ }, { "chartID": "a246c94f8669961eab748dd5dd97ed10362688c6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "6", @@ -8708,9 +7738,7 @@ }, { "chartID": "a76f649ef382511a6a6d7408d290e178f7e32f13", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -8726,9 +7754,7 @@ }, { "chartID": "4168b59a116c9b5de45f4ccec51d9c24a3ae21db", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -8744,9 +7770,7 @@ }, { "chartID": "6eba72351f46baed3dbce1c79da0c84ba3c9d690", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -8762,9 +7786,7 @@ }, { "chartID": "b9186c3aaa783e6f07791f582285ece8a3bcec70", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "13", @@ -8780,9 +7802,7 @@ }, { "chartID": "55d574c4bfca5c0b522321927cc0d4904db33d3d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -8798,9 +7818,7 @@ }, { "chartID": "b5610bd9ecb0a98ddb4abe584907f1e792f6e04c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -8816,9 +7834,7 @@ }, { "chartID": "fa8f19be635549107151c2baed72db932f689a8d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9", @@ -8834,9 +7850,7 @@ }, { "chartID": "0defc88f6112652608e9f807addac506f80feee6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -8852,9 +7866,7 @@ }, { "chartID": "66b6247298f131329209f891e0f67a96a9892219", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -8870,9 +7882,7 @@ }, { "chartID": "0a28c974ad07ed26b9334fe50e6a91e4c1f4e5cb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -8888,9 +7898,7 @@ }, { "chartID": "308b1c74802155446c601a2e8f85b22e364d288c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -8906,9 +7914,7 @@ }, { "chartID": "17f39c7ed1859a6c64ae33e946eb3463aa8b33ab", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -8924,9 +7930,7 @@ }, { "chartID": "bfa023c88638f7cb2e9aec9fcbd780226eb3fbc2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -8942,9 +7946,7 @@ }, { "chartID": "0dfaa860d3afa473cbe87239f6edcea72182175e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -8960,9 +7962,7 @@ }, { "chartID": "74f049fab33ea70f1d3bb4e2abc5b49ca32639a8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -8978,9 +7978,7 @@ }, { "chartID": "d9eeb3d5ce50fd1d27fdbab16148e9447e603c4e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -8996,9 +7994,7 @@ }, { "chartID": "e75118621caed000d40d9c390157fc8e1ab465d4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -9014,9 +8010,7 @@ }, { "chartID": "a094551fe8e4ca1d4ad63e00e8884e230d21faa6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -9032,9 +8026,7 @@ }, { "chartID": "46c8e0233549adab81b458b89798058b623fcb73", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -9050,9 +8042,7 @@ }, { "chartID": "9d47b21347ada5836c9c14f9370c8aed4842cd56", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -9068,9 +8058,7 @@ }, { "chartID": "78e1a38dd7625985d89d8937486ddaebd00e9745", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -9086,9 +8074,7 @@ }, { "chartID": "c7bb56d3aaf9a9ac41efdb237f895bade813678c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -9104,9 +8090,7 @@ }, { "chartID": "11b6912bdab8ef65cd8a00a74691ea562dc2d47e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -9120,9 +8104,7 @@ }, { "chartID": "3468525e8724f30642dedf17be639db28c816178", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -9136,9 +8118,7 @@ }, { "chartID": "2bac41b1cad950a38491ebe55b6c041cc82b1a49", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11+", @@ -9152,9 +8132,7 @@ }, { "chartID": "91c14bf2a832417526096f34f2cf2f66d3d6ab8a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -9168,9 +8146,7 @@ }, { "chartID": "9f2ff7d890cd48879b4be459f198f081c5e58b90", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -9186,9 +8162,7 @@ }, { "chartID": "f5c04e494c3e4dd8a877b79ce27274fa8ee636b8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -9204,9 +8178,7 @@ }, { "chartID": "c1d0cce78c762aaef332808adcdc1e492678b15e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "14", @@ -9222,9 +8194,7 @@ }, { "chartID": "e0f8601460cccc5c7d61e1b9dc8e4b2cfe149f93", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -9240,9 +8210,7 @@ }, { "chartID": "8d282127a224ced7e47488b9030d8ade92bbf02a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -9258,9 +8226,7 @@ }, { "chartID": "f98164771bd010b6fbdecb175fee86d416426bf8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -9276,9 +8242,7 @@ }, { "chartID": "c9ed9155cec736064ef5c2f5fe7c57adeae4fb22", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -9294,9 +8258,7 @@ }, { "chartID": "1f6e32aff93cdc6b1cc70f1115d2b4b144e3100f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -9312,9 +8274,7 @@ }, { "chartID": "52692b22cb5d1e61384d0dde77f2bb36e05327b9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -9330,9 +8290,7 @@ }, { "chartID": "72b859a255e786dead864f434771f099736287bf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -9348,9 +8306,7 @@ }, { "chartID": "2495f47d8b874bdaa9f8617ea65d70606ee46ed4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -9366,9 +8322,7 @@ }, { "chartID": "df1d15eb4f72713308c7e95bba359b9fe607ddb5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "6", @@ -9384,9 +8338,7 @@ }, { "chartID": "079498f6e6ff1ac90f5c396bb85f721deafe3894", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -9402,9 +8354,7 @@ }, { "chartID": "db5f2f7f3592372c6d32a5ff3ad1d4cffa8cc47f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -9420,9 +8370,7 @@ }, { "chartID": "d186945b9918168a6f700ef7e263cfa729c771f2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -9438,9 +8386,7 @@ }, { "chartID": "d2fd5969890678fa9a7cf94e0f43ab7a8beadf99", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "6", @@ -9456,9 +8402,7 @@ }, { "chartID": "e5144a621d2d0e6bdf0e625c7ab7d00b954412d9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "2", @@ -9474,9 +8418,7 @@ }, { "chartID": "ddab5f7f6438dfede5e57fe8df2ca991e3df545d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -9492,9 +8434,7 @@ }, { "chartID": "2902ff6d19226518c26e6f13dcd4ea6e65271469", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -9510,9 +8450,7 @@ }, { "chartID": "e5d757ca713404d6653548dec6f692b7142e7eb0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -9528,9 +8466,7 @@ }, { "chartID": "8b31a1898457fa23e91180ce016e46f56d2441d8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -9546,9 +8482,7 @@ }, { "chartID": "3e1b070f28077aff2a74949278d17014dd2b2844", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -9564,9 +8498,7 @@ }, { "chartID": "b551dc9f7857b44c343c1a22152d2d62cd387607", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -9582,9 +8514,7 @@ }, { "chartID": "d5e40e172294224ee234a0d863c485ede9e6db0b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -9600,9 +8530,7 @@ }, { "chartID": "925508c35e4e1df514378bfc6711abb13db9db79", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "2", @@ -9618,9 +8546,7 @@ }, { "chartID": "0e415eb1dc03a6d57125f3d7bdd6fefe7b0a7703", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12", @@ -9636,9 +8562,7 @@ }, { "chartID": "3fd9503087a8696b16ad402badb7179022ba664f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -9654,9 +8578,7 @@ }, { "chartID": "b5f20334ba3991d5df3ebe9fc42485aa891c67b7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "6", @@ -9672,9 +8594,7 @@ }, { "chartID": "7c679cab7eb923afcd7ab685a5fb20f2cd3cd64f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -9690,9 +8610,7 @@ }, { "chartID": "912bb29bf713761009eecde70aa1648ae9a96bc6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9", @@ -9708,9 +8626,7 @@ }, { "chartID": "a1615f4aa1318e8123196257cc1b41310ea8a26d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -9726,9 +8642,7 @@ }, { "chartID": "c6d1821a5066e60be02485efe748ebd4005f1a31", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -9744,9 +8658,7 @@ }, { "chartID": "23f04b122e2fd400b221de25b89b53762c44fd7d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -9762,9 +8674,7 @@ }, { "chartID": "378257574631e5234fc5f9dc4898c7993ae5a9ce", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9", @@ -9780,9 +8690,7 @@ }, { "chartID": "6aa65c73c02e3f6b5511deb9ac6f1e1bce5e1dfe", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -9798,9 +8706,7 @@ }, { "chartID": "d94bfc1bc9f0ebede6b0bf7b870e9f10807a1be3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -9816,9 +8722,7 @@ }, { "chartID": "4ca1a003289c24a9dc16783f2650b6424a593cbd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -9834,9 +8738,7 @@ }, { "chartID": "3b5854b66c25f04f82752655df12d11177738fd8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -9852,9 +8754,7 @@ }, { "chartID": "9a8019ce776f22fc8d1ed3f000aa3dd571ac1510", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -9870,9 +8770,7 @@ }, { "chartID": "c1e3efeae37784b65c371112389dc1d3280677e2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -9888,9 +8786,7 @@ }, { "chartID": "184970ca7f95cc9e6a391ddfc04706ab9cb7f332", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -9906,9 +8802,7 @@ }, { "chartID": "3127e88208b561618774acc700f3f9c66b652a36", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -9924,9 +8818,7 @@ }, { "chartID": "29b1fef7f05ab31fcc36e26151674ed464ff4135", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -9942,9 +8834,7 @@ }, { "chartID": "a159a3fb8a77c466f0a4d9e3755e0ffe0a9c07ae", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -9960,9 +8850,7 @@ }, { "chartID": "43790a2a88f268366e25b7fcb89d90a1290cfe0d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -9978,9 +8866,7 @@ }, { "chartID": "48034f8b91e1ef8dd273f3652af4eda072be9af3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -9996,9 +8882,7 @@ }, { "chartID": "8d177888f620c1186b82cc2a63ba8ebfa490a372", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -10014,9 +8898,7 @@ }, { "chartID": "be1a37b927aa92fd889a1e3b26cd14395242389e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -10032,9 +8914,7 @@ }, { "chartID": "6ec4f53d152462d99c441668065a0c84dacd6154", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -10050,9 +8930,7 @@ }, { "chartID": "8fec939587b484672bd4b1a27f27fa0c221cdfc3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -10068,9 +8946,7 @@ }, { "chartID": "769747561530c2d53f802233120631b0bd06eb86", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -10086,9 +8962,7 @@ }, { "chartID": "78ff6ba0de933ada334ac7dba9ea16c6acdad6ce", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "14", @@ -10104,9 +8978,7 @@ }, { "chartID": "c5f9556c53b1950e4c563f74a8aad14806c7f347", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -10122,9 +8994,7 @@ }, { "chartID": "fb15e7b2640aefa3fccbec7ff3458824a1ad5088", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "2", @@ -10140,9 +9010,7 @@ }, { "chartID": "5bbae2c367ac11f3b4bb84719f47fc2329e2895d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -10158,9 +9026,7 @@ }, { "chartID": "74475217d35bbd046e4addd51b0be8d0399791e3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -10176,9 +9042,7 @@ }, { "chartID": "c8b8867846700d2132b3a5b341d5bfab724883f0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -10194,9 +9058,7 @@ }, { "chartID": "a4779a684805efe7f6068ecfc74379a9c2cdaa3b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -10212,9 +9074,7 @@ }, { "chartID": "59733cd9b4b2862efd9958c8a00fdcaea92f69ef", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12", @@ -10230,9 +9090,7 @@ }, { "chartID": "68a91297f3d3fabcba80f8380b21e3bca151d7c9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -10248,9 +9106,7 @@ }, { "chartID": "2a4d70e2d5d72cf47b2660d25fa061b36ef156cc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -10266,9 +9122,7 @@ }, { "chartID": "9509b88258b67edf66623378ba6cef2abd116793", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -10284,9 +9138,7 @@ }, { "chartID": "f08fcd61bc9da1e8dd98368f6b71149b83caac99", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -10302,9 +9154,7 @@ }, { "chartID": "fe28b2d8f00ab1b53e3ce2f290b11edfb5896b8f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -10320,9 +9170,7 @@ }, { "chartID": "0f5ef5414d2bd71edc7f175025e254ffaaacbe26", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -10338,9 +9186,7 @@ }, { "chartID": "516821721ab512d3883c4f6922b55d84ae386985", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -10356,9 +9202,7 @@ }, { "chartID": "19cabf888a0d5b53cac94413e376ef5c6db7aef3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -10374,9 +9218,7 @@ }, { "chartID": "da03fb80b86a27dc4922150ff9a97d8b3a6b4de9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -10392,9 +9234,7 @@ }, { "chartID": "f67805c7b190b5fea1549b5145469b23834577f6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -10410,9 +9250,7 @@ }, { "chartID": "8c0096466eed09ebaaf61c5a8dab11c612364c53", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -10428,9 +9266,7 @@ }, { "chartID": "43bc107a52103adb3866f472c4ba6e39cfac89d0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12", @@ -10446,9 +9282,7 @@ }, { "chartID": "8800a795637f2f0d42289a3c0a8abc3ebf9d9df9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -10464,9 +9298,7 @@ }, { "chartID": "d22add3f18b16e73b762a8b41b4013624d7ac65b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "13", @@ -10482,9 +9314,7 @@ }, { "chartID": "839a4077cb1e78a2d9489f9d1d0f06e2b741f28c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -10500,9 +9330,7 @@ }, { "chartID": "d9841660190bc2ba0c563fd9fe56754dc587c5ac", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -10518,9 +9346,7 @@ }, { "chartID": "4d829fe6d20051ce8458f90040d672da764d97a8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "13", @@ -10536,9 +9362,7 @@ }, { "chartID": "e47ab0c881e6a90ef9ba25d276136a452f4c5989", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -10554,9 +9378,7 @@ }, { "chartID": "dfc49151f4dd71be5729dd0a43d866bac66af81a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "14+", @@ -10572,9 +9394,7 @@ }, { "chartID": "727b62b0945275d1657cd1afa8c38e4ab5594355", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -10590,9 +9410,7 @@ }, { "chartID": "b5985f9496f023ada8a96e3a3ee55d57aabff2f2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -10608,9 +9426,7 @@ }, { "chartID": "83fb315e3e640d1e8f0b95cec2d56bafca21d813", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -10626,9 +9442,7 @@ }, { "chartID": "b80f7f95a751bcf2204d4fe4209ccf2be6ed33d3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -10644,9 +9458,7 @@ }, { "chartID": "9121d487da96a2abb908a8876348dc791e4d7dfc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -10662,9 +9474,7 @@ }, { "chartID": "967cbf45fcb8971e5bf300ef48e30aa912ddacc7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -10680,9 +9490,7 @@ }, { "chartID": "5e92a2a3abd4ad7d98358292647f5a979e57fcdd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -10698,9 +9506,7 @@ }, { "chartID": "b28da725711525760284c050359962c121702fa4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -10716,9 +9522,7 @@ }, { "chartID": "4d00061c118c4d62d2a0623a5dd3abcff2e4d9da", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -10734,9 +9538,7 @@ }, { "chartID": "15fcf3dca39cb94beb700c7e5458164048bb6404", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -10752,9 +9554,7 @@ }, { "chartID": "6a1388be3bbd48c160e62dc89ad4df31e1a70be8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -10770,9 +9570,7 @@ }, { "chartID": "acbdf2f57dc42714b6ff45baa5073b48598d9224", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -10788,9 +9586,7 @@ }, { "chartID": "1996fd5c47be35e16ad2b1e1975c8f28f9d9dad3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8+", @@ -10806,9 +9602,7 @@ }, { "chartID": "dc77bdfc9c07edfd39b42c8271f66b5311e45470", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -10824,9 +9618,7 @@ }, { "chartID": "4b9267c514766034679ace61348da403abc6e089", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -10842,9 +9634,7 @@ }, { "chartID": "a14ddb3a561a19ec6e0a5c362645be3b051d8403", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -10860,9 +9650,7 @@ }, { "chartID": "68e56aad7d3efaa4adf770063a3bd1a1fee03971", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8+", @@ -10878,9 +9666,7 @@ }, { "chartID": "374c4e28f7a19fcaeae1d05667d73a623f82819d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -10896,9 +9682,7 @@ }, { "chartID": "4e81ed6d9617000799ccff822948024b0a5440fa", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -10914,9 +9698,7 @@ }, { "chartID": "2addd6e67cd4fa0bdb2efd347f159d75168e803f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -10932,9 +9714,7 @@ }, { "chartID": "91ca065b0b2fcc5a78cf3edd2534a60a463d42de", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -10950,9 +9730,7 @@ }, { "chartID": "bd7487d55f8c0f5e52358eb5295a70b4f4eef50e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -10968,9 +9746,7 @@ }, { "chartID": "928cabae15065172230537413f7532604061d797", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12", @@ -10986,9 +9762,7 @@ }, { "chartID": "e4c975db3ecf51d0764e67ffc58a440c0637c14f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -11004,9 +9778,7 @@ }, { "chartID": "e31b9dce9a41c7d8a73681715e0c179449a5f07b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -11022,9 +9794,7 @@ }, { "chartID": "e1ddfcfa626cc66136aded6b589bbbd7323ea3ac", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -11040,9 +9810,7 @@ }, { "chartID": "95cbf875961eaa37162dfb67a6bd66daab411b57", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -11058,9 +9826,7 @@ }, { "chartID": "d7757a817816527082f2aceebfe40989c83f73e3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -11076,9 +9842,7 @@ }, { "chartID": "c2bd5ff223aead80c055027f835863fad312b78d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -11094,9 +9858,7 @@ }, { "chartID": "a9cc5d61b5de18c6a37d3a4b4925ee0b48bdef59", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -11112,9 +9874,7 @@ }, { "chartID": "b12ef3fbba241512857f6344f2004d4c71c242de", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -11129,9 +9889,7 @@ }, { "chartID": "ec9c08e457f2bcd4537f3f6143f84674ac34ad7b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -11146,9 +9904,7 @@ }, { "chartID": "ce5a8ac9660d68c5b59ea3789c87b95afd21dd8d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -11163,9 +9919,7 @@ }, { "chartID": "4b4931303b5159d1f7803a1968ab6e73613648c0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -11180,9 +9934,7 @@ }, { "chartID": "75f5e4cc8d6bb5f6e0503a4240bd9e41b07d1465", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12", @@ -11198,9 +9950,7 @@ }, { "chartID": "8f2b8cbd7383f87d31879583f6bf9d42450bde68", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -11216,9 +9966,7 @@ }, { "chartID": "9bad1343a6d54748c4d0c278f5eab05bbcee2aa8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -11234,9 +9982,7 @@ }, { "chartID": "b28720a3b56fd73be2974a1d244ed93b1468fe92", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -11252,9 +9998,7 @@ }, { "chartID": "c1e520a3e5c8c3c2940c6027f3353aa9f121d896", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -11270,9 +10014,7 @@ }, { "chartID": "8bf95c9cf0be6190be29db943ba9d018c8593ff7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -11288,9 +10030,7 @@ }, { "chartID": "f50c666c4651e621db277b7a03d43c3252dae6d5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "6", @@ -11306,9 +10046,7 @@ }, { "chartID": "edb9f6ee16d524ca7bd79788769c0622b9298870", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -11324,9 +10062,7 @@ }, { "chartID": "73d8167bd656e1fc270ba875af06fd045de9e92e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -11342,9 +10078,7 @@ }, { "chartID": "c721b1ca3ffe4d4448838f40b705476ab89491ac", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -11360,9 +10094,7 @@ }, { "chartID": "4b3f1f53ede67a3d803e163bc8e3143e81526fa9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -11378,9 +10110,7 @@ }, { "chartID": "1f968499e6eb16f9c3b689bcf5f54ba00fd7cfee", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -11396,9 +10126,7 @@ }, { "chartID": "624ffd36763e67b3c9c2dc0e6d9b5d1fff21bb39", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -11414,9 +10142,7 @@ }, { "chartID": "dcbd85295fa028bf0d7301ea001e0eb101f3d600", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -11432,9 +10158,7 @@ }, { "chartID": "69294fb72353d995c73ed1922cb0c4a7c17adb11", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -11450,9 +10174,7 @@ }, { "chartID": "c4b4ce835160c39ef2ff89ef95e7135043c5eaa8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -11468,9 +10190,7 @@ }, { "chartID": "06510e54cba05a70a4ea2f343ac32e77d6908146", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -11486,9 +10206,7 @@ }, { "chartID": "a8b3e74620c4a3614725aaa498d2f0413ccd8d98", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -11504,9 +10222,7 @@ }, { "chartID": "20af529c0f57d48599e406fb3cdb321500d06c35", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "14", @@ -11522,9 +10238,7 @@ }, { "chartID": "ef07eec230de201c063f7cfdb2ffa423472694b5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8+", @@ -11540,9 +10254,7 @@ }, { "chartID": "211670ddc11cb7785ccd8f1f77faa3af3af97e8a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -11558,9 +10270,7 @@ }, { "chartID": "ce0a7059607c13e09c88313152f0f512d2f5a012", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -11576,9 +10286,7 @@ }, { "chartID": "b9e4dfcb8de57baf988be242784b84f665e84d33", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -11594,9 +10302,7 @@ }, { "chartID": "7df31ed3fd6f2cf6fa280d64546f425cbe5ff233", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "14", @@ -11612,9 +10318,7 @@ }, { "chartID": "5085b0c25eb9a9430d484705c870cd16662181cb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "6", @@ -11630,9 +10334,7 @@ }, { "chartID": "8e95b79d6ef4bd731f2f42c34e1a235875934ab0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -11648,9 +10350,7 @@ }, { "chartID": "2592ebfe66835bfcf2a01e36f18f68ea4cd9e983", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -11666,9 +10366,7 @@ }, { "chartID": "b4d8e03cfc94a0ba12b099f47872da5287b9c2ee", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -11684,9 +10382,7 @@ }, { "chartID": "1eefe1a1e7457d3ed076a92fee32e1c71755d4a3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -11702,9 +10398,7 @@ }, { "chartID": "59564e1ee140129e7696ea891b4f9f8d9e42ee27", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -11720,9 +10414,7 @@ }, { "chartID": "3eb865b72ce97af4178fb111c86981a50b042c1a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -11735,9 +10427,7 @@ }, { "chartID": "dcf4c6375a999592e56392037ab56d56846154cd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -11750,9 +10440,7 @@ }, { "chartID": "192b162519c6585f842387d4148782110237f2d9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -11765,9 +10453,7 @@ }, { "chartID": "40ca902d3f552fb4eefdb138642fd1d8735e3df3", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -11780,9 +10466,7 @@ }, { "chartID": "077429fca655ce4d7901c79630ca72f261b80599", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -11798,9 +10482,7 @@ }, { "chartID": "7bdfbdf472c6e447f2459848bdec86829391a13b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -11816,9 +10498,7 @@ }, { "chartID": "4b22886c4402ab1527112cdb39c46d2faae76924", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "6", @@ -11834,9 +10514,7 @@ }, { "chartID": "925d06120ab111d61c2e59246d299a71acb0dc9b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -11852,9 +10530,7 @@ }, { "chartID": "286e9b998f6d30a6d504440e66ec5e9e708297e4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -11870,9 +10546,7 @@ }, { "chartID": "1ee6a8640da0880d9d040c2a71cc1a99cc3cbfbf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -11888,9 +10562,7 @@ }, { "chartID": "18de009108ca5e38226f4b6940d116aeb8406291", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -11906,9 +10578,7 @@ }, { "chartID": "b484efeea32119b145e73096641380fe716511fd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -11924,9 +10594,7 @@ }, { "chartID": "a33359bfd91aa657c7438607db0e96b6ca8674dc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -11942,9 +10610,7 @@ }, { "chartID": "a9abfa89252c3ced103ac9822908cafe7b44fbdb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -11960,9 +10626,7 @@ }, { "chartID": "3ce84059b52b1c5fabba0d892c738d2bdf6d5e31", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -11978,9 +10642,7 @@ }, { "chartID": "408ab7681d9b1588cc1e71ff10e1d758956f3bb8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -11996,9 +10658,7 @@ }, { "chartID": "438e46e36fc79224fcf2b0478345243118144a52", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -12014,9 +10674,7 @@ }, { "chartID": "e009b599ff0f7ecfa31a4a221d6cce40dec41085", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -12032,9 +10690,7 @@ }, { "chartID": "9e7dfe66e0e0defb82572f0adb0dfb3fd7433619", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "13", @@ -12050,9 +10706,7 @@ }, { "chartID": "ea59338043029cde7a20be42f3d1ec675f3e6ab3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -12068,9 +10722,7 @@ }, { "chartID": "77a007cbf7e5ab4fbe011c6805566491d6d7a2cc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -12086,9 +10738,7 @@ }, { "chartID": "42d958a325e954f85c3ce0313589610068d13e28", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -12104,9 +10754,7 @@ }, { "chartID": "05abb02e94c04044e1fc9c6b4ef31795bd90d081", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -12122,9 +10770,7 @@ }, { "chartID": "051e39fbc8fa8ba66520c365116cb4e647f28123", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "13", @@ -12140,9 +10786,7 @@ }, { "chartID": "3f6d8504d6a0e6bc3dbf49887c9e1ec005e55b03", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -12158,9 +10802,7 @@ }, { "chartID": "7e387549a9f81667c8bd7e2520b830a52bc2c7af", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -12176,9 +10818,7 @@ }, { "chartID": "4de04298c2f8a6119c5e41d4c736d742a156da47", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -12192,9 +10832,7 @@ }, { "chartID": "a8fef7105d268b8e4d8344efb9d27103ea55618a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -12208,9 +10846,7 @@ }, { "chartID": "2dbeac54235e2c78ddec5f726802cbf70603481e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -12224,9 +10860,7 @@ }, { "chartID": "82df3856c287d7e6269d03e1bf1f512651a5341a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -12240,9 +10874,7 @@ }, { "chartID": "6800b62b8866a7a5e86a59fa1a32bdd94759049a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -12258,9 +10890,7 @@ }, { "chartID": "629999ee7d1dc2c2d3b434892e30e99b351ba8ac", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -12276,9 +10906,7 @@ }, { "chartID": "f96f66dc4af1fe749e6f21cf200cfdfc691dac21", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -12294,9 +10922,7 @@ }, { "chartID": "87e988dd46f109b3f0ea8cd80e812d3e277b486a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -12312,9 +10938,7 @@ }, { "chartID": "3fcb5ab85545a9c32c128e6e03e76a1e44c46da8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -12330,9 +10954,7 @@ }, { "chartID": "437751d58f8711f5ecaebb397e1be84e6f81ba2f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -12348,9 +10970,7 @@ }, { "chartID": "a9d7c15910a38d6e32bcd939578275bcf063e14a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "13+", @@ -12365,9 +10985,7 @@ }, { "chartID": "5a6943ccfafb1518a4548442b5549ef92c03a6e7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "6", @@ -12383,9 +11001,7 @@ }, { "chartID": "0dc2572bce0d366c7c0b36e2a3d6c815ed7c2e18", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -12401,9 +11017,7 @@ }, { "chartID": "30835b8d23a195a75d70ea7ce50924a28b787339", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -12419,9 +11033,7 @@ }, { "chartID": "5975574a4a9e212a92a06edf01dc46e0f800ab10", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -12437,9 +11049,7 @@ }, { "chartID": "df3c20da406324bb8ad42449667ebcea0a7134e1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -12455,9 +11065,7 @@ }, { "chartID": "a0a493e66a1196cb481c884d6d47b9beb4ec0476", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -12473,9 +11081,7 @@ }, { "chartID": "229ec5792ae4758f0c901abe7e6ec350d7947b24", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -12491,9 +11097,7 @@ }, { "chartID": "1435689f4855dfc28a6d8c36fe8cebdab20dd87d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -12509,9 +11113,7 @@ }, { "chartID": "1d0e148492f6cb96fb3563b61d7bfe82b5329327", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -12527,9 +11129,7 @@ }, { "chartID": "aee99775625ea6aa04a4a670583669f22eb384a9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -12545,9 +11145,7 @@ }, { "chartID": "518d54e574c044157963ea13cb3591b126f0f08e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -12563,9 +11161,7 @@ }, { "chartID": "60ecb76edb95e4eac4fa08b47a8c2b74643d5122", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -12581,9 +11177,7 @@ }, { "chartID": "fcd074b1fac31a429818593269cc92967b87c276", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "13+", @@ -12599,9 +11193,7 @@ }, { "chartID": "fb18bb79c04a29991db0587fa8b24c7f585c5e61", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -12617,9 +11209,7 @@ }, { "chartID": "7ef4de8646d3bb7fe9297cd5f29bb062ef9dbcbb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -12635,9 +11225,7 @@ }, { "chartID": "1abfcdd165094fc98ab21f10f65ada5628991ad2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -12653,9 +11241,7 @@ }, { "chartID": "865b6ff64c9c0367aed52b1db97e7a1cef28aec9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -12671,9 +11257,7 @@ }, { "chartID": "df634bed0ef032c4e86a166af4d4adc8e72c8f38", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "8", @@ -12689,9 +11273,7 @@ }, { "chartID": "75021caf490720de42f52c5ba7c0b53ec3c67f3c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "11", @@ -12707,9 +11289,7 @@ }, { "chartID": "ec518a7ba76a8fda61c15964f01e1189c6170f03", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "8", @@ -12725,9 +11305,7 @@ }, { "chartID": "2b97277f22b2727a01a881017b1f88be853c4642", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -12743,9 +11321,7 @@ }, { "chartID": "cfdfb5ba3434b2487579d4b530da89418b64fa2a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "12+", @@ -12761,9 +11337,7 @@ }, { "chartID": "99b8e53e0142579f8f031fdc378eacf5be782233", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -12779,9 +11353,7 @@ }, { "chartID": "0f9c043de8725c639f80e0824433d29c15dc2144", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -12797,9 +11369,7 @@ }, { "chartID": "367d061565686875f1bae6629e2d149bef304fbc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -12815,9 +11385,7 @@ }, { "chartID": "fcee2c0c526c9f3f25756467186690e318bdc43a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -12833,9 +11401,7 @@ }, { "chartID": "7db2081d221b6b183e2b3adf347909f83a33daba", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -12851,9 +11417,7 @@ }, { "chartID": "799f87950fa0b67fad05d1c70bf9153270ddabd3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -12869,9 +11433,7 @@ }, { "chartID": "afdd64684b4deb8cb9f94339dba1e3e8876e014f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -12887,9 +11449,7 @@ }, { "chartID": "bafa7a2ffecdb6d14cfcde99486f1a0b89b26dd6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -12905,9 +11465,7 @@ }, { "chartID": "0d434f1aacefcea9cc9360278cdc9601aa17fdc3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -12923,9 +11481,7 @@ }, { "chartID": "28e8356cca935b42580d0f217c0d0be26c4c187c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -12941,9 +11497,7 @@ }, { "chartID": "4a97e545cec07614ac8750d97b515531a0e7750a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12", @@ -12959,9 +11513,7 @@ }, { "chartID": "bb58b7d0ba969ccb91aabe13bbb4f7afcd1d2a2e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -12977,9 +11529,7 @@ }, { "chartID": "84c20c5e956c0f136c6216c9db140c18a85c9c29", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "13+", @@ -12995,9 +11545,7 @@ }, { "chartID": "cc25a75d846488b8c09380a2052c0f00af2fa90f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -13013,9 +11561,7 @@ }, { "chartID": "91c8c1426dbf36105e86a141ea703e29349629dc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -13031,9 +11577,7 @@ }, { "chartID": "132a0d342c8033bca5f81e649c1ff0fb099b89cf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12", @@ -13049,9 +11593,7 @@ }, { "chartID": "c2c79fbe98c135a40d626305fdec1e97077e98e5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -13067,9 +11609,7 @@ }, { "chartID": "aeccfc3de5f8f55b7d169a0d8589bdfa3b1f2b43", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "14", @@ -13085,9 +11625,7 @@ }, { "chartID": "ef9faccf6d02b4e1cf05ca2dd102e889b0d8fe4f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -13103,9 +11641,7 @@ }, { "chartID": "77ff32394a8740b98bdcad680b195025a90107fb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -13121,9 +11657,7 @@ }, { "chartID": "20c3fbc6081673891d7a2e5d044ca073a3dc9f29", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -13139,9 +11673,7 @@ }, { "chartID": "895816c6a190692bf87e3545b98cefb4219d0f7a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -13157,9 +11689,7 @@ }, { "chartID": "6d1a32621c290ab72a31cd47d0d5131394aaad97", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -13175,9 +11705,7 @@ }, { "chartID": "2dbaac90b3abf8241d7176137bcdfe45c6b0b8b0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -13193,9 +11721,7 @@ }, { "chartID": "540ecb18513e0f1ba66c5a0b992f3fd829a54266", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -13211,9 +11737,7 @@ }, { "chartID": "6f9e9d156b1a60bb0c308f8d92a20de74dd6e117", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -13229,9 +11753,7 @@ }, { "chartID": "1ba19b24aabf33d0ba4890651daaa23741247f0d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -13247,9 +11769,7 @@ }, { "chartID": "d50833444750975b195f352cbe5a1385000a0e0f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -13265,9 +11785,7 @@ }, { "chartID": "ef8e0a498096c528dd6f1fa92b650cc1dab549cc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -13283,9 +11801,7 @@ }, { "chartID": "72ecee234844fe96b9363598b2a160dfdab69be9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -13301,9 +11817,7 @@ }, { "chartID": "0ccbf241602a4bf8cb792fa4f467db5c877f6de7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -13319,9 +11833,7 @@ }, { "chartID": "d587cf47dac2b0cfdea0310311eda0c3d43d89ff", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -13337,9 +11849,7 @@ }, { "chartID": "81c7e2d49ff7c57b8d2d4c6eb79151371956fc1b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -13355,9 +11865,7 @@ }, { "chartID": "4e592de9ae8c9af255ab2cf76c78c249f1de17d7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -13373,9 +11881,7 @@ }, { "chartID": "7e8d1c6c05d87f1ebf315a421f085c03b72cf468", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "13", @@ -13391,9 +11897,7 @@ }, { "chartID": "007471068cdf6d80300a9d91460ee726bde58a93", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -13409,9 +11913,7 @@ }, { "chartID": "8d86dabbd8d8dab5b8cd3cc4a6c09a91c379908f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -13427,9 +11929,7 @@ }, { "chartID": "5ba9225d442ebd37da0d8a195e0ee615da9ba6b6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -13445,9 +11945,7 @@ }, { "chartID": "cd631b92c7084c971fb385ba2ce4b022b593851d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "11+", @@ -13463,9 +11961,7 @@ }, { "chartID": "a1fc6ab4d36aeba221e1af49b37d3ffeb482d2a9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "12", @@ -13481,9 +11977,7 @@ }, { "chartID": "d0cbe8784821db4c6bb8fe6ec9961bad526bc847", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -13499,9 +11993,7 @@ }, { "chartID": "fe57d4f453c2e97bfd67dee9650dcbead15de159", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -13517,9 +12009,7 @@ }, { "chartID": "0f0ee893de3a3e1d935252457bd82a5fd57db7b6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -13535,9 +12025,7 @@ }, { "chartID": "ed92a7ad6066d54e6a235723f41415809aa17621", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -13553,9 +12041,7 @@ }, { "chartID": "08f0666fea9e9aaa0d2122e7f103d33a18e824cf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -13571,9 +12057,7 @@ }, { "chartID": "455c5f57ce13f6b719c54d9b6516079da38ae636", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -13589,9 +12073,7 @@ }, { "chartID": "98b3b8ec65c0c0eb081ee094a807aba46fae2a0f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -13607,9 +12089,7 @@ }, { "chartID": "c3d1fe40f414f2edd989160b73a67fb81d41d736", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -13625,9 +12105,7 @@ }, { "chartID": "16d8dc3e3bfd7214f6a1ca9f364dcc9f40fefc27", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -13643,9 +12121,7 @@ }, { "chartID": "cef7bfb4dddfe1068ae9778a3e75498a040fff15", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -13661,9 +12137,7 @@ }, { "chartID": "9068786c2a5fa7a457712690b97818bdbdd7055e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12", @@ -13679,9 +12153,7 @@ }, { "chartID": "898a99f40c95e233c7bb8bbd6b9208cfc8b156ef", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -13697,9 +12169,7 @@ }, { "chartID": "2254fecfae38a6c0c21e226726289c0a418023af", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -13715,9 +12185,7 @@ }, { "chartID": "65b0485bc6f04511c0a20bec3e162f2e64345aaa", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -13733,9 +12201,7 @@ }, { "chartID": "974cc4abc308a6e79cf836b47ca2229ecdd50d64", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -13751,9 +12217,7 @@ }, { "chartID": "95b3afe46007fce24ceb1c95d2b594a1fcaf959a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -13769,9 +12233,7 @@ }, { "chartID": "2b77c82bc657ea447e3aaf6348ee097994323f01", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -13787,9 +12249,7 @@ }, { "chartID": "8d464317a924819c00ebaea49adc1e563c997af2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -13805,9 +12265,7 @@ }, { "chartID": "5176e3cbd98e26d77e79b80f36fc9122bf0b8dfc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -13823,9 +12281,7 @@ }, { "chartID": "f2df5e4200726b9f5c93825d7f17ab57b91e840a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -13841,9 +12297,7 @@ }, { "chartID": "d869f8af59fb889ac4a9a88003474214c04442d9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -13859,9 +12313,7 @@ }, { "chartID": "ed55da9fb3bfbb54b73515401a404f9fbcfc30c4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "2", @@ -13877,9 +12329,7 @@ }, { "chartID": "e6632d7255c92f5e291effb58130f828d729f089", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -13895,9 +12345,7 @@ }, { "chartID": "522697af789fe60c6c5289cc9bde7e6008913cc2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -13913,9 +12361,7 @@ }, { "chartID": "19e09f4ca9f7e8e2828d723e2a5e4a2f0ae14c72", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -13931,9 +12377,7 @@ }, { "chartID": "3fd80b0dd2d330279a3520f6197c90ff555d6323", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -13949,9 +12393,7 @@ }, { "chartID": "d5f232153423ac14ee1fd2dd66cc6adfa5f24869", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -13967,9 +12409,7 @@ }, { "chartID": "62d08b32325cc9bbb1fa5b7521f1d8eb58d907a3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -13985,9 +12425,7 @@ }, { "chartID": "958c954039c77a536af93ea4cb667853d1000b9b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "6", @@ -14003,9 +12441,7 @@ }, { "chartID": "a091f209096d4e91db18ccd39a4cf1dd70c63c6f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -14021,9 +12457,7 @@ }, { "chartID": "403204e89d9aa518bbded72ec76fe3ce6cd0867c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -14039,9 +12473,7 @@ }, { "chartID": "605728ddc1f73e4f2aebda05d8b15d24b43c3a0d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -14057,9 +12489,7 @@ }, { "chartID": "b2eac9ba376eef3c25e9572182de0de8c8c5a2f5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "6", @@ -14075,9 +12505,7 @@ }, { "chartID": "2654695e25789c9066a09b22e3d19008150017e7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -14093,9 +12521,7 @@ }, { "chartID": "3a726586f89410e0ac45a205f8957ff6093c76c1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -14111,9 +12537,7 @@ }, { "chartID": "0f53b929ea1877f6211a1296569e84dd34f2d34c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -14129,9 +12553,7 @@ }, { "chartID": "9e5ca81f845b4d6b4b9e2c25ebb25d0c9fa263e7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "12+", @@ -14147,9 +12569,7 @@ }, { "chartID": "241e9747e2869c652b4923345a860956866bae70", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -14165,9 +12585,7 @@ }, { "chartID": "c59d271047f4e441c810e3ffdb11c3462e32321f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -14183,9 +12601,7 @@ }, { "chartID": "31fb3c5ccd578823e1881904a8b5eb96724f9ff6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -14201,9 +12617,7 @@ }, { "chartID": "e77c66e1619354c2cf2efba5a837f775d44ac461", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -14219,9 +12633,7 @@ }, { "chartID": "e460ea2b7eb1ebcda1a94bd37c5f84f7cc9557cb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -14237,9 +12649,7 @@ }, { "chartID": "16b036e8418cc1d45ea3e45dfaa3bd476a6c1da9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -14255,9 +12665,7 @@ }, { "chartID": "784cf6a547d59c047382604e37c44a6cd3dfb113", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -14273,9 +12681,7 @@ }, { "chartID": "b3b6f1a8a7f3eb69e025ecaa7379c33ae154d20b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -14291,9 +12697,7 @@ }, { "chartID": "1de9dfb177ecaa1977c179e039fa271cb42dc573", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -14309,9 +12713,7 @@ }, { "chartID": "38c3bf6cfb9dc7eaec50a7137b989c2e7664d6ba", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -14327,9 +12729,7 @@ }, { "chartID": "9dce1b950f7c655714b9da5a58b82493f5ee511d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -14345,9 +12745,7 @@ }, { "chartID": "1cf690c73aa1759b966f979051c3aa5a7fa52438", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -14363,9 +12761,7 @@ }, { "chartID": "1bcf16f73a8c73db9f232c63a2cfa429234b762d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -14381,9 +12777,7 @@ }, { "chartID": "aff824969b0e46583a36e64da6f8c312ef51f3fb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -14399,9 +12793,7 @@ }, { "chartID": "b4b82b93a3b63c6ad1fcd3f5b46ed8ef65085678", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -14417,9 +12809,7 @@ }, { "chartID": "b94bfe09b79f4b468c8e62dd70aa56b4c505cdf6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -14435,9 +12825,7 @@ }, { "chartID": "4142e24f1aef48e84e87409b0b0df4697f4511e2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -14453,9 +12841,7 @@ }, { "chartID": "0943775f01df2e27396c7cc11ae32d4346d4d6b7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -14471,9 +12857,7 @@ }, { "chartID": "612f5207bcd98cea30133841232f6741dbbe40f7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -14489,9 +12873,7 @@ }, { "chartID": "14dbf7af71ce09b7d77a2ccc82a41645b5a66220", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -14507,9 +12889,7 @@ }, { "chartID": "b1fa734c89a81e5e6fa016bf66745c86ab0bc6ae", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "6", @@ -14525,9 +12905,7 @@ }, { "chartID": "e62d74005cf78ec2b75f9ef7a5f66d66c01935d0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -14543,9 +12921,7 @@ }, { "chartID": "d933353518c4887c0bf9d7ec774053d228810432", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9", @@ -14561,9 +12937,7 @@ }, { "chartID": "150ea5c17368edfd30c37661f91844a3c3e6d037", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "11+", @@ -14579,9 +12953,7 @@ }, { "chartID": "65198e845f8f20ab32501defa7619675c41db9b5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -14597,9 +12969,7 @@ }, { "chartID": "528b384d2fa8030de2555b82ce4ac435710186e0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -14615,9 +12985,7 @@ }, { "chartID": "1a219df1f6d43c654bbfaf68fe567c7275ff8f9f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -14633,9 +13001,7 @@ }, { "chartID": "12d3db75c09c30f0efd4116c41dbd7e047f3f1d0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "10+", @@ -14651,9 +13017,7 @@ }, { "chartID": "ada9cf9ebe1c6b8a91557e432e2c19439b3be6fc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "6", @@ -14669,9 +13033,7 @@ }, { "chartID": "560ec4d24dd38e515234666c804f3b654e1c8c6d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -14687,9 +13049,7 @@ }, { "chartID": "04606d1dacc278a06f15e8df8b7a07f906fc35b2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9", @@ -14705,9 +13065,7 @@ }, { "chartID": "491e7a9119409a75bf8eb9d0bae619036816fc4d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -14723,9 +13081,7 @@ }, { "chartID": "8f165bab8ad35a51f982829dd9dd89135cadd268", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -14741,9 +13097,7 @@ }, { "chartID": "7f8bc4ade974f51874fb41ded9d2e6e5828dffd2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -14759,9 +13113,7 @@ }, { "chartID": "9872acf7bbee6335c9f41ff093612a6bd1f8c386", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -14777,9 +13129,7 @@ }, { "chartID": "c0399ab4dd4e2e8145b2ecfd5975ad76c9de09c5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -14795,9 +13145,7 @@ }, { "chartID": "5cfbd5ef52fc65ad16a6a52392f00dc4919635bf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -14813,9 +13161,7 @@ }, { "chartID": "f3e939422665c7520ca72ac3cb52855ce1a443b5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -14831,9 +13177,7 @@ }, { "chartID": "2e62521e7ad80ef691d6b536a4f037097928c6f5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -14849,9 +13193,7 @@ }, { "chartID": "85ee1b5011e6473e2c288f50bdf657fce4357759", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -14867,9 +13209,7 @@ }, { "chartID": "20296dc0656c8e2f2807ba71dfa9d0905b53421e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "13+", @@ -14885,9 +13225,7 @@ }, { "chartID": "2e53f83d1ca03faa7d374a77e92bf4403678a0a6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -14903,9 +13241,7 @@ }, { "chartID": "4f274a591a872a80ceafc9ebea5263d290bc9fb3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -14921,9 +13257,7 @@ }, { "chartID": "e385399301fcb80972ef3649b2bc1aa30da6ba04", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -14939,9 +13273,7 @@ }, { "chartID": "38b19c01275ac225a5c159c817f38596b34e387a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -14957,9 +13289,7 @@ }, { "chartID": "42c20fda88e07c686c49291445bfc0ceeb13629c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "12+", @@ -14975,9 +13305,7 @@ }, { "chartID": "841b0e18527578c029d9f571fa478c599104cea1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "6", @@ -14993,9 +13321,7 @@ }, { "chartID": "4589271f18f6c4cc591202e22c958699fde2ac35", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -15011,9 +13337,7 @@ }, { "chartID": "598f8ad040dac01448ac4b557fad9f5c9f9b3f9b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -15029,9 +13353,7 @@ }, { "chartID": "25cb19d9ba93721354a6efca57bb6265f05f39b9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "11+", @@ -15047,9 +13369,7 @@ }, { "chartID": "e770549e974a25bb48ec9d48b8c1e02d7c9240f6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -15065,9 +13385,7 @@ }, { "chartID": "15422a85db713bae38117ef4270ea842957de24b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -15083,9 +13401,7 @@ }, { "chartID": "6238924f8a1d04f4a4ce7c0be80fb580177d22bb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -15101,9 +13417,7 @@ }, { "chartID": "a43a10e0da4831474211ed0ed6bf5d5e8d599591", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -15119,9 +13433,7 @@ }, { "chartID": "69347aa3915054b43d8f6f8a18f58d5e44d013bd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "6", @@ -15137,9 +13449,7 @@ }, { "chartID": "890527ddd79364c6976eb10e2c581472603bd4a8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -15155,9 +13465,7 @@ }, { "chartID": "ec2b472c4e6bfd6932ccc0e1f6530150948c491d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -15173,9 +13481,7 @@ }, { "chartID": "f465a290be59c345e64ec621a3c89740e8efb9dd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -15191,9 +13497,7 @@ }, { "chartID": "defdf570134292d481caacde56f76472e47efc78", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "14", @@ -15209,9 +13513,7 @@ }, { "chartID": "4af3fe7eb0b112eb82a8aebfc4ea5f6f16922c69", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -15227,9 +13529,7 @@ }, { "chartID": "c0936c92a7cb361a4dbf6c3216bf52e8b36244df", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -15245,9 +13545,7 @@ }, { "chartID": "21a044529bb3514142f4bd1f57592fa2b6c54104", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -15263,9 +13561,7 @@ }, { "chartID": "633929c2eaeaee4bebdaff2b6843f19986637830", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -15281,9 +13577,7 @@ }, { "chartID": "25293cac5da455ac62fc242fb69f5f04c73a369b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -15299,9 +13593,7 @@ }, { "chartID": "8a46de48aa721a091d9f3578cda6b7c2b29c13bf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -15317,9 +13609,7 @@ }, { "chartID": "5741eaf2f35886ab741b0104bac8dc886cb9e494", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -15335,9 +13625,7 @@ }, { "chartID": "d3c2541ef615999457ae3dd40b7ece0cf1e3f5da", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -15353,9 +13641,7 @@ }, { "chartID": "615028388c617aecbe7d2d29ea83f876be807260", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -15371,9 +13657,7 @@ }, { "chartID": "9d9475a2b74a4e7c4708f9d8a405429bcaf87d05", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -15389,9 +13673,7 @@ }, { "chartID": "ef83a899e84059a6e52b881a895ad054235b0eca", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -15407,9 +13689,7 @@ }, { "chartID": "07d9444d54cc2a89dfb941c5df3878e46bb38886", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -15425,9 +13705,7 @@ }, { "chartID": "599719affd20676f866835ea6584e5f8a25e962a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "14", @@ -15443,9 +13721,7 @@ }, { "chartID": "387231a4a07789be33bfcbbb65905e5b53136c25", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -15461,9 +13737,7 @@ }, { "chartID": "7264f0576a5a46088a806e97cbe6982f983e6f59", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -15479,9 +13753,7 @@ }, { "chartID": "97b0e53db16216a31a4b450eab01e6135795bd2a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -15496,9 +13768,7 @@ }, { "chartID": "68748157e27e88219cc9bb8dcd69ce5e4c9e2cb6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -15513,9 +13783,7 @@ }, { "chartID": "ee7e37b7832be5321115642751319666ba3f9480", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -15530,9 +13798,7 @@ }, { "chartID": "bad4ee0cb746a2dfdf5f5bc09c388924aa053acd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -15547,9 +13813,7 @@ }, { "chartID": "977457dc304f2af960a58fac3f217604ef2743ad", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -15565,9 +13829,7 @@ }, { "chartID": "2c20367a1840bf600749f096c4ff1102ef27f586", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -15583,9 +13845,7 @@ }, { "chartID": "fef05f4f6d188133d27f3854fed382ab3c68d138", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -15601,9 +13861,7 @@ }, { "chartID": "82dbf25e933405ea29aa6d970c8a0ef73ef06e7b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -15619,9 +13877,7 @@ }, { "chartID": "30feab065f990aceb31fe7499793723259dad22e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -15637,9 +13893,7 @@ }, { "chartID": "05fff8a092749497151c84ff6b987e6af3a44763", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -15655,9 +13909,7 @@ }, { "chartID": "de02e04953072415d3441d7bb59a9941b3b715ef", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -15673,9 +13925,7 @@ }, { "chartID": "10af5fd92e606c52ff7cca63cfad7bc88186e7a5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -15691,9 +13941,7 @@ }, { "chartID": "c0c8d14fc4c0e97043fe2935b5bb69415f5690e0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9", @@ -15709,9 +13957,7 @@ }, { "chartID": "f35f39912275d2a8295deaff91e46ba3db3f96b1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "11", @@ -15727,9 +13973,7 @@ }, { "chartID": "edd5e55accd4ec01dede5b8ffc3f46ff6b11ad1a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -15745,9 +13989,7 @@ }, { "chartID": "457b6d8a74e7325e13ccb5be802eb7cfc58be47d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -15763,9 +14005,7 @@ }, { "chartID": "efd8ff09718e78e2a7eafe7bcf98381093ae7604", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -15781,9 +14021,7 @@ }, { "chartID": "a3f55853cee9f94c2d4bb9dfdb9ad4c7525f3b39", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -15799,9 +14037,7 @@ }, { "chartID": "54923ef258bec5dcd411347c10f1a778cfb2fdb5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -15817,9 +14053,7 @@ }, { "chartID": "ed070b8ca70c24405aea7d50f1740b42d87bb7d5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -15835,9 +14069,7 @@ }, { "chartID": "4dc9cd086b55470b59c00cfd19e5cffb9e5f4c67", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9", @@ -15853,9 +14085,7 @@ }, { "chartID": "f6a46bada2e287d1226393bcefc042f320fa6c40", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -15871,9 +14101,7 @@ }, { "chartID": "998815ee2d22d650ea2e8a2f4ed8ef9e201ef04a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -15889,9 +14117,7 @@ }, { "chartID": "0201e321c7720e087207c84d50bc138e517162a3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -15907,9 +14133,7 @@ }, { "chartID": "b4270b52ccd30f75b15136ff0c1683c395817adf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -15925,9 +14149,7 @@ }, { "chartID": "e1dcf9e2f129c1340fc219bbc5ba8deb4061dbdc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "11+", @@ -15943,9 +14165,7 @@ }, { "chartID": "1b2e987226d97ff785bcaf02a8905fee67ce88c5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "13", @@ -15961,9 +14181,7 @@ }, { "chartID": "fac51ced10df7c9133958e57d47d401713715b8d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -15979,9 +14197,7 @@ }, { "chartID": "08ef5369c59329699a38047457a9e4e4bae44a28", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -15997,9 +14213,7 @@ }, { "chartID": "7edcd75a36f46f9a84fde28b74dbad3a5b7b5383", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "8+", @@ -16015,9 +14229,7 @@ }, { "chartID": "a26dc4bf4b55d13b6030011fc4a6d0d3497b18bf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "11", @@ -16033,9 +14245,7 @@ }, { "chartID": "49845505c1b453cc0321df7c08a51161f8769ea0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -16051,9 +14261,7 @@ }, { "chartID": "ab86033f7a479ab1ed8f162bfa097adae04b6e5b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -16069,9 +14277,7 @@ }, { "chartID": "33066c75d710b100900083285f239422a5449c2a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -16087,9 +14293,7 @@ }, { "chartID": "581f160afb5550447fa092212a41bf9ee715e20b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -16105,9 +14309,7 @@ }, { "chartID": "aa780400ca3ba49b484b3fd334130aedf6c7f201", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "13", @@ -16123,9 +14325,7 @@ }, { "chartID": "87c89d0826a52f67cfab50863e81f89459d2bc1f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -16141,9 +14341,7 @@ }, { "chartID": "30e266bb8a6efdeea9db1ecbffb8e187e0b0763d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -16159,9 +14357,7 @@ }, { "chartID": "f7db06dcad506b3ab4f0d1d9f57e17389f1792da", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -16177,9 +14373,7 @@ }, { "chartID": "6134c55238347c770140aec4d7bd766d538b7e0b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -16195,9 +14389,7 @@ }, { "chartID": "3b559ae15791470710c9c8233f6f8f12fc995d24", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -16213,9 +14405,7 @@ }, { "chartID": "f0f5241ddf34ade94d56e06d88a0054203fe869a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -16231,9 +14421,7 @@ }, { "chartID": "2ed493f14bb8c29a35d03dadd355295dbd8dc7c9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -16249,9 +14437,7 @@ }, { "chartID": "5d51950e0a3c05835d5be9a657a8c7f84ace05d8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -16267,9 +14453,7 @@ }, { "chartID": "247ff84d437f8a3bf803e19503b9a42cab75ec4a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -16285,9 +14469,7 @@ }, { "chartID": "1e3405c6149a1eebd4b72ed0123418cb917eff4a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -16303,9 +14485,7 @@ }, { "chartID": "87de86c6388ba7e14d834e85481c431164d1c7dc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -16319,9 +14499,7 @@ }, { "chartID": "c9ee8b36b3914e857b1a53eddf5bd561144403ea", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -16335,9 +14513,7 @@ }, { "chartID": "82df96c55d58c05b22c50605dc977c72ba3ddf3d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -16351,9 +14527,7 @@ }, { "chartID": "1318a1bdcf919749aa225eb28cbf91ce384b689c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -16367,9 +14541,7 @@ }, { "chartID": "4cd41dc90ddf2ffb787003676cfddcc899fc4283", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -16385,9 +14557,7 @@ }, { "chartID": "135f82932c12624620a1c7531717d50773e21b8b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -16403,9 +14573,7 @@ }, { "chartID": "40d4309f67113b1102e4c2cfff6f10e53607ef75", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -16421,9 +14589,7 @@ }, { "chartID": "9047d3d23863a295c8b4b6664b9198e5e938c019", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -16439,9 +14605,7 @@ }, { "chartID": "d9b6261a46b43bddff99211a6bd544336b5e3f68", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -16456,9 +14620,7 @@ }, { "chartID": "249d356b921c3dfd677e55b790f852bf1c24ecda", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -16473,9 +14635,7 @@ }, { "chartID": "39161675e00e987630a30d5ba35a27cbe4927ec0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -16490,9 +14650,7 @@ }, { "chartID": "228842b0b44a8a80fa4f76666d27dd6f38de7885", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -16507,9 +14665,7 @@ }, { "chartID": "0980365e6d8c28248e391987230ae231d6258514", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -16525,9 +14681,7 @@ }, { "chartID": "d524a4c4b408e1c28c818f82f158834a22f3c42b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -16543,9 +14697,7 @@ }, { "chartID": "7aaa83733c2a49ba998f80883bf640d7d060d450", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -16561,9 +14713,7 @@ }, { "chartID": "8d8f0e18c76262bf6c7347f6c00980357b04a9e4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -16579,9 +14729,7 @@ }, { "chartID": "cdb97f29de3010c71a5ac59d6cddb1c0ff5b5c9d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -16597,9 +14745,7 @@ }, { "chartID": "a5136a53d7b7aa6a38e114881c06b02274ddf3b6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -16615,9 +14761,7 @@ }, { "chartID": "84d7a4274afc17efc61bbaddbeb8545dfaedd15a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -16633,9 +14777,7 @@ }, { "chartID": "a2ee2b72cc4b717451d2d01a53f50cdd7d2986a0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -16651,9 +14793,7 @@ }, { "chartID": "c23835bcc6f656c71e87f8a16436083ea4458144", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -16669,9 +14809,7 @@ }, { "chartID": "0957a6b7c081c19a5b1ac9df73d522cd40daef48", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -16687,9 +14825,7 @@ }, { "chartID": "da81c8bc8ecf28550ab1ffc1df8e923c6fb4df65", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -16705,9 +14841,7 @@ }, { "chartID": "2df26fc4eb79b95a3ce3beff4f77ca9db5f1c614", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -16723,9 +14857,7 @@ }, { "chartID": "de2dad8d0cbcc3a505847a90b748375e091a525a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -16741,9 +14873,7 @@ }, { "chartID": "99fec2701887b96622268b2cb0acbd1d34f96751", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -16759,9 +14889,7 @@ }, { "chartID": "021f7140034066455517633c1606a9db03d175ef", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -16777,9 +14905,7 @@ }, { "chartID": "443fadcdfb318152b58f114bd9e2c126c5081813", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -16795,9 +14921,7 @@ }, { "chartID": "2109aa1e595863533f2435159e065ff11560f0a3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -16813,9 +14937,7 @@ }, { "chartID": "88dbb062ad26ba8159c6c5ea6dabd185e6986c77", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -16831,9 +14953,7 @@ }, { "chartID": "5f853682a6eebe880ba087e454fd13b585559133", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -16849,9 +14969,7 @@ }, { "chartID": "62067282a60e4e4b34e3897615032adc60c98dc7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -16867,9 +14985,7 @@ }, { "chartID": "bdbd6d580027cc60f123930931c1ca9a84ca45cb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -16885,9 +15001,7 @@ }, { "chartID": "21948fb30bad52a8878382733768077885d4eae0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -16903,9 +15017,7 @@ }, { "chartID": "fe2fc67c9e96d22a8973feb6cbfe7fbdbb5e1c51", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -16921,9 +15033,7 @@ }, { "chartID": "8e86d519fd20db06fd35634d59bc53ce6c90a554", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -16939,9 +15049,7 @@ }, { "chartID": "a7e165286429907299edb53e1f74e4b87793ff98", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -16957,9 +15065,7 @@ }, { "chartID": "3e0726a9ed698f0c46d6d0b1b39fb853128c9115", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -16975,9 +15081,7 @@ }, { "chartID": "0528e895ae7e879fb2ed00b7166428671ba9fa26", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "6", @@ -16993,9 +15097,7 @@ }, { "chartID": "d457e0ae1cb873a55fd8fdc3452f227cd0fabaf1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -17011,9 +15113,7 @@ }, { "chartID": "6f1969a76b02b455c11e08918988feca52aa2879", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -17029,9 +15129,7 @@ }, { "chartID": "4dd3fe0cb3d8c31c5fb2693b5da10793ec650d3d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "11+", @@ -17047,9 +15145,7 @@ }, { "chartID": "68cb2c9faac66cdc30df37494bfe871d3f283564", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -17065,9 +15161,7 @@ }, { "chartID": "14b30f58d6ef72eeeb5a5bafc2edf1a34caae960", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -17083,9 +15177,7 @@ }, { "chartID": "5f7a122ae43c5bf8dbd58ea8df7f029fe8f637e4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12", @@ -17101,9 +15193,7 @@ }, { "chartID": "17aa99bc005f04c490f91d539bf4a080d26eef35", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -17119,9 +15209,7 @@ }, { "chartID": "17f9c9489d5a6a78d6718f5902e077ab9628023e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -17137,9 +15225,7 @@ }, { "chartID": "c93c96e46718ca75826bc9486e9a32ac6ba5b28e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -17155,9 +15241,7 @@ }, { "chartID": "24c5bbaf9d09d680bdccb98c1ad8ea8a1eaa5e3b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -17173,9 +15257,7 @@ }, { "chartID": "236dea6ab610425e853e567af0c47d81951dacfd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -17191,9 +15273,7 @@ }, { "chartID": "6789ca8f104345edaa8558cc49f6418241b4a4c3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -17209,9 +15289,7 @@ }, { "chartID": "702f5e57327a63a3d884724717f9398539edf084", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -17227,9 +15305,7 @@ }, { "chartID": "670386891cb85312794aba76b809a5a9466d5815", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "8", @@ -17245,9 +15321,7 @@ }, { "chartID": "ebe7cf4c471de4f6ce85f13a11069a96bd4ca409", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -17263,9 +15337,7 @@ }, { "chartID": "958cef8874ffd86a3961b6c728e9b6ff3842e4cb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -17281,9 +15353,7 @@ }, { "chartID": "9e484a28caf38be7941de565ca39bad78b2b2d92", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -17299,9 +15369,7 @@ }, { "chartID": "47a90f885bfa5f8d0e96e81d68a02b3ab859533d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -17317,9 +15385,7 @@ }, { "chartID": "01869e3d4327b62875f4e8cc44b8258b3a12e182", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -17335,9 +15401,7 @@ }, { "chartID": "f54696a32c23ab972002f8e7c8b72fd7260ece5e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -17353,9 +15417,7 @@ }, { "chartID": "b3f130fa9542391e6199ebdf0f04775207445f7f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -17371,9 +15433,7 @@ }, { "chartID": "2a77f7c8b24216306eaf794af90d3a2e65da5144", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -17389,9 +15449,7 @@ }, { "chartID": "d7253c13eb8b0f0e2a749d3c0784d95bac9d0e92", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -17407,9 +15465,7 @@ }, { "chartID": "26fe12e34efc2e0f4c214a3c7120425c397102e1", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "13", @@ -17422,9 +15478,7 @@ }, { "chartID": "a0daedb2a7f22a525a0c3ff80ec063804d253b2d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -17440,9 +15494,7 @@ }, { "chartID": "ef6d0867821f8ac90d4786acf3b0b8cc1928e146", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -17458,9 +15510,7 @@ }, { "chartID": "f81ece3c0d6e53e00515c3e59f86526f54c60be8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -17476,9 +15526,7 @@ }, { "chartID": "24117cff06660a11b76695510b51ee212239d33b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -17494,9 +15542,7 @@ }, { "chartID": "7b4d5e54e31e4a2818693e527fa7812a84b0c9bf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -17512,9 +15558,7 @@ }, { "chartID": "1fcb25eaf0c41f5251cd59760a8df8d72f4a07d1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -17530,9 +15574,7 @@ }, { "chartID": "8667b941212ebd86e184a6d6b36e0d7b54ce196f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9", @@ -17548,9 +15590,7 @@ }, { "chartID": "56263da34c62c2192d6e7d208e9497dc834beb8c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -17566,9 +15606,7 @@ }, { "chartID": "37e93b5960e18629e30a300c027e0efe1064e4a8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -17584,9 +15622,7 @@ }, { "chartID": "e6fd6e887385f3d7102c6a3cf3eb8a0931b1fe5b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -17602,9 +15638,7 @@ }, { "chartID": "80816330a53fffc29c356c316e008f625f4f5843", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -17620,9 +15654,7 @@ }, { "chartID": "8031c63a931ac291048a0b901d007484adb3bb07", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -17638,9 +15670,7 @@ }, { "chartID": "a9b666a54e7daaf8f1b771de411ec4712f988569", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -17656,9 +15686,7 @@ }, { "chartID": "4a1e777b1a547af75e935faace668f8115ab973d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -17674,9 +15702,7 @@ }, { "chartID": "cb4b4ccdc1557f6be0baa7eaa0ad68bc8da236d5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -17692,9 +15718,7 @@ }, { "chartID": "0d41fd2065ff6eaa0b8ca1eca06751dc94bce208", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -17710,9 +15734,7 @@ }, { "chartID": "6ea2290fb472a4d5d121528534b73bb9a3f44683", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -17728,9 +15750,7 @@ }, { "chartID": "ed6011a9aed8800fb5efea45cec80d4a5742e116", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -17746,9 +15766,7 @@ }, { "chartID": "8455153a4d1d4459159c9f50a35be7c378782940", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -17764,9 +15782,7 @@ }, { "chartID": "2601dd93f9e3ee73c7a6d63b0e49db54a39cda61", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -17782,9 +15798,7 @@ }, { "chartID": "38963b39df0f0d773c7c7ed3b514ae05229ee04c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -17800,9 +15814,7 @@ }, { "chartID": "d075f5a17bbce2ad2c5d5c9998f36387eb214e65", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -17818,9 +15830,7 @@ }, { "chartID": "e88a34617a33f133734a09a2429bff4752b66d66", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -17836,9 +15846,7 @@ }, { "chartID": "fe9f4a0f44b065899c8c766ca4f2a16ae4627b53", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -17854,9 +15862,7 @@ }, { "chartID": "4819ed9d2593111f2f914fb79bb450f0433ddf0b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -17872,9 +15878,7 @@ }, { "chartID": "05ca44c410c64a23abf5a3aa956600c2443c1914", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -17890,9 +15894,7 @@ }, { "chartID": "ae242e4a4e3af64f5bac6e9293e147fb688e8ed1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -17908,9 +15910,7 @@ }, { "chartID": "3f22fb6e587d9f32134b73b10fbf6d09ad679f1f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -17926,9 +15926,7 @@ }, { "chartID": "beefa3b471d12744257794a3619759577bb4c17a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -17944,9 +15942,7 @@ }, { "chartID": "ce59af9a3d6434de6253e60dba0998ad6ead5422", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -17962,9 +15958,7 @@ }, { "chartID": "0bd7010acc9da74fb172d7df936f9899930e1d9e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -17980,9 +15974,7 @@ }, { "chartID": "9ffa00f6adb49bbbeda165d33194684dfd177566", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -17998,9 +15990,7 @@ }, { "chartID": "619609b7f5fac1616f00fe4b383096cdf8fb4fba", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -18016,9 +16006,7 @@ }, { "chartID": "5cf08fe426f928fbd6e5d78c65892e050c35245e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -18034,9 +16022,7 @@ }, { "chartID": "4462e84e8797670ef73bb7396db4507de3146069", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9", @@ -18052,9 +16038,7 @@ }, { "chartID": "3376857678e666798e169694e35656296e7efef4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -18070,9 +16054,7 @@ }, { "chartID": "ffcbcc9433005e2d23d50d947be05dd842174bcf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -18088,9 +16070,7 @@ }, { "chartID": "6b77ab5ddd6e1b48ee9f35a3e58b562eb29b7a3b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -18106,9 +16086,7 @@ }, { "chartID": "94cc470d2e00e1e57d2c373d9e69177f173654d9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -18124,9 +16102,7 @@ }, { "chartID": "9e7b27c9b49c23548a98c482556e5bc1c32ee032", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -18142,9 +16118,7 @@ }, { "chartID": "8b06fba1522f66a4c700cd4dbef84df3f4b0586f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -18160,9 +16134,7 @@ }, { "chartID": "3643bfc2df60c8163dc1cd7f090fd42fb85e6e50", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -18178,9 +16150,7 @@ }, { "chartID": "931b5747449401394c7f926e974006df7641a8f8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -18196,9 +16166,7 @@ }, { "chartID": "6063ae5ffce63e6d48ddd27a18fa956468b10ddc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -18214,9 +16182,7 @@ }, { "chartID": "9de5a89aaa6ebce7ed2cd7b18833b6b74be0f077", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -18232,9 +16198,7 @@ }, { "chartID": "d2469d2ee2d3686d1ba21694b895d57125afec0d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -18250,9 +16214,7 @@ }, { "chartID": "79d7da92fb8ef8de944671300024ab0c00037fb3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -18268,9 +16230,7 @@ }, { "chartID": "acda7729007367911487285da528eebc9a99ddeb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -18286,9 +16246,7 @@ }, { "chartID": "a5b26634d01f036feb567cc2f314eb405b625dfa", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -18304,9 +16262,7 @@ }, { "chartID": "ad603ad96f767c761794e6579c81d85623cab050", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -18322,9 +16278,7 @@ }, { "chartID": "f0577582a4f065876c6b543b563b077209157c63", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -18340,9 +16294,7 @@ }, { "chartID": "28117f1f5a2f898ada7e8c6dce43121616972e69", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -18358,9 +16310,7 @@ }, { "chartID": "b04d89069ae0dd3e0987b54726645845f7d6d4c6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -18376,9 +16326,7 @@ }, { "chartID": "a313f4a81dd7367a6a071ddbabfe77bed114f026", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -18394,9 +16342,7 @@ }, { "chartID": "7a4953a28063ab35b0e344e26ccd66aa6f9aa215", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -18412,9 +16358,7 @@ }, { "chartID": "d1bd7991eb13bbbf142687b7b0c7fe313f46dcd2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -18430,9 +16374,7 @@ }, { "chartID": "78d0f540b723bfd74c33ecb7013ab3250ebaa715", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -18448,9 +16390,7 @@ }, { "chartID": "ecd905bea5be573c7556959b7804d4adceb53c91", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -18466,9 +16406,7 @@ }, { "chartID": "25b69b4ef1b0443990438a3ae2fe542c3464fabe", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -18484,9 +16422,7 @@ }, { "chartID": "4d55c84c652281e55add43d302f40fb0cc62144f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -18502,9 +16438,7 @@ }, { "chartID": "c262d6fcb489ea5cfaffaf7e5b96bc11325ae119", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -18520,9 +16454,7 @@ }, { "chartID": "625da3c0065de2650d8664a9985e9444f5d52655", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -18538,9 +16470,7 @@ }, { "chartID": "6aec643f8c89e641269b3f0599de52ae10d94026", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -18556,9 +16486,7 @@ }, { "chartID": "cb7132a389a130c8756734fabd9c9aeb8cca1250", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -18574,9 +16502,7 @@ }, { "chartID": "fac964a56ae022dca9e6ad41932fd073be4d925a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -18592,9 +16518,7 @@ }, { "chartID": "5f8f052b47d0c893676ebb75b7a9e9e15f5beb92", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -18610,9 +16534,7 @@ }, { "chartID": "eb8026b7885417d0bf688f484230df0dde2d68f7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -18628,9 +16550,7 @@ }, { "chartID": "b47413627b1aada746dc2dc2501c46736514add0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -18646,9 +16566,7 @@ }, { "chartID": "e36b1cb6276f09e17f1ef034dbdaf9aaf66854a1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -18664,9 +16582,7 @@ }, { "chartID": "ac8202332c59225521c311bc33ecac00f7d329ae", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -18682,9 +16598,7 @@ }, { "chartID": "840415ef0d0d668d13806e40ba6f9ff4b2f61054", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9", @@ -18700,9 +16614,7 @@ }, { "chartID": "3cec2e7d3ffa6ecc9e36f8f8817bf77366858484", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -18718,9 +16630,7 @@ }, { "chartID": "940ceeaed95f1493920c43a6aacc8cf5bd1a8f22", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "6", @@ -18734,9 +16644,7 @@ }, { "chartID": "7d4e886bd5e72c9f5ffd59a5263fdb06868c3617", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -18750,9 +16658,7 @@ }, { "chartID": "1fe023269de1c888319c70f39add39cff381b5a6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -18766,9 +16672,7 @@ }, { "chartID": "4cadcca8626547b6076d0e839cabf85e2bc49d52", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -18782,9 +16686,7 @@ }, { "chartID": "bc3b504d9425438c94e900805ba7de160e06793d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -18800,9 +16702,7 @@ }, { "chartID": "3f3b1d6581efeab4838dcca772a2ddf7b4097438", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -18818,9 +16718,7 @@ }, { "chartID": "c1ec45950855f63ed0e90382706f8858db6568fb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -18836,9 +16734,7 @@ }, { "chartID": "ba18043878a81dc1a0486442218a8a0ffd161176", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -18854,9 +16750,7 @@ }, { "chartID": "bd5ff5f99c27db42ba2d80ef71bff41c07fa947f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -18872,9 +16766,7 @@ }, { "chartID": "38fad7eb4582054f2a913ea45b037533c50a93ce", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -18890,9 +16782,7 @@ }, { "chartID": "87ce12b7449e73ff79db825b4a5956deb74916a5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -18908,9 +16798,7 @@ }, { "chartID": "0c57f3e52cab0b125e04a5a300151f489720104d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -18926,9 +16814,7 @@ }, { "chartID": "d77b0cdac0f67290fbef74f592183dd050082b73", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -18944,9 +16830,7 @@ }, { "chartID": "887538ce4f9f4ffd90a4bb839aad7ba205465090", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -18962,9 +16846,7 @@ }, { "chartID": "f405446053dc47f4d391210e102bc4e950415011", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -18980,9 +16862,7 @@ }, { "chartID": "4caf301bc50ab4c650b51141cb622ccf4c2042f7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -18998,9 +16878,7 @@ }, { "chartID": "2edb2ed352dfd32710b1880ec3c4d3b97481a0e8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -19016,9 +16894,7 @@ }, { "chartID": "b80f4932c33c93f790bc880c1f0cd34bb8ec9634", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -19034,9 +16910,7 @@ }, { "chartID": "92ac846dbe5182779473f0700eb8b26aa9dd66d7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8+", @@ -19052,9 +16926,7 @@ }, { "chartID": "0293b877451f29fc5331d4795ae50de7d244f1d8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -19070,9 +16942,7 @@ }, { "chartID": "999006228cb4de243a0f5f24d7ffb9eef48ecc87", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -19088,9 +16958,7 @@ }, { "chartID": "4c58105b1165f93d429d48a05449c42deec36569", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -19106,9 +16974,7 @@ }, { "chartID": "4547486cf5d62ff3d9dd2e2e7b0ab02cfc0f70a3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -19124,9 +16990,7 @@ }, { "chartID": "b707e6951422e22b606a725115c7326b7db4197d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -19142,9 +17006,7 @@ }, { "chartID": "8073997a215ebede207ea247dfb9dc42dfb908b2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -19160,9 +17022,7 @@ }, { "chartID": "2a0f087d15ee50249f67614cd8105cacbe8052fe", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -19178,9 +17038,7 @@ }, { "chartID": "1af296e8df80077fa92a15270544bda23b75cd68", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -19196,9 +17054,7 @@ }, { "chartID": "f3b2a79e41ec3271b90164f3b022e0751d333457", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -19214,9 +17070,7 @@ }, { "chartID": "c9b6ac0dc373a235f9d724e1470664aa43a275c6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "13", @@ -19232,9 +17086,7 @@ }, { "chartID": "32b71e31ff916fcdbff486fb13a4ea9b26c31102", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8+", @@ -19250,9 +17102,7 @@ }, { "chartID": "d7c4b567a73571a2a839362dc3f59b85c450ba24", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -19268,9 +17118,7 @@ }, { "chartID": "381bb5713b04ad6a0fd5a68efa3d5020ee5ed52d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "13", @@ -19286,9 +17134,7 @@ }, { "chartID": "fa38abdcb7084b93340ddbdb268aada44d563b49", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -19304,9 +17150,7 @@ }, { "chartID": "b9b7452a397ac919ff44ee4e385cb4072b5c1980", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "14+", @@ -19322,9 +17166,7 @@ }, { "chartID": "0daab56a401fdb7c1e293937f79381d5f3d31b29", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -19340,9 +17182,7 @@ }, { "chartID": "4a311d393df21d714c1cc171aed5320da8acf1cf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -19358,9 +17198,7 @@ }, { "chartID": "d846b7ccf958b61213585b30eb966d373e8b9b24", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -19373,9 +17211,7 @@ }, { "chartID": "d8e309f00bc7d0450ed1aafbdb9bb4caa037ff66", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -19388,9 +17224,7 @@ }, { "chartID": "2b3708ae03f3d169fbc095f22bf63c3ede0032dd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -19403,9 +17237,7 @@ }, { "chartID": "a08d7be26a00ffcd7a3b54f383ed39f1c9e02d4c", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -19418,9 +17250,7 @@ }, { "chartID": "6f66c775327e3b5efde1bf88cdf5528b3a285e82", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12", @@ -19436,9 +17266,7 @@ }, { "chartID": "9bfc1a45731da4a98ca2119cbf97b7289eb71036", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -19454,9 +17282,7 @@ }, { "chartID": "0985e6d93f7a6e49340406044f47f92e0c6e94f0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -19472,9 +17298,7 @@ }, { "chartID": "4edc6bb4141001ab3722457b94e903e6600390ef", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -19490,9 +17314,7 @@ }, { "chartID": "0dbb96495bf5d0beb460e3a946fd227970e658ba", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -19508,9 +17330,7 @@ }, { "chartID": "318786e09473cd14305de5db088c920112e0ad6f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -19526,9 +17346,7 @@ }, { "chartID": "c7ef21812a7ebf738eff84b567809e97c300f653", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "14", @@ -19544,9 +17362,7 @@ }, { "chartID": "303e7a751147918ec9ca0c540f625a6300d9b9e1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -19562,9 +17378,7 @@ }, { "chartID": "188343b5ed87b83ba92b614f7a924774a3c5d2ed", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -19580,9 +17394,7 @@ }, { "chartID": "bba2311537a81e3c9a69e6ccaa60df32066b7dd5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -19598,9 +17410,7 @@ }, { "chartID": "39bb07b481a4a6c00839d46291841003c80f5efd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -19616,9 +17426,7 @@ }, { "chartID": "72f81d520ef5396c703dab00415e1cbaaab982dc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -19634,9 +17442,7 @@ }, { "chartID": "82494078782869372b2c94d5ec965485da9442cb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -19652,9 +17458,7 @@ }, { "chartID": "cbf0f01f358e238bfb0648253d42eac5f8a289e6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -19670,9 +17474,7 @@ }, { "chartID": "7809c9d31ea82dd495a63057a2600864258b801b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -19688,9 +17490,7 @@ }, { "chartID": "beef5971e45f02d016180fc88029ad3736b04b6a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -19706,9 +17506,7 @@ }, { "chartID": "c841ec6b6177c8cf5aa9cb916e86608a73f71d6b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -19724,9 +17522,7 @@ }, { "chartID": "05a18feac3a1301b24e35d0e52c10a4f1d85e99a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -19742,9 +17538,7 @@ }, { "chartID": "940e6d670c8c9ead2967b20ce6f2c02f52945981", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -19760,9 +17554,7 @@ }, { "chartID": "f033ae735c92e7bd4ad5a328d2901b56af2630f7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -19778,9 +17570,7 @@ }, { "chartID": "a34e69cc817165216c37e1f97598678e4db8ab21", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -19796,9 +17586,7 @@ }, { "chartID": "d80f22183fd90b0c7449ff3f23c348bbab7bb07f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -19814,9 +17602,7 @@ }, { "chartID": "584d422d72f8ede6ee03edfb7b4996c22419f0d9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -19832,9 +17618,7 @@ }, { "chartID": "37eb4564b891cdf1a9da87dc6ed624f94017111f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "13+", @@ -19850,9 +17634,7 @@ }, { "chartID": "1b64f952293feb9eee792c55527045eca151c974", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -19868,9 +17650,7 @@ }, { "chartID": "292bab1af60be5d75fcb4693e91ae3cb85465c94", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -19886,9 +17666,7 @@ }, { "chartID": "470e6aab17e749d41b795d9ffe15f287951be635", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -19904,9 +17682,7 @@ }, { "chartID": "570516365bbce3f077c7151764828034e95f7e56", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -19922,9 +17698,7 @@ }, { "chartID": "a8a26a92a68bdb6b8d78018b944702e00384ab8f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -19940,9 +17714,7 @@ }, { "chartID": "c7174d9bb3be479df8322e6ab9eb3deb548fc84f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -19958,9 +17730,7 @@ }, { "chartID": "fb772243c6d121caf4093902ee8193308be148ba", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -19976,9 +17746,7 @@ }, { "chartID": "283446421c14252bbdd38a2a8b5dfb6269685b7c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -19994,9 +17762,7 @@ }, { "chartID": "9fd5483bc6bdd1d92a4e693995e385cbd8e3e1c5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8+", @@ -20012,9 +17778,7 @@ }, { "chartID": "3e289e450436dcae14592747dfbacfeba44cb43b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -20030,9 +17794,7 @@ }, { "chartID": "bf091c7fbac8deff1757ac41b2305a1996137976", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -20048,9 +17810,7 @@ }, { "chartID": "0588617b2583e7a8a21e93aab32e41ec7bac222e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -20066,9 +17826,7 @@ }, { "chartID": "9b2ed19101117c788d864f23481bf0858b5dc67e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -20084,9 +17842,7 @@ }, { "chartID": "ce092791efe022855959dc1f37760547b65a38dd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -20102,9 +17858,7 @@ }, { "chartID": "ebf9877b7bd0c63bc3be1741fc976164dbf9b950", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -20120,9 +17874,7 @@ }, { "chartID": "0c0c930113819f863825415f2803ce2bb7fd63ed", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -20138,9 +17890,7 @@ }, { "chartID": "6abad504d6dd02b4267372823ee2d4de46ebea02", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -20156,9 +17906,7 @@ }, { "chartID": "81c7af1e9e3fb9e9c11a3b2fb760fddd0c80027b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -20174,9 +17922,7 @@ }, { "chartID": "766a84c1c9bf8f78577d5414eb39708efa736c3f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -20192,9 +17938,7 @@ }, { "chartID": "774078e06c0f67b2ef4754fea0161f53d5199d2e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -20210,9 +17954,7 @@ }, { "chartID": "c265a8fdabe8bf828d888de9d4f03dcd57efa9b6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8+", @@ -20228,9 +17970,7 @@ }, { "chartID": "85d0b439fbe9612f1e0deaf07875d1eda42be115", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -20246,9 +17986,7 @@ }, { "chartID": "7568e821079c49d9cad67d62cfe1d5e799e23b73", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -20264,9 +18002,7 @@ }, { "chartID": "3d0844a4d8e8cbb2dd45152b462d791aaebb3ca6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -20282,9 +18018,7 @@ }, { "chartID": "2b739030f62eb08c3935f1655c604bb1580ea153", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -20300,9 +18034,7 @@ }, { "chartID": "1acac3668ce64a2663395e26132a6b7779b40fff", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -20318,9 +18050,7 @@ }, { "chartID": "667b05c2b4e52a30f5f35a9a8f1b5ef2d57e0d71", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "13", @@ -20336,9 +18066,7 @@ }, { "chartID": "572fe1845c53daa0f0a55c9c081ad8c80e3a9d69", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -20354,9 +18082,7 @@ }, { "chartID": "6cd5706e7bee3cbb21a459b05d4e479386e3c3d7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -20372,9 +18098,7 @@ }, { "chartID": "f68a59ef6daf9ac37272a77e774a76b5573ea91b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -20390,9 +18114,7 @@ }, { "chartID": "2ca6130effd7f08f682bd55b88e9491c9b39822a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -20408,9 +18130,7 @@ }, { "chartID": "9f2bdde7677b3a98b055a9b70f88f760c7ca3d9e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -20426,9 +18146,7 @@ }, { "chartID": "c706b676218c3bc2a996f192a171c2deb1a7d659", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -20444,9 +18162,7 @@ }, { "chartID": "e65bbed090ceee9b00b53df11fb09f03e2110bc4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -20462,9 +18178,7 @@ }, { "chartID": "781c420ffcf6c7fb826d3ea05a768cb0e2b8e177", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -20480,9 +18194,7 @@ }, { "chartID": "fec4a2bec84c8a7612bf96fcc8a7ec83d19fbfa2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -20498,9 +18210,7 @@ }, { "chartID": "4be2ac4da05d12d4bc701ad6567f8f4660cb8d13", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -20516,9 +18226,7 @@ }, { "chartID": "689e9028fbee76c6bbcef5f2ab552855a7835a83", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -20534,9 +18242,7 @@ }, { "chartID": "95c02c99ff56672264ed6cd40060b4d88d6e9816", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "13", @@ -20552,9 +18258,7 @@ }, { "chartID": "888125a4527b2dc2744c1d5ddeb1e0cf4bf0cd10", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -20570,9 +18274,7 @@ }, { "chartID": "2717c7f1dd020b708249ef80075166cdafee3d33", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -20588,9 +18290,7 @@ }, { "chartID": "697593297326cd52df15c717375ea1be5ae53bdf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -20606,9 +18306,7 @@ }, { "chartID": "332fd3ad3b7f51dd1e7d724eb6b074c6dbd162eb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -20624,9 +18322,7 @@ }, { "chartID": "45376ef56b24935af400b7b3258605cee1424fdb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -20642,9 +18338,7 @@ }, { "chartID": "8cd67e1b455254dda1d5f8a01bc7d95055fabb4d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "14", @@ -20660,9 +18354,7 @@ }, { "chartID": "238e451c586a14dae9e7566b4e4918e587792c0d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8+", @@ -20678,9 +18370,7 @@ }, { "chartID": "a8c891587749189cb9ffd8184ddfa4ab59e96462", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -20696,9 +18386,7 @@ }, { "chartID": "aabe291ac8972ead7970d54179b278c3ba27e802", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -20714,9 +18402,7 @@ }, { "chartID": "4ef141720fcfb34693a870b5daf68fec3a620833", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -20732,9 +18418,7 @@ }, { "chartID": "1b616a45de8dd15c97d6e0fe9a1a74180e41374c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -20750,9 +18434,7 @@ }, { "chartID": "599cb885b124106b0f6bb473d0892ab7f9fb79f6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -20768,9 +18450,7 @@ }, { "chartID": "00626c3015aca22161336c34ecc2153dca4cd789", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -20786,9 +18466,7 @@ }, { "chartID": "b7646276980583ac0e369486643bb6d45e71e773", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -20804,9 +18482,7 @@ }, { "chartID": "95dd446ff659bf6c4b8f698f3d8a93925414ac49", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -20822,9 +18498,7 @@ }, { "chartID": "cbb1d9c61f978007369497106e6bf494f7d062b9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -20840,9 +18514,7 @@ }, { "chartID": "b43c68fb0cf88b162a3ac96bc522464698775625", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -20858,9 +18530,7 @@ }, { "chartID": "51023769c16929c6328fd149d0171b22a84ec74a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -20876,9 +18546,7 @@ }, { "chartID": "93470b7b9d78387a25fb855a448e85a24a06e28b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -20894,9 +18562,7 @@ }, { "chartID": "699ab22906dac3051b8a2ffce9cced69dbda6c1e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -20912,9 +18578,7 @@ }, { "chartID": "952914c1c882559ac71924366ad17f7607f38d39", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -20930,9 +18594,7 @@ }, { "chartID": "86e9069ee0cc319c5648e6dcd9731dd453a28821", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -20948,9 +18610,7 @@ }, { "chartID": "25d77210a4e5913e7343e0b9bc30fc77a7d79c45", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -20966,9 +18626,7 @@ }, { "chartID": "98f64b32fef2c2cb03f8af248c455e5f7a880a25", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -20984,9 +18642,7 @@ }, { "chartID": "c10bd86acdc8d5cd8b95273edcf6f3f8b330fd1c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -21002,9 +18658,7 @@ }, { "chartID": "5155481df6e6ad362c59456f94f49906abca4d7e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -21020,9 +18674,7 @@ }, { "chartID": "ca8570b3497562b3729709e9f784f68d2b0a8a5b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "6", @@ -21038,9 +18690,7 @@ }, { "chartID": "e6a5837382048bbbefe7d1e88091a0e5e9e942a2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -21056,9 +18706,7 @@ }, { "chartID": "0f6d36d0f2e6a9ff3a649ab75b76cbdfeb83f33f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -21073,9 +18721,7 @@ }, { "chartID": "4fbf3fee3fee52a0bdafd442426ec5a67f197677", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -21090,9 +18736,7 @@ }, { "chartID": "8b52dea81f03d5d0e6a2fac67560f363255d1737", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -21107,9 +18751,7 @@ }, { "chartID": "da53fb7f50ba915b9ef59c1eea3d0f309b500be2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -21124,9 +18766,7 @@ }, { "chartID": "e2c79ef0a3b7c8afab8dc2ece3e0121cb39c1111", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -21142,9 +18782,7 @@ }, { "chartID": "777ddf53c3beeb7e6f0f0f8e17245b9b499f8b9a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -21160,9 +18798,7 @@ }, { "chartID": "8a7360d006237a8f7ce569e670f153efbb72a6ef", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -21178,9 +18814,7 @@ }, { "chartID": "07a0867e011e4094a08a6ff27c016d6a74098a2b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -21196,9 +18830,7 @@ }, { "chartID": "dfbbd9ea3b1b1c9faf65bc12ecc5a2ca35782ae0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -21214,9 +18846,7 @@ }, { "chartID": "627e2f13555dcd1e88accbaa1ec5f5f578fd9179", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -21232,9 +18862,7 @@ }, { "chartID": "c2c727b4d6669ac44daa2041102e5564398a1014", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -21250,9 +18878,7 @@ }, { "chartID": "458b8d0ad9cec46a951db500cc1e973c69d1cd01", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -21268,9 +18894,7 @@ }, { "chartID": "a3e3a4402a8055dc421355b8bda0125cc50a9e7e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -21286,9 +18910,7 @@ }, { "chartID": "0ce463db4557b9e14cdc1fb0027bc9257e448fde", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -21304,9 +18926,7 @@ }, { "chartID": "17a129386f138176bceed0632567bd7b0b63f924", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -21322,9 +18942,7 @@ }, { "chartID": "761be9284bf33dbbb85c9f14a261c087da43dd40", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -21340,9 +18958,7 @@ }, { "chartID": "fc8a6ecc48c5134255090098243ca2f276c07b72", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -21358,9 +18974,7 @@ }, { "chartID": "bea24a3d5fe0c7dd8e248a54e901178a273cf625", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -21376,9 +18990,7 @@ }, { "chartID": "6ea1da771de343ed613d03547b11269a7bb13a1c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -21394,9 +19006,7 @@ }, { "chartID": "cf731db9577ad0f3e29a099031a36ab14ef43c24", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -21412,9 +19022,7 @@ }, { "chartID": "40e00a7ece7867931639e020e9af360352219778", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -21430,9 +19038,7 @@ }, { "chartID": "4a77a43b52d35cf29a6b0d1feac8871a4af817b0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -21448,9 +19054,7 @@ }, { "chartID": "9740e6543f52ae6f33b3b1b36d73c81e1405b5ce", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8+", @@ -21466,9 +19070,7 @@ }, { "chartID": "46133f2060dff8bcc926f66d5a38ff29ddf7446f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -21484,9 +19086,7 @@ }, { "chartID": "e0b25553249113c368272eb9b9bcd9642579524a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -21499,9 +19099,7 @@ }, { "chartID": "58ff34fbabef1071dc3bcabcacf2de51893d837c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "6", @@ -21514,9 +19112,7 @@ }, { "chartID": "2b7ffd3d4b64c86de3da49de8b0b5e05e6275072", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -21529,9 +19125,7 @@ }, { "chartID": "dbab2848a01079715ae6c2ff8864ca7f40957629", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -21544,9 +19138,7 @@ }, { "chartID": "e9a1d3534a4e84e86c119ccec7bb7cc7f7f5fdd9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -21562,9 +19154,7 @@ }, { "chartID": "7a257cd605e4f663a4a843188b737cbaf5f8ee6b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -21580,9 +19170,7 @@ }, { "chartID": "30ad1a8a93dae360e939219b16e9ddf5118377a0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -21598,9 +19186,7 @@ }, { "chartID": "fb311d1238db99f0e2febf7037cb952a2594b628", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -21616,9 +19202,7 @@ }, { "chartID": "097fe22f9cda3ecfc16c3e19da9f6a2fd3675230", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -21634,9 +19218,7 @@ }, { "chartID": "f3b13f26015395835ed3e8804f2a554f6cf933c9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -21652,9 +19234,7 @@ }, { "chartID": "3732fe06c4de733e9dc02de6453521b8c12f3e30", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -21670,9 +19250,7 @@ }, { "chartID": "9cdade70522b426a51a9f827fb4b2ca5982ea0b2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -21688,9 +19266,7 @@ }, { "chartID": "51a3b6b47e60ec205c5a6c90e757831d5a6a3577", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -21706,9 +19282,7 @@ }, { "chartID": "da65dc2d461176e63dc53f4f17d7192116a864b4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -21724,9 +19298,7 @@ }, { "chartID": "6d042250e36131a75ab79a15cf9973469f38c886", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -21742,9 +19314,7 @@ }, { "chartID": "08c4e24578adede115c4fe3b0e88344962ea65e3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -21760,9 +19330,7 @@ }, { "chartID": "22fb7c555419cc5d089b3705d967dde801634f8f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -21778,9 +19346,7 @@ }, { "chartID": "f2e46d26b18ead73329a5ffe43dbf3a1e14edaa3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -21796,9 +19362,7 @@ }, { "chartID": "ff71bc0095dcd8fc61fa388d17d091e0c262760f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "12+", @@ -21814,9 +19378,7 @@ }, { "chartID": "6b9fc2695f6e149dae7c4a461d7659e61734f8ea", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -21832,9 +19394,7 @@ }, { "chartID": "81eab467b2982379eb52a65eae2541d7113b9ff4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -21850,9 +19410,7 @@ }, { "chartID": "df66a8767cbb3fe16b5c97ea64c0a89a39750a05", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -21868,9 +19426,7 @@ }, { "chartID": "d1fcda2b446a9df9f976c90d3a01d0f1ee005395", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -21886,9 +19442,7 @@ }, { "chartID": "7037333ce7464db14e7c2a9466a88aba9142734e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -21904,9 +19458,7 @@ }, { "chartID": "199afb8c3386b0f3ca204444e65e4d566465cc65", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -21922,9 +19474,7 @@ }, { "chartID": "eea6d57f0c1039e3260dd64c3ef1b500f9d83a13", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -21940,9 +19490,7 @@ }, { "chartID": "57ecb91896375024c47bf8e3988f02205972b863", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -21958,9 +19506,7 @@ }, { "chartID": "00461a772fc3218d6964465ad72a5cd3ec9e1401", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -21976,9 +19522,7 @@ }, { "chartID": "9c752a22a05d80b69cfa98abfa8dca276dcb815c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -21994,9 +19538,7 @@ }, { "chartID": "26df26b9347c43ff9ff1670bdf39f58e653a9d69", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -22012,9 +19554,7 @@ }, { "chartID": "e9c44385d79cc0b85be80c54825664217bd82bd0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -22030,9 +19570,7 @@ }, { "chartID": "f76c2fbd66e37a43a60799cfc67e9a6e5c2fb4db", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -22048,9 +19586,7 @@ }, { "chartID": "5846153ab1ecd9d7affb05a15af48a4f493d58bb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -22066,9 +19602,7 @@ }, { "chartID": "7c7fbaed86913b8c00c448a63102932c6a9d7d3a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -22084,9 +19618,7 @@ }, { "chartID": "7e0eba29995362b650d77878b68bb60c332c2236", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -22102,9 +19634,7 @@ }, { "chartID": "6087d5d64b60d69f2bb4c9a000c87f38e02a6bad", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -22120,9 +19650,7 @@ }, { "chartID": "367f16b3d51be7391f6b1c33ba9085b6b4f0ca6d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -22138,9 +19666,7 @@ }, { "chartID": "b9d3e4e360fe252dc22191e8e8f6fe07d79fdfbe", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -22156,9 +19682,7 @@ }, { "chartID": "c741f149a59a6dd20ec3f23c58b41a9b57623a29", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -22174,9 +19698,7 @@ }, { "chartID": "a002228edba43f807feebca7293c8f2cce6d8bd0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8+", @@ -22192,9 +19714,7 @@ }, { "chartID": "04b56543edc6395f77ea7b2493d22856b5c4ffe4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -22210,9 +19730,7 @@ }, { "chartID": "fc7066c3a0d1124e1c980400b981c3fc3085e5de", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -22228,9 +19746,7 @@ }, { "chartID": "335a83fdb2214e10bc04433903388bbd4137a510", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -22246,9 +19762,7 @@ }, { "chartID": "e43b08be2f728bba94d1f7efaf1afec519f8ea12", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8+", @@ -22264,9 +19778,7 @@ }, { "chartID": "8499d7674ca6d9807fdab9ce648bcded7aa3582b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -22282,9 +19794,7 @@ }, { "chartID": "27a09317052c606a3a18405e76612f8d62326c80", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -22300,9 +19810,7 @@ }, { "chartID": "bed39afdf30394a476b9fe7e5a631fea8938ff50", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -22318,9 +19826,7 @@ }, { "chartID": "8a16a90b5eff47413389e98c5bfe461f55674ae9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -22336,9 +19842,7 @@ }, { "chartID": "3f316ac6375ce2527e952f540de8babba5d72d03", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -22354,9 +19858,7 @@ }, { "chartID": "37d5f4ec6553ee63e7692849377f2e6c656dfa90", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -22372,9 +19874,7 @@ }, { "chartID": "7e92338aa83f3d97c09ef2ceb74c7c5266c64cbe", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -22390,9 +19890,7 @@ }, { "chartID": "fbd2bc927bd8daaa838da3f1218d43b9c837ef8a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -22408,9 +19906,7 @@ }, { "chartID": "d578de77bc88270f3060f12d8ca5b8efe8332861", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -22426,9 +19922,7 @@ }, { "chartID": "0237d738475ec38d339060eacf578c44067cca11", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -22444,9 +19938,7 @@ }, { "chartID": "76fe29c7366168e4ee0b63db71e1ac04fdc755ba", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -22462,9 +19954,7 @@ }, { "chartID": "5acb9252d779d9a22f7a8db94f1e8af5955e0bd7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -22480,9 +19970,7 @@ }, { "chartID": "830fb11c88f2d22a0e10b3235589c4d9d9a7939c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -22498,9 +19986,7 @@ }, { "chartID": "79b44b86b5f0552674641bb035b982a7f86f90d3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -22516,9 +20002,7 @@ }, { "chartID": "9440ca64db10f2f272fb5287b7a7bb6399a5d431", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -22534,9 +20018,7 @@ }, { "chartID": "9139eebbbfd866cfe7b0ed5fcce65208216ca791", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -22552,9 +20034,7 @@ }, { "chartID": "d90575fe4477aaad7f3646787d737cef853435f4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -22570,9 +20050,7 @@ }, { "chartID": "3d62ab5355cd7af4b0f4d6917b5238036f1e156c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -22588,9 +20066,7 @@ }, { "chartID": "15a5c41bf3575994e4a5467f540187baa7cf2ccb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -22606,9 +20082,7 @@ }, { "chartID": "cf7f9e2836d82dad04cd13394561df5bc5a898d1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -22624,9 +20098,7 @@ }, { "chartID": "1b6777c3fa8e62a68b57ffa8286b6ad8a4a4c7a3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -22642,9 +20114,7 @@ }, { "chartID": "842f04fcc1302af18c6f669958f85cede7f3f965", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "13", @@ -22660,9 +20130,7 @@ }, { "chartID": "ce8b6b159b5abd39fce40a78958052c352ccff26", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -22678,9 +20146,7 @@ }, { "chartID": "0d9a53b45964ba183c191d6e78fce95ff187069f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -22696,9 +20162,7 @@ }, { "chartID": "66281de4b528246b94b905c23aa9c61ff1eceabf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -22714,9 +20178,7 @@ }, { "chartID": "60180866e1f3dc739bc8fe6aea13aa058de4d140", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -22732,9 +20194,7 @@ }, { "chartID": "4f205ef03de26e1d9df139d9ee8db28c9255049a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -22750,9 +20210,7 @@ }, { "chartID": "5c8538bb4b4dccc16023826080760af7f3c492cb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "6", @@ -22768,9 +20226,7 @@ }, { "chartID": "de5c4a343f4e0ccd52e98ea558443df3d3b1f857", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -22786,9 +20242,7 @@ }, { "chartID": "a3dac2e171e0069c803f1a9b4b04c8830ce66f38", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -22804,9 +20258,7 @@ }, { "chartID": "f9764faf3f50d5e7e2b8bed9adb65bda1d11a529", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -22822,9 +20274,7 @@ }, { "chartID": "cc8d36a84a218a51e755300325fe97b83d63decc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -22840,9 +20290,7 @@ }, { "chartID": "ba889989bd2695b9ef84b9f396444b479e3c6b47", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -22858,9 +20306,7 @@ }, { "chartID": "c4582107d86d7cfc68383017c275ea8a07782a91", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -22876,9 +20322,7 @@ }, { "chartID": "dca7abd76671bb2854b83a64c6524f591f622532", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -22894,9 +20338,7 @@ }, { "chartID": "70222fc2012d54b3586439645f02d9a3ce3a30bc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -22912,9 +20354,7 @@ }, { "chartID": "cfc47ad04a00ebd23614e98b755fc96f0a38507a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "2", @@ -22930,9 +20370,7 @@ }, { "chartID": "a00b805892d5272a1845fff8603c8d508c7638d7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -22948,9 +20386,7 @@ }, { "chartID": "8bf158314d62bd56856b9d129cca7921d50e45aa", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -22966,9 +20402,7 @@ }, { "chartID": "aad8548ec0839d644f6449f5483323dcf152cfd6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -22984,9 +20418,7 @@ }, { "chartID": "6962df817d97096273e261a8c875ef89e7ebabbf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -23002,9 +20434,7 @@ }, { "chartID": "5912162c326c81e7748a4816d3c93f9908315c39", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -23020,9 +20450,7 @@ }, { "chartID": "1d25ae9a0dc5ee4b795a38e17aabc25787f8c827", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -23038,9 +20466,7 @@ }, { "chartID": "3e4645e64184fea48405e882770aa34d5ea48936", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -23056,9 +20482,7 @@ }, { "chartID": "7f63cf50a27180741fa8a00e4a2a13052adaf3c1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -23074,9 +20498,7 @@ }, { "chartID": "4baf75f4aefd255a7d2df6c829d7d3cfeeb063b6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -23092,9 +20514,7 @@ }, { "chartID": "27ff0a8eb960076cfe9c9cdeca16638627ddddd4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -23110,9 +20530,7 @@ }, { "chartID": "24fc93aa064cd0d259d1f1cd08aed0ad0b2bbd5b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -23128,9 +20546,7 @@ }, { "chartID": "f283f36042eaaad0dcfef6374f209792281c63a2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -23146,9 +20562,7 @@ }, { "chartID": "3018f986626b6aa4a051940386775bf527266b9c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -23164,9 +20578,7 @@ }, { "chartID": "2d7bea24694db3eebc0b498cfd3580818c5e6f5f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -23182,9 +20594,7 @@ }, { "chartID": "88bf5aa14877a029de1edd6c3eeb8fe5c2987ce5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -23200,9 +20610,7 @@ }, { "chartID": "8542721fbd3043cbffeebf87678eb79b72cc6f09", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -23218,9 +20626,7 @@ }, { "chartID": "c01a76aaf0cb0951568b4fe814f3454e8c11514c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -23236,9 +20642,7 @@ }, { "chartID": "62d258c35d168978288f021eb1b87ebcd126afdc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -23254,9 +20658,7 @@ }, { "chartID": "0d3e78e4696ba0a9f0bbac6732929cf82bcbbc46", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -23272,9 +20674,7 @@ }, { "chartID": "9eb5c59a709b2502894752cfc3a269a03544a3d9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "7", @@ -23290,9 +20690,7 @@ }, { "chartID": "e74a591ad5194b0db10d6b4b602ebf728c85784e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -23308,9 +20706,7 @@ }, { "chartID": "a6119ae21fe3d079dd4c983aaacbd1519874aef3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -23326,9 +20722,7 @@ }, { "chartID": "6aea186c3f82d07365e082fe1ee2ed5c088366be", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -23344,9 +20738,7 @@ }, { "chartID": "0a412e63941782ffbcd507bea8fff0ac9047f59e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -23362,9 +20754,7 @@ }, { "chartID": "68453b2d42416c10a2a12aefe136f6c19832d137", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -23380,9 +20770,7 @@ }, { "chartID": "697bba2d618277269eff88db3ce2054d34d0322a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -23398,9 +20786,7 @@ }, { "chartID": "a9a9e5bc61525f5e091c74e3596dc67d19410248", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -23416,9 +20802,7 @@ }, { "chartID": "ede49987bbb54926fd5d247d92a5ffbc4d7320d2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -23434,9 +20818,7 @@ }, { "chartID": "bd0f5b537d9ab4db3e428e9f590b28e6ce9f4b70", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -23452,9 +20834,7 @@ }, { "chartID": "3d094c80799381e26f5efc3ba797540d6ceba2fd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -23470,9 +20850,7 @@ }, { "chartID": "6ceef589d3f2a2c92e396fd3963dfc15f50502e8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -23488,9 +20866,7 @@ }, { "chartID": "39858155c20121192aa26bfd98d2a60b6ab2c3ed", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -23506,9 +20882,7 @@ }, { "chartID": "309c0f6440e0214060eec9aa2904cf5114c55fc4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -23524,9 +20898,7 @@ }, { "chartID": "54420b5915bf124c68c9489aa4793899436d64e3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -23542,9 +20914,7 @@ }, { "chartID": "17cbbc3113712a73d47acb0cf89bd2e65574e95c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8+", @@ -23560,9 +20930,7 @@ }, { "chartID": "a4b759ee592c9d249c5c6a1023377cc131b0b028", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -23578,9 +20946,7 @@ }, { "chartID": "e95988dc574000474345cd9d1afe5d1c6bb32f2c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -23596,9 +20962,7 @@ }, { "chartID": "63537334d9331226eb44029673b370eb6606d7f3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -23614,9 +20978,7 @@ }, { "chartID": "441d23d8bb83976ae817902e7483d6a511254d3d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -23632,9 +20994,7 @@ }, { "chartID": "6ad72101676a2545caf4df735a3dd9b64c4b0a2e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "2", @@ -23650,9 +21010,7 @@ }, { "chartID": "3b548d3ff183a063d67e0735358dd0de59c335e6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -23668,9 +21026,7 @@ }, { "chartID": "8ae1ae7617c61cfa1fc145881e9fec3fd6ff2346", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -23686,9 +21042,7 @@ }, { "chartID": "9d0706a73ecd27b1cf9091468b7e7b6c7b2142c6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -23704,9 +21058,7 @@ }, { "chartID": "c07533e68928b710e8fd5ed92daddfc3d8e8c5af", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -23722,9 +21074,7 @@ }, { "chartID": "6eadf79eb07e1eb16e9aaf0edd15dd35a60aacaa", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -23740,9 +21090,7 @@ }, { "chartID": "f0c3e5571fc45e0a07bd9d93eecf93a8c2e4b1c8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -23758,9 +21106,7 @@ }, { "chartID": "b7ae69c92ac51e16a9da21e47500827db8295d54", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -23776,9 +21122,7 @@ }, { "chartID": "dffe87e5d020e1723be0080849ef5684d50982d3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -23794,9 +21138,7 @@ }, { "chartID": "7eb9c46efd1490f4a92912aff0302f981e5d9ce8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -23812,9 +21154,7 @@ }, { "chartID": "9d109b4a4e84d930a0b5df0a78806bec966d3f1f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -23830,9 +21170,7 @@ }, { "chartID": "c9c08c71ff5a93777362b95d8b83e9741e431d75", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "10", @@ -23848,9 +21186,7 @@ }, { "chartID": "22c86a0f24e445ec3a2c5a91c8a403a73c1cd011", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "7", @@ -23866,9 +21202,7 @@ }, { "chartID": "f6a8e343768893ca6128515faad11402a937b568", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "13", @@ -23884,9 +21218,7 @@ }, { "chartID": "85a1f6d9502389dd8523cef669bcb04c05071d06", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14+", @@ -23902,9 +21234,7 @@ }, { "chartID": "4bb6508985c4928b03ffa14eadb5f3a30c4425f5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -23920,9 +21250,7 @@ }, { "chartID": "481c612ff5445bc9bc94043320665ec1593a232a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -23938,9 +21266,7 @@ }, { "chartID": "969f3792015d2af459ec987d104c336711f03f6a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -23956,9 +21282,7 @@ }, { "chartID": "c59c0ec2dd29960427dfa1e1475b579fc8b55e42", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -23974,9 +21298,7 @@ }, { "chartID": "72e324606c7354cf5f9f1b155ff453d71aedaff4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -23992,9 +21314,7 @@ }, { "chartID": "501d0852717f5e3fd08a63159fcfdfc06725ac13", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -24010,9 +21330,7 @@ }, { "chartID": "0ac68c273c655f1e268c23577922660e493d062f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -24028,9 +21346,7 @@ }, { "chartID": "29bf9357cdc333d1b8e53b51b21c5b8f797bd840", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "11", @@ -24046,9 +21362,7 @@ }, { "chartID": "ee4b76cdb8985d36a4a9bec6dec93c159278a369", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -24064,9 +21378,7 @@ }, { "chartID": "fd811d5477940dc40abe88dd84aa9aace0616678", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -24082,9 +21394,7 @@ }, { "chartID": "f5d7e923ac576ce4e57e1107028d29cf635912f7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -24100,9 +21410,7 @@ }, { "chartID": "ac6bab3ff2863a6d92253807177b435e8668d072", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -24118,9 +21426,7 @@ }, { "chartID": "7905828bbd09dcd5a9b026e9f5bd4a083182db85", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8+", @@ -24136,9 +21442,7 @@ }, { "chartID": "85921a1de11cff2efa40dd523baffe3910e5b250", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -24154,9 +21458,7 @@ }, { "chartID": "98eeb5e88616a7a5031da35a632a3d1a2f9a4d9b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -24172,9 +21474,7 @@ }, { "chartID": "44ff0aefbe09be4deb5644fac9d03f9eed04056e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -24190,9 +21490,7 @@ }, { "chartID": "677caeb81638528a2d8cb91db87b9105d9282ed8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -24208,9 +21506,7 @@ }, { "chartID": "c2db5d56cadf895347502ac1c51b91b3133895af", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -24226,9 +21522,7 @@ }, { "chartID": "9b8ef550dd52fab8e15c7c9fec574848763895c3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -24244,9 +21538,7 @@ }, { "chartID": "699a822438fc9f3a11ab4d044850acd914f5ef8a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -24262,9 +21554,7 @@ }, { "chartID": "180e8e63d61ccfe74480a6dff00ecfcf123c113c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8+", @@ -24280,9 +21570,7 @@ }, { "chartID": "377d6d4c0933042952aed9be7751f9834b5b4855", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -24298,9 +21586,7 @@ }, { "chartID": "39526e6446fb76dbe152724d1b0fb96386f9d4d5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -24316,9 +21602,7 @@ }, { "chartID": "2e6ffc5571b1a3281a7b80bbee6431f5641d90c7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -24334,9 +21618,7 @@ }, { "chartID": "e6bf3fc333958a8b5ad485732c8708c75a7d10fe", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -24352,9 +21634,7 @@ }, { "chartID": "a2ecd653dee394310c3d779d91009438ef2003b8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -24370,9 +21650,7 @@ }, { "chartID": "b72ac4651dd1c2e1231e4db0ae65bd5bc891f75a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -24388,9 +21666,7 @@ }, { "chartID": "72f76a1fd40ea289ade3767ab5fe5cbae4a4710f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -24406,9 +21682,7 @@ }, { "chartID": "b6c38b8b2a56e6497243bc0c2146f9fc18f0ce7b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "14", @@ -24424,9 +21698,7 @@ }, { "chartID": "93a9da4adeed7bf4b7d30ea7a551878216800642", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8+", @@ -24442,9 +21714,7 @@ }, { "chartID": "825283690238b8c089aa38ae7145433c1ef271ea", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -24460,9 +21730,7 @@ }, { "chartID": "7b21c5bfc157f31d880fb6c60747628f704765a8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -24478,9 +21746,7 @@ }, { "chartID": "d4f2d5032a156b761c722eb076cfd319d5716090", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -24496,9 +21762,7 @@ }, { "chartID": "3da185fd356b3e4e751b9cdc34bdc4f72546fd06", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "14", @@ -24514,9 +21778,7 @@ }, { "chartID": "2bedde4b58198ec4b591c3be8e617ab82596152e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -24532,9 +21794,7 @@ }, { "chartID": "cb4017686f6f1d8658790208cfa2115201f8a49f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -24550,9 +21810,7 @@ }, { "chartID": "5e1d8c5424c8146fd6210a0397fae8e465cc0dcf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -24568,9 +21826,7 @@ }, { "chartID": "20fb79b329025c911a032db2c5bc8b4f6edfbd47", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -24586,9 +21842,7 @@ }, { "chartID": "ecae420a15d44203ed3fbfd8dc895a463b15db6d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -24604,9 +21858,7 @@ }, { "chartID": "3a3eb2bc2f751589efc833584ae2338a44e90f2c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -24622,9 +21874,7 @@ }, { "chartID": "4e1b19687b58280e706a4759514d49d0ddfb3af1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -24640,9 +21890,7 @@ }, { "chartID": "52abc325f8778d053e7ac77b899e60d61ff390bd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -24658,9 +21906,7 @@ }, { "chartID": "d05481b394809b394505543f055640270af96f5d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -24676,9 +21922,7 @@ }, { "chartID": "55b9ee468081c118da3c8c2b3f13c649490fc622", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -24694,9 +21938,7 @@ }, { "chartID": "706cc261fc7a45c62172750d6ff977e3a30324ad", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -24712,9 +21954,7 @@ }, { "chartID": "ac8c068d2fe4f1feaf39fd0b32a74ef08ff9b3fc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -24730,9 +21970,7 @@ }, { "chartID": "05c10590e67a553438be53eb44a801331b2ffa41", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -24748,9 +21986,7 @@ }, { "chartID": "23952189f65da4ea4193176e27ac81b89a4e05a1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -24766,9 +22002,7 @@ }, { "chartID": "29d243ef0d251878f7d6ea9305c909ada4e54bd7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -24784,9 +22018,7 @@ }, { "chartID": "00f92e758b557c9400806d1adcacd4a6b651f31c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -24802,9 +22034,7 @@ }, { "chartID": "5be5113227c5cccbc4c81384fd87f643eb3c2097", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -24820,9 +22050,7 @@ }, { "chartID": "bfab2ccec03ec87b9e8726d3a9d21dad47f3bfb7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -24838,9 +22066,7 @@ }, { "chartID": "9d6025d1e2463c9337680ee23bd403c3bbba93c2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -24856,9 +22082,7 @@ }, { "chartID": "15df85414507ebbb8acaf7025270a1674856a413", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -24874,9 +22098,7 @@ }, { "chartID": "4d6a0d08ca7cb8b0b6004bd1fce8176677123145", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -24892,9 +22114,7 @@ }, { "chartID": "dd58ac50237ae128d63da1bb02aacf4a99494229", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -24910,9 +22130,7 @@ }, { "chartID": "228e7c5bfda3549555cdab5afe9ee280b15d9e92", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -24928,9 +22146,7 @@ }, { "chartID": "2e6ae5ba61a10fc4d30e299817dc8f54b692c85d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -24946,9 +22162,7 @@ }, { "chartID": "2d686b975ddfdcf91fd3e1edc02704cba16549c5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "14", @@ -24964,9 +22178,7 @@ }, { "chartID": "73a23e50ad330674aadc9ad5899cadd65ecd8b93", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -24982,9 +22194,7 @@ }, { "chartID": "615abf6384f223f8583f831d722577dd905e79b2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -25000,9 +22210,7 @@ }, { "chartID": "d378f1837131ac2c0da5ea62aefdc6b74c079cec", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -25018,9 +22226,7 @@ }, { "chartID": "dca41700bc677297c70e11df45a3612798a4f9c8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -25036,9 +22242,7 @@ }, { "chartID": "512d0a3092ac2101fdc5b83846f6a07c590c72db", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -25054,9 +22258,7 @@ }, { "chartID": "74e13b825dde1bc46163f0fdd778830db965e4ec", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -25072,9 +22274,7 @@ }, { "chartID": "37dd620f623d69d5fd3c1e9a91f6a3f2dad31ea0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -25090,9 +22290,7 @@ }, { "chartID": "d795ee894b35240fdce3c3c09faf38c789600815", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -25108,9 +22306,7 @@ }, { "chartID": "8353eefa969179796704e48416613a28d0474480", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -25126,9 +22322,7 @@ }, { "chartID": "fb8baa4790b640c56e8c2decbe2b3e1fc939f569", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -25144,9 +22338,7 @@ }, { "chartID": "321d3edef292c40286b8f35c80dc118f6b8f454b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -25162,9 +22354,7 @@ }, { "chartID": "e5c705eb9bbdcbfde6b81fe44249dec676332cd1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -25180,9 +22370,7 @@ }, { "chartID": "64fa06cde0dbdf166af8ed05705bfb59a53fcd61", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -25198,9 +22386,7 @@ }, { "chartID": "bdec2e8179fc538d7a7d8b725e0471288e46518b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -25216,9 +22402,7 @@ }, { "chartID": "0fa62d2230608211deaea0105d3837a80508a80f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -25234,9 +22418,7 @@ }, { "chartID": "6744cc460ab2a1037d749c6ecf8e9520df4a0763", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -25252,9 +22434,7 @@ }, { "chartID": "1ddd9f5724eeeb0073a71aa534e910a3219f5d9c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -25270,9 +22450,7 @@ }, { "chartID": "4fc951ca0c87ff7ec4ef9113ea141dcb33eb7fa5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -25288,9 +22466,7 @@ }, { "chartID": "ff3d8a6d3f35c3dc7f47d8bf95c335abda04b71c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "13", @@ -25306,9 +22482,7 @@ }, { "chartID": "2ef7de730f65a6b37a4c52b3c5e2c07a982daefd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -25324,9 +22498,7 @@ }, { "chartID": "c237ce0f5c55be07ea3e5cb33f06af39a445a4f7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -25342,9 +22514,7 @@ }, { "chartID": "9e00f0f27f4984bdb4b78fd94691315be608ac68", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -25360,9 +22530,7 @@ }, { "chartID": "3201059e23a30ce0f52158d03b97369f17944b1a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -25378,9 +22546,7 @@ }, { "chartID": "5258fa81c2473973a0c8abc55d56e5a161979ac3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -25396,9 +22562,7 @@ }, { "chartID": "b76f2b2cbb5ed2b847eb8efd26b1609a6653ff78", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8+", @@ -25414,9 +22578,7 @@ }, { "chartID": "fefbf09a9546144584248c4081b750e6b9fd8504", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -25432,9 +22594,7 @@ }, { "chartID": "d177e19213119af4797d1124a450eacf422b57b2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -25450,9 +22610,7 @@ }, { "chartID": "8e9b2e9ddb51174b105ad16394fca476148c934e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -25468,9 +22626,7 @@ }, { "chartID": "cced6c44b06f20da25c9567678f58064c9be28cf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -25486,9 +22642,7 @@ }, { "chartID": "8b7d5bb138ec82e31439c0a1528cb3be93a67690", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -25504,9 +22658,7 @@ }, { "chartID": "3422d3851228a51a92d8ac2857ab3b587f255ac0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -25522,9 +22674,7 @@ }, { "chartID": "43e849faccdaeba1c0e16d9245fa21f68fc7e5e2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -25540,9 +22690,7 @@ }, { "chartID": "40513826968c71df95b7b84461990110e38eacb3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -25558,9 +22706,7 @@ }, { "chartID": "fd2f6dc46ca616ed9d0b4a53113dfcb06941a861", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "7", @@ -25576,9 +22722,7 @@ }, { "chartID": "0379ab1fbbc79ede2ec5b208109409d313e8efd2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -25594,9 +22738,7 @@ }, { "chartID": "083fd53ae299e99304fd5172bce36e7586287d4a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -25612,9 +22754,7 @@ }, { "chartID": "824c2d8c1bc057e2b8be5e2da6fea7b3a6d6ecfe", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -25630,9 +22770,7 @@ }, { "chartID": "8b29666d9b1ae2aed8b3b6cbe3a0c4b3ca5cba27", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -25648,9 +22786,7 @@ }, { "chartID": "f3876a1176d7f6d11c482cee6b32457727447cc1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "13", @@ -25666,9 +22802,7 @@ }, { "chartID": "83e806bf2dc38f6e250dead59a5a1678163a3b3c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -25684,9 +22818,7 @@ }, { "chartID": "4ea8d37d5cb4f42d586ccb7751182678f1b9c2e3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9+", @@ -25702,9 +22834,7 @@ }, { "chartID": "198aa739ef6891e1f7300b611f3038796797c4f2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "7+", @@ -25720,9 +22850,7 @@ }, { "chartID": "aa2fd4e094fd4eac90791055acb6bf8ca36c2ac5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "13", @@ -25738,9 +22866,7 @@ }, { "chartID": "9a69534d8597d1c72acef40efbd13a3f45ae4ee2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14+", @@ -25756,9 +22882,7 @@ }, { "chartID": "6ac80968233a99fbcf0108c72d73ed16232fcae8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "14", @@ -25774,9 +22898,7 @@ }, { "chartID": "77bd4432d7b4523fab4b5431180861c64e954b21", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -25792,9 +22914,7 @@ }, { "chartID": "d3cb1356431945d111f2a1b5d529d288d7a0bd67", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -25810,9 +22930,7 @@ }, { "chartID": "41cc53471ddcd08f94e5492c584b27ce4e34f764", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -25828,9 +22946,7 @@ }, { "chartID": "e4af7506009bb48528d9590cc0c39152b8178e50", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -25846,9 +22962,7 @@ }, { "chartID": "b648ca33a8e9df0b9bfe12370d7377e0c457ed3e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -25864,9 +22978,7 @@ }, { "chartID": "cf8698ae5974caf033b67a159877709599c8b20e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -25882,9 +22994,7 @@ }, { "chartID": "6bd28b4d73052b008b8f13b602ab74083943d74d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -25900,9 +23010,7 @@ }, { "chartID": "b550b7aeedf785659a9cd9275caca6153c5f23a9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -25918,9 +23026,7 @@ }, { "chartID": "9d5a9eb8d2ec9aea0509beb9853bc7fdaf0a19ad", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -25936,9 +23042,7 @@ }, { "chartID": "e5130f40de036c74470cf51e9ad5c003c39b46c1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -25954,9 +23058,7 @@ }, { "chartID": "6d734d10423f88291d2568d0100717ef0b33505e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -25972,9 +23074,7 @@ }, { "chartID": "a58eb3f5c6bc06b07bd0451c1d623098f716fd78", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -25990,9 +23090,7 @@ }, { "chartID": "29a89b7c59086ca5b52abe07ba7a5c74242d8b18", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -26008,9 +23106,7 @@ }, { "chartID": "f0adb8b62e451dfa228e6036e89a77ec7f3e566a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -26026,9 +23122,7 @@ }, { "chartID": "e0d465139327f6beeb3bfdad7b9d8bac2dcf58d8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -26044,9 +23138,7 @@ }, { "chartID": "258bb7a28ea4d9ea39f793e31636607997c96168", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "11+", @@ -26062,9 +23154,7 @@ }, { "chartID": "15634e312fcb57beb069dc98897f1af66005564d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -26080,9 +23170,7 @@ }, { "chartID": "7db21dec9fb92081447e1f46bc99fdc8e5f2988e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -26098,9 +23186,7 @@ }, { "chartID": "be653845afcc8a06702d1766f784c4509cff9429", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -26116,9 +23202,7 @@ }, { "chartID": "e14660145cd6031a42b1f070af44168ac0f5866a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -26134,9 +23218,7 @@ }, { "chartID": "a48f4ca57f4d109df894ed6d912e8e7d63320f4e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -26152,9 +23234,7 @@ }, { "chartID": "693d75604d2e563465ebc01fc8b90c49d836c3b5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -26170,9 +23250,7 @@ }, { "chartID": "2f5101784a683562972e792ec2fd8591f1375838", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -26188,9 +23266,7 @@ }, { "chartID": "9321c8c73e3f495a2fcbea27e29ac7ca75adaf4e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -26206,9 +23282,7 @@ }, { "chartID": "d8821747baaeee4cf884dd39bae30883263262a3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -26224,9 +23298,7 @@ }, { "chartID": "acc08a5a02599a5a910aed211e0d874acf25762b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -26242,9 +23314,7 @@ }, { "chartID": "c7aaf6e48dc6aa5df3368d1475f9e602d0ec4fb6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -26260,9 +23330,7 @@ }, { "chartID": "4037423850e111b28df720bc4273b31f8f311f96", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -26278,9 +23346,7 @@ }, { "chartID": "2813c9e19c456201da538aaf02a1fc4a2ed08f27", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -26296,9 +23362,7 @@ }, { "chartID": "423802433c384d0ab7bd40d48a64e1df7b6c6b33", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -26314,9 +23378,7 @@ }, { "chartID": "970fd86faf74bf4d1c05838e090f4319ffd66ba6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -26332,9 +23394,7 @@ }, { "chartID": "6e1fbf47d0edf12dc064449ac5f6158ee28cf108", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -26350,9 +23410,7 @@ }, { "chartID": "94de55a0814d3fd1a8dda8ec930bbd1169795dd9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -26368,9 +23426,7 @@ }, { "chartID": "c612a2d2b8abe884bd3dbcaff206a0f89a710e1a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -26386,9 +23442,7 @@ }, { "chartID": "a307a742f29c2a685edf3f39e4cadcb8da39cc15", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -26404,9 +23458,7 @@ }, { "chartID": "792a721df053ec363dd7617053bbf9bbfccd0a1a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "11+", @@ -26422,9 +23474,7 @@ }, { "chartID": "7ed096f9ad48cc81b56e0f625886a58228d3496b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "12+", @@ -26440,9 +23490,7 @@ }, { "chartID": "8b455dbadd46353bc6cadf7f9b654898a03eba66", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -26458,9 +23506,7 @@ }, { "chartID": "483878b41a30970a2f0b77b91813173a8cc3420b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -26476,9 +23522,7 @@ }, { "chartID": "e69ea1a6b60f4b5bced2966947aed4f9bdf6b2b9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -26494,9 +23538,7 @@ }, { "chartID": "6f902f8c6a2f145c069f4c674052620b21f03c1b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -26512,9 +23554,7 @@ }, { "chartID": "c76fb8ffff372d9f591274dcaede575f4b76650a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -26530,9 +23570,7 @@ }, { "chartID": "7a60181d796446435bb6863fd46f9b2915fd3937", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -26548,9 +23586,7 @@ }, { "chartID": "a1a8cf00354ea29fe8d37d9ded7f0775d498a3de", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -26566,9 +23602,7 @@ }, { "chartID": "d77e46a59281647267cf9bc83415d4616502dd3d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -26584,9 +23618,7 @@ }, { "chartID": "00d3ee3cdb329aee3d34bddc6798a3598c2c8b3a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -26602,9 +23634,7 @@ }, { "chartID": "f0fa0c41a057813ebf40c7634235f81dc4ff454d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -26620,9 +23650,7 @@ }, { "chartID": "efb96bab771b2216d1266ea99c738f2fca2d97b9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -26638,9 +23666,7 @@ }, { "chartID": "c8b852e7944410c87ea2ebc84d4cc1a96fc0979a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -26656,9 +23682,7 @@ }, { "chartID": "12d4effc9293cc0aa66d607dd5539109552e750a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -26674,9 +23698,7 @@ }, { "chartID": "353b7f68963df84401b9426cb64065431d6dc1a0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -26692,9 +23714,7 @@ }, { "chartID": "64fb593935cc1e1a7a5400bc6b61c497bf00012f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9", @@ -26710,9 +23730,7 @@ }, { "chartID": "70ebcf036a750c020292df29a75355c63ba2c663", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "10+", @@ -26728,9 +23746,7 @@ }, { "chartID": "1e497ae74e230b414b83f8ee85f84ac0e00c482f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -26746,9 +23762,7 @@ }, { "chartID": "1694ca4f4045de2f3b2cb14c6ce470dcd0eb666d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -26764,9 +23778,7 @@ }, { "chartID": "12480b82a5ead4edf9a5e3e6817acf5040cc0da4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -26782,9 +23794,7 @@ }, { "chartID": "dd38ff1119a6357fe67fa8d0d7903ef487e2b374", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -26800,9 +23810,7 @@ }, { "chartID": "7e5cfba28a1ca8d26654b023373b76b1d302fc54", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -26818,9 +23826,7 @@ }, { "chartID": "0ff224614189ef0bef90761807fda4e5b98c5e5b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -26836,9 +23842,7 @@ }, { "chartID": "953c2cc6b1d4a0642be0de2ed409c3cb529a4fcd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -26854,9 +23858,7 @@ }, { "chartID": "c44359719c804679f34c9dc3e3c6200d68fdf28e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -26872,9 +23874,7 @@ }, { "chartID": "aa36f06a6cec73bc165b126acddb17db0a0e4fd9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -26890,9 +23890,7 @@ }, { "chartID": "952efc3ce8ca2fe1c64495a8cccff4a75f48122f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -26908,9 +23906,7 @@ }, { "chartID": "c2ad197e28938da64120983b1b2924754613471b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -26926,9 +23922,7 @@ }, { "chartID": "3735a5c597821505cd7671149b8ae532e7de5490", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -26944,9 +23938,7 @@ }, { "chartID": "93d12df67e9c03a406f8eb7e2c64c1824b238504", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -26962,9 +23954,7 @@ }, { "chartID": "a9a0505f5bb8468be41ab1f04792dd05cb7ff705", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -26980,9 +23970,7 @@ }, { "chartID": "ca766010050e9eed5b00d4f092ef58fc5aaae060", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -26998,9 +23986,7 @@ }, { "chartID": "290b95a0966c9bb96deab14ce19dd69540c370e8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -27016,9 +24002,7 @@ }, { "chartID": "542941292be1ead4b7274b9cf52d151cde0395ec", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -27034,9 +24018,7 @@ }, { "chartID": "13d463acbd9cedf6674305d9d27b48cd8124b1f8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -27052,9 +24034,7 @@ }, { "chartID": "f73c13a62087aa452df49c019e3dc4a6f2f5c7d5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -27070,9 +24050,7 @@ }, { "chartID": "f6f8f9fb997b1e0d09e4b4d28df4221fef06b41f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -27088,9 +24066,7 @@ }, { "chartID": "72c5ab4efa178b1a9c8f4458248728ad2bec6d81", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "6", @@ -27106,9 +24082,7 @@ }, { "chartID": "9df4724e1d94cb9d441e6a8d45d17f9a4c1dd563", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -27124,9 +24098,7 @@ }, { "chartID": "2f1345148d09a9a06b33f8ffa50ec6331910d06d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -27142,9 +24114,7 @@ }, { "chartID": "b81659f8df6d5925fb7d285e07aad6d3ae2ce9e6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -27160,9 +24130,7 @@ }, { "chartID": "1f91bb6c753fa6625768b5d74284858c192b60f8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -27178,9 +24146,7 @@ }, { "chartID": "2d78a706d355d3701dc76fbf8fe618e8167cdd78", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -27196,9 +24162,7 @@ }, { "chartID": "608b785b7eef69f54150a8eec6b52c0c9b156536", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -27214,9 +24178,7 @@ }, { "chartID": "db8932fd780f4da4d0f3b3762eeca76b284f1d45", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -27232,9 +24194,7 @@ }, { "chartID": "b3f78fb1f551e2186a968b74efa2c141f3d5154c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "13", @@ -27250,9 +24210,7 @@ }, { "chartID": "f42a0cc093da2b64a3e3da093a01b53f74e5d857", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -27268,9 +24226,7 @@ }, { "chartID": "8971467ede4e3f401052fec4ceb556da3106d9aa", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -27286,9 +24242,7 @@ }, { "chartID": "033e4bf4ff78aa7e5bebb8e2ef061016dd66402f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -27304,9 +24258,7 @@ }, { "chartID": "3262294217ca5cead486c47709d3697cdda75296", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -27322,9 +24274,7 @@ }, { "chartID": "d28fa90670cd7a48e56ffc46724550be02747f8a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -27340,9 +24290,7 @@ }, { "chartID": "b7dc0af1d9a8da79009b6434975f498dada36883", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -27358,9 +24306,7 @@ }, { "chartID": "941cdc90c4512f5b22120d57eed989ed4fadc679", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -27376,9 +24322,7 @@ }, { "chartID": "5f2344a1d970bb334b774e3b2d192061b1ac9bd5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -27394,9 +24338,7 @@ }, { "chartID": "faaf4e08681ac303e2918609e166c449cddeb427", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -27412,9 +24354,7 @@ }, { "chartID": "6dcb9d549b08e37ec8b21ab693eb150eb00f501c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -27430,9 +24370,7 @@ }, { "chartID": "106885651ef6cd6ddb1439085abe4d3f8863d6c3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -27448,9 +24386,7 @@ }, { "chartID": "03b198e044634521702a452c8d3a5c0bc150a6e2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -27466,9 +24402,7 @@ }, { "chartID": "5942b16f065c0c58e492060a4c876ad2ea5c45c9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -27484,9 +24418,7 @@ }, { "chartID": "7ad571a2efd597766a17195f6664f041ce1dc95e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -27502,9 +24434,7 @@ }, { "chartID": "d7e6f3a1bc4a9b3da492b5643e0279d06f649572", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -27520,9 +24450,7 @@ }, { "chartID": "b1e7dcce72077f25ac00cbce925c8a202b9abf5a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -27538,9 +24466,7 @@ }, { "chartID": "911447cb440e1e20613a737d67f14f3efdc3f8ba", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8+", @@ -27556,9 +24482,7 @@ }, { "chartID": "47db9579a756b05ac2c218ab7e8e3bce1f7cbab0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -27574,9 +24498,7 @@ }, { "chartID": "4519b219f18e470d3eaa774d81188b2a2e8ce8f3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -27592,9 +24514,7 @@ }, { "chartID": "53d8d69d752b1e39750be65b1b7d8b127ff90db5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -27610,9 +24530,7 @@ }, { "chartID": "5cf3dd4c865fb0327365f12be8169d9222b7112b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -27628,9 +24546,7 @@ }, { "chartID": "e4a4f531a785d0dd1c0613dd39b416d65212b2a7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "7+", @@ -27646,9 +24562,7 @@ }, { "chartID": "91372e194f1465b98ea8a9c1388ae71c6177b674", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12", @@ -27664,9 +24578,7 @@ }, { "chartID": "9db7fa96543c4571a1edb8073f1172c7cf45e7fb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -27682,9 +24594,7 @@ }, { "chartID": "3cb299fb787a87ffde1894c25ade2ae4d1eeb41b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -27700,9 +24610,7 @@ }, { "chartID": "7392e1d1c47d967fc4496600f39deaaff0fb5d37", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -27718,9 +24626,7 @@ }, { "chartID": "ecae66c7e52aff7d0883a3cb1e4acd0f3d2e71ce", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -27736,9 +24642,7 @@ }, { "chartID": "d163cf5317d2ff73379a2df23c1e20c02f8f7402", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -27754,9 +24658,7 @@ }, { "chartID": "81e146178bd67e7a40cffec789219a8bf573e1f6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "12+", @@ -27772,9 +24674,7 @@ }, { "chartID": "3c097f79d1442619abe01e19d0039254e2781594", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -27790,9 +24690,7 @@ }, { "chartID": "a5f1ff5deed048976f33e4ff5dba764f39383bf4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -27808,9 +24706,7 @@ }, { "chartID": "aa3cd568d88446ff5073536dfd6bb11410cbdcb6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -27826,9 +24722,7 @@ }, { "chartID": "2afcec874843052289de5bfd3585d4db32036aac", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -27844,9 +24738,7 @@ }, { "chartID": "dd1b904c0ebacfaaa1cd7125600179ac4825ae25", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -27862,9 +24754,7 @@ }, { "chartID": "87929bf05613da38360b66c74b3547c8d5d3dd78", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -27880,9 +24770,7 @@ }, { "chartID": "b08240def2ee8410f2dc768eaae3926c48521ff8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12", @@ -27898,9 +24786,7 @@ }, { "chartID": "33ae2bef73d1bb8b692f2bdcb122e8c9c4412116", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -27916,9 +24802,7 @@ }, { "chartID": "218a70213ec433b143518e90eca9eea4ff862d95", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -27934,9 +24818,7 @@ }, { "chartID": "95313fabc939210e7936c9d4988d368505daf734", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -27952,9 +24834,7 @@ }, { "chartID": "86f7534b3abf9032fc60a87e2e213b8e43047249", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -27967,9 +24847,7 @@ }, { "chartID": "19ff8bf0dd64a8a9f68fe46c864c8cd13060714e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -27982,9 +24860,7 @@ }, { "chartID": "ec83873db4c69edc1e842929accc3c8a9951de43", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -27997,9 +24873,7 @@ }, { "chartID": "aab46f9e9d8ef2593df104a7de02723745306b9e", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -28012,9 +24886,7 @@ }, { "chartID": "1ab1d1bf9a5c0fd4bdbd2eae6e8efda15acfcaaf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -28030,9 +24902,7 @@ }, { "chartID": "02e4637cad972a6a2d29496eb52452e481006173", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -28048,9 +24918,7 @@ }, { "chartID": "ace2bc35db37ef2a77fdd538dc9664a02abdc30b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -28066,9 +24934,7 @@ }, { "chartID": "3d54d5ab8fd781129bb69601d3c6f1181ac3cebc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -28084,9 +24950,7 @@ }, { "chartID": "27b7a767c48a7b81d0023e330bdca85d54856b19", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -28102,9 +24966,7 @@ }, { "chartID": "f5aebf19091222d58de83496864f32fb931ab30e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -28120,9 +24982,7 @@ }, { "chartID": "4419bc351136624fac0534db3940c035bd452ce0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -28138,9 +24998,7 @@ }, { "chartID": "bbd95971ee4dab9aae05a6a3e7308b327c308b72", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -28156,9 +25014,7 @@ }, { "chartID": "55783fe9d63193c61ca0b562685817d853491a97", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -28174,9 +25030,7 @@ }, { "chartID": "636ef57d1168790b11031c393e2cd15ec0b75d0f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -28192,9 +25046,7 @@ }, { "chartID": "693f7b8baca0d05b01549e20816bd885db461aae", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -28210,9 +25062,7 @@ }, { "chartID": "c9ce5a2967e287cafcc9165bcbcf9eb9d0cf519a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -28228,9 +25078,7 @@ }, { "chartID": "b44c558961fb019742a01fc6ba078093c50af396", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -28246,9 +25094,7 @@ }, { "chartID": "5445b5edba5ce81d81e4b79ceb40cb76d3fe0423", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -28264,9 +25110,7 @@ }, { "chartID": "c686178e11d64f817a2d04cf8ec1d752010a6854", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -28282,9 +25126,7 @@ }, { "chartID": "0d11c0b0d8de72f51701ef38619becce76af6216", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -28300,9 +25142,7 @@ }, { "chartID": "e13bb94f43482cc452c095d93e301c190ca4a1dc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -28318,9 +25158,7 @@ }, { "chartID": "1f686c870a109f80d2ef3ca900ff819c2709646b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -28336,9 +25174,7 @@ }, { "chartID": "3bb24c4a2c89539d5ec073c8d609f8e6789dc173", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -28354,9 +25190,7 @@ }, { "chartID": "433c2d503a9091ea5e468cc4e6a47a65bd3115eb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -28372,9 +25206,7 @@ }, { "chartID": "407f70adb8e8095dae10a131b5655efe322f74b3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -28390,9 +25222,7 @@ }, { "chartID": "e094403fa14c9b17709cdda96aef1bee79fd33c5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -28408,9 +25238,7 @@ }, { "chartID": "6e718a2fa31fb6940f2bc800070ecf544d08a3fb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -28426,9 +25254,7 @@ }, { "chartID": "d9d583d868417ad86ce50bc2112fc3a451fe11ce", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -28444,9 +25270,7 @@ }, { "chartID": "c624110855e39dd5e6a6199a62a1bc68003a5063", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -28462,9 +25286,7 @@ }, { "chartID": "6162ab27dd4f7fbcb53d4e38165981c28dcba465", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -28480,9 +25302,7 @@ }, { "chartID": "ad4ff6b76722a7f62a08aa8506462afd9d93b695", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "6", @@ -28498,9 +25318,7 @@ }, { "chartID": "5e47d377e472f1174aed5f1d786e3aa95ee74409", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "2", @@ -28516,9 +25334,7 @@ }, { "chartID": "d04b18704148f78806c0f62b3233267361bd217a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -28534,9 +25350,7 @@ }, { "chartID": "b26c56a36cdbd1a309869e22fe3bb0e9617b89f0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -28552,9 +25366,7 @@ }, { "chartID": "c620128b82fc4be1ac85d7e85947baba1ad65d44", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8+", @@ -28570,9 +25382,7 @@ }, { "chartID": "5e1ec591969679b5ceb2d7558168c1ed1f11c01c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -28588,9 +25398,7 @@ }, { "chartID": "34bf0af5f5521b33d978fc1a41ce60ae08fbc89b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -28606,9 +25414,7 @@ }, { "chartID": "7676bf0b780abdc031709ca45b2111b5792218cb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -28624,9 +25430,7 @@ }, { "chartID": "059bafaab68576f0a34e36a8b52f481d06e9af15", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -28642,9 +25446,7 @@ }, { "chartID": "5f72f92dc98d5d46e57dee224c95d8e0337d0df8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -28660,9 +25462,7 @@ }, { "chartID": "aab638593620db82012f94c76dbef1ba89f0772f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -28678,9 +25478,7 @@ }, { "chartID": "1aafa50d21b7709ae6037d780b614b6bc44a8939", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -28696,9 +25494,7 @@ }, { "chartID": "983031df51148195d9826a3ea495b81c4460048e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "6", @@ -28714,9 +25510,7 @@ }, { "chartID": "7e09240f1cf91c2b66491ae6b8ac9f825a340b8e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -28732,9 +25526,7 @@ }, { "chartID": "3585b03b7f6727f1b8ca3e8352ca9dcd6740da9b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9", @@ -28750,9 +25542,7 @@ }, { "chartID": "e2fdbfbf3a47eb7a51cce3baa259b140476a6207", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -28768,9 +25558,7 @@ }, { "chartID": "9cb2530fbea7ee3941ed1bc68c7409afb2d3c4ba", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -28786,9 +25574,7 @@ }, { "chartID": "7220c55a937f17ee890927d4bd358988eafb6cf2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -28804,9 +25590,7 @@ }, { "chartID": "1553f805873e975cc5f5f34c255f6a8ccd6a41ba", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -28822,9 +25606,7 @@ }, { "chartID": "85016d77cdd0d4a9c0dde861378c3327e8cadcf4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -28840,9 +25622,7 @@ }, { "chartID": "d4b2050fcf260f5b7db1184157391ab37654395c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -28858,9 +25638,7 @@ }, { "chartID": "698aa68a526e1eea5d5cb42eb24128db338a4f9c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -28876,9 +25654,7 @@ }, { "chartID": "679d856d5205a2f632a7bff4d2d20c32d20783b6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -28894,9 +25670,7 @@ }, { "chartID": "b23452ae10a1113c2e50c98464bedf53aacedccf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -28912,9 +25686,7 @@ }, { "chartID": "098105897fd7fc0a42f006f312506e4ebb26187f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -28930,9 +25702,7 @@ }, { "chartID": "5146a5f0d36569d1b3a6771d541bc3aa2a245a38", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -28948,9 +25718,7 @@ }, { "chartID": "72f669dbacfcc885fb0681ae88f34be0a3f403d1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -28966,9 +25734,7 @@ }, { "chartID": "5ec7c3ec2668d545e34ddd53e215b5c87269d68c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -28984,9 +25750,7 @@ }, { "chartID": "eadf2e63945a592e00e27f5e58ce402353df93fe", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -29002,9 +25766,7 @@ }, { "chartID": "808d3a5e24e523b2b7e0ac1693d3c2da0817b4f5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -29020,9 +25782,7 @@ }, { "chartID": "8919dbbc507a81cfc2fdbe942a1571c425bc1452", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -29038,9 +25798,7 @@ }, { "chartID": "48d7384dd8db912e0040bc493615f5ed5438d5b9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -29056,9 +25814,7 @@ }, { "chartID": "624c8ebd0d64f1948cc9b83aacf02e62ff5c7cdd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -29074,9 +25830,7 @@ }, { "chartID": "e4744fa88d567787b64bec03da6caf7a9e76ddce", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -29092,9 +25846,7 @@ }, { "chartID": "355c222927c27f6065cbbb48bfca8d0d2862db2e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -29110,9 +25862,7 @@ }, { "chartID": "fcb7008ac0832541fc9d8bcd91a2f3adacf904b5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -29128,9 +25878,7 @@ }, { "chartID": "bd8ed389128b71d2387514f2b2bdf884a47ea966", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -29146,9 +25894,7 @@ }, { "chartID": "61af0d155a427f20163593411a6ca5990fe79995", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -29164,9 +25910,7 @@ }, { "chartID": "b204913bbb5f5a5c4e4a7760d469eed3e1542974", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -29182,9 +25926,7 @@ }, { "chartID": "932434380615262af181526ee4874f2db4517e00", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -29200,9 +25942,7 @@ }, { "chartID": "57032093c7db7b6a91c2622c6cbb14f682246793", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -29218,9 +25958,7 @@ }, { "chartID": "1dd18ea4d938fc32403069f6c8915422b50c2df4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -29236,9 +25974,7 @@ }, { "chartID": "acc301a4a3b24c610ef2bd34b8851990ea2466ea", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "13", @@ -29254,9 +25990,7 @@ }, { "chartID": "f73d9f739e45b864555298f55359ac8093f903d6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -29272,9 +26006,7 @@ }, { "chartID": "f8a1f7058c28d6b5ff44e56a4d86af2a71ea9fc5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -29290,9 +26022,7 @@ }, { "chartID": "74f1e03caee3b479ca5b4eec592332f91583db6e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -29308,9 +26038,7 @@ }, { "chartID": "ebbdf631127f26986ce6bb7ee29cbc26a22cb745", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -29326,9 +26054,7 @@ }, { "chartID": "076a1d377ba9ef485adb8d3d8f01ddf543157508", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -29344,9 +26070,7 @@ }, { "chartID": "8f62e28b2cfcec7b0775ce1980ffc3bd99945740", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -29362,9 +26086,7 @@ }, { "chartID": "b03e2ef256a20569d9b21cd7ded4931047f1cf85", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -29380,9 +26102,7 @@ }, { "chartID": "637e017362cbd298e8ce1a60c6c7bcad9d27b53f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -29398,9 +26118,7 @@ }, { "chartID": "3c33d3fbe1357b5f235f0c976e5d187493c30f10", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -29416,9 +26134,7 @@ }, { "chartID": "92e03dcd51dbfb7d11fc45e2bcced91e861eea3c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -29434,9 +26150,7 @@ }, { "chartID": "5d4c292e359b0019ab1bd66918bd63d4aafd2b86", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -29452,9 +26166,7 @@ }, { "chartID": "fa89e4f2a663a096ca47f00139a94c5017714e08", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -29470,9 +26182,7 @@ }, { "chartID": "9c7c6d1aab6c8c5cf360400aaf26ac1005f5cd8a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -29488,9 +26198,7 @@ }, { "chartID": "c8a84112e223349cab8ab38fe73e7196873eaf69", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -29506,9 +26214,7 @@ }, { "chartID": "5881a9c900d76956b25bd20f3c219a16f84ce051", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -29524,9 +26230,7 @@ }, { "chartID": "a905f192b4b660163ac1a6a801ebda2702baf449", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -29542,9 +26246,7 @@ }, { "chartID": "e8528fdb48757d593c297b61c47e474142e08504", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -29560,9 +26262,7 @@ }, { "chartID": "4ff1acddb398845f007fe11099d1d08e36b11afa", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -29578,9 +26278,7 @@ }, { "chartID": "06c9089e6c23acb2ed3180d2dd024930d5f49b47", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -29596,9 +26294,7 @@ }, { "chartID": "904565c9178193cf84bc56c06f6e3256dd462596", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -29614,9 +26310,7 @@ }, { "chartID": "a987926568f06a1c47de82eb407352f4edcfc59d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -29632,9 +26326,7 @@ }, { "chartID": "e2bda4eb55ed397bfb7fe1ecb618db52945f2e9a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -29650,9 +26342,7 @@ }, { "chartID": "ef349ec8d3d8e9658cbbd4f50a89bdb9a191f842", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -29668,9 +26358,7 @@ }, { "chartID": "0c77dfecdf649851cb326abaccc05f7fb2671e62", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -29686,9 +26374,7 @@ }, { "chartID": "730e2da4793e7cf0e235081b0ea7a5bf031ec615", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -29704,9 +26390,7 @@ }, { "chartID": "ada023deaccf56b9cfa92cdd1fcc1067c4487ed1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -29722,9 +26406,7 @@ }, { "chartID": "59fcd0f20f36f9253d3302e4ea05aabc7ebae025", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -29740,9 +26422,7 @@ }, { "chartID": "9d1986dc404f301053c3ed2ab3bdce946da5adcd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -29758,9 +26438,7 @@ }, { "chartID": "33f2bf5303606b589b9e5baaa12e0b3e45c9aaa3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -29776,9 +26454,7 @@ }, { "chartID": "3a22a3ef0eacd070e38cf91eb5ae6ad1d2f94a5d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -29794,9 +26470,7 @@ }, { "chartID": "e56e9b84f297f196afcd4a6d13acdcea9e895da4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -29812,9 +26486,7 @@ }, { "chartID": "ec9f51bd3d60bffc446653078fb4904771dcf687", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -29830,9 +26502,7 @@ }, { "chartID": "dd3d9c7853a6b64d27b0e8dd022ddd008a3711f2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -29848,9 +26518,7 @@ }, { "chartID": "0c72165d647f118f999e5c4cd8ae05831fc3dee2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9+", @@ -29866,9 +26534,7 @@ }, { "chartID": "4665f1e34d3e1493ace9b27e22afca89476233cc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -29884,9 +26550,7 @@ }, { "chartID": "2bc410c56ea2260a0b8553bb5f194580c3426300", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "13", @@ -29902,9 +26566,7 @@ }, { "chartID": "0fcdd506f3c1cdc5d7ca482e7ad879a831d07ec0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -29920,9 +26582,7 @@ }, { "chartID": "7d3e16af87a976d09be797e0e7f5fb0d493858bc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -29938,9 +26598,7 @@ }, { "chartID": "23eeb9ce951013513ae173e3ed621fe4a00011b6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -29956,9 +26614,7 @@ }, { "chartID": "9cc7e9165e06e45cc170d3dad18ef8ee311c3869", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -29974,9 +26630,7 @@ }, { "chartID": "c99f82e7c7f2937c65c475fd65b55f4d550f1d85", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -29992,9 +26646,7 @@ }, { "chartID": "81312cb2a76cfa38f1255fab18b1aa6ffb4b9976", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -30010,9 +26662,7 @@ }, { "chartID": "8257e9fc225e795002c6c09294e46c9b133a0284", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -30028,9 +26678,7 @@ }, { "chartID": "b224d8c7ba2456c2a076ea4d64ac0476fecef80c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -30046,9 +26694,7 @@ }, { "chartID": "dbf53cc9816450f31cb2d7a8ac1dd97b30e11b84", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -30064,9 +26710,7 @@ }, { "chartID": "5cc585e042379d4a38c2a2914717e372c7acd1e1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9+", @@ -30082,9 +26726,7 @@ }, { "chartID": "6c44023f4cbbf8cc6303fe832ef2ccf1c7d32515", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -30100,9 +26742,7 @@ }, { "chartID": "13a06124808a3cd7800c9af6e412f0cdd309a2c5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "13", @@ -30118,9 +26758,7 @@ }, { "chartID": "b08d8a885a31ea943de534652cdf5477c0cdf316", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14+", @@ -30136,9 +26774,7 @@ }, { "chartID": "9c52fd25c600234cb004b38d2b6a623e673936ea", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -30154,9 +26790,7 @@ }, { "chartID": "ef9dd883d84e6a452a76dda66c0549e8afb1a872", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -30172,9 +26806,7 @@ }, { "chartID": "f3bb748715911bc0dc77cb90b25a0828c5addd2e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -30190,9 +26822,7 @@ }, { "chartID": "910a6cbe6263816fd40a455323224efa9f57e96a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -30208,9 +26838,7 @@ }, { "chartID": "a930892a348b3c74c5d219ecf4b24102a0487190", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -30226,9 +26854,7 @@ }, { "chartID": "310e39d053b35900761f29e989140ae22426afb7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -30244,9 +26870,7 @@ }, { "chartID": "3f547394b6166063a4f99c48714c9c8f2be3c015", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -30262,9 +26886,7 @@ }, { "chartID": "f3645a627ca26ec0da0cf120aebac5a5a62c2e52", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -30280,9 +26902,7 @@ }, { "chartID": "621b0494f7d41882f7d5715004e612f6bdf47839", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -30298,9 +26918,7 @@ }, { "chartID": "48bed3f4c68cfcc9272551533acf42a2d0bf86ab", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -30316,9 +26934,7 @@ }, { "chartID": "699d1ebf97094e62680d07060f5ebbedfd5ed1de", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12", @@ -30334,9 +26950,7 @@ }, { "chartID": "a69dba2f575d7f4543885f8b81dafb8f7295e5ee", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -30352,9 +26966,7 @@ }, { "chartID": "fd5cfe92e7072fc362427e2b9a28d6d049a0496a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -30370,9 +26982,7 @@ }, { "chartID": "e4c946462b0566701340a191c446327c55d8216d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -30388,9 +26998,7 @@ }, { "chartID": "b5346d0356ad8ea7a755d36c015675788cee97e4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -30404,9 +27012,7 @@ }, { "chartID": "b4c689f3de4e4be6b289b76dc50e29256c912b71", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -30420,9 +27026,7 @@ }, { "chartID": "4a224b9204d21e5b45ac59e6b971f6c898a6b4b2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -30436,9 +27040,7 @@ }, { "chartID": "048d0f2b7b961c1c0bf5b210f5f3cd829b926e2d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -30452,9 +27054,7 @@ }, { "chartID": "b66432bb597abc391ecdbb064e0b45953c2a5c11", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -30470,9 +27070,7 @@ }, { "chartID": "33caa8e2f5f318de6d5d21a155b12097d9aea535", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -30488,9 +27086,7 @@ }, { "chartID": "2b8a62b9a88a3e9fecf40398a3345686d609e103", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8+", @@ -30506,9 +27102,7 @@ }, { "chartID": "16ee12a578c72f1e789273a22e5c70adfad41048", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -30524,9 +27118,7 @@ }, { "chartID": "3d2538a6f8ec0bc247fd2c7405a672f49b5593b0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -30542,9 +27134,7 @@ }, { "chartID": "a80aee5bf0adb03241b424a2265a8cedf5ea823b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -30560,9 +27150,7 @@ }, { "chartID": "6346a10d65a2b23e0c5409fdf2b3f3123ef4fa99", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -30578,9 +27166,7 @@ }, { "chartID": "8a5614f8555fd419d72a6a01e2f7a3dac985126b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -30596,9 +27182,7 @@ }, { "chartID": "6a1195d514517c1161ea0f9718d34404e42ad59b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -30614,9 +27198,7 @@ }, { "chartID": "274c0bcbf41c9092e3372a3e43c0ef17316759ff", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -30632,9 +27214,7 @@ }, { "chartID": "85b0ea6810a2a350eab626bc957f604cd21a81f5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -30650,9 +27230,7 @@ }, { "chartID": "85f22dc738f935060f42032efd9be525e52d7291", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -30668,9 +27246,7 @@ }, { "chartID": "5ccec4873c4b2ffd983bc9b07947b5458d65fb83", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -30686,9 +27262,7 @@ }, { "chartID": "1ded04a3b92f580a7c95c2255c3e54a8bea98c87", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -30704,9 +27278,7 @@ }, { "chartID": "0af7d5b07d769477ac384c78d11d5cea78f78680", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -30722,9 +27294,7 @@ }, { "chartID": "cc0c4e5bd8a679eb7972c09010f5e5757bbf3d5d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -30740,9 +27310,7 @@ }, { "chartID": "feb07fe5f7c35bf60515fe402e85e8009bc85539", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "13", @@ -30758,9 +27326,7 @@ }, { "chartID": "f59246427232bf36f27f441a3459f8550f314b94", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -30776,9 +27342,7 @@ }, { "chartID": "9dde5376546d026dd9098a8d592548994418023a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "6", @@ -30794,9 +27358,7 @@ }, { "chartID": "be11f87d44d1b8bd030070784c6b8e1e574d6303", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -30812,9 +27374,7 @@ }, { "chartID": "40f8f5ac3fa1f2e7992ed26dd069aa579ac44ea6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -30830,9 +27390,7 @@ }, { "chartID": "8f492ffb6b7237bd607cc809b008cc34e8a3fcf1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -30848,9 +27406,7 @@ }, { "chartID": "31030c80219991da25b9f1272d3fa3f4672e01f3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -30866,9 +27422,7 @@ }, { "chartID": "ca3344951c7051e6ce9894a4f8af5331fdbfba45", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -30884,9 +27438,7 @@ }, { "chartID": "84b28b2f7a2c1130b70e969a087039ae07f3531c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -30902,9 +27454,7 @@ }, { "chartID": "dc91c5de535d1cf65032db3acb8f969bb6062d56", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -30920,9 +27470,7 @@ }, { "chartID": "b6c1169a193e15d63e4aa0ddd9908114dbc5fc3d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -30938,9 +27486,7 @@ }, { "chartID": "9948a267294f0ac1e3e56d686fdaaf9218196693", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -30956,9 +27502,7 @@ }, { "chartID": "b591326b1bc09701960200a152caceabe41c2fb1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -30974,9 +27518,7 @@ }, { "chartID": "c6c16a56d5c04f993254d41f4d909a1500ac7a77", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -30992,9 +27534,7 @@ }, { "chartID": "3588817d0efa8235b0a392a56ea7c44d0076f53c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -31010,9 +27550,7 @@ }, { "chartID": "d146a8a9177d8b12334b9d2b2e93840cc97dae0f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -31028,9 +27566,7 @@ }, { "chartID": "3fcd5ab6d2392f7804087c5d9cd2416c4931d00b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -31046,9 +27582,7 @@ }, { "chartID": "69b52ddd20f040d9c87ad5ec2caf3e66aeabde49", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -31064,9 +27598,7 @@ }, { "chartID": "01b11efb8e39e81ffc2d179010450cef8b78efa7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -31082,9 +27614,7 @@ }, { "chartID": "f419cff058e045538ed241e54e06c38236ca6e91", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -31100,9 +27630,7 @@ }, { "chartID": "92f6f3f9441b1cd798f3eb91beb1ca6eb5b845bd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -31118,9 +27646,7 @@ }, { "chartID": "2c43778134b2d4170f2356f7a9ed2c8bb71ed8ab", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -31136,9 +27662,7 @@ }, { "chartID": "67bd8d53bd8d063cbee7c9e693c3706377af956a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -31154,9 +27678,7 @@ }, { "chartID": "aafee7ca975a587cc112dfa78494383f49a343b3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -31172,9 +27694,7 @@ }, { "chartID": "d62095a5f84dd8bf8437ec2743083ae2ae83077f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -31190,9 +27710,7 @@ }, { "chartID": "289107a91d0e4400c09c1c2798a34b7e80a7c418", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -31208,9 +27726,7 @@ }, { "chartID": "0a52dbf6cc22c77bd4587c787495582323bd7769", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -31226,9 +27742,7 @@ }, { "chartID": "6fe70b347a2982245396b5d9e9e5cb9f203214c2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -31244,9 +27758,7 @@ }, { "chartID": "452021e6a74dae38612834222085f64621e7f893", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -31262,9 +27774,7 @@ }, { "chartID": "2915bb26bef3351fd6be871ebdac157cbcb76196", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -31280,9 +27790,7 @@ }, { "chartID": "d5206bb931dc1330237de272a47b668ac2beb50a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "14", @@ -31298,9 +27806,7 @@ }, { "chartID": "244c886e02815d91183d43690d77d820987d5023", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -31316,9 +27822,7 @@ }, { "chartID": "538dc2d29370e60dd58eb9a6f5fc08510b475389", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -31334,9 +27838,7 @@ }, { "chartID": "c0e4517fbedd15b374346ca0c1975f1e279764c1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12", @@ -31352,9 +27854,7 @@ }, { "chartID": "0d48a5b37d062a3af399ae17b64471dd716ecdaa", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -31370,9 +27870,7 @@ }, { "chartID": "21dccf165621513d55b84ac0e131492989d3f8dd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -31388,9 +27886,7 @@ }, { "chartID": "16259ad5ca260819b510047c27ffc969de064ad5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -31406,9 +27902,7 @@ }, { "chartID": "058e0195367e7af05911cebc75828c9408466f6d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -31424,9 +27918,7 @@ }, { "chartID": "3f51eb8cafea368ac9bf3e04cac0045f2f32018d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -31442,9 +27934,7 @@ }, { "chartID": "d5bd756db573dd6d78addfbf5c6210d1ed0ad997", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -31460,9 +27950,7 @@ }, { "chartID": "508c34800760d20de85a2f35bcc84c608590921e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -31478,9 +27966,7 @@ }, { "chartID": "096e3577c27453cbf8989e86f4fed4ba51ad8358", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -31496,9 +27982,7 @@ }, { "chartID": "145b156f8da7c6a870ec0a84fd84468fb3eea41b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -31514,9 +27998,7 @@ }, { "chartID": "cbcdcdff18874af92e1e4c980ef07ece7b7a3203", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -31532,9 +28014,7 @@ }, { "chartID": "1842546d2ec8013cd04e77d1d9d7b2bcbf9845c8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -31550,9 +28030,7 @@ }, { "chartID": "7b667c0064ef0b6aacabfaaef91194301cc153a7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -31568,9 +28046,7 @@ }, { "chartID": "786635c24b8b1e8e5d88d0210221ab2793428bca", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -31586,9 +28062,7 @@ }, { "chartID": "6573a991f9333d33fd31a66769fa488a88079c4a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -31604,9 +28078,7 @@ }, { "chartID": "8268d5ecd2e280ffe02f58e081ae9fca784d756d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -31622,9 +28094,7 @@ }, { "chartID": "7fb695e875dd64ff9aba53bb47e164be163e2a28", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -31640,9 +28110,7 @@ }, { "chartID": "29b841c05ec31efd0703a35912990b7fd77ebd5d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -31658,9 +28126,7 @@ }, { "chartID": "a8a1513a0e15d5c785f7b4d3677dc3e8cac22d6e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -31676,9 +28142,7 @@ }, { "chartID": "6d224370b9bce5b33f3b0d475b27523a1480bb43", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -31694,9 +28158,7 @@ }, { "chartID": "4872459a8ac54c816397306c4f850c77dafffb8d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -31712,9 +28174,7 @@ }, { "chartID": "452d2ec4c3d5d8c756a56ad5116bd135644d17a5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -31730,9 +28190,7 @@ }, { "chartID": "c4562dd6746c5199d24cc296501c8907a718a34e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -31748,9 +28206,7 @@ }, { "chartID": "97772c3889aaeaf845f972d31cf7089f778b1674", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -31766,9 +28222,7 @@ }, { "chartID": "a703fb745fe793149a63e4ae4b7db81ad2a0b1dc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -31784,9 +28238,7 @@ }, { "chartID": "8f4888e442132f8fbcef792ff0eb97710a84a382", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -31802,9 +28254,7 @@ }, { "chartID": "ff20271fdb5bec2d567ec7a1cec8d3c348f6f75f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -31820,9 +28270,7 @@ }, { "chartID": "c46e2d664052f3768899183a7199bd86ca36652e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -31838,9 +28286,7 @@ }, { "chartID": "3a2f21fa276a4723b0d6bff1059f430843dd89de", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -31856,9 +28302,7 @@ }, { "chartID": "d6b64b0cb1f9731103721f4e0a393a7901e7783c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -31874,9 +28318,7 @@ }, { "chartID": "0e566923acbb095aa9413b80a4d0fa9f422be026", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -31892,9 +28334,7 @@ }, { "chartID": "4199bba8b0aac816844301143242a6c243e342cc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -31910,9 +28350,7 @@ }, { "chartID": "8c5667414083259aef6d9fb6a71dc4efadbc58f2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -31928,9 +28366,7 @@ }, { "chartID": "49ec5c6922eb62673eba5593714bf81d5ef0a53f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -31946,9 +28382,7 @@ }, { "chartID": "822213d01ca35461e827c58db9d8036bf7dc87d8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8+", @@ -31964,9 +28398,7 @@ }, { "chartID": "f40b98848c01e116bd82abd7e1e0cffd439b457f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "7", @@ -31982,9 +28414,7 @@ }, { "chartID": "210f7a61bbd574d4654929cc75102cebf1c52241", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "13", @@ -32000,9 +28430,7 @@ }, { "chartID": "587ffc96d866d22976b001268801f1f0ddf3b9ba", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -32018,9 +28446,7 @@ }, { "chartID": "646d3badcd8fc3455422262f9877e1f48752b3c7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -32036,9 +28462,7 @@ }, { "chartID": "533ecdd6bb98f9066b2f3a06bcc90a0401fe393f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -32054,9 +28478,7 @@ }, { "chartID": "43765947e5eb9ca2e3939a3638f236a3d3655cd7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -32072,9 +28494,7 @@ }, { "chartID": "3bb59e8f3e075a3c480a96bf35d8ff48dd2124cd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -32090,9 +28510,7 @@ }, { "chartID": "92c5da172d5e01563ac625894187f1e1b0ade51e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -32108,9 +28526,7 @@ }, { "chartID": "fcc77397392121c4a716d8bb3929aa087c74fb82", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -32126,9 +28542,7 @@ }, { "chartID": "14a06a7942ec13becdf4f9aba62174d6d9e8755c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -32144,9 +28558,7 @@ }, { "chartID": "a554c411934addd2003f9c14b97f95c912cbabcd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -32162,9 +28574,7 @@ }, { "chartID": "a64365b7066f9a38eb34af5d65cb2057dcf8160d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -32180,9 +28590,7 @@ }, { "chartID": "f3ea75bfa3b199f87919ea552dfcedb17db3c812", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -32198,9 +28606,7 @@ }, { "chartID": "3e105e50ea3ed87a3a1ead580c2dbd85ab2a82c9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12", @@ -32216,9 +28622,7 @@ }, { "chartID": "7700913d6999fb6dabefa4dec4db431774089076", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -32234,9 +28638,7 @@ }, { "chartID": "143dd958cc688a228755e77e3d25d7c3dca84eed", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -32252,9 +28654,7 @@ }, { "chartID": "c79b325185a0a5beaac0d8ef9d414c4142516618", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -32270,9 +28670,7 @@ }, { "chartID": "712bc3d74be71a3c1c2bc93e1738bb89f4367780", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -32288,9 +28686,7 @@ }, { "chartID": "2c7f98a17a058213df93d8fba130ba7b79072beb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -32306,9 +28702,7 @@ }, { "chartID": "7ba16fe786d2d3544eb1dab46b3aa6fdc1fa3ae6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -32324,9 +28718,7 @@ }, { "chartID": "1b75d236da46d38581ee60569201608b6bc6c3f4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -32342,9 +28734,7 @@ }, { "chartID": "5b422175a083955f7298620da5c67fda212184c0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -32360,9 +28750,7 @@ }, { "chartID": "660075873631bc04665dd322c6f622fc587a1cb4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -32378,9 +28766,7 @@ }, { "chartID": "4596263f82e8fd3b5d6859db31128604783e6438", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -32394,9 +28780,7 @@ }, { "chartID": "0da8ac6159086321c0c1dbb87025363bec20cd5f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -32410,9 +28794,7 @@ }, { "chartID": "fdb267fdb95d624c7e73301ba56f78a2a8bdc787", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -32426,9 +28808,7 @@ }, { "chartID": "21b49388ec99faf213d9d3d48758bf2fdb1a285b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -32442,9 +28822,7 @@ }, { "chartID": "ca0409136802245fd421dbc76c0f96ee1643cebb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -32458,9 +28836,7 @@ }, { "chartID": "5df24df0b9b7af74561e070f46849d8a56698f9a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -32474,9 +28850,7 @@ }, { "chartID": "872cf09a6f8246966a7d9d99a06b424fcab48997", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -32490,9 +28864,7 @@ }, { "chartID": "bf3a6a9d5a82e926ba1aa5422dc25fd222bee694", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -32506,9 +28878,7 @@ }, { "chartID": "12e2d685ff3c40e92eb240be7267d771572bcda8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -32524,9 +28894,7 @@ }, { "chartID": "3a228dcfedc937591a7dae29ac2cc100babb388b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -32542,9 +28910,7 @@ }, { "chartID": "8c23887033da46480dd5f4f5e49f0e6fb02731a7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -32560,9 +28926,7 @@ }, { "chartID": "23557638ee109c5c547f130aa531f7415f49c5ad", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -32578,9 +28942,7 @@ }, { "chartID": "fea7e267b3f697aef5c21c9135a0447da9a80b37", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -32596,9 +28958,7 @@ }, { "chartID": "9aa51424cd9cd519c43ac92c9b0a9e0ee8d379df", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -32614,9 +28974,7 @@ }, { "chartID": "e95b0306e2ecaf92647def3c0a71c7c9bbb6c477", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -32632,9 +28990,7 @@ }, { "chartID": "57915b3b87a73af77ffe15eca50a351d163bf2e0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "11+", @@ -32650,9 +29006,7 @@ }, { "chartID": "51d240d5b70604b522764ef3a18d9a7c5b0ef8de", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -32668,9 +29022,7 @@ }, { "chartID": "0a443e5c2c0366b1593d5e0a3e7de6647c9c843e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -32686,9 +29038,7 @@ }, { "chartID": "5ebd00cf4662fa1e585f441a8571eddbb5a7b6ff", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -32704,9 +29054,7 @@ }, { "chartID": "f9b284d452e06c96653baae62bf968e803e8db60", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "11", @@ -32722,9 +29070,7 @@ }, { "chartID": "13c22f6a124f828d5ca6765c0006ee719584b5d9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -32740,9 +29086,7 @@ }, { "chartID": "eac95abf8ce6c45a3c005f2b598cf939cae0f961", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -32758,9 +29102,7 @@ }, { "chartID": "3a51b6f69abea5af048e77d01300ead43ed5416e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12", @@ -32776,9 +29118,7 @@ }, { "chartID": "f652f842a653f823de449e57de7706118110170e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -32794,9 +29134,7 @@ }, { "chartID": "5094085c93227861d6524ffbdf7a37b8acbd23aa", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -32812,9 +29150,7 @@ }, { "chartID": "902dbfd494c618c9ce6f8aa8e2e524aedd61709e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -32830,9 +29166,7 @@ }, { "chartID": "825f77fa8e728585d186c269548c68b8a591c785", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -32848,9 +29182,7 @@ }, { "chartID": "bd5467428f960d831db40e1ddf63261f31f4d573", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -32866,9 +29198,7 @@ }, { "chartID": "dce6f6573585cc81dce938c99bb4397365607eb9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -32884,9 +29214,7 @@ }, { "chartID": "3581033cac33ae86d382333d3b127349e716c725", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -32902,9 +29230,7 @@ }, { "chartID": "e55050d1e703580159c995d3dc0dcb8ab4c37ede", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -32920,9 +29246,7 @@ }, { "chartID": "51b7dd8da3ac8d2f1194fde96bb5ca8c3f05fed3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -32938,9 +29262,7 @@ }, { "chartID": "52726ab707955ebe4d6c0c02f7dc2af047a40e21", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -32956,9 +29278,7 @@ }, { "chartID": "44ca8432e84088370a17c8a9a994d102cef9a870", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -32974,9 +29294,7 @@ }, { "chartID": "e00683960e7ab647e3ba2d27585e622e39a46386", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -32991,9 +29309,7 @@ }, { "chartID": "dd2a3bd1c4eedc7abde72b70f756883966ac637b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -33008,9 +29324,7 @@ }, { "chartID": "bc1f349aa8bad0c072781b491202e774e15408d8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11+", @@ -33025,9 +29339,7 @@ }, { "chartID": "8ff1e63530d87e8d67bd7460ab00cbb26016f270", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -33042,9 +29354,7 @@ }, { "chartID": "eed5a8f7d5f363bcd2197623a50b7feaf0f9c469", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -33060,9 +29370,7 @@ }, { "chartID": "583d0d09aeec4f4ac7fef60af78b8d3dbee48451", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -33078,9 +29386,7 @@ }, { "chartID": "ee93800a140ef33009afab0993441a3d42aa4de0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -33096,9 +29402,7 @@ }, { "chartID": "150a09f8596362fea4446d84126e49ec562dbf56", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -33114,9 +29418,7 @@ }, { "chartID": "664cd10563d1667f9fa7bf3d757f3c5bba13454e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -33132,9 +29434,7 @@ }, { "chartID": "45ed3526e97b22403e673dbdaf3a972a533e9cfc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -33150,9 +29450,7 @@ }, { "chartID": "1303478bd4331c9ed31aa199c6348e6e5bfbd49d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -33168,9 +29466,7 @@ }, { "chartID": "0ecd7c82ec3f3dd10886152d34f230c20c354920", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -33186,9 +29482,7 @@ }, { "chartID": "a575b46027cb8e5a4d22c7ca38a8fbe64d41e72a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -33204,9 +29498,7 @@ }, { "chartID": "aa0d3e1afeb883a9ab34c68a7cb9d88697419937", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -33222,9 +29514,7 @@ }, { "chartID": "a91699e1e461f750d6cecbdfa09b721062a021ca", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -33240,9 +29530,7 @@ }, { "chartID": "6e15d8c5904a52c64c39f8d8fad3481a00a23001", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -33258,9 +29546,7 @@ }, { "chartID": "69e85ddbff73accbc49cafcf8ef5fdc6d26fc55a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -33276,9 +29562,7 @@ }, { "chartID": "42ad8dd5026ef53a85e5042fc7e5f12af794a8d3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -33294,9 +29578,7 @@ }, { "chartID": "2ff7fe7b3794388a5fadff3f22c09de12b1a9b81", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -33312,9 +29594,7 @@ }, { "chartID": "4d62a911aefcd967d282e3d7d2770bf5091acd2f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -33330,9 +29610,7 @@ }, { "chartID": "072c43e3eb4f615bd26f4c4a54f4ce498ead87e2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -33348,9 +29626,7 @@ }, { "chartID": "f6f976a1b5e12b3cf0b28edc23d2f5c74b261d85", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -33366,9 +29642,7 @@ }, { "chartID": "3f9bbd412294d25d7b674353a25845e6dadb93fe", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "13+", @@ -33384,9 +29658,7 @@ }, { "chartID": "711ef0b70fc549d2d28b7d6c5c8d5dd54463d41e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -33402,9 +29674,7 @@ }, { "chartID": "467ca720d787aa948369ed9a84581827805bc4c4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -33420,9 +29690,7 @@ }, { "chartID": "5d6a97107f0915c563e8e71a49db3873bbc4c86a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -33438,9 +29706,7 @@ }, { "chartID": "1374a0691d0d2dbd169b9468688f2dece0ba6848", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -33456,9 +29722,7 @@ }, { "chartID": "3f6ca6980c8e2cb2c130e22b43f07a1239394373", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8+", @@ -33474,9 +29738,7 @@ }, { "chartID": "7fff55c748a2725e164b40a55b638e2aaefe1f99", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -33492,9 +29754,7 @@ }, { "chartID": "2590a43aa810c3f7e1e0d265bdf51f1e65a4aca0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -33510,9 +29770,7 @@ }, { "chartID": "905a369485a2512781fb015b4d54d48ca3f40694", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -33528,9 +29786,7 @@ }, { "chartID": "3ede03e315be94161cdc75197f7b97cd016ce1b1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -33546,9 +29802,7 @@ }, { "chartID": "d9fdce2e6eddd0883c77719ecab8f16062cc51ba", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -33564,9 +29818,7 @@ }, { "chartID": "8fd0cbadae74085f8d8c37448631294ad572d3dc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -33582,9 +29834,7 @@ }, { "chartID": "97aa4b4d8da8e484131b555141b165ce44a83af3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -33600,9 +29850,7 @@ }, { "chartID": "6db29f0068a9e8d4e55d59c485ddb8d939152808", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -33618,9 +29866,7 @@ }, { "chartID": "65ff035bed3c3e13636cf30f4a98ce1d6209f0cb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -33636,9 +29882,7 @@ }, { "chartID": "35d1244bde8f8e6f5cb658f7e68f107f3f3a7e7e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -33654,9 +29898,7 @@ }, { "chartID": "ae138724dde4c11ee88e8ce28e20c172b427aa13", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -33672,9 +29914,7 @@ }, { "chartID": "75ef89687895f9440e9cfa5c9241ac382d5ee0b5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -33690,9 +29930,7 @@ }, { "chartID": "06ab7a841d6ea188302c4dc3aec157992f8f9145", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -33708,9 +29946,7 @@ }, { "chartID": "74ee86e6192d92961cd4883dbb4d709adc413f10", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -33726,9 +29962,7 @@ }, { "chartID": "a0b435ca171e84f043bd9325d2343e7b09e06b3e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -33744,9 +29978,7 @@ }, { "chartID": "b45b81d853efd1ea728e04c599f4a78c232244a9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "6", @@ -33762,9 +29994,7 @@ }, { "chartID": "3fd16d2c47f7dad6d2313019aa8c9a5e7370c756", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -33780,9 +30010,7 @@ }, { "chartID": "06299f323a3d1d98c1149082471b50079cae0c45", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -33798,9 +30026,7 @@ }, { "chartID": "85b352d57f395204d2cd7a129d38f4e05650c117", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -33816,9 +30042,7 @@ }, { "chartID": "7997bfc7ac782e5bb44521da9a476d25aceaf36f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -33834,9 +30058,7 @@ }, { "chartID": "3cd7126e3e98f2db848458f08f643baaafc47134", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -33852,9 +30074,7 @@ }, { "chartID": "f145a11e34cea765c31694f35211e2455998869a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -33870,9 +30090,7 @@ }, { "chartID": "82121692db9c7bd4d49e1eeead60d676cc01555e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -33888,9 +30106,7 @@ }, { "chartID": "9c592da205364758bcfb98acdebfe5fd974b03c9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -33906,9 +30122,7 @@ }, { "chartID": "cc8295298f6a9a0dfc785f459574c959da7eb928", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -33924,9 +30138,7 @@ }, { "chartID": "1e8689ad800d10e4f6dda901948351133683642d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -33942,9 +30154,7 @@ }, { "chartID": "8cab44c04610dc611d5bc5b64ff557a38d0ccac4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -33960,9 +30170,7 @@ }, { "chartID": "555beb7326d6cdd950b31b9953e8621f8dedbfb4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -33978,9 +30186,7 @@ }, { "chartID": "1b53d3ebfe1b97be6b013b2fcf8557be807e9d4b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "7", @@ -33996,9 +30202,7 @@ }, { "chartID": "ef347fbe102bf5e20b8f493fcce73b726fb73da5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -34014,9 +30218,7 @@ }, { "chartID": "82d223c74d6523f720bdeb7cb003c02229757263", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -34032,9 +30234,7 @@ }, { "chartID": "c67a6807b1d3e7b5f1dc6bde726ea2c0f67c97e3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -34050,9 +30250,7 @@ }, { "chartID": "2ca60dfd8a1f979916fbad605e4f9f283c50cf22", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -34068,9 +30266,7 @@ }, { "chartID": "cba1e4ae1627a00248c11b6e58836783bb815085", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -34086,9 +30282,7 @@ }, { "chartID": "3ae5f712be6e56c07700a9800e7384291653d909", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -34104,9 +30298,7 @@ }, { "chartID": "2f849ae39287243d6facb0c88a565df9833a9fac", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -34122,9 +30314,7 @@ }, { "chartID": "3db96d4c497fd9c521353d625f983c7106e3c3fb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -34140,9 +30330,7 @@ }, { "chartID": "a168d94364b898806e47fa159f0a2795c73d214a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -34158,9 +30346,7 @@ }, { "chartID": "2913d186a06f77678a9c24be1620dcad21680a03", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -34176,9 +30362,7 @@ }, { "chartID": "7a075aba190af4e2b6cb9b5f099fc22ba466a331", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "10", @@ -34194,9 +30378,7 @@ }, { "chartID": "5d2d21d95f9a5aa66e38ccf41149487d52587d08", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -34212,9 +30394,7 @@ }, { "chartID": "965ef2c237f7a1b76d38cf84b02d2fd5ea5be405", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "13", @@ -34230,9 +30410,7 @@ }, { "chartID": "b9899fc165c6e3f2e4ae60f0530328155961bd75", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14+", @@ -34248,9 +30426,7 @@ }, { "chartID": "fda532b44d779b6de3042c0a2d27caf69fee537e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -34266,9 +30442,7 @@ }, { "chartID": "6196e56da5a5b20466b2ab03e687d56601862860", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -34284,9 +30458,7 @@ }, { "chartID": "6f5d7958eeeccf721c0c27ecdac8f06497f69a06", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -34302,9 +30474,7 @@ }, { "chartID": "37d312f38f4f912b6f0a649a2bb14feb2f53d3e8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -34320,9 +30490,7 @@ }, { "chartID": "8b1eb0fae8f6e5220099c8a9185bb3ddcd7b4694", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -34338,9 +30506,7 @@ }, { "chartID": "e6d9bd73dea05d9fec5c2fb9d51638a707c12f32", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -34356,9 +30522,7 @@ }, { "chartID": "0f8758e89b286d7cc52f66f5365dfd144c0866ae", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -34374,9 +30538,7 @@ }, { "chartID": "b712db80afff41cde21e7e43607fb184db42996a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -34392,9 +30554,7 @@ }, { "chartID": "8b0038212f9298f81900d3d44d4347c39da2dc04", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -34410,9 +30570,7 @@ }, { "chartID": "1a72c27c22678c68a0c4f3e662392a11919a4530", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "7", @@ -34428,9 +30586,7 @@ }, { "chartID": "f449f542c8f7343bda872a59608dca7487d18fae", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12", @@ -34446,9 +30602,7 @@ }, { "chartID": "6ffcb379d8abd9aed8eadc9de9ba1814578d1dec", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -34464,9 +30618,7 @@ }, { "chartID": "49cace2de3093b7d8836b841c15d06281d06cade", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -34482,9 +30634,7 @@ }, { "chartID": "d746ce0931b69ab627273a5479044ba6572fb4c6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -34500,9 +30650,7 @@ }, { "chartID": "4ba462abef2340c2551204671be0ba96935bbaea", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -34518,9 +30666,7 @@ }, { "chartID": "832b39a8452ea905b290ae7ae1b638909d92419b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -34536,9 +30682,7 @@ }, { "chartID": "abbc102dfdd97923f34579430b325b99f8279434", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -34554,9 +30698,7 @@ }, { "chartID": "9a32d3c96e51c244244bc3cf142bf37aee47d1d6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -34572,9 +30714,7 @@ }, { "chartID": "bf83c2616840c503ca98bd28ef26e4357cbe9df5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -34590,9 +30730,7 @@ }, { "chartID": "fe99d77956c20d61b8c9a72dcef7e3c71d1b219d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -34608,9 +30746,7 @@ }, { "chartID": "f903b116343d66306e52186a2aff7ec90313e044", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -34626,9 +30762,7 @@ }, { "chartID": "e87796c9f855a9db4612b34fae190f97fa5cdba3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -34644,9 +30778,7 @@ }, { "chartID": "0354a9c2566e4c6b33075f88e1fdf1b9d0b39a1d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -34662,9 +30794,7 @@ }, { "chartID": "ccb42f6e90785f400898eb5dfdc4e4a76f0b495d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -34680,9 +30810,7 @@ }, { "chartID": "778348011185c6b87d5c7c1a828a91cb369629d7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -34698,9 +30826,7 @@ }, { "chartID": "68cc6e092bf486ed1a7a6714e0dfa1b2c34afa28", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -34716,9 +30842,7 @@ }, { "chartID": "29ac7f3b0a40c487a95318c57159246614e7d8f8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -34734,9 +30858,7 @@ }, { "chartID": "384e8c1e176139a2c0d113486df29ce1d62343dc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -34752,9 +30874,7 @@ }, { "chartID": "fdc0f876894b924582e3d78dba0b4235371d6519", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -34770,9 +30890,7 @@ }, { "chartID": "a3574cf03e10b2e0a4b1672139963227278c01f4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -34788,9 +30906,7 @@ }, { "chartID": "5feab901548ef177b4fa8bfbc094f0283256bc3c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "13", @@ -34806,9 +30922,7 @@ }, { "chartID": "017507c9d61cdea95c74711b87b4e353d53cd567", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -34824,9 +30938,7 @@ }, { "chartID": "f33149593bdec4a02e3cb96435207311dedd7b6e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -34842,9 +30954,7 @@ }, { "chartID": "97b2188092387c76409aad7aa4f6cb641d81631e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -34860,9 +30970,7 @@ }, { "chartID": "12cf093e305679840bffd2ed5c1fb9db3dd162a0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -34878,9 +30986,7 @@ }, { "chartID": "d51d66a8d2c8a2853ae64676b3179f3aa022dbb2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -34896,9 +31002,7 @@ }, { "chartID": "28ac4b24fc2306d8fc55fca6a35c13c031e1c4e2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -34914,9 +31018,7 @@ }, { "chartID": "90bb5f3fb88c8dfba2372cc2130f76baabcb3503", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -34932,9 +31034,7 @@ }, { "chartID": "0aecdca38f175d3b3db2df481be36f6f5d4549e1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -34950,9 +31050,7 @@ }, { "chartID": "f9ad44f4501ba9b59acdc476ee2fe71dfdbcf5fe", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -34968,9 +31066,7 @@ }, { "chartID": "3e5102bc86ed092bc426637ac1b338399a08a9dd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -34986,9 +31082,7 @@ }, { "chartID": "716a5d88973f00a16386d4bfd7d6114e51e1d7da", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "7", @@ -35004,9 +31098,7 @@ }, { "chartID": "168149e1b29c342567190fe09c3f9d6a9cb37a66", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "13", @@ -35022,9 +31114,7 @@ }, { "chartID": "a56672ff704acb944b87822a1386b36a401e4433", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -35040,9 +31130,7 @@ }, { "chartID": "0f131594f079895607982bf9f74e93a68304ceec", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -35058,9 +31146,7 @@ }, { "chartID": "2e70b3fc4560fc05eff26123fce50a03f7e3f5b5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -35076,9 +31162,7 @@ }, { "chartID": "176689caf9bda61f204f3e0cb22790f90d112961", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -35094,9 +31178,7 @@ }, { "chartID": "6a084c69668bd30564ae33885c558e65695cd1f7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -35112,9 +31194,7 @@ }, { "chartID": "e079660f3e8aed6862cb4be78b3a10a2aeff1232", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -35130,9 +31210,7 @@ }, { "chartID": "c61a5397d94be133045406b4923196ac67bec6be", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -35148,9 +31226,7 @@ }, { "chartID": "48de5afe8ff2219179ae2becc5e84b9f456602d5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -35166,9 +31242,7 @@ }, { "chartID": "526bbb283167bff3b9a65e2782a3a96bd0e0ecf6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -35184,9 +31258,7 @@ }, { "chartID": "d9208ab35c59832f5cd2a21893564ed517a6c2b6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -35202,9 +31274,7 @@ }, { "chartID": "0b22aad6f95e9a9bdbd4594404ebee50987828ac", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -35220,9 +31290,7 @@ }, { "chartID": "64d69b69c7bb0a8b1b34f8028a0cffd45ff36743", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -35238,9 +31306,7 @@ }, { "chartID": "e7022b3ceb63a841c165a5aeeb05447b54afa936", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -35256,9 +31322,7 @@ }, { "chartID": "525982287f8422b8a13fb82189398fe9c62ce431", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -35274,9 +31338,7 @@ }, { "chartID": "1b5682c5f50edab11ffe9bf91f2700a49d023065", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -35292,9 +31354,7 @@ }, { "chartID": "1681d3f13bd450e27609afca3ead060908b46b58", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -35310,9 +31370,7 @@ }, { "chartID": "d8f6670b0c2f52fb1cf6d7f814fecd165de528d0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -35328,9 +31386,7 @@ }, { "chartID": "7fb72ac06cc774f08be1467d6a3e36d1516b118f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -35346,9 +31402,7 @@ }, { "chartID": "5d128d4176d4ada07552780a1b3f8510c0315efc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "11+", @@ -35364,9 +31418,7 @@ }, { "chartID": "ca2b2a4b41a5e04fb727ce7a2e39f486d7588390", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -35382,9 +31434,7 @@ }, { "chartID": "17a8deb3e5bfa75c980fc2f6f2deea6c672050c1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -35400,9 +31450,7 @@ }, { "chartID": "6a1e2030a0e64bc35ea4b28b9d5d544108ad52f0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "12+", @@ -35418,9 +31466,7 @@ }, { "chartID": "5b9b9d0c5f4c2e3366004103450c187c01d616aa", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -35436,9 +31482,7 @@ }, { "chartID": "6b4c23370486cf544c6b1b34cffd06e933a9f372", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -35454,9 +31498,7 @@ }, { "chartID": "aadf7145b5cc93ac317d6a57f236722dd5a6da20", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -35472,9 +31514,7 @@ }, { "chartID": "c974314168a4deb9ab45521df2b4958bd9eb5cef", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -35490,9 +31530,7 @@ }, { "chartID": "ca36a9a0930444443ceea73b02421f9b461d5613", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -35508,9 +31546,7 @@ }, { "chartID": "0e31cbf6620748139bbb9809fe71ed449e52be9a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -35526,9 +31562,7 @@ }, { "chartID": "2f38d17663310a5de88d7197738f666db38a08e2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -35544,9 +31578,7 @@ }, { "chartID": "8c47d21928cc5f6d31e21aacb66b8d6eb6155bbf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -35562,9 +31594,7 @@ }, { "chartID": "b178d6fbeffbe50d08b6d0d4cbe301eb9ad03c3e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -35580,9 +31610,7 @@ }, { "chartID": "06985a014ebeecc6c5cdd3f74a668d49ec174202", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -35598,9 +31626,7 @@ }, { "chartID": "b5612f8f4c8cbf1d90dfe0882e86bb00490ad281", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12", @@ -35616,9 +31642,7 @@ }, { "chartID": "f6f06dbbe0ac4cfb048d73a85f5ac813bb85166d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -35634,9 +31658,7 @@ }, { "chartID": "3d39240d591e43ee3d4bb53d21a06f2de92baebd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -35652,9 +31674,7 @@ }, { "chartID": "f34c34086fa64e93de48089a9b1130f893d536a6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -35670,9 +31690,7 @@ }, { "chartID": "c4d204f169d3d630b621e348d715838c1e7e26a0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -35688,9 +31706,7 @@ }, { "chartID": "a33faa06da24229c6f3afbd386dac1d296627920", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -35706,9 +31722,7 @@ }, { "chartID": "3b656d5b3fa815eaf6745cd131d3ef597f47080d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -35724,9 +31738,7 @@ }, { "chartID": "f79a18a8fdbbe4221e04a0a649d839aa3adacd9d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -35742,9 +31754,7 @@ }, { "chartID": "70d8ff8eda6ddb9f4f689da1fb0a038f4917e57a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -35760,9 +31770,7 @@ }, { "chartID": "8b1f063fbe7b4d777782085bc4de1d4f63cf9840", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -35778,9 +31786,7 @@ }, { "chartID": "09b6b1a5ec38cc274570cb69854a7df8cf67dfdb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -35796,9 +31802,7 @@ }, { "chartID": "d7fc2aaf71a636cbb5ae19eb6074ea3b6101fec2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -35814,9 +31818,7 @@ }, { "chartID": "46491023125cefd0965b4ea43420fb95002182bb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -35832,9 +31834,7 @@ }, { "chartID": "7232b1b78af36e7c4bbf2fe990edc53ac5901117", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -35850,9 +31850,7 @@ }, { "chartID": "16fb8b815291b5b11cbb130461c516b2e92743e7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -35868,9 +31866,7 @@ }, { "chartID": "77923e9ce950fb50ba9e8e7d0efe52e6ce594e26", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -35886,9 +31882,7 @@ }, { "chartID": "05b0bd4b3b89dd7932a3eca3651190ce460cc017", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -35904,9 +31898,7 @@ }, { "chartID": "617d651e676ce75a50699698226ca96bbed6cffb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -35922,9 +31914,7 @@ }, { "chartID": "4d4deadffb1bcd8e3669cb5ac0c92e67e074d17d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -35940,9 +31930,7 @@ }, { "chartID": "706484648601993aac6d7ea5e81a387242f32cef", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -35958,9 +31946,7 @@ }, { "chartID": "f74a52a37871877e9abd1b004108d05b9a64eb6b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -35976,9 +31962,7 @@ }, { "chartID": "45f6ffea77accdd714f53f0374c0e170e1723f40", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "11", @@ -35994,9 +31978,7 @@ }, { "chartID": "26c67ead899eededf2f73fbac136197e92b85265", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -36012,9 +31994,7 @@ }, { "chartID": "77b9df0e5500b29408289528013fad94e0dbbbe2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -36030,9 +32010,7 @@ }, { "chartID": "8d411b0d53460b8fb427cb136118fd9b46358acf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -36048,9 +32026,7 @@ }, { "chartID": "53a7bb6f21a2533234d9c5614a92c2b209a2a91d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -36066,9 +32042,7 @@ }, { "chartID": "5298ebd85b47316ae6d40813b9174003329804fd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -36084,9 +32058,7 @@ }, { "chartID": "fa2a5826f4c46e32f27e6f3d4e0a5fda58f18462", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -36102,9 +32074,7 @@ }, { "chartID": "7d6610b7c5c4d16475e43a63549ef51fd9163ada", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -36120,9 +32090,7 @@ }, { "chartID": "10ba43cc8913816c90c014f0841855dee296fe10", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -36138,9 +32106,7 @@ }, { "chartID": "23415483688400ef517b78b4ca0684fcdd4bbd19", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -36156,9 +32122,7 @@ }, { "chartID": "fc005b9ec367ee81d7fcdbf5e0724d77438efeff", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -36174,9 +32138,7 @@ }, { "chartID": "14903b5e22dad6f30598df3c8cd4d49e34f94f56", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -36192,9 +32154,7 @@ }, { "chartID": "0605e2f6e9e9d0fd55a37bebe43ac88df00d7dea", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -36210,9 +32170,7 @@ }, { "chartID": "6b13ca930d069017663cfdfeb676a82ce0eee3b5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -36228,9 +32186,7 @@ }, { "chartID": "6b28a9f2debb0ba49206e79b2d7d87b45e4a814c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -36246,9 +32202,7 @@ }, { "chartID": "8d7b3b2366184284c319815d22fc4ad402cbdeca", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12", @@ -36264,9 +32218,7 @@ }, { "chartID": "f4d7d0ffa9980486b7c09264944a85d81fed35d6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -36282,9 +32234,7 @@ }, { "chartID": "cb7679c82881169e284b4d3db983d8eea203b9a9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -36300,9 +32250,7 @@ }, { "chartID": "52ce42c92f04194fb22ef0d52c14637cc3c6b119", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -36318,9 +32266,7 @@ }, { "chartID": "d9d1d8fffb8b8122f3e224af387f32fff730d99a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -36336,9 +32282,7 @@ }, { "chartID": "45d3f0c79648d640b2048926b7dea93d1ee2421d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -36354,9 +32298,7 @@ }, { "chartID": "fe5cdf977b5d65e182925c4035c58927e2e93266", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -36372,9 +32314,7 @@ }, { "chartID": "d80266e67e7ae4d0512208255a1906149bb8d45e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -36390,9 +32330,7 @@ }, { "chartID": "b653bdeb276b340298a48f737543b69c77832aa1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -36408,9 +32346,7 @@ }, { "chartID": "3d574ee8b09e979f5582f367870d9cbf267277ee", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -36426,9 +32362,7 @@ }, { "chartID": "7eb880a95f51f8713d729f663f9be38a774dbd45", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -36444,9 +32378,7 @@ }, { "chartID": "a3ada2620536823df82583bc57acfca7938f7051", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -36462,9 +32394,7 @@ }, { "chartID": "55cc06f63a64fa7830b141f36a0d829f03aa07df", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -36480,9 +32410,7 @@ }, { "chartID": "2b5b05e044545221f78b2b7bcd0dce1b572ed256", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -36498,9 +32426,7 @@ }, { "chartID": "ef8cdcce398efb99636966a66b670b504900dd16", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -36516,9 +32442,7 @@ }, { "chartID": "dfd550644a866ce6ce5f48efed4a686c428ddc6d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -36534,9 +32458,7 @@ }, { "chartID": "c78190d64cf1460d08ebeca1010f7316c4fdad3b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -36552,9 +32474,7 @@ }, { "chartID": "47e9a814d4d5041feba6e2aa6358ed5a96d52753", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -36570,9 +32490,7 @@ }, { "chartID": "63f1465bd93715d8e9fd9f5088b6b35d15e20510", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -36588,9 +32506,7 @@ }, { "chartID": "cb68d5fcf3d1b2a5d57d0ef1d4b8bc3b091599b3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "7", @@ -36606,9 +32522,7 @@ }, { "chartID": "4533a328fb79c12e54fdf6ac33ca0bbe7585989d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "13", @@ -36624,9 +32538,7 @@ }, { "chartID": "efee0fbf3ee41c3399299b015a16be3ff0f08f17", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -36642,9 +32554,7 @@ }, { "chartID": "d54bcee2eacc7da5531849b12674418f8195f387", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -36660,9 +32570,7 @@ }, { "chartID": "0c348facce45c68beb5d32ca3fd386fd52df0535", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -36678,9 +32586,7 @@ }, { "chartID": "fca74b4eb3d5f5bdf64ef195f6fdf9f1d07fd725", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "13", @@ -36696,9 +32602,7 @@ }, { "chartID": "267c940468ee777a89c05f3b4a696149e205b61f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -36714,9 +32618,7 @@ }, { "chartID": "cddfcaa197cba65253b1c286e28292e9a5f102c4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -36732,9 +32634,7 @@ }, { "chartID": "3e26cc283bd9bb67affa1f75fcba44163892da42", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -36750,9 +32650,7 @@ }, { "chartID": "6ec07d19ad2769fc6d5caac49a378a534402982f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -36768,9 +32666,7 @@ }, { "chartID": "3d6b9d3f459ed5e330124119f94a841e00d92652", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -36786,9 +32682,7 @@ }, { "chartID": "8d55b4cd55937bc9cb2fc79d63270e53dada2fa7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -36804,9 +32698,7 @@ }, { "chartID": "094e771e7ee71325ecff6af20c799cae1c7cfd08", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -36822,9 +32714,7 @@ }, { "chartID": "3c48a270e9bfe8ba9b505558f11b369e96dbead1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -36840,9 +32730,7 @@ }, { "chartID": "e0b27939a5cbd8540e5015d92cd97b302408aeac", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -36858,9 +32746,7 @@ }, { "chartID": "217b9289b553df6513a19dbc43936529124812c3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -36876,9 +32762,7 @@ }, { "chartID": "b04b4a897d8ef7f12cd0e6a1fdd557c496787037", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -36894,9 +32778,7 @@ }, { "chartID": "d01c1ac20a376a0c2d9588065eab99c1c097f8b3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -36912,9 +32794,7 @@ }, { "chartID": "c1230a0f953a5955888da5a6ceec9ee90fe3f2ee", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -36930,9 +32810,7 @@ }, { "chartID": "f0db14a7dd7319019664df7e37e8f300bd06fb36", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -36948,9 +32826,7 @@ }, { "chartID": "ccaa8f59c690e35c6d55d6400c2fe20e95477324", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -36966,9 +32842,7 @@ }, { "chartID": "0618193c53a546f19285e5a7914ced103f2d6b30", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -36984,9 +32858,7 @@ }, { "chartID": "5d6b61fdb09f86712827b680d38e19832ef8671a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -37002,9 +32874,7 @@ }, { "chartID": "9a738effa9c54adde0e964553019347d20a5a896", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -37020,9 +32890,7 @@ }, { "chartID": "22bec33d4a8ae1625a7edb4fb6cbb35542d94df2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -37038,9 +32906,7 @@ }, { "chartID": "2e12e7dcef3fa827fb6bf8a80977e98e41f6a575", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -37056,9 +32922,7 @@ }, { "chartID": "8c5307fb9b1f55879164eb404daaefa8ce48e2ba", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -37074,9 +32938,7 @@ }, { "chartID": "58dafa1c9caf3d6c56adefd8d55974500bc08206", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -37092,9 +32954,7 @@ }, { "chartID": "0e47c53383a4b6f99bfc17e12f7ceeb1831d970a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -37110,9 +32970,7 @@ }, { "chartID": "47ca421dad9607d6c7afb2a4a80cbe5807cf3e6e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -37128,9 +32986,7 @@ }, { "chartID": "6462ee13cdb557b090b9cac4415f2a7651ad05fc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -37146,9 +33002,7 @@ }, { "chartID": "922e5202d6721440a10f271a1ba80f9c3733c9f2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -37164,9 +33018,7 @@ }, { "chartID": "73339b205aec666ebf6a489a10afd42c9986ba66", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -37182,9 +33034,7 @@ }, { "chartID": "06b29d985a72a84c14df8a2a386e095418ec2599", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -37200,9 +33050,7 @@ }, { "chartID": "74ac2b13782f13973a673cc50477a9a10b5440c8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -37218,9 +33066,7 @@ }, { "chartID": "cfe82b76a6f1f2e80160af76afe0054aec079311", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -37236,9 +33082,7 @@ }, { "chartID": "7741c37d8f44770d37ad116107653d1851b2a42d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -37254,9 +33098,7 @@ }, { "chartID": "8cea492d1284c0b97e1daecf902ce3b9a4fd478b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -37272,9 +33114,7 @@ }, { "chartID": "627dc7bf90bbee4238942d04b6a03984fa4339d9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -37290,9 +33130,7 @@ }, { "chartID": "f15725af4d48a37b73ec2647f0f549f66596a526", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -37308,9 +33146,7 @@ }, { "chartID": "a234373984e5d2d4084fc76eef12485939950ddf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -37326,9 +33162,7 @@ }, { "chartID": "5ef7be3ffe3675944c7bd9d2e903986e947419c7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -37344,9 +33178,7 @@ }, { "chartID": "9e9e7aa3714c4532611df732322253d6947f4a6c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -37362,9 +33194,7 @@ }, { "chartID": "3afb1afeaa5207fe8f3321ac0f612a588e20cd4d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -37380,9 +33210,7 @@ }, { "chartID": "471e00d33901c5d90622270349a8cd161356f3a7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -37398,9 +33226,7 @@ }, { "chartID": "cb81d69e243384d43a620dcd9732ebe1cfb0c408", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -37416,9 +33242,7 @@ }, { "chartID": "1b95712c8e9ceedcda51cc9e5ecd698142737bfe", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -37434,9 +33258,7 @@ }, { "chartID": "d2da5002e9163fc7752fabf509e70f8ca4ddca54", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -37452,9 +33274,7 @@ }, { "chartID": "f5b2744c9f4baf1b107035d0cec82b829548bafd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -37470,9 +33290,7 @@ }, { "chartID": "aa45867b264c1598e03c4b62ac1981b8200af742", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -37488,9 +33306,7 @@ }, { "chartID": "d6060211364560db0afad77aa3d50e8f4ca13f7e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -37506,9 +33322,7 @@ }, { "chartID": "2acbfa11dfc2f07b1929a9ed13e89de4b1ae6543", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -37524,9 +33338,7 @@ }, { "chartID": "271866fb7c3470dd721d5fe3007e52217d72950d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -37542,9 +33354,7 @@ }, { "chartID": "7137dd9495b141edfc29fd5937e40597a6e1bfea", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -37560,9 +33370,7 @@ }, { "chartID": "54066d218e07e1814b6775f6124fc56240b7202c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -37578,9 +33386,7 @@ }, { "chartID": "29483778e58d99107c441d77755779866270cb43", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -37596,9 +33402,7 @@ }, { "chartID": "69d68f7a5f2ab23339c7db32d82dcf1bb148f97c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -37614,9 +33418,7 @@ }, { "chartID": "11c4be06365f6cc04e8a2d57e09a68546f4cce7e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12", @@ -37632,9 +33434,7 @@ }, { "chartID": "10e836c312df6e6b418958ca21a02735fc601cf3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -37650,9 +33450,7 @@ }, { "chartID": "71fe8a4f8a658d6c69012b329d32eb91497c252b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -37668,9 +33466,7 @@ }, { "chartID": "0b2098a823b7b481c3467b5740f8472a386136ba", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -37686,9 +33482,7 @@ }, { "chartID": "52af85605c9fec1518dde80e0efd2fff152477ce", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -37704,9 +33498,7 @@ }, { "chartID": "26bfd54acddaf12122f05b7fac479d56faac5b5e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -37722,9 +33514,7 @@ }, { "chartID": "d92b2d7222e1471ed0cf7b4c22cca77c5a68ed0b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -37740,9 +33530,7 @@ }, { "chartID": "6514ae40452214144428e4e9f4fdad5544411b6a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "11+", @@ -37758,9 +33546,7 @@ }, { "chartID": "63fa295e73f34a4ed01bfa8cc250d09805dbe596", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -37776,9 +33562,7 @@ }, { "chartID": "bc4647be9e460dde2a380355d8567c413746e717", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -37794,9 +33578,7 @@ }, { "chartID": "943f2a8bfb1813824ce69ee38a0e937f1167e978", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -37812,9 +33594,7 @@ }, { "chartID": "49d916138d8a791b1425de1bee2cb4c996225da0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -37830,9 +33610,7 @@ }, { "chartID": "40928e4b80f53c3aff2d0a19caa5f7aa15f29077", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -37848,9 +33626,7 @@ }, { "chartID": "a9476c6a00cb4a7988eb028393c4104f031cbd3a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -37866,9 +33642,7 @@ }, { "chartID": "7550762cc289d11fcf2f38c494fbbe7db5542b31", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "13", @@ -37884,9 +33658,7 @@ }, { "chartID": "a2e073836b82ff857754b77eea86083b9415ee72", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -37902,9 +33674,7 @@ }, { "chartID": "2e2095473101aa23d7d25f3398bc314a2aba5170", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -37920,9 +33690,7 @@ }, { "chartID": "dcba45d6cd4a2e883b85d5b4c250014d444cd348", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12", @@ -37938,9 +33706,7 @@ }, { "chartID": "2bbbcb8b3347c231884e724efffda909d8eda473", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -37956,9 +33722,7 @@ }, { "chartID": "82002e9dba0bd51fc4bd4639add55bef476507bb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -37974,9 +33738,7 @@ }, { "chartID": "ebbbbfe55a38e07e65f1e0d2f33aa321be36fa1b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -37992,9 +33754,7 @@ }, { "chartID": "4be3edb9f6c356f950ffe6982a52951459a0c6c2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -38010,9 +33770,7 @@ }, { "chartID": "de96cfdc2c27a016959f13f170396f44c2b206c7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -38028,9 +33786,7 @@ }, { "chartID": "9d6fdf12cfdadf33a080de360a22dbc1cc35bf8f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -38046,9 +33802,7 @@ }, { "chartID": "197c4f818a2d70feed558eb33ff4299c0cbc468e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "11", @@ -38064,9 +33818,7 @@ }, { "chartID": "cf76a9b017b8fc2be329762bb0a0779509fbf1cd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -38082,9 +33834,7 @@ }, { "chartID": "2e769c56b95543509b8aa386aaefb8d49dcb3e8c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -38100,9 +33850,7 @@ }, { "chartID": "fb3350c3cf5063849af686d49df9bb008da6f045", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -38118,9 +33866,7 @@ }, { "chartID": "63ae11ce7fb163630b9bfb662cf27fc4e527e9a2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -38136,9 +33882,7 @@ }, { "chartID": "69ef45db4318f13e7d4f6f7a1c04cf9b8d6540ec", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -38154,9 +33898,7 @@ }, { "chartID": "cd4357c23adb45fd686ccb5a39bb8470dd8597db", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -38172,9 +33914,7 @@ }, { "chartID": "1af63f4d2850cbf043b9091771933d6fa06c97b6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -38190,9 +33930,7 @@ }, { "chartID": "21fac8b2f246c12e046b37eb3ba2f1056ed7f3b2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -38208,9 +33946,7 @@ }, { "chartID": "0cf9973fc827e46116a39ffc45a7f560d4705664", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -38226,9 +33962,7 @@ }, { "chartID": "5fbf9ac85d272d8cf8d585d46c6940b482edf56d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -38244,9 +33978,7 @@ }, { "chartID": "e8bcf73326927b3afa4ec725a7742e01d03ba61b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -38262,9 +33994,7 @@ }, { "chartID": "42cda3f337d70ae0be0d1edc193a7b8577c70456", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -38280,9 +34010,7 @@ }, { "chartID": "5b61090cf83da8d9d6c231d21625195a80ff6ecb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -38298,9 +34026,7 @@ }, { "chartID": "a4f9ccefe9b632cd30f93f8c8cc9558ebafd102b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -38316,9 +34042,7 @@ }, { "chartID": "55b090d9addcb197eef4a7eaf762378e01bc18ac", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -38334,9 +34058,7 @@ }, { "chartID": "22bbd668bf5bd8616b7bd7ca55a5baf67be4d552", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -38352,9 +34074,7 @@ }, { "chartID": "5dc931c1df151b1f869109d491e151230145b1af", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -38370,9 +34090,7 @@ }, { "chartID": "2e4f9991b4b945c53b706a624d686526ba8514c9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -38388,9 +34106,7 @@ }, { "chartID": "4afc72f73741492cdfbf802642b9f465ea88eec2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -38406,9 +34122,7 @@ }, { "chartID": "5d981472312e40c2c7304344f85cf69a06cf285b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -38424,9 +34138,7 @@ }, { "chartID": "bfe79a9375510c81bf873291ec1e76b0e37ff4a5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12", @@ -38442,9 +34154,7 @@ }, { "chartID": "e772d1779ddb301ec0157eddaa67485823d9601a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -38460,9 +34170,7 @@ }, { "chartID": "d20322c7e11b241045d883442589f1f2e296c5a8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -38478,9 +34186,7 @@ }, { "chartID": "6ac4a2460a586f09b42227c903426202305d48ea", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -38496,9 +34202,7 @@ }, { "chartID": "406ab56b7504c9c7594f93e676e41b4fe8d05999", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -38514,9 +34218,7 @@ }, { "chartID": "2d6c7e1f36dcdf027f4fdb31e0a9023f27d755a5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -38532,9 +34234,7 @@ }, { "chartID": "6f83c57103b103b6570a14a2c64fffcc028a219b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -38550,9 +34250,7 @@ }, { "chartID": "02460fb5f02999a423c63ec3bdffb767dd26de26", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -38568,9 +34266,7 @@ }, { "chartID": "0b74ce8f7ed04d9473ea7dcefb9abb58e24cf7e3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -38586,9 +34282,7 @@ }, { "chartID": "e3a4ecbc3ab7d189aeceb109a81d94a94715b503", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -38604,9 +34298,7 @@ }, { "chartID": "633190fce7abf788f9e03d4809c2ffae6586f62b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -38622,9 +34314,7 @@ }, { "chartID": "b7863ec5578653e5153c46490a3705691cb88ccb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -38640,9 +34330,7 @@ }, { "chartID": "0ca269a4a6feaf0889c54af7de31d39f5f39ab81", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -38658,9 +34346,7 @@ }, { "chartID": "aa8460b0d383bf7d7c57721276e1f36629c04a02", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -38676,9 +34362,7 @@ }, { "chartID": "5ae08ccf61c232abdbed2fa706f05662c462d441", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -38694,9 +34378,7 @@ }, { "chartID": "10057d48d9a9624e4ccabf8852c40a7d383404b2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -38712,9 +34394,7 @@ }, { "chartID": "8e1acd504cd864e07c45870dde0451c0537df671", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -38730,9 +34410,7 @@ }, { "chartID": "2c0af72481350b9c8bf44da0fc88f40fbb9fb712", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -38748,9 +34426,7 @@ }, { "chartID": "883fbfaf73fd2c41acf5437e584f0604864b84b2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -38766,9 +34442,7 @@ }, { "chartID": "2ab3bf82a479f009507914c03ceac300373340cb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -38784,9 +34458,7 @@ }, { "chartID": "23e4823ad3dc1f6970540def12b7778d65c7feca", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -38802,9 +34474,7 @@ }, { "chartID": "a85fa2fbe7d77ec7b9ac15a91b6efceb2c206ccf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -38820,9 +34490,7 @@ }, { "chartID": "79f8b2e021cb859fe4fac829758b472efc5b572e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -38838,9 +34506,7 @@ }, { "chartID": "8e4c035a900723ee7c8748f1ed66a2e94bdc37fc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -38856,9 +34522,7 @@ }, { "chartID": "215b15ba66da7126fd062bf29c5aed6dd9e2fb6b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -38874,9 +34538,7 @@ }, { "chartID": "85c482a3077ef0315f9338b03d4dadf27b1a432a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -38892,9 +34554,7 @@ }, { "chartID": "a18d2965199eaca591dc611cff24495b83903b23", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -38910,9 +34570,7 @@ }, { "chartID": "7a93a45b4a8b91c9e3b59b1c98ccb39c0cf1f10b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -38928,9 +34586,7 @@ }, { "chartID": "13e7e9a56d253e4b02f0b4fbe87326f34c4ce375", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9", @@ -38946,9 +34602,7 @@ }, { "chartID": "00979e8c7880fd1cbc98039d81dd9060d3d5b67b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -38964,9 +34618,7 @@ }, { "chartID": "28e1575c1a9082a902333a482a1702ea50eb4e54", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -38982,9 +34634,7 @@ }, { "chartID": "7e18c311bd2b1a0c2dec2f0c15ffa1b4abb52d8e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -39000,9 +34650,7 @@ }, { "chartID": "738253191e3e97c7f6afff4cc1e90b8bb3ceaff8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -39018,9 +34666,7 @@ }, { "chartID": "6f1dcda1b9f00d97e99a8cbf9b433f12d78de2c1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -39036,9 +34682,7 @@ }, { "chartID": "2c517796612ea0d4523fe005c18ec5abb5e81b75", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -39054,9 +34698,7 @@ }, { "chartID": "22a7e42b29e68c3ef1f0bccec384fdcc7ceab2db", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "2", @@ -39072,9 +34714,7 @@ }, { "chartID": "8b6bf908af0ad5c590cc33c37a36932d126b7e25", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -39090,9 +34730,7 @@ }, { "chartID": "09b384d8d9c04cfea1e0ceeb6048eaae50efa0af", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -39108,9 +34746,7 @@ }, { "chartID": "32e2c1c20af9a5148772dbc18544f1d67d467502", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -39126,9 +34762,7 @@ }, { "chartID": "50512a57f174c8124d55e6404ad00336d0a13a11", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -39144,9 +34778,7 @@ }, { "chartID": "076f5b944fbee4e4ad31da4efd9e0d0d454e9060", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -39162,9 +34794,7 @@ }, { "chartID": "7f9b8b8c664a6a51bb5f9d7c9a65e63ebafc7b52", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -39180,9 +34810,7 @@ }, { "chartID": "1d7a9a19d33b9d1467a14162c7a6a6de730626a5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -39198,9 +34826,7 @@ }, { "chartID": "e8fb3dea29c57cebf774eeccceed433d040480ae", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -39216,9 +34842,7 @@ }, { "chartID": "b0bf1fd74431b5ff090332c971ee7c119b9e0211", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -39234,9 +34858,7 @@ }, { "chartID": "016333091411bbefc088193e640649dab88d2043", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "11", @@ -39252,9 +34874,7 @@ }, { "chartID": "e8a08425e522bd0029eb1f4b3ab1b03a9926305f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "13", @@ -39270,9 +34890,7 @@ }, { "chartID": "2d28676c9a4485e0bd0acb65b26017a1e7fc85ea", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -39288,9 +34906,7 @@ }, { "chartID": "1b07ca11892d9ba54fbd31eece025df9cdbf83ad", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -39306,9 +34922,7 @@ }, { "chartID": "28f718262290160b0ee87bd42ebcdbfe0bdcee35", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -39324,9 +34938,7 @@ }, { "chartID": "618609d3468cbd8179138afa9e353b133c413aeb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -39342,9 +34954,7 @@ }, { "chartID": "81b794468d677122f724c83d65661b0c566ad25f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -39360,9 +34970,7 @@ }, { "chartID": "e909d5b87d3dd80e3f5d6564d669b08ed3c00c3c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -39378,9 +34986,7 @@ }, { "chartID": "a7d06d1f9cbf7b255b006d440bfe973e1b91f57f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -39396,9 +35002,7 @@ }, { "chartID": "0178f2fc56286b590080cf8e443e490e41b59910", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -39414,9 +35018,7 @@ }, { "chartID": "33d7d7d1cf4f5289d6e8b7e1490aa4cadbd3fab9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -39432,9 +35034,7 @@ }, { "chartID": "9296a51add9c5030193cce23966f252f1d134c28", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -39450,9 +35050,7 @@ }, { "chartID": "fb0f69b20e1cde0add114c8132ede3c177b31a6d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -39468,9 +35066,7 @@ }, { "chartID": "3c8de3c0432eb89dc1761dc3b20048dabe295f32", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -39486,9 +35082,7 @@ }, { "chartID": "e9db7ffeb4836f59589ce094835d3f456fe6838f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -39504,9 +35098,7 @@ }, { "chartID": "96cffdef828921084b78694fa329603ffae25376", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -39522,9 +35114,7 @@ }, { "chartID": "1bc0880f228911a2c6034a7304c614940e161e90", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "13", @@ -39540,9 +35130,7 @@ }, { "chartID": "34b939fa0f8c246f9c258b8f0ae2afefcd4c4809", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -39558,9 +35146,7 @@ }, { "chartID": "d8ede67830092474d30ce8000663914c88aac256", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -39576,9 +35162,7 @@ }, { "chartID": "b17554d1f913dcd5e1b6c06ce549a114be26d501", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -39594,9 +35178,7 @@ }, { "chartID": "b311e1f37f375d9bba1abc32d249ab09265b6a44", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -39612,9 +35194,7 @@ }, { "chartID": "6d551abce74fedb5e828f7e38c1863ab16894246", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -39630,9 +35210,7 @@ }, { "chartID": "8eb328f19a8ee27b7d2f21feeab44a036c530efe", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -39648,9 +35226,7 @@ }, { "chartID": "00d6013d2665ed03c82aff5ecd1cc9cbf2f1c261", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -39666,9 +35242,7 @@ }, { "chartID": "427a530dc1a4894641ad4ae97f7e118dd5a1835e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -39684,9 +35258,7 @@ }, { "chartID": "944534aec06adaf98bbc5e501e05a2d6ecf7699b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -39702,9 +35274,7 @@ }, { "chartID": "fd67fd631ea1abba0f868f6c2f331a63f0b37e5e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -39720,9 +35290,7 @@ }, { "chartID": "1bceefd6d1edcc9bb91fdfe7be38aad1f6f2e4fe", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -39738,9 +35306,7 @@ }, { "chartID": "e216ff8e95804ff97eb4f2a36f95d5b17c13eda1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -39756,9 +35322,7 @@ }, { "chartID": "f96f35a534d00eac6d127fd2ca0c715de16d6518", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -39774,9 +35338,7 @@ }, { "chartID": "d0eea39abc5efc8f3603c8417b938b28647c54cd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8+", @@ -39792,9 +35354,7 @@ }, { "chartID": "b1b34aa967f913bd1e69d46e89e5d58332acc614", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -39810,9 +35370,7 @@ }, { "chartID": "58b6745a0c733d9839108dacae47b3af0ffde946", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -39828,9 +35386,7 @@ }, { "chartID": "66e4398dc5077e7171b9e6902188a585d7f8ad1a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -39846,9 +35402,7 @@ }, { "chartID": "262fd42aca522e7b94ccb0d3e8f39657b7243c7d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -39864,9 +35418,7 @@ }, { "chartID": "4e511b4eb74acf523be4bfeb726b92b13694b842", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -39882,9 +35434,7 @@ }, { "chartID": "160d510be32f227732edc7c000e828748f7fdd46", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -39900,9 +35450,7 @@ }, { "chartID": "a41da5bb71c355463357a550a21a0d4aeaed63e7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -39918,9 +35466,7 @@ }, { "chartID": "fff7162429634f29bd5c75c9f31f60ae8217de29", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -39936,9 +35482,7 @@ }, { "chartID": "be23e4d1c880bffc3aa8fb72f9b22ea20e82b2f5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -39954,9 +35498,7 @@ }, { "chartID": "3b570ce464abfe87a479968bcb03b9889d5d9853", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -39972,9 +35514,7 @@ }, { "chartID": "746e323774368ac59a99256f8c27b4554b0ed08d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -39990,9 +35530,7 @@ }, { "chartID": "8ac4c1ab5a3d4584dc6c0005e7e882ef3fe449e8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -40008,9 +35546,7 @@ }, { "chartID": "1ab42d6db0935b09c37aa9cc124c067f31b705a4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -40026,9 +35562,7 @@ }, { "chartID": "addc80dfe05554d8cd4cdf343e601a2989a58500", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -40044,9 +35578,7 @@ }, { "chartID": "303142b3b0d16229cd12630f1bb78e5aecef1524", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -40062,9 +35594,7 @@ }, { "chartID": "f3cda471829375a28817964c06cb28ae21da57fb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "13+", @@ -40080,9 +35610,7 @@ }, { "chartID": "f58995f8db80cc32d96217ea555554af75e609d0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -40098,9 +35626,7 @@ }, { "chartID": "4da370172b71d0b0d830f98a8b9441c08ce8ff5f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -40116,9 +35642,7 @@ }, { "chartID": "9339827a2141f483a3fb5e4c8208e30f6256efa1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -40134,9 +35658,7 @@ }, { "chartID": "feaeb862e5d538d944904dd8bfc8cb1f6ec02617", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -40152,9 +35674,7 @@ }, { "chartID": "d04fe0a3bd718edc0ac4712257580f7c337ac5dc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -40170,9 +35690,7 @@ }, { "chartID": "e73512edb0eda90f095841feb1ebc9a8c0c5d5d6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -40188,9 +35706,7 @@ }, { "chartID": "9d25c3d5315482c83063efaf1a329d230299ac39", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -40206,9 +35722,7 @@ }, { "chartID": "57b994c5a7f4491887edb5fcbfca103b0336bfdd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "11+", @@ -40224,9 +35738,7 @@ }, { "chartID": "21b0d85b8f96ad1abfea9c3a689862651f8009a4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "13", @@ -40242,9 +35754,7 @@ }, { "chartID": "3af21072ab4c6d180b5d6fbdc8f6a6f05f2e9d4c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -40260,9 +35770,7 @@ }, { "chartID": "e93c74b150f53a30fa8283bc9ba65d20ae49389c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -40278,9 +35786,7 @@ }, { "chartID": "59395e48539ff6198a9ef2bf2ee35857cefdf948", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12", @@ -40296,9 +35802,7 @@ }, { "chartID": "0012a1af17191826e9226228ec941f63083a00d1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -40314,9 +35818,7 @@ }, { "chartID": "11d067c404e383f4db7c6626a512f368f0a54a41", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -40332,9 +35834,7 @@ }, { "chartID": "24e5ae9286dc87ae91cae163fd7cf3fbd41e27be", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "7", @@ -40350,9 +35850,7 @@ }, { "chartID": "e8b0c5958f2be2cff943016a7aeed56c0f751da7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -40368,9 +35866,7 @@ }, { "chartID": "04079f04c48669e00a6ca0b310fd4c5fbcadf44c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14+", @@ -40386,9 +35882,7 @@ }, { "chartID": "ade3031498d3cc54731a6cf4bc18cb1190f90c07", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -40404,9 +35898,7 @@ }, { "chartID": "4040d9e785e220a7f4f50d424466e5bc1b622963", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -40422,9 +35914,7 @@ }, { "chartID": "97f78b8bfbbb7a0a45f801e2c86f98336fbd549a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -40440,9 +35930,7 @@ }, { "chartID": "f7f6e0abded0d729981484d2d84856489a9c7ae4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "11", @@ -40458,9 +35946,7 @@ }, { "chartID": "5088406aff128bb71ce5bd28c6bd6c8aeb6199dd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -40476,9 +35962,7 @@ }, { "chartID": "4a21a3863ebe520f3c2de86f67cc163ce8e42f53", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -40494,9 +35978,7 @@ }, { "chartID": "fe9e51a1b2abaa6e0ebbefa03eaafcef6abf8f00", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -40512,9 +35994,7 @@ }, { "chartID": "f83e28cabc5c16168b1e41fb4fde15ca7f936f6f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -40530,9 +36010,7 @@ }, { "chartID": "9ffbdd34705e70b67127524534884599c9d46676", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8+", @@ -40548,9 +36026,7 @@ }, { "chartID": "e3d291ed901a09b9cdc9bf8a6820734cc717e992", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "7", @@ -40566,9 +36042,7 @@ }, { "chartID": "4b259ebddf30a756aa7338bb168ce2c72e39768a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12", @@ -40584,9 +36058,7 @@ }, { "chartID": "e5c74b80f0b180bf707cd9a121882cdefc808010", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -40602,9 +36074,7 @@ }, { "chartID": "3619281cae2a62dba5742adda1cbfe136ac2d7e0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -40620,9 +36090,7 @@ }, { "chartID": "fe7af9d60862a14d6b9a5069bdd75cafba84f8b1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -40638,9 +36106,7 @@ }, { "chartID": "bc46e6de7ee7e6db9c5d2b044ffcb6812fd6d27f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -40656,9 +36122,7 @@ }, { "chartID": "38660e9cadb5da324995706f329d5492e5048f7d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -40674,9 +36138,7 @@ }, { "chartID": "0cce7a542774974e954967f2086816bfdb3d89b9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -40692,9 +36154,7 @@ }, { "chartID": "66617cbe6720df76c2d07f1422cdc1ca471b0acf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -40710,9 +36170,7 @@ }, { "chartID": "76c4f906e1792ebe5e841b3ca867137e1a2bc3d1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -40728,9 +36186,7 @@ }, { "chartID": "6ae024168afb7e8c2a5c07fada5b9b1f31c5b404", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -40746,9 +36202,7 @@ }, { "chartID": "2504be6e03ba11c7fb27ce53b73149162f58b70e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -40764,9 +36218,7 @@ }, { "chartID": "4b8c15e7174fdbda5f13dff6b0596ca2714bf953", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -40782,9 +36234,7 @@ }, { "chartID": "c57e7bce4286b582355e997e155ad39fa3b91401", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -40800,9 +36250,7 @@ }, { "chartID": "a6cce172b5ef02eb320db4c28440f15112e6ecd4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -40818,9 +36266,7 @@ }, { "chartID": "7fa71c087bc85029ac67ed75ccf5a30bd9e5feba", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -40836,9 +36282,7 @@ }, { "chartID": "5d8ef62a6d6c219f5b0fbe27f1e4bda729f71e35", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -40854,9 +36298,7 @@ }, { "chartID": "dd3bcdbc0e0513b5ea619d456ba7742d71667f76", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -40872,9 +36314,7 @@ }, { "chartID": "25d2e580ba27613ea826e24c54f80b8fe3f09097", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -40890,9 +36330,7 @@ }, { "chartID": "b0e6e6809585e5f4e5ada50237255ddba9c49628", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "13+", @@ -40908,9 +36346,7 @@ }, { "chartID": "0e63ff629aeb67b8db5d3a074f56fff88a4d7d5f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8+", @@ -40926,9 +36362,7 @@ }, { "chartID": "3939cad67be7813e1fc44bb11204213da27b915b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -40944,9 +36378,7 @@ }, { "chartID": "d1adf4c06f84276ce4542f9729af9283cd273400", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -40962,9 +36394,7 @@ }, { "chartID": "28aa87eabf5e7eb2112b0bb486e9b6fd00f64720", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -40980,9 +36410,7 @@ }, { "chartID": "604d51d3ba7e8203afc3f2693aa0fac502816117", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -40998,9 +36426,7 @@ }, { "chartID": "b9d07175ec8e48b8aec303d43298039b80db2d84", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -41016,9 +36442,7 @@ }, { "chartID": "4f25382e349f4af9a54ff7e014aaecbdfaa2c3d0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -41034,9 +36458,7 @@ }, { "chartID": "53d4f6bd3a25c5128007da021277a066bd61e4dc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -41052,9 +36474,7 @@ }, { "chartID": "8919e36d99e0fd83f2d45ae165be4710feadb5a6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -41070,9 +36490,7 @@ }, { "chartID": "7f87a1c74def217d09d7bfc69ed98649538ddbd3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -41088,9 +36506,7 @@ }, { "chartID": "d6d53318297ddf79de55ab8f058f49e5398baa7f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -41106,9 +36522,7 @@ }, { "chartID": "de4f9b33cc8b837d537ad05ba421d547e92ee5d5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -41124,9 +36538,7 @@ }, { "chartID": "1741296238baf0af45ec011cbf44f853c2bada72", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "13", @@ -41142,9 +36554,7 @@ }, { "chartID": "7626048e0370edc036e3ffa909f1498fb21cc340", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -41160,9 +36570,7 @@ }, { "chartID": "7028e38187030ceac7459a523b35ab21a2bee72b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "7", @@ -41178,9 +36586,7 @@ }, { "chartID": "69bca17797c4701c4bbb88163e6740b2bc8b48ec", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -41196,9 +36602,7 @@ }, { "chartID": "321ded893b287cda397681284c26ac08a6acccfa", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -41214,9 +36618,7 @@ }, { "chartID": "938684c1b1a9b4e29fdfd3778b093c2fc5f067d6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -41232,9 +36634,7 @@ }, { "chartID": "d02d7d071ed38e479ef16fa9feb936b3bf313406", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -41250,9 +36650,7 @@ }, { "chartID": "4cf1daed81dc6b48c10ad69d618d0929db5c32c0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -41268,9 +36666,7 @@ }, { "chartID": "bfe0ffea82e38e90f16cfb7d62dd64c3cca08151", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -41286,9 +36682,7 @@ }, { "chartID": "9da9be0797d436fd5a79a5858155d495444d9140", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -41304,9 +36698,7 @@ }, { "chartID": "25668cfbf0b9a2afb4156ca05c969754876c3bce", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -41322,9 +36714,7 @@ }, { "chartID": "74842a4560b2fe566165f509e52aeec294f49d6b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -41340,9 +36730,7 @@ }, { "chartID": "d2a0d1743bb33b63a0ad578863c2a53ff4e6f930", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -41358,9 +36746,7 @@ }, { "chartID": "787f0b2cb34f34433b3d58a2102a1059bbca0de5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -41376,9 +36762,7 @@ }, { "chartID": "41a60fd7880965927da0c2ab6fa51564d840e034", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -41394,9 +36778,7 @@ }, { "chartID": "a1c76b1b668340489fde807b800beaa7f33276fb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -41412,9 +36794,7 @@ }, { "chartID": "7b2e199c1d6c054c6a04662664683ecaa6dd4fab", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "11+", @@ -41430,9 +36810,7 @@ }, { "chartID": "c152c02e107f0558dac0d31373fe1b4dc6c609cd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "13", @@ -41448,9 +36826,7 @@ }, { "chartID": "9710932fbc0e6b9e31213aca33840d893d0183b2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -41466,9 +36842,7 @@ }, { "chartID": "046d2dcbb9b540547fca15e4e3d557583d7b61f7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -41484,9 +36858,7 @@ }, { "chartID": "92e37fb1a96ae2c6d3a5d65082d21ffe83ff3beb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -41502,9 +36874,7 @@ }, { "chartID": "c3f1bacdc814d87d1758b52d7e6968a2637f9c1f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -41520,9 +36890,7 @@ }, { "chartID": "2b7dd8d56852d7868aa982bffb3047cfa3d3de9f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -41538,9 +36906,7 @@ }, { "chartID": "6fc35edf0029311645c0ccc67c6525139fa80867", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -41556,9 +36922,7 @@ }, { "chartID": "691c055eb643cce04c8b960be6b60ed6cae8d86b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -41574,9 +36938,7 @@ }, { "chartID": "c3c4780a430bad022a39a7a3c4792551811e2f29", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -41592,9 +36954,7 @@ }, { "chartID": "c8ddb2822c681b7f6f2d8c1dc3ae04843293e051", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -41610,9 +36970,7 @@ }, { "chartID": "ca987ca09056bfb0b3a97eb61607e80d80649290", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -41628,9 +36986,7 @@ }, { "chartID": "205bf60eaf373691a80dfa037562a6ea71daeca7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -41646,9 +37002,7 @@ }, { "chartID": "32da566edf4b510dea185562cfaf57ca1d805927", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -41664,9 +37018,7 @@ }, { "chartID": "53554a275759ef30fc04052d542656e7b4084b96", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -41682,9 +37034,7 @@ }, { "chartID": "68cbf271011b6606c95b03be55a418279acdbe69", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -41700,9 +37050,7 @@ }, { "chartID": "50882bdcf1bee9c4c863fd7ef23bdbbb62034c26", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -41718,9 +37066,7 @@ }, { "chartID": "6652f499121c359b2bcf9c20ddcbdc83d2232d95", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -41736,9 +37082,7 @@ }, { "chartID": "3f592870df0d2c8b2781c16058e306c0b00b0b9d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -41754,9 +37098,7 @@ }, { "chartID": "f59bf75bd3134c50c9b1a0407ed5a6ff2cdd101a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -41772,9 +37114,7 @@ }, { "chartID": "3ae1e7c10b5b2d4a7b7237cb0636de8c60536b3d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -41790,9 +37130,7 @@ }, { "chartID": "319f8a8e00d12b8eb48f477a68ad28e2f609d928", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -41808,9 +37146,7 @@ }, { "chartID": "75c71953dedf10f26713514f81f595664f9d53cf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -41826,9 +37162,7 @@ }, { "chartID": "8b571c351a7539c01e64f6303629df9e3cc80f63", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -41844,9 +37178,7 @@ }, { "chartID": "4c4e70868d2a6f594712aad879e82d12e2028365", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -41862,9 +37194,7 @@ }, { "chartID": "8290fbb67af5bf40078c8c27100fc7a9058a191d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -41880,9 +37210,7 @@ }, { "chartID": "3fd506795dcb92685497b85f47368247c72204c3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -41898,9 +37226,7 @@ }, { "chartID": "5fa9eb16316fc8ff0c03930403c5da12d76c8a8a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -41916,9 +37242,7 @@ }, { "chartID": "897ebf25b1bab7a0b10d331b6acb9a07223d3295", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -41934,9 +37258,7 @@ }, { "chartID": "046811c5ee78f5d84859c139f847243a67c3acb6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -41952,9 +37274,7 @@ }, { "chartID": "5bc1ddccc5cf608f811f64387b40754570f3b5be", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -41970,9 +37290,7 @@ }, { "chartID": "340176d1ddcd2cbc7bf3b636c4fa3fb82bfa177c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "7", @@ -41988,9 +37306,7 @@ }, { "chartID": "d6043d217ac83cfb8feaf7f54e38ab21d4ad809b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -42006,9 +37322,7 @@ }, { "chartID": "82aebd387e6be776b654d049bb37cdd3548ec928", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -42024,9 +37338,7 @@ }, { "chartID": "135ed48ae644039a05ed0342b74c16130cc89232", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -42042,9 +37354,7 @@ }, { "chartID": "34a804a6313811c7012f718326908784da95d33e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "7", @@ -42060,9 +37370,7 @@ }, { "chartID": "bb9611daf82101be5aec9042b43c226d0721d17c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -42078,9 +37386,7 @@ }, { "chartID": "6ae15dbb1ff1e54b459b75b7147f5f25cfa7a248", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -42096,9 +37402,7 @@ }, { "chartID": "da0287e1e5b7b69145a588a757ca6e1130e23f24", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8+", @@ -42114,9 +37418,7 @@ }, { "chartID": "2f49fadc96efa6139cca7a216fa580d35261dfa4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -42132,9 +37434,7 @@ }, { "chartID": "217b247786014a55843aa65d3c085eb8848a3532", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -42150,9 +37450,7 @@ }, { "chartID": "3b20599ac6d3cc2c007fe20d665db13701e56d35", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14+", @@ -42168,9 +37466,7 @@ }, { "chartID": "3a0608f7513536da77b44f161ee7b63125bb216c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -42186,9 +37482,7 @@ }, { "chartID": "8827e203a8af5c49be13f75828e3d50c8e733e71", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -42204,9 +37498,7 @@ }, { "chartID": "2f3e4c03f722ff68494665259fa6b2da8c0744c6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -42222,9 +37514,7 @@ }, { "chartID": "a0d4111803ae6128bde56846357a5e87d73609c5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -42240,9 +37530,7 @@ }, { "chartID": "fc419b49aaa4e535d590ae761f44c01590e06958", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -42258,9 +37546,7 @@ }, { "chartID": "9544a2b79f281cc2930845e44f14a160ea36dfb3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -42276,9 +37562,7 @@ }, { "chartID": "e2fba7eed0ed54c624ac3904144dc0ded1f592b8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9", @@ -42294,9 +37578,7 @@ }, { "chartID": "30871f96d3666843b3a3fe6c5887e9bf02f8127f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -42312,9 +37594,7 @@ }, { "chartID": "965c0201547d3e307396e783e5ddb69d013a7c1f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8+", @@ -42330,9 +37610,7 @@ }, { "chartID": "1450dbe03d41befb851e778ef7c1858935602386", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -42348,9 +37626,7 @@ }, { "chartID": "04041f79229ba62563f1e7a03290a89f60981fe0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -42366,9 +37642,7 @@ }, { "chartID": "4d475342890786b454b09c3d87b37975b60ead50", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -42384,9 +37658,7 @@ }, { "chartID": "730dc568b60e6f9fb70ee01eac3fe5a385f6c5bf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "13+", @@ -42402,9 +37674,7 @@ }, { "chartID": "665330d486ec371e38f865240da397129640e987", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -42420,9 +37690,7 @@ }, { "chartID": "1ce0dadb24f53fc1acd92a0e39b6b4352c7a65f4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -42438,9 +37706,7 @@ }, { "chartID": "d933535df64d64a0311f21cedabb2767015d5c64", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -42456,9 +37722,7 @@ }, { "chartID": "cc24492be193560759ac4bce789ef718a338483d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -42474,9 +37738,7 @@ }, { "chartID": "48caef8e3ee0b0ec846091c5ac521011eb3079c4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -42492,9 +37754,7 @@ }, { "chartID": "347c1fef5c2bc2f044067087cf80aa8b0114e8ea", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "7", @@ -42510,9 +37770,7 @@ }, { "chartID": "d61023edafd291f208854b3b663850172c11c5a5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "13", @@ -42528,9 +37786,7 @@ }, { "chartID": "96c93231e3a8225b1b7fde2425e9cc15033ae0c1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14+", @@ -42546,9 +37802,7 @@ }, { "chartID": "5aa5e91dbe80247ea6a87e78b97fe9edd75cda36", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -42564,9 +37818,7 @@ }, { "chartID": "3b99625c4a4e6e66c129a3a446e4d1826f303f3c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -42582,9 +37834,7 @@ }, { "chartID": "4dc30d2b5750f5b1b46887f63786248777c0bdda", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -42600,9 +37850,7 @@ }, { "chartID": "e6524b3dce9ad9534d2199d40b25e282e6058fee", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -42618,9 +37866,7 @@ }, { "chartID": "9304280dec0949302163fbf6df11ba6a389816fb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -42636,9 +37882,7 @@ }, { "chartID": "03856c1755bbccc2ea7e425a09edb1905e276283", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -42654,9 +37898,7 @@ }, { "chartID": "ec2bc155576cf384933435f1b69967479e2d96f0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -42672,9 +37914,7 @@ }, { "chartID": "560584fffcf7efc6de8af6d43a633dc1e745e0ef", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -42690,9 +37930,7 @@ }, { "chartID": "b4fa62a364fb3df326e6dfa4a3650de56bc3308e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -42708,9 +37946,7 @@ }, { "chartID": "133ae5cb5f062995bb600007d56d26ae796503e1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -42726,9 +37962,7 @@ }, { "chartID": "5beea48a732ad5e6a445795287704e46ff68bfd6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -42744,9 +37978,7 @@ }, { "chartID": "beb38da22148c666b2f21df125c7e94f033b0400", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -42762,9 +37994,7 @@ }, { "chartID": "a0ff10105ecd8b4c8680f866fe5090a4186ef77a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "6", @@ -42780,9 +38010,7 @@ }, { "chartID": "246d3fe14bde0fe4a03d48ad1e4e8769e9461f71", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -42798,9 +38026,7 @@ }, { "chartID": "c9885d980fa50f5743503951343ad641aeeaef26", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "8+", @@ -42816,9 +38042,7 @@ }, { "chartID": "a692c87c77ece9dbc36b365e5fc40a7490e328e2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -42834,9 +38058,7 @@ }, { "chartID": "4c3dadb4d31ed34c2071aa1c43c0f5b62b45212c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -42852,9 +38074,7 @@ }, { "chartID": "cdbd517163e625f613c7d3ef69d985ed1ed9920d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -42870,9 +38090,7 @@ }, { "chartID": "873aa251882643bd9f3d49764c3d0d416b6b9da6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -42888,9 +38106,7 @@ }, { "chartID": "ad12f83fe85ea865315258d5c51cce83198fe0f3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -42906,9 +38122,7 @@ }, { "chartID": "920820af05d48840af591274637f56bcaf8808bd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -42924,9 +38138,7 @@ }, { "chartID": "3ea0a4e02b5933c9e1781a393ea84a0610a52a01", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -42942,9 +38154,7 @@ }, { "chartID": "1bd46bc0d20b0451774f0e8717a9a1eae74546ac", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -42960,9 +38170,7 @@ }, { "chartID": "c5a0b5e65c08f42329833b252813970af48f27da", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "11", @@ -42978,9 +38186,7 @@ }, { "chartID": "1d2f1807c5eb8057dc66af36ca343e972c4a26e0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "12", @@ -42996,9 +38202,7 @@ }, { "chartID": "f8dfb6e4c6c1d6cffcb98adb957c987890a87481", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -43014,9 +38218,7 @@ }, { "chartID": "d988bab9138239a2ba9f545f2749ce99b8937af1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -43032,9 +38234,7 @@ }, { "chartID": "4c6b6499c0ce4e0feb2fc2a9144594ff1ba55daf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -43050,9 +38250,7 @@ }, { "chartID": "5d3b3ac6ef08aec21a304d9d67b067f7c11c49a0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -43068,9 +38266,7 @@ }, { "chartID": "cbf910f396db0c883a27eecb06356d1321b450cb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -43086,9 +38282,7 @@ }, { "chartID": "81794d6e4b1cc8b2c1522e1ff42e1b4f27d39197", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -43104,9 +38298,7 @@ }, { "chartID": "22634bca5a44a0beb119e5e56128d915a61072b0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -43122,9 +38314,7 @@ }, { "chartID": "26dd7f0ab4550ef4cc5b3f1b29759a3f6952307d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "11+", @@ -43140,9 +38330,7 @@ }, { "chartID": "7f9be9f7ca28cffbc0ff3edd5f49235a8556eae9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "13", @@ -43158,9 +38346,7 @@ }, { "chartID": "f86e0a0a1dab34ac980fdd21d9eea01b4c967132", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -43176,9 +38362,7 @@ }, { "chartID": "8ea306da0e3473b906cb85fd1ea890f3440b5339", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -43194,9 +38378,7 @@ }, { "chartID": "ebfb8a0016742987e49ef207c8ae0c646e471e66", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -43212,9 +38394,7 @@ }, { "chartID": "4ba3dad97c5255ce8f65cde2ebaaee8e3ba175a6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "11+", @@ -43230,9 +38410,7 @@ }, { "chartID": "c3f4c38db9d44c04f5c5769d220d40845f0bff0b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "13", @@ -43248,9 +38426,7 @@ }, { "chartID": "f52b5b3b25eccdfa23ed74ea6d3a61b526b83ec1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -43266,9 +38442,7 @@ }, { "chartID": "741a3f3f8a2d401e837d98210ddf8b99be0d8663", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -43284,9 +38458,7 @@ }, { "chartID": "b80d30378fe059ab854908afb130144537a9aa87", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -43302,9 +38474,7 @@ }, { "chartID": "2a21d7fae6048b0ad1ffbe33f430b26cd1deebca", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -43320,9 +38490,7 @@ }, { "chartID": "dcdccfd382930e53d4bdfbf8fa2b6345ed101d5c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -43338,9 +38506,7 @@ }, { "chartID": "0b850ebf306691b4341a14eff508ef2a550e5ac9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -43356,9 +38522,7 @@ }, { "chartID": "e3ad68a34f5a0d3d854911ba24b8caaab2c18d69", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -43374,9 +38538,7 @@ }, { "chartID": "64c16cd7de684cb251f8cb22b557476aeb299497", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -43392,9 +38554,7 @@ }, { "chartID": "5ef267fd4404bbe0e92f5ec3109f3072306f00e9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -43410,9 +38570,7 @@ }, { "chartID": "de3d14a7f9cb245d4f12eb340cc69324dd72ccc2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -43428,9 +38586,7 @@ }, { "chartID": "2100c164517a54a3277eb3f815c22f917085addb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -43446,9 +38602,7 @@ }, { "chartID": "35a9fe6f211634bcc8724b49c53d37122cfae563", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -43464,9 +38618,7 @@ }, { "chartID": "bbd77612d0f7688cdd2de95b853654972612c1a6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -43482,9 +38634,7 @@ }, { "chartID": "c86949c786b8fc0d0fbfc405fb113090285f65a1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "7", @@ -43500,9 +38650,7 @@ }, { "chartID": "74f3439f4b249b3b92e1692a8cef79faa7560091", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12", @@ -43518,9 +38666,7 @@ }, { "chartID": "c31e488e9a63443a1ca3b9747ee87aad7689f9e9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -43536,9 +38682,7 @@ }, { "chartID": "7b462fb33e9acdfeeb76ce6c137a80066d889cd7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "10+", @@ -43554,9 +38698,7 @@ }, { "chartID": "6c5fc6f773e29ebc1f5f069c2e9df193069928f3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "7", @@ -43572,9 +38714,7 @@ }, { "chartID": "85f5436b4ea0992534381ce89dec94c654960ded", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "13", @@ -43590,9 +38730,7 @@ }, { "chartID": "9ba84a3aafcf2a54b1436dc80e3c17abf7e9ddb4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14+", @@ -43608,9 +38746,7 @@ }, { "chartID": "fff8b916914c85860623f70121d4ca54c07b5cfe", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "14+", @@ -43626,9 +38762,7 @@ }, { "chartID": "9949664362bfe66d1e881a473cad705fadafe3f0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -43644,9 +38778,7 @@ }, { "chartID": "ff71cda450596cce53b0fb662aaf89ab05493237", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -43662,9 +38794,7 @@ }, { "chartID": "14a19dc7443dec2917aeb55bea1d1a8f786c8974", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -43680,9 +38810,7 @@ }, { "chartID": "50f96ceec944e08008da29dae608cc840c7c92ed", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -43698,9 +38826,7 @@ }, { "chartID": "77a05ccd05065a380093464789a980d2133c3af3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -43716,9 +38842,7 @@ }, { "chartID": "ffa8464c926fde13dcfb92c3ee1130011ee79443", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -43734,9 +38858,7 @@ }, { "chartID": "ea7fd60cf90e631195dfd24ef88d5b6ab19e0968", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -43752,9 +38874,7 @@ }, { "chartID": "23a61c7ec565c05b7401fd9f6b24b001e9fc9eed", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -43770,9 +38890,7 @@ }, { "chartID": "02a3571a355664930e1ba9ac9df4088300edad8a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "6", @@ -43788,9 +38906,7 @@ }, { "chartID": "4d550c3f5fa16f5bb13631d1d206481ec7c24c83", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -43806,9 +38922,7 @@ }, { "chartID": "574d90b537573eacf6c0b9a587cfe7cbe6beeed3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9+", @@ -43824,9 +38938,7 @@ }, { "chartID": "d731e961715071c82bfff7dd85b1bb44cfab1466", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -43842,9 +38954,7 @@ }, { "chartID": "062ae6369cf2f7c1f37991db6a50f75457825bf1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9+", @@ -43860,9 +38970,7 @@ }, { "chartID": "ecab8b3a157c328221402bbba91cf7d204fdf383", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "7", @@ -43878,9 +38986,7 @@ }, { "chartID": "ffcb8d09fe9d1578a221246e0e8258b4952f1d4a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -43896,9 +39002,7 @@ }, { "chartID": "ac3d9678a1cc2fda1a8d5f488f7a94175dbb6f2d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -43914,9 +39018,7 @@ }, { "chartID": "a26c6a7ae06aca8bb3f67f80f914504d643b64b3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "14+", @@ -43932,9 +39034,7 @@ }, { "chartID": "02497d0dac38f46b99c8daff1bf5bda0e3de5ce3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -43950,9 +39050,7 @@ }, { "chartID": "ef89ffdfdeeec69af0f79a3d8411b042fe21ab8e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -43968,9 +39066,7 @@ }, { "chartID": "5bfd409b3cc9ef15c8efbfb98890fe4b2dc7d45f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -43986,9 +39082,7 @@ }, { "chartID": "fec8a6136140969b4aa24800b36277cec3e3e237", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -44004,9 +39098,7 @@ }, { "chartID": "f51a3f0f39723ebf3fd7c83313f8658c547c2286", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -44022,9 +39114,7 @@ }, { "chartID": "56b929dffb2742c1f21e941c6de4066995b9eff5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -44040,9 +39130,7 @@ }, { "chartID": "74617cf12a2ff108851022ce5acf776921c9fe19", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -44058,9 +39146,7 @@ }, { "chartID": "481de939dba4cd8858b9c51e725e7b8e79a994a4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -44076,9 +39162,7 @@ }, { "chartID": "5b1877369c6443be4da8c414c384cef226509fc7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -44094,9 +39178,7 @@ }, { "chartID": "81f2fd5398a77605aa847d9147d7f549e18703d4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -44112,9 +39194,7 @@ }, { "chartID": "0a694d5c9cd7ea292e651a3e736fc4c5462e8a11", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -44130,9 +39210,7 @@ }, { "chartID": "1bd355e74930cb2876c47133ab5d8ff4cdb5b3f1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "11+", @@ -44148,9 +39226,7 @@ }, { "chartID": "86a2d1c3659f2b86d1211c9dce3bbdbd986ed89b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "12+", @@ -44166,9 +39242,7 @@ }, { "chartID": "862bce520127967919d7748e71399cb7012ea44d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -44184,9 +39258,7 @@ }, { "chartID": "d396211a2f2d1466fdb04cb2c4db1f2fea36aad9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -44202,9 +39274,7 @@ }, { "chartID": "3cfcc4e299683d10feff40b95c83b2f919a34c75", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -44220,9 +39290,7 @@ }, { "chartID": "1750ffb996ae028681cd3b57d7ec60ac6508504f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -44238,9 +39306,7 @@ }, { "chartID": "2f527001dc9ba815dd050e410da3fb744547c6b5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -44256,9 +39322,7 @@ }, { "chartID": "c78aeb035cbb83450c9790948d651e13719b1dd5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -44274,9 +39338,7 @@ }, { "chartID": "89272588e0752f242519f6d20ae3c6e1b9a516db", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -44292,9 +39354,7 @@ }, { "chartID": "e7c1b2e7c49be1768b2cae819abe45bd3e7625fd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -44310,9 +39370,7 @@ }, { "chartID": "0f36d25d3e74e0f5b34064b627af6d0e17654fb1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "13", @@ -44328,9 +39386,7 @@ }, { "chartID": "281c73982fb497246a31096e1752df0e64882336", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -44346,9 +39402,7 @@ }, { "chartID": "1463af154c10136ac50eb1c9e58a9a9b524dfb58", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -44364,9 +39418,7 @@ }, { "chartID": "40fe659f9b478aad291c3a8609b2f1db690f233b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9", @@ -44382,9 +39434,7 @@ }, { "chartID": "e4974e2722eee4de4ac2dc28f93af4ea21f8702d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -44400,9 +39450,7 @@ }, { "chartID": "8f0fcdc8f8258f1b5d1ae132080b7e3a30a3fea3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -44418,9 +39466,7 @@ }, { "chartID": "8b10e426f4cd8f1a55d884977ae930a896e50cd1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -44436,9 +39482,7 @@ }, { "chartID": "424005c3d676d03374f967df6ac8af8e86299a68", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -44454,9 +39498,7 @@ }, { "chartID": "6fc42b820fbfb115844a6d9263893ba5d6fc3978", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -44472,9 +39514,7 @@ }, { "chartID": "563fa13af89c1b826dad1182858e9ff9f6ef1877", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -44490,9 +39530,7 @@ }, { "chartID": "a7e6d9257167a9fb16f16debccdacff3eeed980c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "7", @@ -44508,9 +39546,7 @@ }, { "chartID": "94e2f023d97a0b2dc4f3f493151c75e93a9c6102", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -44526,9 +39562,7 @@ }, { "chartID": "5a2e753f50cab1ba919627a7e9e0d25de842a805", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -44544,9 +39578,7 @@ }, { "chartID": "8b83a4c2b2d993e17dc4dbf191751ab9e0cd934b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "14+", @@ -44562,9 +39594,7 @@ }, { "chartID": "f5512b4db0580ff0c7df7b1567a504ae2c1ab643", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -44580,9 +39610,7 @@ }, { "chartID": "b9ce6d9a5dd150bd20f2e0142577f251dc2704e4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -44598,9 +39626,7 @@ }, { "chartID": "8f5ba100e88226ea94dc289b9428b25230fe077a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -44616,9 +39642,7 @@ }, { "chartID": "5d1a04facc8f9b41b41238722ef711747cad51be", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -44634,9 +39658,7 @@ }, { "chartID": "0eb0bcbfa99973dc02e19512a9c828c0d2f05bec", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -44652,9 +39674,7 @@ }, { "chartID": "39fb2306cf55a9a1b882e86c21d194d4d489ee4c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -44670,9 +39690,7 @@ }, { "chartID": "8a5f61818f7d8f5f0436e6b28ce94c960f1dc024", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -44688,9 +39706,7 @@ }, { "chartID": "0215f03599049dc0391e907764ab3610b274298b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "11+", @@ -44706,9 +39722,7 @@ }, { "chartID": "457898c0884afc9632536fde07b5efaa7421fe17", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "13", @@ -44724,9 +39738,7 @@ }, { "chartID": "46dd6b0239740af7894125008addc0efbb4fca5e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -44742,9 +39754,7 @@ }, { "chartID": "589d76729f3fb2c11cff1d3300c20c53adf3b960", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -44760,9 +39770,7 @@ }, { "chartID": "424d66bd006dee5a74933cae65b3f9242dada7fd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -44778,9 +39786,7 @@ }, { "chartID": "41c1a38236877f6910c918326a9852a5a191ead7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -44796,9 +39802,7 @@ }, { "chartID": "04aac8c4e82a0ce05c238b83bc32bd99d1be1986", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -44814,9 +39818,7 @@ }, { "chartID": "fa9758c02f617adea7bf832be794f0561dde7e56", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -44832,9 +39834,7 @@ }, { "chartID": "7563deee23462ae5808eb10378c6af51049b0da4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -44850,9 +39850,7 @@ }, { "chartID": "3058cc9a5a5e22b3b7625e17259fa417d8fe1f31", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -44868,9 +39866,7 @@ }, { "chartID": "1de80e868c924a6a7b8e59337739f840ec062692", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "13", @@ -44886,9 +39882,7 @@ }, { "chartID": "4dc8e0e64b5f8ea9676dae69d6684de092d8d561", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -44904,9 +39898,7 @@ }, { "chartID": "44d694baf8489dc7cf7777ac5f683bc7051ed18d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -44922,9 +39914,7 @@ }, { "chartID": "1e2923b6807b2ceae34d49b385f0eba3ae929c72", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -44940,9 +39930,7 @@ }, { "chartID": "9b40eccf6dc59e6d3775244ae0f542c29992e68c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -44958,9 +39946,7 @@ }, { "chartID": "07be851e1450bc7174c73c227dce969891045ce8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -44976,9 +39962,7 @@ }, { "chartID": "0a963709824fc9975f015cecd1f2238f3d8fdb7f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "7", @@ -44994,9 +39978,7 @@ }, { "chartID": "630fc62afb86f8c69189138b6afb522261e23cda", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -45012,9 +39994,7 @@ }, { "chartID": "006552fb8e8d4177ec484469056518e3120e9d45", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -45030,9 +40010,7 @@ }, { "chartID": "a58029462dc6cc1b474247699f253c9c05b32b04", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "14", @@ -45048,9 +40026,7 @@ }, { "chartID": "173e69f5403f111b87366dea904e67fb37e4ad57", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -45066,9 +40042,7 @@ }, { "chartID": "89016176f8d06e3ebea454174b12c8e8f49556be", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -45084,9 +40058,7 @@ }, { "chartID": "42706288c0209fd71e96fb0846225b13f03b9d86", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -45102,9 +40074,7 @@ }, { "chartID": "5110effb35a8c5c4a6e15c0e68296a63fa635ebb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -45120,9 +40090,7 @@ }, { "chartID": "79a98b33e3ecc23ee8d2e11dbf6f375c10c8b196", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -45138,9 +40106,7 @@ }, { "chartID": "bc510333d247eea33df0fde8fe91f98fb5764cc6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "3", @@ -45156,9 +40122,7 @@ }, { "chartID": "e2b3880e2fd4770707f5d8399da796807c342992", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10+", @@ -45174,9 +40138,7 @@ }, { "chartID": "01932fc76ac3deb5ab2c42493384cb395677585c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -45192,9 +40154,7 @@ }, { "chartID": "648339a1c698fe22e2ccf235cb49a094b53d327c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -45210,9 +40170,7 @@ }, { "chartID": "8e9d39f4a98ea1508077d65bb41a1fa59b7b1370", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "7", @@ -45228,9 +40186,7 @@ }, { "chartID": "bc7673157d197e62f7d07a89e12970a0fe115fee", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12", @@ -45246,9 +40202,7 @@ }, { "chartID": "bdda519cd80555820a9f2c2b0826d077bebf9e9d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -45264,9 +40218,7 @@ }, { "chartID": "48042127fb3bd3a7e64b4f73f3b09193b2a97368", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -45282,9 +40234,7 @@ }, { "chartID": "5777ca5a7ab8c9bdae03d766d4ab8ba0bcf9420b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "7", @@ -45300,9 +40250,7 @@ }, { "chartID": "901f44eaee53dbee8f1d089f25f764c91b59239a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -45318,9 +40266,7 @@ }, { "chartID": "0f5077f4ff431ac836652b84bce595cb2fbe414a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -45336,9 +40282,7 @@ }, { "chartID": "ff6e2d16821d1dfa64728952dc28cc516c972442", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "14+", @@ -45354,9 +40298,7 @@ }, { "chartID": "1a2e3faa26bc6c3c3a3d49c2b7489d494518c82c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -45372,9 +40314,7 @@ }, { "chartID": "43abc2e07cf254bb9ae56b0751a80b5ba10d659f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -45390,9 +40330,7 @@ }, { "chartID": "5472c1dadbfbfa994e44ee5951ba08460e75faca", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -45408,9 +40346,7 @@ }, { "chartID": "7dff6dec16167ce07a4e98037220abfd2e246357", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "11", @@ -45426,9 +40362,7 @@ }, { "chartID": "16dfc69ff9dc492d42786e9147e00293a7f0deac", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "12+", @@ -45444,9 +40378,7 @@ }, { "chartID": "b0207c7e7faf21b3f928d3889f1b9f4bda6a20ee", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -45462,9 +40394,7 @@ }, { "chartID": "686d0ff6daece97e6f10b88515190b8728ec7e9a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -45480,9 +40410,7 @@ }, { "chartID": "14bc1dd2aa7aa3cd11e5c0d9fb54e2716ca0e96d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -45498,9 +40426,7 @@ }, { "chartID": "6d6ac3a9a377eb29a150636b81dfd12e9a3d1967", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "11", @@ -45516,9 +40442,7 @@ }, { "chartID": "6706501c46260db27d9245d1244155ee38425736", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "12", @@ -45534,9 +40458,7 @@ }, { "chartID": "3a197432493bc490ca480f5cee9001f0896033bf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -45552,9 +40474,7 @@ }, { "chartID": "ff8cae284a7e8fd5979d791e4dba2be87021eabb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -45570,9 +40490,7 @@ }, { "chartID": "2fa5cd9ca72b5704150d51cba28f59207d42ad81", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -45588,9 +40506,7 @@ }, { "chartID": "94162b2acb96734762a3b819b5decd9f1f20e323", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -45606,9 +40522,7 @@ }, { "chartID": "043f8f9cb8461baba31de95e8447e27c53b74279", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -45624,9 +40538,7 @@ }, { "chartID": "a25c942d722f94cb131e6a208223980f419e0084", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -45642,9 +40554,7 @@ }, { "chartID": "2ecd8a46686a106b2359f5a40762cfeea1db857c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -45660,9 +40570,7 @@ }, { "chartID": "af9c1f60be3d7dcfc0c81218ef165deddcb1c145", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -45678,9 +40586,7 @@ }, { "chartID": "0024c717d104638d7e55f8e896a1a03a4af6e788", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "13+", @@ -45696,9 +40602,7 @@ }, { "chartID": "2e73c0e0cc05234116aecad3bc26ebd98bcf9713", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -45714,9 +40618,7 @@ }, { "chartID": "726bc777628bc80e9d95a9d75f34f81b19791522", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -45732,9 +40634,7 @@ }, { "chartID": "4c4d1f33271ca1fab586e8485d1eb387dedc8b50", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -45750,9 +40650,7 @@ }, { "chartID": "aadfa31146c05cf7ec622e2328e05ccff6889f8b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "11", @@ -45768,9 +40666,7 @@ }, { "chartID": "395a18e345930559f9d7563bc3f3b996ca2656cd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "13", @@ -45786,9 +40682,7 @@ }, { "chartID": "be6d84d61849cae0b1e914c001fe3792c9ffc8e3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -45804,9 +40698,7 @@ }, { "chartID": "1aeea8a4e36d2673d185656fd23106bcff9873ad", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -45822,9 +40714,7 @@ }, { "chartID": "920d3ce90b61f1a3869e2b38d82319c87fdff298", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -45840,9 +40730,7 @@ }, { "chartID": "0781b27d6a7f2b9538c282a7f92222506f160ee7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -45858,9 +40746,7 @@ }, { "chartID": "1d918470b07117fa3917eccf7981ab667798f047", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "10", @@ -45876,9 +40762,7 @@ }, { "chartID": "f4345b0d9504c44803db471c1eab2c39f6e722c1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -45894,9 +40778,7 @@ }, { "chartID": "28dd64a4a9d2dea2514775593d4016c6a4f4bdcb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "13", @@ -45912,9 +40794,7 @@ }, { "chartID": "cc4a31e8214e5a45f1c2e74d4738d4bf5640cdd6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14+", @@ -45930,9 +40810,7 @@ }, { "chartID": "1c1e334e50c25ab1ad0ee6a0b502129e6ca5be04", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "14+", @@ -45948,9 +40826,7 @@ }, { "chartID": "b36c92dd444dba8001a04f0dedef21c6376a423c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "11", @@ -45966,9 +40842,7 @@ }, { "chartID": "5a33fde454a58995d9905cb54c42d24e80d77f51", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "7+", @@ -45984,9 +40858,7 @@ }, { "chartID": "758e56e5c9a8f30836c47f1da356600af1dfc61f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "13+", @@ -46002,9 +40874,7 @@ }, { "chartID": "2cc23e811233d0b202a505a2424dff09bbd8359d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14+", @@ -46020,9 +40890,7 @@ }, { "chartID": "d4d9d355e44dff82abe896ed38167bdf65663c6f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "15", @@ -46038,9 +40906,7 @@ }, { "chartID": "7dbe15b58f6845c32a8321cba6120cb7aa13d8cf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -46056,9 +40922,7 @@ }, { "chartID": "5ee1c06ccd3266d0b630de6c322395230b376107", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -46074,9 +40938,7 @@ }, { "chartID": "6f2ac46a33d68c517558d328c31880295de315d7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -46092,9 +40954,7 @@ }, { "chartID": "b35fda7479d1a863610586145a74e4b3b8e60d52", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -46110,9 +40970,7 @@ }, { "chartID": "567f3573f921094a04abcdf77ba83349b65906ea", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -46128,9 +40986,7 @@ }, { "chartID": "9b59f56b4ca8b7d575903bb769a1a6fb8ff99c74", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -46146,9 +41002,7 @@ }, { "chartID": "8465652193850878ac4a148c278bbaf0a2652f9c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -46164,9 +41018,7 @@ }, { "chartID": "bd1c1c5d3bb56f20c6f99c753e6c309b1329c1d6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -46182,9 +41034,7 @@ }, { "chartID": "1f40f7fc378cb0f3e575604ab968d871b85ae5ec", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -46200,9 +41050,7 @@ }, { "chartID": "9127c5586e836039f495254baae11743606e97d1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -46218,9 +41066,7 @@ }, { "chartID": "3f08cb6da000ca897e3335294d9c8d6cd557f670", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12", @@ -46236,9 +41082,7 @@ }, { "chartID": "e5d18faf1a7bebbd57dc8114a70fcd715c2f5095", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -46254,9 +41098,7 @@ }, { "chartID": "86b0da2959c67edb71d836ed95a030d5937f233d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -46272,9 +41114,7 @@ }, { "chartID": "106a68918f3d8fe338229eea3f1c632f0a88e75c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -46290,9 +41130,7 @@ }, { "chartID": "14582d2686d226d000dce7704c6aef4e69ff2266", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -46308,9 +41146,7 @@ }, { "chartID": "a27df113634eaf942a0a33f0c8f3f872bfc4c913", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -46326,9 +41162,7 @@ }, { "chartID": "dd981e9baad8ec8b27a7e7250eaf444d6232e338", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Re:Master", "isPrimary": true, "level": "13+", @@ -46344,9 +41178,7 @@ }, { "chartID": "40a7014f1ee69e07361ce8028cf1e36cf61ba10b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -46362,9 +41194,7 @@ }, { "chartID": "5cd8919b0d1395584144bd6d19d03e8d7c7a96a3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -46380,9 +41210,7 @@ }, { "chartID": "e6aa86f0f1842707a857bae76152a8ff7edb2ad3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11+", @@ -46398,9 +41226,7 @@ }, { "chartID": "aeb99be3cad3f755743e495cfce2faa763a125ad", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -46416,9 +41242,7 @@ }, { "chartID": "5dbc4cab140c4b93a690ae7cf0081dddd51782a0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -46434,9 +41258,7 @@ }, { "chartID": "cf45311b64a29f5020961dfefa19da6b574c217c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -46452,9 +41274,7 @@ }, { "chartID": "0ccf4de41d83335b0ad86c3cc1aab91bf8c11b4e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12", @@ -46470,9 +41290,7 @@ }, { "chartID": "1c922f1661075a786910d297481d40fbdbe4f286", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -46488,9 +41306,7 @@ }, { "chartID": "06822f961e68f7d06d01e8db7ef70c351922cb4e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -46506,9 +41322,7 @@ }, { "chartID": "5549d635d29ee70eba72fd7b447263f317f6c30e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -46524,9 +41338,7 @@ }, { "chartID": "5c90e6c485f0760f91a83424c890a0a3c6d4c1b4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12", @@ -46542,9 +41354,7 @@ }, { "chartID": "867f894f5ad73e45c0e9efddb371ed92b7ee3444", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -46560,9 +41370,7 @@ }, { "chartID": "094e101ce0033644415f7166e4efe14bc0043320", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -46578,9 +41386,7 @@ }, { "chartID": "d5c19f216dfc2a8eba9c4650b8bf9909f45808dd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -46596,9 +41402,7 @@ }, { "chartID": "adcad261a44532cc260cdf25c0d1d3eb0e4ee941", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "10", @@ -46614,9 +41418,7 @@ }, { "chartID": "37ab08bdad7c340531ee3661b6c41cebeeaa905d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -46632,9 +41434,7 @@ }, { "chartID": "c72c8c896c769da2060b91f5af58887ee548da6d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -46650,9 +41450,7 @@ }, { "chartID": "5f7dbc629e058d805822e6cf94c6e43a6b2ab930", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -46668,9 +41466,7 @@ }, { "chartID": "bde0dfd2fe2e6805e523612090db98a042b9633c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -46686,9 +41482,7 @@ }, { "chartID": "faa4d75a3fe3c985b46e30fc565327f19400aae6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14+", @@ -46704,9 +41498,7 @@ }, { "chartID": "1c5f697b5bf8123f400b3a1dea8b1d399719f174", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -46722,9 +41514,7 @@ }, { "chartID": "aa86dbccd01ec2dbde30c66799a7bc4371360b7a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -46740,9 +41530,7 @@ }, { "chartID": "6201dd109472add3331148e456fd9d508755f705", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -46758,9 +41546,7 @@ }, { "chartID": "7925ed5b261180a07f41e58cde889a55bcee6e00", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12", @@ -46776,9 +41562,7 @@ }, { "chartID": "b3cedf3837370a709b291ee77573c7bd9bc12222", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8+", @@ -46794,9 +41578,7 @@ }, { "chartID": "6ae050eb85632bd00b00ee73839b4ea2eeff4a6b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -46812,9 +41594,7 @@ }, { "chartID": "deb12f3854b590219488f5f42d28aa772d270839", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12", @@ -46830,9 +41610,7 @@ }, { "chartID": "a08e13067de70ce067b3327c78e156647da6a40f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -46848,9 +41626,7 @@ }, { "chartID": "fd8bcfa5be45a6bc62bd0683d7d80a27a20fab21", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -46866,9 +41642,7 @@ }, { "chartID": "998a815fe31b9942adecbdd8270ea6db032ce0ab", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "7", @@ -46884,9 +41658,7 @@ }, { "chartID": "caa16c470f7dea7d860b31fdb06114abefe79a32", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "13", @@ -46902,9 +41674,7 @@ }, { "chartID": "fa51fb461e2983f3e0e3222c32e05e2ebe1fab7a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -46920,9 +41690,7 @@ }, { "chartID": "d5dee223e4a2cb3e9ca1e52ef112a30a41f2fe11", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8+", @@ -46938,9 +41706,7 @@ }, { "chartID": "2e27954cec7f4fe692cffe8d9dc0553a5186576a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -46956,9 +41722,7 @@ }, { "chartID": "a293b3d05bbc9e845c771f099af8f46eac359070", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12", @@ -46974,9 +41738,7 @@ }, { "chartID": "30de921a9ad1546b54caa1066ae3aa2aa8838d3f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -46992,9 +41754,7 @@ }, { "chartID": "73b45eeb59dbfe1992f71d9b20710ced1b8dd66e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "10", @@ -47010,9 +41770,7 @@ }, { "chartID": "9e3d93b1254069cc4d9a7a912c6d40ef116f228c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "7", @@ -47028,9 +41786,7 @@ }, { "chartID": "092a1aab5f0c2bd67c869330bf5cca0639b46b22", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "13", @@ -47046,9 +41802,7 @@ }, { "chartID": "467ce6a7eefb9eb7359b6d3605d9ab6d094cf5d2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -47064,9 +41818,7 @@ }, { "chartID": "b19d7f3cc93cd29e2a13d01b508f1a580379abd6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -47082,9 +41834,7 @@ }, { "chartID": "ea2fa34c7ded7d9d42fbb8a0fb4ddad4c5c00ac5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -47100,9 +41850,7 @@ }, { "chartID": "de9533cdbd81a7d63ffac80f89b2e0c76ac9574c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "9", @@ -47118,9 +41866,7 @@ }, { "chartID": "bc82fbb68c33fd84f97d29caa9ee5f8a0cee9acf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "12+", @@ -47136,9 +41882,7 @@ }, { "chartID": "992405e6d660adcd8339d726f59f56c919c5a455", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7+", @@ -47154,9 +41898,7 @@ }, { "chartID": "533b30cc7fbac3bca411c768f3ecfd8812e46425", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -47172,9 +41914,7 @@ }, { "chartID": "cedc76e69543afa51e1235dc5f2dd61c612e2dae", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -47190,9 +41930,7 @@ }, { "chartID": "f764d3c739b5e5fd6a701af5ff9690e9276a67cd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -47208,9 +41946,7 @@ }, { "chartID": "2a6945cef8053085b0df5c26b5610a024f92165e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -47226,9 +41962,7 @@ }, { "chartID": "6fb72703c32675a046535e6ab5261320adc1c59c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -47244,9 +41978,7 @@ }, { "chartID": "b30fb3135925fccc72103d6a1ba0d2419ed58951", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -47262,9 +41994,7 @@ }, { "chartID": "dd95a7108a8ac39ac5e51798778703782f5772c4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13+", @@ -47280,9 +42010,7 @@ }, { "chartID": "825a6faf57447c49b143756d9206a31ae072da20", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -47298,9 +42026,7 @@ }, { "chartID": "05879d66d737c72f3fa21cc43da6b336a5dbc7e4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -47316,9 +42042,7 @@ }, { "chartID": "d5acb2d6870657435f433dee88609cafcba6710f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -47334,9 +42058,7 @@ }, { "chartID": "bcb1dce3ee92877d315d2b07648d62195f05bcdf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -47352,9 +42074,7 @@ }, { "chartID": "2babf085c3e4375bd045cd07b7d07669f826c8af", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -47370,9 +42090,7 @@ }, { "chartID": "d6ef183a919f586c7f14a8a103cb71b573e4f1b5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -47388,9 +42106,7 @@ }, { "chartID": "f57571c9362e469775d14f96502b6d002c85b25a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12", @@ -47406,9 +42122,7 @@ }, { "chartID": "3672cb279dc0a003e8840ddb652be6f904343bae", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -47424,9 +42138,7 @@ }, { "chartID": "6bef8d818aef38da46a39068dd8662b4bd1e78cb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "7", @@ -47442,9 +42154,7 @@ }, { "chartID": "f12081f5c05fd0de0da40670a4988c3c4fefedd4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "4", @@ -47460,9 +42170,7 @@ }, { "chartID": "ec8ffeef54aa54a36c840602fc2f4ed46e0794dd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -47478,9 +42186,7 @@ }, { "chartID": "c292231f56014fd02bd0223232985db7d20c4d43", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -47496,9 +42202,7 @@ }, { "chartID": "c20b038c625d0c0261207dbb796a8a3bce395681", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -47514,9 +42218,7 @@ }, { "chartID": "0fbc41c64a68598d9c41316bd4c001c8053befe5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -47532,9 +42234,7 @@ }, { "chartID": "b107c80745e25712fbe495089d7a6f80e484e6c3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "11", @@ -47550,9 +42250,7 @@ }, { "chartID": "562106ef420b89f332b14689e13bc8ebf4bc765f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "13", @@ -47568,9 +42266,7 @@ }, { "chartID": "83352f42427656368f689dec70b95070f4f26328", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8+", @@ -47586,9 +42282,7 @@ }, { "chartID": "f2923992f01eecdad827196a9c11afb1e7899995", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -47604,9 +42298,7 @@ }, { "chartID": "e4ee3c04b6b33466287f48711af43654fe8e0220", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -47622,9 +42314,7 @@ }, { "chartID": "efadf867acf6103ffe2fddd7c4ab8c672e9f6949", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -47640,9 +42330,7 @@ }, { "chartID": "e3da413aec2fb17bc422aff48ea7a7eac359d80b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -47658,9 +42346,7 @@ }, { "chartID": "9370fb8a6cb9f2ce237fa8be26396f024a50b076", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -47676,9 +42362,7 @@ }, { "chartID": "b9b4f385fdfd2c626da9e6db755a6a877a6aff31", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12", @@ -47694,9 +42378,7 @@ }, { "chartID": "f9930114efddbb3bc6faaec0b8475546286419f9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -47712,9 +42394,7 @@ }, { "chartID": "6499757039a26b854836cd2795e84d21b25bbd6b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -47730,9 +42410,7 @@ }, { "chartID": "98afd9e4fad51657e189cfd2f10a2b3045fbf249", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -47748,9 +42426,7 @@ }, { "chartID": "2f79e4d063f23e6a61efc3af1e79551c82d3e7b6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -47766,9 +42442,7 @@ }, { "chartID": "79d7302bc15fc9f8599dec2ed0ae8826e1c35aac", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -47784,9 +42458,7 @@ }, { "chartID": "b926462edfe84c8c6b27845abdc5e0dec4605fee", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -47802,9 +42474,7 @@ }, { "chartID": "935459fdb3139d5516c28280c6eab31ad02653ae", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -47820,9 +42490,7 @@ }, { "chartID": "491d6acef13b192fd6db9afb946087f87e58f38c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -47838,9 +42506,7 @@ }, { "chartID": "6cf71027f61e90cd218d7c51fec3db4d2988dce6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -47856,9 +42522,7 @@ }, { "chartID": "5755bdac61d58da199a681e62adc307201fa4b26", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Re:Master", "isPrimary": true, "level": "13+", @@ -47874,9 +42538,7 @@ }, { "chartID": "62cc1480ab893934b565605d687df3d9e462e6d1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -47892,9 +42554,7 @@ }, { "chartID": "f1e13ba3556b557da04389d1857981206db27c82", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -47910,9 +42570,7 @@ }, { "chartID": "f70b45797c326dd40234aeac64fe7103479e51f3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -47928,9 +42586,7 @@ }, { "chartID": "0f50013bf6a49b67133cfc53e9d17df275fef1f1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -47946,9 +42602,7 @@ }, { "chartID": "24e10299bfdca1a003a5b25dcc1cc58340f18213", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -47964,9 +42618,7 @@ }, { "chartID": "766a33b1f1b530c21dcd1315f09dbc16e66adc42", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -47982,9 +42634,7 @@ }, { "chartID": "e75286b7866ec14ca13de05946415f4130c8f6e1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -48000,9 +42650,7 @@ }, { "chartID": "51887b6929cbc467acb7c143bed5b01e0600654b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -48018,9 +42666,7 @@ }, { "chartID": "6f42a0303e51c9d25812997cac819ae272999cb5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Re:Master", "isPrimary": true, "level": "14", @@ -48036,9 +42682,7 @@ }, { "chartID": "6fecebd754a2300e846f5d6a64b0326f1ece69e5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -48054,9 +42698,7 @@ }, { "chartID": "581ecfd5b48ed5ca2421094b01a630bfe3cb6721", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -48072,9 +42714,7 @@ }, { "chartID": "f69b5459fc99a3dfd93239ca0bf28f35bbcefe03", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -48090,9 +42730,7 @@ }, { "chartID": "7ab94b61623461975a49da5b25eed4cf7a71fb49", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -48108,9 +42746,7 @@ }, { "chartID": "df5957834c6dfab825e76d0cd82330e063c8c653", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Re:Master", "isPrimary": true, "level": "14", @@ -48126,9 +42762,7 @@ }, { "chartID": "0608296a5760ed8492e36204ff3349193b014f9b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -48144,9 +42778,7 @@ }, { "chartID": "994c30c95e6d7ab303e2f6beda6ab674a0da3494", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -48162,9 +42794,7 @@ }, { "chartID": "387565dc7f4c805176e6894f4c3e532a07dcc07f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -48180,9 +42810,7 @@ }, { "chartID": "2418ec04cc974dbd220733f495ed0f11995153bc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -48198,9 +42826,7 @@ }, { "chartID": "3e364c895ca63bbfbf4ce27e11e5506528e87b47", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -48216,9 +42842,7 @@ }, { "chartID": "664277c9ff3fd012d0f936b940afb59f9b0e8436", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -48234,9 +42858,7 @@ }, { "chartID": "5b85dd86d20e6fbd56a6c9f9b2a9e842266c61be", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -48252,9 +42874,7 @@ }, { "chartID": "874943d0530907f9a68e04beb5510d7eeaef3113", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -48270,9 +42890,7 @@ }, { "chartID": "bf3011127346291fdf71485c045e8250aded0008", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Re:Master", "isPrimary": true, "level": "13+", @@ -48288,9 +42906,7 @@ }, { "chartID": "833ae9e10feeeda1a3f4fd7afc0cf5ec0b73fe7b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -48306,9 +42922,7 @@ }, { "chartID": "a89ac75d7ae7016b372ac1f5dd5f8e35d9499ad0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -48324,9 +42938,7 @@ }, { "chartID": "54513c5f01bbaf04660e1311a8e364f3089d8a5a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -48342,9 +42954,7 @@ }, { "chartID": "3700f444207590c3bbaf8ad02f81f40c65826494", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -48360,9 +42970,7 @@ }, { "chartID": "543b9d1bb35e07fc23d2e8fbd44cc358682b9004", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -48378,9 +42986,7 @@ }, { "chartID": "8e720514805d97eaecff64073d4c555cb6ff75b8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -48396,9 +43002,7 @@ }, { "chartID": "e1c872fc123a3dfacac0abb141f077cf5efd4213", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -48414,9 +43018,7 @@ }, { "chartID": "21e9d5447438fe01b557f9dbce76c9e0a931a430", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -48432,9 +43034,7 @@ }, { "chartID": "bfa11accd3e41aeb75c8f8b0d753e53efd9dc12f", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Re:Master", "isPrimary": true, "level": "13", @@ -48447,9 +43047,7 @@ }, { "chartID": "cb896c719596a0ac599866f499081354fef28708", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -48465,9 +43063,7 @@ }, { "chartID": "79da475e8ce39151ba17258ce5372b4fe51dc7f2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -48483,9 +43079,7 @@ }, { "chartID": "71dcff28eeee2416074afdd0a6d48804be2fb93e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -48501,9 +43095,7 @@ }, { "chartID": "1a2d743af90d3c73798562ea84e946b7114e6426", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "11+", @@ -48519,9 +43111,7 @@ }, { "chartID": "7d24a39b69667a2f0798774af22aea2efe3ff88b", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Re:Master", "isPrimary": true, "level": "12", @@ -48534,9 +43124,7 @@ }, { "chartID": "07cc953ca2121962c347679145ca93b8f8831211", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -48552,9 +43140,7 @@ }, { "chartID": "68d665392a7501a10cb5bda68d511bb81f762dbf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -48570,9 +43156,7 @@ }, { "chartID": "e2435c5d6595e26fe241b84d41a2e187d3ea6976", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -48588,9 +43172,7 @@ }, { "chartID": "c90e9281c17c275616ba5bdfcdb35d49f617557c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -48606,9 +43188,7 @@ }, { "chartID": "824b993c64bacb9e2eeb163466a4e6810a01af6a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -48624,9 +43204,7 @@ }, { "chartID": "ae19fff7d82876c1aa11fc8582a5a70a74bd8f82", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -48642,9 +43220,7 @@ }, { "chartID": "ac6d6d83565bd98aa3cc6f7875868c23e2db9ae9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -48660,9 +43236,7 @@ }, { "chartID": "19da4c36930c2096baf3374e105b242fab353506", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -48678,9 +43252,7 @@ }, { "chartID": "25a24557b11ab9591c8acf7776c15778f4a0bba4", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Re:Master", "isPrimary": true, "level": "14", @@ -48693,9 +43265,7 @@ }, { "chartID": "629516b22ebbf2624111a550c9e84e2dc286aa11", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -48711,9 +43281,7 @@ }, { "chartID": "073a80791c2ade1355838ce1730ce521ece33f99", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -48729,9 +43297,7 @@ }, { "chartID": "0a932430203b547c47d7203d0879f7f4d90cad45", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -48747,9 +43313,7 @@ }, { "chartID": "0b46b1723649cd7e1c64e428286f036cbefc8d28", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -48765,9 +43329,7 @@ }, { "chartID": "db4d86d3a740047dea7aece5be42fdfdf38ec2b6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -48783,9 +43345,7 @@ }, { "chartID": "43615ca2add9926fd8cf4ce3cf2070b3f8f216f7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -48801,9 +43361,7 @@ }, { "chartID": "7a79ce4ef13202bacb93fc75b7f199452c3215d6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -48819,9 +43377,7 @@ }, { "chartID": "a86e0e2e8201d4708ec35555be5576a8bbad5202", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -48837,9 +43393,7 @@ }, { "chartID": "a1a84a64fa3f5277c0a4f26faef85db5a920cc84", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -48855,9 +43409,7 @@ }, { "chartID": "3573f50df5485d2d5f49951c39c712812c596e9f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -48873,9 +43425,7 @@ }, { "chartID": "ee5cf888befb7664a1856c5e39e109bd0858d6af", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -48891,9 +43441,7 @@ }, { "chartID": "e7ccdbb4fc7cfc9085aee66e78826cacf7bc7a42", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -48909,9 +43457,7 @@ }, { "chartID": "f2da0658f3210cdb55c8dd96d6416917ada64c9f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Re:Master", "isPrimary": true, "level": "14", @@ -48927,9 +43473,7 @@ }, { "chartID": "109dfd7ef9143f81fa093bb2c257e8e8acf5c942", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -48945,9 +43489,7 @@ }, { "chartID": "b1b3cd4fed6b9d0ebed7f0fee670329be8e41ca4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -48963,9 +43505,7 @@ }, { "chartID": "d61bb17e9598a896a283aa6da4eb4a22638611fe", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -48981,9 +43521,7 @@ }, { "chartID": "11876987919dc262460c2a989b578f0eb7dc5191", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -48999,9 +43537,7 @@ }, { "chartID": "eccc3d0a9099feff91d05eb270f12e5aef2d5b0f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -49017,9 +43553,7 @@ }, { "chartID": "1aa6ddbff5593e0af5e39ae407826384eae20e5c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -49035,9 +43569,7 @@ }, { "chartID": "ed522376dbd610e4b6261e389ea49d8ad6949006", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -49053,9 +43585,7 @@ }, { "chartID": "f6c2c55eb93b72ad724e7d215b91fc7fdfd5bcbb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -49071,9 +43601,7 @@ }, { "chartID": "683147d91768119daa06f27de3803f8ab5d29a3d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8+", @@ -49089,9 +43617,7 @@ }, { "chartID": "c7c731563af137738054d77b41efc13bb996024a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -49107,9 +43633,7 @@ }, { "chartID": "9a1e6ff5b2af778e8429c66f171625de910fac51", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -49125,9 +43649,7 @@ }, { "chartID": "24665cebd86a4db78061d4aa932a34bb03258d0e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -49143,9 +43665,7 @@ }, { "chartID": "4b798b8ef497004772929f47582681106c01c7a9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "9", @@ -49161,9 +43681,7 @@ }, { "chartID": "1f5568007bd93dd4f0179806c9e9a67f443031ba", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -49179,9 +43697,7 @@ }, { "chartID": "71e54e25312b54a5de7188ada07356dd4c6f621e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11+", @@ -49197,9 +43713,7 @@ }, { "chartID": "16c3f4bb0b46fb693f6e2797018d3bbbbb138bd0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -49215,9 +43729,7 @@ }, { "chartID": "feea53cc54cff0e51e205995ecb35709ae33b893", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Re:Master", "isPrimary": true, "level": "14", @@ -49233,9 +43745,7 @@ }, { "chartID": "0e23b00b52c9d944c72750c3448b59e45d16bdff", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -49251,9 +43761,7 @@ }, { "chartID": "dd6797a4d147e7953b953d6e43c8e915432e318c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -49269,9 +43777,7 @@ }, { "chartID": "029f4e194733e3182724e292724e3f89829a6734", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -49287,9 +43793,7 @@ }, { "chartID": "1e27e43316aa7d26067445e95e6dc77c3010c731", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "11+", @@ -49305,9 +43809,7 @@ }, { "chartID": "8b1d5fc2c22a20dadfb88a880207f544c0652a48", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -49323,9 +43825,7 @@ }, { "chartID": "9da9e547a20c121ceb5b040bf051cb567c639ea2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -49341,9 +43841,7 @@ }, { "chartID": "fdc8e87687d40b4740a107c9d7383c68562ab444", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -49359,9 +43857,7 @@ }, { "chartID": "ea4abaaab7a671f6b0adea5c54bf945e77f63374", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -49377,9 +43873,7 @@ }, { "chartID": "76c7c835b0866fe16591cd6880e6ec6ac923534f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -49395,9 +43889,7 @@ }, { "chartID": "8e48d8630e9f163a498e0a567ccc5774894ac277", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "6", @@ -49413,9 +43905,7 @@ }, { "chartID": "8013d630d5d80a0e61dbb14d66053f7f6017c7a2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -49431,9 +43921,7 @@ }, { "chartID": "0459d3871a02c60ef8898593897d4b3d88d42bc6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14+", @@ -49449,9 +43937,7 @@ }, { "chartID": "0a56d36aecdb574082af6f8579596fff67bc3b89", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -49467,9 +43953,7 @@ }, { "chartID": "fd18e220640f112df0b7b0b6ce381a761d0a8f05", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "7", @@ -49485,9 +43969,7 @@ }, { "chartID": "64712ee12d56f0dd46a455038548f644f498de21", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -49503,9 +43985,7 @@ }, { "chartID": "04a7a5c87a85b777c65b1b4b20d46b36f9a1b76c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -49521,9 +44001,7 @@ }, { "chartID": "14d6385a07a7158714c7893c5a71000412ff49e4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -49539,9 +44017,7 @@ }, { "chartID": "7e4b6640c62c8d60086c9f72f0e804dd44dd8cf3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -49557,9 +44033,7 @@ }, { "chartID": "c7b80fa9054fe3baa1d758e6e5598b3789728cfe", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "13", @@ -49575,9 +44049,7 @@ }, { "chartID": "35a58f2766a416a6ea724f1d28d62c63d91153c1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -49593,9 +44065,7 @@ }, { "chartID": "81c8119b0042097b2cbf1de6f785220fdcb8d493", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -49611,9 +44081,7 @@ }, { "chartID": "d855d662cc8d16229e4470acb93192e3b86740ed", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "6", @@ -49629,9 +44097,7 @@ }, { "chartID": "bc2e5099ee8b8433063426e338a93eb60289d987", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -49647,9 +44113,7 @@ }, { "chartID": "49f8247eb2e387177826fc9b83a8f63790b75466", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -49665,9 +44129,7 @@ }, { "chartID": "a14f7c776a9fdef186d9295a609fb20fcf52d173", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -49683,9 +44145,7 @@ }, { "chartID": "5383502cbbdadde096e8d1733e3252cb50efa6ee", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -49701,9 +44161,7 @@ }, { "chartID": "32889974c33a604aa0d315323be75235b9da2d87", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -49719,9 +44177,7 @@ }, { "chartID": "f9dd6ed8c59c35d560de875b3661c342430a62f7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -49737,9 +44193,7 @@ }, { "chartID": "8086a77c2a9b85dc73b2f327671089373a33ea02", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -49755,9 +44209,7 @@ }, { "chartID": "a155d93e4e4a396e5eb95018d1f22a0101792d86", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -49773,9 +44225,7 @@ }, { "chartID": "5190b0c39ac2392cf015182ccf4e00662778951b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -49791,9 +44241,7 @@ }, { "chartID": "17ac70d2ae7ce84be9e7f4642fbda2958d2743fa", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -49809,9 +44257,7 @@ }, { "chartID": "8e861f5aa13f267030b9b63592484c15bff65b73", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -49827,9 +44273,7 @@ }, { "chartID": "77573fd18ddbd108743c34999a9d57f566d71fd5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -49845,9 +44289,7 @@ }, { "chartID": "08807e86d0a3276616bfe83c56e7ebef18c07f79", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11+", @@ -49863,9 +44305,7 @@ }, { "chartID": "722c4d9af8658e4ef7a8becdffdd969532f84ea9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -49881,9 +44321,7 @@ }, { "chartID": "45b60cbeb8f6e097be0c97f342a4174e0ecc31d8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -49899,9 +44337,7 @@ }, { "chartID": "9113920c8c6f53335d5cec9f67226a061aaa899f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -49917,9 +44353,7 @@ }, { "chartID": "0b910fd5eed79fd9b58504bee01ff7c2d02ede64", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -49935,9 +44369,7 @@ }, { "chartID": "835a7e05ddf126bd84059bdd2c7b2cd6027fbce9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -49953,9 +44385,7 @@ }, { "chartID": "337b0cb7dfaa520d31e82857cc81080b43517ae1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -49971,9 +44401,7 @@ }, { "chartID": "5f6fa91fbb5de5e8e7fc0e67b1b68861cad5295a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -49989,9 +44417,7 @@ }, { "chartID": "52817f809c310845a7cfb19a7cd95871ebae594c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -50007,9 +44433,7 @@ }, { "chartID": "883bec575032d455c27f837609a05c83a59b376f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "11+", @@ -50025,9 +44449,7 @@ }, { "chartID": "8082c85cf9bd1afa6875b958e29d264164d29bf5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -50043,9 +44465,7 @@ }, { "chartID": "08775e3868b8761ce23676cadc6069e0742a7675", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -50061,9 +44481,7 @@ }, { "chartID": "4a0ca5409ca15e7e1b3401cbf34cbb806de7d521", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "8+", @@ -50079,9 +44497,7 @@ }, { "chartID": "fed746f10a638f09f156d2b8eb316bb36ba52a49", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "11+", @@ -50097,9 +44513,7 @@ }, { "chartID": "c70ea80efc1889542679dc5278d7799236358a2a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -50115,9 +44529,7 @@ }, { "chartID": "b449a1ec2e18bc20c39c93fc97755887aebae7d0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -50133,9 +44545,7 @@ }, { "chartID": "470448f7ba9da3895c0fdb4c5dd0ccfb08b56b52", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "8+", @@ -50151,9 +44561,7 @@ }, { "chartID": "429d14ac2f42804a38b3b752e42b1198fd91a72b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "11+", @@ -50169,9 +44577,7 @@ }, { "chartID": "5cde85e76f397b484b6eb553d486a90a931be1ce", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -50187,9 +44593,7 @@ }, { "chartID": "ed1f84340a34de48ccb29f665c0cf69832e497b7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -50205,9 +44609,7 @@ }, { "chartID": "cde56546690e8f1429a902f98bcf9bd03d84f4c2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -50223,9 +44625,7 @@ }, { "chartID": "4dd9a280659e62882a961001025d4357245c587c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -50241,9 +44641,7 @@ }, { "chartID": "001dfcbb5a04c47f8b5e1d56fbad003d9550672c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -50259,9 +44657,7 @@ }, { "chartID": "8e0bdf981fa3439a922e3bbab26d1ff96f3037d9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -50277,9 +44673,7 @@ }, { "chartID": "325f95ea2c90dbefb91967b9ae03e80188479a1f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -50295,9 +44689,7 @@ }, { "chartID": "961fc93f84c22255a474ad04690aa3222c2ed473", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -50313,9 +44705,7 @@ }, { "chartID": "f79c20079e6669ef8c85cbb5f171d03406244dcc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -50331,9 +44721,7 @@ }, { "chartID": "50710b42659fe5be7df510f4b2ae680387c63fff", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -50349,9 +44737,7 @@ }, { "chartID": "1a5b1c8ec206ec939588372662a7e4e9e4364b58", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -50367,9 +44753,7 @@ }, { "chartID": "978ef660614385a9cc30ae56c104b35e05b5e344", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -50385,9 +44769,7 @@ }, { "chartID": "ee0af75a089f780e065d7b845ca64ee944c8abe0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -50403,9 +44785,7 @@ }, { "chartID": "ad5c24f2850461da0e9d14dc34f5bcd5cc28e34c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -50421,9 +44801,7 @@ }, { "chartID": "6cfbdd7a6fb652e71b75c18bf929652dda3b04b4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -50439,9 +44817,7 @@ }, { "chartID": "7fc66471086cd78f950660068fb64df79528c799", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -50457,9 +44833,7 @@ }, { "chartID": "58a3b1d1870fc2e86d59532669501a4650e7d7de", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -50475,9 +44849,7 @@ }, { "chartID": "fb6e24f69d013514226ab605bdabe99d4c007983", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -50493,9 +44865,7 @@ }, { "chartID": "79f965f69783d7cc64ab9565b9e8a146fa640356", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -50511,9 +44881,7 @@ }, { "chartID": "098d76c24666c0c1c1d884ede57d8b9a3e8685ec", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -50529,9 +44897,7 @@ }, { "chartID": "3296c44411861b676fab218ebd7bb936700f780e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -50547,9 +44913,7 @@ }, { "chartID": "6f6c2eab072ecbfbbb4770416e62ad4a8c16211f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -50565,9 +44929,7 @@ }, { "chartID": "e46bfb2e85e369fc29b44c6fe167d379363a0174", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11+", @@ -50583,9 +44945,7 @@ }, { "chartID": "a43c1fc718a3eb8134b1c128689963891c1d8847", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -50601,9 +44961,7 @@ }, { "chartID": "02d0d8a4c5d9b4a0b77e4c62c128dce8261f1395", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -50619,9 +44977,7 @@ }, { "chartID": "331366dce7e53c0f44fbba8cbca520586dd72bfa", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -50637,9 +44993,7 @@ }, { "chartID": "3613601b84a4cea97e6c2f30c1d7041e31702a80", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -50655,9 +45009,7 @@ }, { "chartID": "7af0b3d7c828fb2ada0f0bbba0665a46e75df5ae", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -50673,9 +45025,7 @@ }, { "chartID": "27021117fcd2ff98143318ee110150aebdbe3946", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -50691,9 +45041,7 @@ }, { "chartID": "91ceb9734ac92045edda1e0a741074ac8d627de1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -50709,9 +45057,7 @@ }, { "chartID": "5b3bffe16211b1661f04be83dbde95004824209a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -50727,9 +45073,7 @@ }, { "chartID": "33073c49dd7d87ab23b262c50bc5511d403a64e5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -50745,9 +45089,7 @@ }, { "chartID": "42282100d1dac8167a78fd808bc5e491cbb2c0cb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -50763,9 +45105,7 @@ }, { "chartID": "1e20fba0abf961ee74f7c044dd0b9d595345741e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -50781,9 +45121,7 @@ }, { "chartID": "8865c28dfe88d991e94bd55916356dce9b38903b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -50799,9 +45137,7 @@ }, { "chartID": "b2977d25de47a3379f5ebe984dc8d7aa075331fb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "11+", @@ -50817,9 +45153,7 @@ }, { "chartID": "324c9c9bee4cd95bb1e7bacdd14955b702b3b46f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -50835,9 +45169,7 @@ }, { "chartID": "605a54b33f383c0115e23299304e899f39d54609", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -50853,9 +45185,7 @@ }, { "chartID": "7e599c5506223d6620d95fefdb07a29ae5e9a20e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -50871,9 +45201,7 @@ }, { "chartID": "63674d7dad8e33fe093dee69698e9d1f9ac5bc33", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -50889,9 +45217,7 @@ }, { "chartID": "8d170aedca5c57d2fbc4857c347703b76b119979", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -50907,9 +45233,7 @@ }, { "chartID": "165aa2c0de676768b0516dec813c7cde0c331ad5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -50925,9 +45249,7 @@ }, { "chartID": "b1ee309ce8292a135e086da1bbb122c5d7e625be", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -50943,9 +45265,7 @@ }, { "chartID": "b7cd5aaab98a80c1a99419e0252b47fee6c0ac0d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -50961,9 +45281,7 @@ }, { "chartID": "00190337250c16f5b6d20584f37c3e9f362cb78b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -50979,9 +45297,7 @@ }, { "chartID": "066a462bea160c9c8dec3a786174f2e2a2844ab6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -50997,9 +45313,7 @@ }, { "chartID": "d6d2c50edc30c22005544ce9ae8890ff55ceab71", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -51015,9 +45329,7 @@ }, { "chartID": "61f3ef66717b07ae4bd9ae84a34afb37dee2df7a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -51033,9 +45345,7 @@ }, { "chartID": "439dccee99f7b2e127c46292d82a9165c93d849a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -51051,9 +45361,7 @@ }, { "chartID": "10b264fd6acf390c0833c018fa6278d51c51fe99", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -51069,9 +45377,7 @@ }, { "chartID": "cf1139fa65db2b7decc39235b9f10a38bbda83cc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -51087,9 +45393,7 @@ }, { "chartID": "d89311d1c4673b097fa2483010b219a5487b0ba8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -51105,9 +45409,7 @@ }, { "chartID": "79d2178ba0b4de5f6d9163f685cf40f884b76cc0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -51123,9 +45425,7 @@ }, { "chartID": "a848ba900bd86cb3161055a75653ee441c9f91be", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -51141,9 +45441,7 @@ }, { "chartID": "ed08338cbf4ec26d99992a89fbeb8676cfb73b42", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -51159,9 +45457,7 @@ }, { "chartID": "0636853f7ecd619b6b5f9270f6cd0cfa0a984a64", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -51177,9 +45473,7 @@ }, { "chartID": "871497ddc451b332fced93d7f3b00999149ea09c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -51195,9 +45489,7 @@ }, { "chartID": "c13f117b3af62f0f1297512e68abb08a148826d6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -51213,9 +45505,7 @@ }, { "chartID": "a828b48e5c24798a7f5b268db9cb16cb504dec75", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -51231,9 +45521,7 @@ }, { "chartID": "f03edc801c7fcae7f2b023c9f003d4a6e59a1709", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -51249,9 +45537,7 @@ }, { "chartID": "2bc973d8a0da9e4d59b5464eb240115aa9426c1e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -51267,9 +45553,7 @@ }, { "chartID": "26781f048e3b77861882770c68446a1388ce25b7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -51285,9 +45569,7 @@ }, { "chartID": "1ba586f9888bfcd95b98877de7a01a4199c645c5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -51303,9 +45585,7 @@ }, { "chartID": "2ba98246696c8849aab0146733e08e21b2e1ed7d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -51321,9 +45601,7 @@ }, { "chartID": "335cca6418d78a2a1c136f7ba51bd2dbb0b5a073", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -51339,9 +45617,7 @@ }, { "chartID": "e5d41667b13d38d28d8f37f829f3359257d0feb9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "6", @@ -51357,9 +45633,7 @@ }, { "chartID": "fe13d8dea72e9f30170f664e2257313a5ad1ffd7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11+", @@ -51375,9 +45649,7 @@ }, { "chartID": "0f7a6e825bb44dd2a15fda84db2152c5b01a0acf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -51393,9 +45665,7 @@ }, { "chartID": "efa3977df6419e0e7ae49f649330f3281edac281", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -51411,9 +45681,7 @@ }, { "chartID": "672501a996d60b7138492af92fcbf3943c14d50b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -51429,9 +45697,7 @@ }, { "chartID": "323efdb82f274865d3bae5d0353ada7fe66cd452", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -51447,9 +45713,7 @@ }, { "chartID": "f7efad21f4966b163712eb739475b4321d27ee94", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -51465,9 +45729,7 @@ }, { "chartID": "c043a5fdc6b1525a2257b0d8df51b1c92c56e729", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -51483,9 +45745,7 @@ }, { "chartID": "4d2d60b1727c13478e1a538e7ce3b4ea9d4a7d2c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -51501,9 +45761,7 @@ }, { "chartID": "fe5e880a052736869ffc6f19a807d601ed99325d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "8+", @@ -51519,9 +45777,7 @@ }, { "chartID": "79bbdaacba5c432feff3d3a6da6b4f85882fa3c7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -51537,9 +45793,7 @@ }, { "chartID": "98a8389649a707ccc3b98634b016a32ec0c16c4f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -51555,9 +45809,7 @@ }, { "chartID": "53a6e8ffe23621034de8a9abd040f88ee00ced27", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -51573,9 +45825,7 @@ }, { "chartID": "1c05f8e6dd1d8392769fc8228e70c2d0e2a0e25f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -51591,9 +45841,7 @@ }, { "chartID": "6514908e1911c482c92e625df91e1d20b7a7d24c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -51609,9 +45857,7 @@ }, { "chartID": "9e056e5c0b242783f653aa5ced2dd2fa35f1e05a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -51627,9 +45873,7 @@ }, { "chartID": "cb734967bb831950214e0201c1431a6e1dbd8d1e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -51645,9 +45889,7 @@ }, { "chartID": "64ec4f0c9eaa3238ea41ed9ab18f09259db65a34", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -51663,9 +45905,7 @@ }, { "chartID": "3c9748fe9d962ac7ec13a554c448f18abb0d9db6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -51681,9 +45921,7 @@ }, { "chartID": "bf742145e65e2a4e89b9e1b16544890ea1c37a02", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -51699,9 +45937,7 @@ }, { "chartID": "4ee13af50405040b0055c8477dffab1001690def", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -51717,9 +45953,7 @@ }, { "chartID": "af29d743590122b523cbe4c4373424095ba9aaba", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -51735,9 +45969,7 @@ }, { "chartID": "29f60bbd3bf81bfdabd3c44d3b0a8653367ac522", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -51753,9 +45985,7 @@ }, { "chartID": "a5a1acc596f905d7634e1519028f97b6b68a984c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -51771,9 +46001,7 @@ }, { "chartID": "182a209590c8de4d8a8eeeaa0248c9d20943a814", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -51789,9 +46017,7 @@ }, { "chartID": "917b1fe8b92a5d51722ad3dc065b4e3c74655569", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -51807,9 +46033,7 @@ }, { "chartID": "45fda6c91071636444882089ab2c4bbfb661a42a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "11+", @@ -51825,9 +46049,7 @@ }, { "chartID": "79e79d33a986cfb73f74c67789d4156e318d9d22", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -51843,9 +46065,7 @@ }, { "chartID": "b9529e4ac76b9c9dd93fdf098f82692c6cbde4e0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -51861,9 +46081,7 @@ }, { "chartID": "eac80abc7c80029b07eebf5d70139fe620fce2ce", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -51879,9 +46097,7 @@ }, { "chartID": "ddb0eccc44768dd207fc69341414370575f1f29b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -51897,9 +46113,7 @@ }, { "chartID": "db0f580f4b30efaed6d214040dae8913602a7e81", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -51915,9 +46129,7 @@ }, { "chartID": "a8cd6a309b862485f5375bc2adb63dd08a16125e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -51933,9 +46145,7 @@ }, { "chartID": "fdc2bd4261ac0df727ae05a08d7d3e8cbd39df42", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -51951,9 +46161,7 @@ }, { "chartID": "df695f80e74e543f1cc89daf33347533935f3d10", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "11+", @@ -51969,9 +46177,7 @@ }, { "chartID": "6f96557740d62608cee363f84cfdb8d70d3a098e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8+", @@ -51987,9 +46193,7 @@ }, { "chartID": "0fdeced6b256ab625125fb6c8f35b7860ef64c1b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "6", @@ -52005,9 +46209,7 @@ }, { "chartID": "e5e72122c6779afc4269a32675370ce23fec8072", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "13", @@ -52023,9 +46225,7 @@ }, { "chartID": "a41446b55f98dc2f229db4825ecbd40203e5442a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -52041,9 +46241,7 @@ }, { "chartID": "c35c195d215f7bd6efd4d5df24f0858f1bffaf98", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -52059,9 +46257,7 @@ }, { "chartID": "16f297235dfc996b00083f896d3aae07940e4221", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -52077,9 +46273,7 @@ }, { "chartID": "48abb3a72fb9aef3a3c46e3f10944ee23f6b9009", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -52095,9 +46289,7 @@ }, { "chartID": "7d789fc5678fffb747b8e900d8288281f8531e56", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -52113,9 +46305,7 @@ }, { "chartID": "817021176c4fd7f5dbd3f4bb7bb2f71abd87a77d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -52131,9 +46321,7 @@ }, { "chartID": "9abc60429cbe772eb57604d040d98af5b3721085", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -52149,9 +46337,7 @@ }, { "chartID": "744729996951fb268f7fe0bc18fd9c81eb6d2e9c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -52167,9 +46353,7 @@ }, { "chartID": "1bb30791af451b0336d1fc7061efe582822b20ba", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -52185,9 +46369,7 @@ }, { "chartID": "810ad326299bec8401adf0348166246aeadccae6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -52203,9 +46385,7 @@ }, { "chartID": "868689aef3dbab6d8f7ca6b4c1ecfb4826b9aa3a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -52221,9 +46401,7 @@ }, { "chartID": "80250f780c76f1c261f93b9688a597a449eb2649", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -52239,9 +46417,7 @@ }, { "chartID": "2ba372ba29e0567f523ac02470029c3158c4267c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -52257,9 +46433,7 @@ }, { "chartID": "f1b238bd15152718f7cff58cb20adb46d155be51", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -52275,9 +46449,7 @@ }, { "chartID": "7644f49cdc1a81e29d46f70ed8b988d0f47b6553", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -52293,9 +46465,7 @@ }, { "chartID": "7bcf851d876e0654355a7028f8e03cbfc20a587f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11+", @@ -52311,9 +46481,7 @@ }, { "chartID": "7967fb6b4142bdc06fcd57a2aeb8af4463566031", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -52329,9 +46497,7 @@ }, { "chartID": "6fd23b9607334292157b1d4968b51d2927f74764", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -52347,9 +46513,7 @@ }, { "chartID": "b1b1bbda326b18c9a5d2382232b6435be9d65040", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -52365,9 +46529,7 @@ }, { "chartID": "aa4c5e6c0bcc8fc5f42d08fd9d68d605a43874b5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -52383,9 +46545,7 @@ }, { "chartID": "9e7191c43c50b9e37cfcfc7a56ea98b54a8a9d87", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -52401,9 +46561,7 @@ }, { "chartID": "82f90ed4c9aa99f0004e36e47ab5fc3037d73ab5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -52419,9 +46577,7 @@ }, { "chartID": "86bbb2c269aed370217317c1202e9589b5cdc54f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -52437,9 +46593,7 @@ }, { "chartID": "b7d56091e56e01e000494c87f9ea8be7a7face49", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -52455,9 +46609,7 @@ }, { "chartID": "dbd811fb1b52b65e09ae620d8375f8278fab7506", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -52473,9 +46625,7 @@ }, { "chartID": "c26f8241865f1c6c0d6b90f3059e303f0e51fd61", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -52491,9 +46641,7 @@ }, { "chartID": "280b85b55ecffbe66fe6f323594e7e4d5f2c67df", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "6", @@ -52509,9 +46657,7 @@ }, { "chartID": "4b0748dc50e3e13047606d307f0e8924b2985e41", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -52527,9 +46673,7 @@ }, { "chartID": "182c24902ba34d1eb353350b2c36210419304866", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -52545,9 +46689,7 @@ }, { "chartID": "c0643256a865772fa51f5b3fadd64bf22186c0c4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -52563,9 +46705,7 @@ }, { "chartID": "595dcb9fc39432c433d0a4ce1a932fa84c1d768e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -52581,9 +46721,7 @@ }, { "chartID": "9f285d3ff8081b8e4dc129e1433d87a0a578a790", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -52599,9 +46737,7 @@ }, { "chartID": "c2be62975999d27b71f0d543e02e7258498d9164", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -52617,9 +46753,7 @@ }, { "chartID": "f4ad388f1d05406dbcd6d73a81d2d6d1ce098a88", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -52635,9 +46769,7 @@ }, { "chartID": "4b5fb00963d5991677146b97e96b4ed41fe6fbca", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -52653,9 +46785,7 @@ }, { "chartID": "49c23206c50948711019dffe60341afc8bb63781", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -52671,9 +46801,7 @@ }, { "chartID": "1ecf10d493960387348df5e71f3a042823c20d6f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -52689,9 +46817,7 @@ }, { "chartID": "cc4863654886f10d77786a89af8129e7c9663130", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -52707,9 +46833,7 @@ }, { "chartID": "4bbb46a3440b5d1b743f400c829e674542f122f5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -52725,9 +46849,7 @@ }, { "chartID": "741661018f910b6ff96f46723f01ce7c65293ea5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -52743,9 +46865,7 @@ }, { "chartID": "de50ac8dbd386127b231e4deaf35003d56721114", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -52761,9 +46881,7 @@ }, { "chartID": "0e0de4c940bdb7357bcb54ad67da230f62e1482e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -52779,9 +46897,7 @@ }, { "chartID": "6c55d46981abb626d8ce248142bd877370000d30", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -52797,9 +46913,7 @@ }, { "chartID": "607d9aa805081bfd00bf3db2cc80aa1e29f27fe8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -52815,9 +46929,7 @@ }, { "chartID": "687894ddfe4d1376958cd8662209fecf4539ab72", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -52833,9 +46945,7 @@ }, { "chartID": "2a61c9b8608db01e06fd0e870282f7de96e86f81", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Re:Master", "isPrimary": true, "level": "13+", @@ -52851,9 +46961,7 @@ }, { "chartID": "ff1d394b5579bd67a86b08d90c45ec13a3f2967f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -52869,9 +46977,7 @@ }, { "chartID": "719ff6596509ec2e9ef757c76719455a0166db5b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -52887,9 +46993,7 @@ }, { "chartID": "0b46141e80dc83926e25ae0273ed9946f89cce65", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -52905,9 +47009,7 @@ }, { "chartID": "9455c4524de19d0b20b88730dddfa2627b4a87f3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -52923,9 +47025,7 @@ }, { "chartID": "3cd098b329c7dbd838bbdab3444d9e6bd34f1116", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8+", @@ -52941,9 +47041,7 @@ }, { "chartID": "5d77da8f61bb40b6c82daff4eb5052f53bd41042", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -52959,9 +47057,7 @@ }, { "chartID": "7d206d5756cd235cedb71d3d56b143d1cd908bb5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12+", @@ -52977,9 +47073,7 @@ }, { "chartID": "a485ce45e72081dc9fa3b061beed05b08a582dbf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14+", @@ -52995,9 +47089,7 @@ }, { "chartID": "8fd88079fee277eb5193319d589ff838573f4a89", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "9", @@ -53010,9 +47102,7 @@ }, { "chartID": "716d4792a8510eedfca26c41f2461e569b7979e3", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "5", @@ -53025,9 +47115,7 @@ }, { "chartID": "00aab400fd8e4f9d656a9ddb4e1b23a6020ce452", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -53043,9 +47131,7 @@ }, { "chartID": "ad582a9229b5bdb6c7797074eb961727552d7ab2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -53061,9 +47147,7 @@ }, { "chartID": "6d6b8bede15bd517f1f9ec528c9197e0725f6a13", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11+", @@ -53079,9 +47163,7 @@ }, { "chartID": "e8f418ecb8c81453ad6a601b36f808dac2449c0a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -53097,9 +47179,7 @@ }, { "chartID": "958e588d5157a1ef0cfb7d9d974ee894c765abbf", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -53112,9 +47192,7 @@ }, { "chartID": "ab7eedd88d6ba1ea9e4a9b12fc0355a3dcce7033", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -53127,9 +47205,7 @@ }, { "chartID": "f53fa0143046ed0fced9c71e68231664679ccb39", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -53145,9 +47221,7 @@ }, { "chartID": "56764b41b03b5ce5ae8756e6336a3022df9268fd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -53163,9 +47237,7 @@ }, { "chartID": "cc54d6a10ab175b44308c1f103e6cc84bff21ac0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -53181,9 +47253,7 @@ }, { "chartID": "1ac1b8d8e75a34098a444f093258df2973c6ef1a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -53199,9 +47269,7 @@ }, { "chartID": "9a8413659b2dc2923b8271725345bacfeb916e62", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -53217,9 +47285,7 @@ }, { "chartID": "5d0ce2390f8df21a22d34e8827a43e07ac8a66fe", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -53235,9 +47301,7 @@ }, { "chartID": "962eabedcf54b62aaa099572e7c7e6b99073e4e2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -53253,9 +47317,7 @@ }, { "chartID": "77e25c0967aee5320d20108fcb6e7554923e1f0d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -53271,9 +47333,7 @@ }, { "chartID": "2a78b2dca53e3958d97cddffe2b4782d462cb5a3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8+", @@ -53289,9 +47349,7 @@ }, { "chartID": "82065e4d4b1425995dc5325148f9d4df22321605", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "6", @@ -53307,9 +47365,7 @@ }, { "chartID": "fd18255869d3f4c0ed82edb5a9f3ffab0969cfe2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "13", @@ -53325,9 +47381,7 @@ }, { "chartID": "e547618f58e5ba780ce2535caf942f5ab5257def", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14+", @@ -53343,9 +47397,7 @@ }, { "chartID": "3ef6bab9f1f42bf661e69c0f0bfa708b98473a2b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -53361,9 +47413,7 @@ }, { "chartID": "061a93d1e509cbf74b476a73c6ac27c72f1ba4d0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -53379,9 +47429,7 @@ }, { "chartID": "93d6018c967838cf4cea80a3c6b4fe5dbffb5bbc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -53397,9 +47445,7 @@ }, { "chartID": "719d4471aea84b970e7cadf8b924d4df47b318b5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -53415,9 +47461,7 @@ }, { "chartID": "93e8c96c01ac744a9f459ae681f304851d93652b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -53433,9 +47477,7 @@ }, { "chartID": "bf03d4199a072c618585ccb60542152f1299f26e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -53451,9 +47493,7 @@ }, { "chartID": "39e43e35024e638d7f5f379dedeceb9f21be2dcc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -53469,9 +47509,7 @@ }, { "chartID": "a6041b1966ae37944b8ec51dae7b1976be5bd92c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -53487,9 +47525,7 @@ }, { "chartID": "f74f180f933420aa25ad4a5cd2c272c6cfbce4be", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -53505,9 +47541,7 @@ }, { "chartID": "a3a93ebecb242fce2586457e88b8994166229382", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -53523,9 +47557,7 @@ }, { "chartID": "58ac027012477ebe0d56386cbf7321158ebd664b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -53541,9 +47573,7 @@ }, { "chartID": "cab979440a4cc2e99877dbbd55567736398f4b6e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -53559,9 +47589,7 @@ }, { "chartID": "119b3dde61e4ee15667d1351a220733f0b931583", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -53577,9 +47605,7 @@ }, { "chartID": "737c42cd410bba0ed6a9e63dd6130558a75458f6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -53595,9 +47621,7 @@ }, { "chartID": "010f8b78871e385d050f8f6478ad4736e9219404", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -53613,9 +47637,7 @@ }, { "chartID": "1f979f9a3f22c5a21380baf16cb8d6711ad947de", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -53631,9 +47653,7 @@ }, { "chartID": "3b1f9530700041e3ff808286663429e82a66f048", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -53649,9 +47669,7 @@ }, { "chartID": "5a5774436ee3726d54f57d973efe2e9fec9268e9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -53667,9 +47685,7 @@ }, { "chartID": "3de580fe95d9a94e94fd5b1788edcf530c7f8892", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -53685,9 +47701,7 @@ }, { "chartID": "a8c21fd2232c7a16bc51d7e39c4eaaf090b390be", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -53703,9 +47717,7 @@ }, { "chartID": "30716385029dfd1c1d4a1099f033e388e7e74bcf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "5", @@ -53721,9 +47733,7 @@ }, { "chartID": "a8ad523ba14beef2fafbeaef85fbc331d470ff10", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "1", @@ -53739,9 +47749,7 @@ }, { "chartID": "e79a5fa22663577c067dfe441a790d4eb0c8e5ec", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "8", @@ -53757,9 +47765,7 @@ }, { "chartID": "ab89904a6eaab91d9b8e181a5f5826ade1a1a53a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -53775,9 +47781,7 @@ }, { "chartID": "2fe62d97a4a0440580b73b5b15f7af5a47416d4e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Re:Master", "isPrimary": true, "level": "12+", @@ -53793,9 +47797,7 @@ }, { "chartID": "75902041cdd16656d4d062af286093bdcfa79881", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -53811,9 +47813,7 @@ }, { "chartID": "c981eb948e985494ac0fc748ba1efb7c757d0425", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -53829,9 +47829,7 @@ }, { "chartID": "3b0189f1ee702e6018f9c2508264264f7f3420de", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "8+", @@ -53847,9 +47845,7 @@ }, { "chartID": "b3acace2d138a501d85e06323a6b3c638fca96b3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -53865,9 +47861,7 @@ }, { "chartID": "1c1386e1e120b2f2a6c87e3de3befb5c1cddb8e7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -53883,9 +47877,7 @@ }, { "chartID": "990025d921d4fea5b82b6f13365b8445ab2915e3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -53901,9 +47893,7 @@ }, { "chartID": "cc090459e6f1110f99aa8e5b857f2ee661d630a1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -53919,9 +47909,7 @@ }, { "chartID": "a73cbc62dc31a2f6d7fb1d17ea10ce323c08bb42", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -53937,9 +47925,7 @@ }, { "chartID": "7b9b10bd5c2e108bedfc6bf102aa6a9338d5d07c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -53955,9 +47941,7 @@ }, { "chartID": "ca7102c1df5ef24d2575caea7d24f5d29351f809", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -53973,9 +47957,7 @@ }, { "chartID": "53ea7a0df2e35c4cca3b3d5dca40935e63918a10", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -53991,9 +47973,7 @@ }, { "chartID": "0d2ba5bb6c902fa6e26ee858b79a88a1f67b3e6f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "11", @@ -54009,9 +47989,7 @@ }, { "chartID": "96ddf34662ba1df8ac54454ed234a3f349350a10", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -54027,9 +48005,7 @@ }, { "chartID": "d6e9e8dc5e09fd9cbca1698b856bed1c34b048a5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -54045,9 +48021,7 @@ }, { "chartID": "6433c7749cd4c8a2e45cec20a22d8e45afe2b7f1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -54063,9 +48037,7 @@ }, { "chartID": "d9b2ea0ed94a61024e352113bb3c89b8adc47daf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -54081,9 +48053,7 @@ }, { "chartID": "1001aeb47778ab3e28dc99a553a6bb70c5096e96", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -54099,9 +48069,7 @@ }, { "chartID": "bf438b273c51025f71c829abd605681b37fff476", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -54117,9 +48085,7 @@ }, { "chartID": "e2d69dca85ca1b6c3cd57e8fbb5a8bbd3b4c904f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -54135,9 +48101,7 @@ }, { "chartID": "11052738550e0b3324240d1e91fa6360ee50f21e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -54153,9 +48117,7 @@ }, { "chartID": "f7caff28fd332d5a143c7b72e789e84b3065de7a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -54171,9 +48133,7 @@ }, { "chartID": "f6f3ecf1e570333b2d12b83304ce938a7984bf95", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -54189,9 +48149,7 @@ }, { "chartID": "508a8811b16c4f25f2ad5bb003b23b6e75145056", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -54207,9 +48165,7 @@ }, { "chartID": "77b2a891d072258a87cbeeebfc45b5316923a559", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -54225,9 +48181,7 @@ }, { "chartID": "67ea283aa183839cb88075d982e411dbc9f11f25", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -54243,9 +48197,7 @@ }, { "chartID": "ac0f39d80f49c94196b857e8bf6ef0fff32a6645", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -54261,9 +48213,7 @@ }, { "chartID": "1cc36457bb3d1c1fbbe6afae51810798c74e3d83", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -54279,9 +48229,7 @@ }, { "chartID": "3d7c2a9719f68fadfb292aa77420ed4a7714abdd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -54297,9 +48245,7 @@ }, { "chartID": "06cc736d8c6a87599c7a2824b2f9c23889b1347e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -54315,9 +48261,7 @@ }, { "chartID": "f33b1204083e6bb2d67cde2aba3beac07ada34a2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -54333,9 +48277,7 @@ }, { "chartID": "a1d17cfbdb5f0d61d889621178a9147456443ed6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -54351,9 +48293,7 @@ }, { "chartID": "77ab04a1194eb1843cdb15b1a942941235da9989", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -54369,9 +48309,7 @@ }, { "chartID": "c992bf1a1f99c76aad21c575d5dee4a55cf7df03", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -54387,9 +48325,7 @@ }, { "chartID": "987ed28a2e7398c655428909ae07d34e296c66e9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -54405,9 +48341,7 @@ }, { "chartID": "dcd6dd96cad23c9283aeb56d5a6e33c16af7725d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -54423,9 +48357,7 @@ }, { "chartID": "3a8e0ab05c73b85b6fbe18493cc6eb688b39215c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -54441,9 +48373,7 @@ }, { "chartID": "0deac3e836186b06152a83a10b4e59811074a092", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -54459,9 +48389,7 @@ }, { "chartID": "abbc7a37f165e49991db9415ecb1d14ac7a19a13", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -54477,9 +48405,7 @@ }, { "chartID": "a7368c5916a99225e414420aab0b8773db312de3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -54495,9 +48421,7 @@ }, { "chartID": "7da4dbecb06124ee0d945ece7bf8fd492d1f23cd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -54513,9 +48437,7 @@ }, { "chartID": "bbc9892fee5b52487cf652290d3fbe89de7f9833", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -54531,9 +48453,7 @@ }, { "chartID": "1d1748b09c34c7e931fd1961ab30ead2ee4e4e7e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -54549,9 +48469,7 @@ }, { "chartID": "a1c0c2fb725d2821eb5651c4dc203638c6d6730a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -54567,9 +48485,7 @@ }, { "chartID": "3eba2d7cb55363a7e0e57b86cab7eed86b703434", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -54585,9 +48501,7 @@ }, { "chartID": "c2888ddbdcf315781c2c5c199153fc63b600c4a7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -54603,9 +48517,7 @@ }, { "chartID": "e9b1f6fd1d51ef3e95bdc290a3420bfd3bb2f94b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -54621,9 +48533,7 @@ }, { "chartID": "da526cedb80832a1e932a368cae5f05070be82e9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -54639,9 +48549,7 @@ }, { "chartID": "029e329e9e9d2a276373e31b25b4823c6f234f34", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -54657,9 +48565,7 @@ }, { "chartID": "c8f76ef6d4a92ca5902c36029dbcc2840e3e5cde", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -54675,9 +48581,7 @@ }, { "chartID": "3db16442efe38af1b252a162a969093ccb049acc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -54693,9 +48597,7 @@ }, { "chartID": "5c0bd520fc435d47e1e97759114d77df9c174511", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -54711,9 +48613,7 @@ }, { "chartID": "9f46a19486d4bb3ab64a93fd0b9014f6f511b281", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -54729,9 +48629,7 @@ }, { "chartID": "094cfba94ac9cfa00150dcf2be6f6ad2e3e9e73d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -54747,9 +48645,7 @@ }, { "chartID": "0446264c7b07d6266d90df98cdbac199018905af", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -54765,9 +48661,7 @@ }, { "chartID": "6c1c85b732fda9bb526183969548ce8522f66883", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -54783,9 +48677,7 @@ }, { "chartID": "a19c9b03feb713f6a5e3ce6c8213d84cc653e913", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -54801,9 +48693,7 @@ }, { "chartID": "271ff8fae3d0eedafdd51509178fc78572178cc1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -54819,9 +48709,7 @@ }, { "chartID": "dd809a33bd2807125fbfef50adcb65bddc4ce44d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -54837,9 +48725,7 @@ }, { "chartID": "3a036022db89cec9589a5e6272f0ca82264ccf61", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -54855,9 +48741,7 @@ }, { "chartID": "770e59088002f2e1079a71e5061f629a76cbadd5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -54873,9 +48757,7 @@ }, { "chartID": "5a3cc33f29a511a71750456b4729d077bec210d4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -54891,9 +48773,7 @@ }, { "chartID": "9fde2f4a6e787e403488932d259dbe712c64b28d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -54909,9 +48789,7 @@ }, { "chartID": "40292e8d9598a37b02215450ab33733b439d218f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -54927,9 +48805,7 @@ }, { "chartID": "74c702446583fbf4878c8eabc91ca637c6e991a5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -54945,9 +48821,7 @@ }, { "chartID": "c86af1e1d56e6612070a181d463a092dba8ed06e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -54963,9 +48837,7 @@ }, { "chartID": "710226490dac260719f5388ec5f6744f37d00610", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -54981,9 +48853,7 @@ }, { "chartID": "55c9cf00765d94129da6275981a7f0c6122fbd3f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -54999,9 +48869,7 @@ }, { "chartID": "42b01385dcd243862d058225b741dae52e52a239", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -55017,9 +48885,7 @@ }, { "chartID": "4191f4cf5b7a1f16b87b7ec9a5983404563e2152", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -55035,9 +48901,7 @@ }, { "chartID": "585ddfe9c2bdd0e65e221ee962635e0298cec51b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -55053,9 +48917,7 @@ }, { "chartID": "860958bd2969f0c0eb1de5a47a11fec094738542", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -55071,9 +48933,7 @@ }, { "chartID": "0220e8b40654af926e69dabc962478f516a222c8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -55089,9 +48949,7 @@ }, { "chartID": "ea59a5f1d8001849767e67dfa41c0302ad152de6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -55107,9 +48965,7 @@ }, { "chartID": "5031482e877b6fb008614b492737f0922d0ecc0e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -55125,9 +48981,7 @@ }, { "chartID": "a4f893dc25c7ca633a5509dff6fd21215650804f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -55143,9 +48997,7 @@ }, { "chartID": "38ae553a425cdb33bc699b4f165c50ec6cf5a70f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -55161,9 +49013,7 @@ }, { "chartID": "3630c91ba587fd125ce9f4128280a90dd3743bf0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -55179,9 +49029,7 @@ }, { "chartID": "d07ddfd1ba00f246084335116e587aac38f2a82d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -55197,9 +49045,7 @@ }, { "chartID": "24a9afe22350cde44b4bf9aab8ec9a341fceaea7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -55215,9 +49061,7 @@ }, { "chartID": "60a002bf0ede963164fa030e140be6850c33f15a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -55233,9 +49077,7 @@ }, { "chartID": "933197662f508ea9cb44879b03b4fb59e73d7e9e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -55251,9 +49093,7 @@ }, { "chartID": "6b27542e247f5bb52f86878a45b1e8d8514da12e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -55269,9 +49109,7 @@ }, { "chartID": "b14d7fe896e337b0c72ca6be94a036f887956990", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -55287,9 +49125,7 @@ }, { "chartID": "714452fddd8733909d322a8745955c81e0f5ee34", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -55305,9 +49141,7 @@ }, { "chartID": "616eeb0ab7b0d1966e4cfb8af33f6f48184641cf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -55323,9 +49157,7 @@ }, { "chartID": "f737ebc111e1345e3f2af374d799f5ac41eec4c8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -55341,9 +49173,7 @@ }, { "chartID": "63ce19a59852dbdf7066de9c285ef9a5d8ff4f6a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -55359,9 +49189,7 @@ }, { "chartID": "be6084c5b46f7e5082da185c496c6ddc701fe3ed", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -55377,9 +49205,7 @@ }, { "chartID": "3b3fabbe22501380bf351bafd7ea0a59e3ccb8ea", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -55395,9 +49221,7 @@ }, { "chartID": "4abcbc2d9ce139b5dfff443ac929bce3ede77d90", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -55413,9 +49237,7 @@ }, { "chartID": "ac908ee8b537c30e93c7950ae84b8941485bb875", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -55431,9 +49253,7 @@ }, { "chartID": "1fd5184851980ad321be6d7621091be64231232a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -55449,9 +49269,7 @@ }, { "chartID": "a0f24b1cfdc73c8a83f4c9039c42ef46dc8d7777", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -55467,9 +49285,7 @@ }, { "chartID": "33525ad7915c2b8789599b0ed5fe97fd35338f20", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -55485,9 +49301,7 @@ }, { "chartID": "f463b02be2a288d7b66b61a0b251586d5901646f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -55503,9 +49317,7 @@ }, { "chartID": "b8333f840c370d3b8fb9f77fb256709be6f6115f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -55521,9 +49333,7 @@ }, { "chartID": "fe9f91300f25dd435b5d596fc5ef38504d7f2eea", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -55539,9 +49349,7 @@ }, { "chartID": "aacf55456a8833022a456db910aeb017730db9d6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -55557,9 +49365,7 @@ }, { "chartID": "53695b925e16f1f2fb1402fbc1b01c98a3de864d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -55575,9 +49381,7 @@ }, { "chartID": "552bc5b188bb63efd2e36be527a8f38c454a0c5a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -55593,9 +49397,7 @@ }, { "chartID": "7596256f82ebeb1461ed500507efffd12fc152f1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -55611,9 +49413,7 @@ }, { "chartID": "c373681703acdc6f1f10d1e302a6ce206ec90f1e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -55629,9 +49429,7 @@ }, { "chartID": "0c91b1e164fe9a7614ec6d88c82b6113b1859d27", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -55647,9 +49445,7 @@ }, { "chartID": "abc900724038ce75e9faffd4353ac5ac375dd8a0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -55665,9 +49461,7 @@ }, { "chartID": "0aae42fac312ce17946bd6231f59a30a3bb3df82", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -55681,9 +49475,7 @@ }, { "chartID": "69ae3ee7233c2d005a4d3116bfae8ec82b5debf3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -55697,9 +49489,7 @@ }, { "chartID": "db3a2b93233252e82a7a9d7e4112cb441d61a8f6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "8+", @@ -55713,9 +49503,7 @@ }, { "chartID": "5d1b4cc1f623e9544be542514b878378bcf88c65", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -55729,9 +49517,7 @@ }, { "chartID": "774a1cfa6c420adcdb55d3211e5026269ba7d98f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -55747,9 +49533,7 @@ }, { "chartID": "d726bf28fe00eb018b2e3ec9a7fadb0e8c0d3bff", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -55765,9 +49549,7 @@ }, { "chartID": "e4d4f60e13b08d582c0139fb120a0c804283469c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11+", @@ -55783,9 +49565,7 @@ }, { "chartID": "17a43ec4babfa8cd16aad1dd50d2f4455d30f257", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -55801,9 +49581,7 @@ }, { "chartID": "4e72d917063df0610d1521e3cf02638c0e0cbbba", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -55819,9 +49597,7 @@ }, { "chartID": "469beabee7ee4bb4df999105de3a0a449d40d727", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -55837,9 +49613,7 @@ }, { "chartID": "a8e35b9473228be2194bc4e6671438607986756e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11+", @@ -55855,9 +49629,7 @@ }, { "chartID": "d370c7710c3ae5dbc924f15f6cada83356f60a62", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -55873,9 +49645,7 @@ }, { "chartID": "2c31f622bbc3c701946173b8505b775aa2c4900d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -55891,9 +49661,7 @@ }, { "chartID": "50e968fcaec982a1e4e8eb094e24194c1dfc57c1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -55909,9 +49677,7 @@ }, { "chartID": "96909091be4a9ca9bea3f79b4fc75845d395320c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -55927,9 +49693,7 @@ }, { "chartID": "c06d49e9b5235fb8f48233a06f3689d98ead77ca", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -55945,9 +49709,7 @@ }, { "chartID": "979b7147621c350892d95b92cd75a1457c3e0ee9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -55963,9 +49725,7 @@ }, { "chartID": "d4b327f179bdc4e1d8da714ecd96337059c653fa", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -55981,9 +49741,7 @@ }, { "chartID": "0a1e318d55c97b4b4dbb82afa7438599cb3d1571", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11+", @@ -55999,9 +49757,7 @@ }, { "chartID": "6570493e49472158d0054fceb634307c5d547a56", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -56017,9 +49773,7 @@ }, { "chartID": "aaf4a1942249ef53f0aaf38635a3e51cb15ebc0f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -56035,9 +49789,7 @@ }, { "chartID": "386aefabb4e701e80b809d41b3a2993295edf398", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -56053,9 +49805,7 @@ }, { "chartID": "2568e5d8c8e0f781b9ec9ca57bbdde752ee2ff5c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -56071,9 +49821,7 @@ }, { "chartID": "207718a74b504ccb2d842517072c845edc897ae9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -56089,9 +49837,7 @@ }, { "chartID": "31c267f3349bc4034b0b9f16596edf02a39f4dc2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -56107,9 +49853,7 @@ }, { "chartID": "bf81726d254dc22440fa788b5f1e6247dfbeaeed", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -56125,9 +49869,7 @@ }, { "chartID": "31873ccea90ccaa2f3dcd6f18c4a640b2a848c59", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "8+", @@ -56143,9 +49885,7 @@ }, { "chartID": "f8948fb916733eacc163765cfb0f21d0437805a9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -56161,9 +49901,7 @@ }, { "chartID": "208e8f40c0bcf88431b743a615d74d46a69b1949", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -56179,9 +49917,7 @@ }, { "chartID": "98aa4c74dae094f06fe652a17bd3a3efeb450b63", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -56197,9 +49933,7 @@ }, { "chartID": "546e06ee90f9f5170dbcc16bb3af76d6b5e8a033", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -56215,9 +49949,7 @@ }, { "chartID": "748f6d2f746d016d1ae7456ddd7f9d08933192c0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -56233,9 +49965,7 @@ }, { "chartID": "ec9f65519c05dbb55409ff81dfac1cef0601570d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Re:Master", "isPrimary": true, "level": "13+", @@ -56251,9 +49981,7 @@ }, { "chartID": "dca07308811be0ed272ce807be07e7558dd9a2ed", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -56269,9 +49997,7 @@ }, { "chartID": "d245ee670764ee856204e5b1b61a878e93f98f16", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -56287,9 +50013,7 @@ }, { "chartID": "9a00448e34397c238e5b01573b964019469ba1c9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -56305,9 +50029,7 @@ }, { "chartID": "be85ebd54c58c5dac1ea411edaf58bac68c73465", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -56323,9 +50045,7 @@ }, { "chartID": "6aae366ad9421d399984addae9252bba4067316b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -56341,9 +50061,7 @@ }, { "chartID": "26e321512703c010af1da8a855ae15acb85b9892", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -56359,9 +50077,7 @@ }, { "chartID": "0f2d36e5a62d017975bd4ec8b67403bb9ff2e9ba", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11+", @@ -56377,9 +50093,7 @@ }, { "chartID": "a6be8b48ee7572b26316f3c7020d75eaecba80a3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -56395,9 +50109,7 @@ }, { "chartID": "0c76ca861aae1c27724bcf1b77911ee1d21379f0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8+", @@ -56413,9 +50125,7 @@ }, { "chartID": "bc72b2508cdeb28fbbc8041d621869b156131aab", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "6", @@ -56431,9 +50141,7 @@ }, { "chartID": "b805b9372f64760355cab0bc58f9a3ecba8eb309", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -56449,9 +50157,7 @@ }, { "chartID": "6d93073e6304b4c87003d1617425c98eb610292a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -56467,9 +50173,7 @@ }, { "chartID": "799ff4eaaeecb5a12981c57698872fcc9714980f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -56485,9 +50189,7 @@ }, { "chartID": "34b708ca87639f7aaf782e571d499fc5b3079213", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -56503,9 +50205,7 @@ }, { "chartID": "e0c08db6970ac5d1e79c88541522b95d12a9a60e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -56521,9 +50221,7 @@ }, { "chartID": "d752a6782954321a8382f22bb6f29cffef35019c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -56539,9 +50237,7 @@ }, { "chartID": "392071030c002e47c6f57818ac42781be51d6e75", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -56557,9 +50253,7 @@ }, { "chartID": "d63c4696936d48203bf026061a72d849cb8ebb93", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -56575,9 +50269,7 @@ }, { "chartID": "5e97e5e6d87b0afdbe15527e93bffefb77275c6c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -56593,9 +50285,7 @@ }, { "chartID": "c3acb2051fdf16bdaf8a3de82ad5f62e1e1be26d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -56611,9 +50301,7 @@ }, { "chartID": "e3af4fcf63e4e0de33eb4152a1733f5c145b733a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -56629,9 +50317,7 @@ }, { "chartID": "c5e51c08b46e3c95934aac27dd2002828d593a55", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -56647,9 +50333,7 @@ }, { "chartID": "edbfd031b6781a4ede89a319511d5853253dbbea", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -56665,9 +50349,7 @@ }, { "chartID": "8a661b6b7bcb9d3f067752c0644a07222e87dc70", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -56683,9 +50365,7 @@ }, { "chartID": "07e5ee79b0396067acb1e3d477aecf205e42ac59", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -56701,9 +50381,7 @@ }, { "chartID": "7b96b11d5156fcedef949cb09ba1f60ce084e406", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -56719,9 +50397,7 @@ }, { "chartID": "1a78228a7741651599962d18e48906055582e0f0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -56737,9 +50413,7 @@ }, { "chartID": "79c6f1ce53d131fd6ba15d39e9d2844217402cb7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -56755,9 +50429,7 @@ }, { "chartID": "1b7f6c7c574ec212ebda7e50ed3696d0d14deb4e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -56773,9 +50445,7 @@ }, { "chartID": "81b472bbcfde01b699493b16d3726c8439d74349", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -56791,9 +50461,7 @@ }, { "chartID": "b5223c7f3e7982b9ea7ef2db3fb63d61b43e7499", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -56809,9 +50477,7 @@ }, { "chartID": "0058dcc4cd1e34bcf54c1957102905205d68bf7b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -56827,9 +50493,7 @@ }, { "chartID": "a7861462cb2353bede5deff58d4ca0d554f14847", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -56845,9 +50509,7 @@ }, { "chartID": "87cd29c9d7df1954b97f1e6ca82faa64ac29cce3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -56863,9 +50525,7 @@ }, { "chartID": "3b819745b22d29be0317c9dc466797c59a17549b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -56881,9 +50541,7 @@ }, { "chartID": "af23b1d4907ab5e20e5350536268771fe09d6edb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -56899,9 +50557,7 @@ }, { "chartID": "1dd4624480b1ae730859137879d3fb283ebbc7d5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -56917,9 +50573,7 @@ }, { "chartID": "9b25196a209f5d0d478f5b7cb7d7f18c12d44dc0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -56935,9 +50589,7 @@ }, { "chartID": "37025128b11e93d9397193021083126b944a9900", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -56953,9 +50605,7 @@ }, { "chartID": "15a145b5b71b98ee7364138ad04bd618171ec561", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -56971,9 +50621,7 @@ }, { "chartID": "e8d5f48cb0fae41e23318f945e7f769aea8a00bc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -56989,9 +50637,7 @@ }, { "chartID": "b394d4bad2ae4b19eec447af42a38afed5ffc366", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -57007,9 +50653,7 @@ }, { "chartID": "5c501a55c98ec999c88e39bbc57527ede5f3c02d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -57025,9 +50669,7 @@ }, { "chartID": "be1dc163bf0adc26410a584c1293385b1e32f8cd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -57043,9 +50685,7 @@ }, { "chartID": "faf90a1e58c2b57ef5c2fcfdae672f2a41ede002", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -57061,9 +50701,7 @@ }, { "chartID": "018f50a88d330e8d98eb7694fcca1b7d8ab4fe26", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -57079,9 +50717,7 @@ }, { "chartID": "69564a6183fedffe0a7a1c0f5cfef2eef648849a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -57097,9 +50733,7 @@ }, { "chartID": "6cf83795b0ce5ece26040f8d3a7463ae19909d20", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -57115,9 +50749,7 @@ }, { "chartID": "f4bebc9157f246b50ae251c1ddd2607dced05e3b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -57133,9 +50765,7 @@ }, { "chartID": "8bedd89c6670a58c0cdc3ea17e68f9e5a52947ec", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -57151,9 +50781,7 @@ }, { "chartID": "c5d46349d2e856d8ea54aea7f2641f240949976a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -57169,9 +50797,7 @@ }, { "chartID": "a0a7ea8e4980b7574d7cc4ce722cacb12177fc19", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14+", @@ -57187,9 +50813,7 @@ }, { "chartID": "624ea1829a78feb92648a0ff76e181cb674bd766", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -57205,9 +50829,7 @@ }, { "chartID": "cdd1836a98197059f11e45a6e72ca94b82a97259", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -57223,9 +50845,7 @@ }, { "chartID": "bab6b6620f04f0fd8d6222834ae246b5947f1754", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -57241,9 +50861,7 @@ }, { "chartID": "6be81942d109cfb92e01da8adc911874b929acfb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -57259,9 +50877,7 @@ }, { "chartID": "4f408f9f7ff92b86b82f16d86d73f2f953b8817a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -57277,9 +50893,7 @@ }, { "chartID": "68b70d8dd0e97875e1d46021c00a3306fa4244c8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -57295,9 +50909,7 @@ }, { "chartID": "70ae5f026db0a895fc8c5366d105cb84f1db8299", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12+", @@ -57313,9 +50925,7 @@ }, { "chartID": "37a207a9f4147bd8a97a05dd58983ce5fb7ff695", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -57331,9 +50941,7 @@ }, { "chartID": "cd3864fca4480634c2fae8e2fe695641c3d3fcba", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -57349,9 +50957,7 @@ }, { "chartID": "8060812bd146c3d1e703e6e46099066f5c2df207", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -57367,9 +50973,7 @@ }, { "chartID": "7527365ec432e2e162f2e8a4b96b28d396a3b2ae", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -57385,9 +50989,7 @@ }, { "chartID": "02c1f091b0907975614c0d3180872961ab486a86", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -57403,9 +51005,7 @@ }, { "chartID": "cb79b565c8e58669f3b484ac66739d9959c6a899", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -57421,9 +51021,7 @@ }, { "chartID": "747b3c3b2699dd5b51d7de41f9bdc39af5618617", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -57439,9 +51037,7 @@ }, { "chartID": "16336ce417fe5574689c6628f16b01a18fa98002", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -57457,9 +51053,7 @@ }, { "chartID": "c91fcf6adcf9f833f8f0bae76406931ed5ab6669", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -57475,9 +51069,7 @@ }, { "chartID": "10fde621415552882a5eafb113bd71f571c4e4f7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -57493,9 +51085,7 @@ }, { "chartID": "134671342a8d3b9a40bc1909ede8c5074c4895cd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -57511,9 +51101,7 @@ }, { "chartID": "cbd3625631247598c6fb5724307ed4785800f6ff", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -57529,9 +51117,7 @@ }, { "chartID": "700557608cb36116dfa2ac7612467d47c8f528ce", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -57547,9 +51133,7 @@ }, { "chartID": "cb02432bfb509809083b68286a046f8f464c5ce9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8+", @@ -57565,9 +51149,7 @@ }, { "chartID": "8a74018186bb6613d31e3ce955fbaf6902582ffd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -57583,9 +51165,7 @@ }, { "chartID": "577c2961e0a9190f387dae1e127bf778af7fa65d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -57601,9 +51181,7 @@ }, { "chartID": "154a8799007f7b0e44844f2e2481e46a7eaa0072", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -57619,9 +51197,7 @@ }, { "chartID": "33552e56daa619f938b86a5e29dd027306da1a47", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -57637,9 +51213,7 @@ }, { "chartID": "1eb390f1cdc8fc1759cb168004cff4709e3f0ef3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -57655,9 +51229,7 @@ }, { "chartID": "0f829e23e0b90d7856b6ed9120cfc5520bd49c2d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -57673,9 +51245,7 @@ }, { "chartID": "73edac7395ea35db635c012bda287388423be2e6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -57691,9 +51261,7 @@ }, { "chartID": "1db3f66841d6a827e6030b4abe2281f29d973ef6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -57709,9 +51277,7 @@ }, { "chartID": "b8f48b19737586d22ed363d645b9e7964c3940e7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -57727,9 +51293,7 @@ }, { "chartID": "613c1de035f2b06eb6c27335bcda32912d66a7ad", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -57745,9 +51309,7 @@ }, { "chartID": "9c60460be2812414260255eb2794d651890e3c5f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -57763,9 +51325,7 @@ }, { "chartID": "ec222f9f78cdfca05545ce308dbf719e582e02d1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -57781,9 +51341,7 @@ }, { "chartID": "6c608f8172931ca364e68a6a75fbcc9fd2a6ba9d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -57799,9 +51357,7 @@ }, { "chartID": "d2ab2a468cd52e8f3b7f94db1099f30a334d2e02", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11+", @@ -57817,9 +51373,7 @@ }, { "chartID": "1f1ae4d7aa81c7251bcf440450106940680f2b0e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -57835,9 +51389,7 @@ }, { "chartID": "6164bd5bcc1a6f903033afcc94914aa64e4c4d46", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8+", @@ -57853,9 +51405,7 @@ }, { "chartID": "8c1f3a49aa40e442d6a7043ff215ba539726fa68", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -57871,9 +51421,7 @@ }, { "chartID": "a797529fedce4f35080c0b5380d28c4d763fa603", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -57889,9 +51437,7 @@ }, { "chartID": "c32d4981451cd6801c7494526051c5c6930f8185", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -57907,9 +51453,7 @@ }, { "chartID": "724c94e6b46222e851beb779e92f740d5a1d35f4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -57925,9 +51469,7 @@ }, { "chartID": "94ec1e4fb0f31ddcd0616e665a160668e109d505", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -57943,9 +51485,7 @@ }, { "chartID": "413a0cc04b8e0f10b4a0bec7d999e15683700763", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -57961,9 +51501,7 @@ }, { "chartID": "3d0af8393a0c11b02d03fa586379cc3982c0d664", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -57979,9 +51517,7 @@ }, { "chartID": "33360c68f3d28e6aca1d75777b7cb88d4722c88b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -57997,9 +51533,7 @@ }, { "chartID": "1d81304339a589c9feb7d6e44c219fc99f3f9399", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -58015,9 +51549,7 @@ }, { "chartID": "0d6c29d6b3f02ec13503686428b34a5c50d69031", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -58033,9 +51565,7 @@ }, { "chartID": "c83ea9fea06b4a717effc668fb44b6118f5573d4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -58051,9 +51581,7 @@ }, { "chartID": "8e9dc7af2da98f2e9da22ec898ef268e8aa036aa", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Re:Master", "isPrimary": true, "level": "13+", @@ -58066,9 +51594,7 @@ }, { "chartID": "38129846d9174009b5da78440a2644c9d4920148", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -58082,9 +51608,7 @@ }, { "chartID": "79959238afd6549223efacc813c323a95c7e2147", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -58098,9 +51622,7 @@ }, { "chartID": "6f2c2903e47f6a6663a4752ee51c6856c26151af", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "8+", @@ -58114,9 +51636,7 @@ }, { "chartID": "f66674f718fce513527c4674159b4c1e1b4f022d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -58130,9 +51650,7 @@ }, { "chartID": "21334bb83d998ef97af424bbbfc9a341ebce180f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -58146,9 +51664,7 @@ }, { "chartID": "651869f091371b84a1a31715ddaa1525e0a94d86", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -58162,9 +51678,7 @@ }, { "chartID": "280a4e1fb9d9c41727788ce819d135a78d3b9f9e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "8+", @@ -58178,9 +51692,7 @@ }, { "chartID": "76d64e10d040f08d2c44a66ce59108f28fdd853e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "11+", @@ -58194,9 +51706,7 @@ }, { "chartID": "587c793c60959afa8add8b6772fa4943a19711be", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -58210,9 +51720,7 @@ }, { "chartID": "b45ff15d43df1f4664252e49d44bafbf41d92132", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -58226,9 +51734,7 @@ }, { "chartID": "697d249f1722c79bde57e75228fd3e07304863ac", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -58242,9 +51748,7 @@ }, { "chartID": "cc456d8b0de656503c363913d6bace94e41db3d3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "11", @@ -58258,9 +51762,7 @@ }, { "chartID": "b4ada1acc2fbf4de375db5b0505cab431067b487", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Re:Master", "isPrimary": true, "level": "13", @@ -58274,9 +51776,7 @@ }, { "chartID": "dc58e8afe40180b783727d9110aa617589b5200b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -58290,9 +51790,7 @@ }, { "chartID": "5266677082aaa201421fdd41b551ef0f8bd17dca", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -58306,9 +51804,7 @@ }, { "chartID": "d7fa3d9e625ed24e359a18f999bce3c3a4e304b5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -58322,9 +51818,7 @@ }, { "chartID": "5b3ea08b0003b8ae4b63139e42156a21762b9733", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -58338,9 +51832,7 @@ }, { "chartID": "d17dee973ad4126a6499a0f8fd838f3f93d7bcb9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -58356,9 +51848,7 @@ }, { "chartID": "af8cba925b9c64db05418ea10a536613f5687be7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -58374,9 +51864,7 @@ }, { "chartID": "a101b122beac9a40d1569badb66ca96ce9ef8f36", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "8+", @@ -58392,9 +51880,7 @@ }, { "chartID": "8965296f9ba600d90f2a4717d4d6a470861da4e2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -58410,9 +51896,7 @@ }, { "chartID": "f2598baa45f5a75c54d89fff9aee13b3eb42a387", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -58428,9 +51912,7 @@ }, { "chartID": "c71bb99a4bda2a4ad45a73479c8ddc0ea061e957", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -58446,9 +51928,7 @@ }, { "chartID": "82e10113e0c3a7d6ce623cc884593d90fdaab74e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "8+", @@ -58464,9 +51944,7 @@ }, { "chartID": "10fa56599b4ce1034e6c8fb3d7db4a2a3a365d27", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -58482,9 +51960,7 @@ }, { "chartID": "b5be97e0e56f441edc5eb78c2a4d612368016f24", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Re:Master", "isPrimary": true, "level": "12+", @@ -58500,9 +51976,7 @@ }, { "chartID": "8d3cdd8cd08818b02c575bc51f9feec7ed103e7f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -58518,9 +51992,7 @@ }, { "chartID": "442c46c0a3b9627754bb64fd36ef941ee6fd4579", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -58536,9 +52008,7 @@ }, { "chartID": "e2d428fdbf7c7533cd0650db37264f20a8be32b8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -58554,9 +52024,7 @@ }, { "chartID": "4f822396d854ef35f8c71c53ad2a1ecd27fa9bf8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -58572,9 +52040,7 @@ }, { "chartID": "29cc9652f28015ffe67b877151de47207caaba3a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -58590,9 +52056,7 @@ }, { "chartID": "43edb8f61b72f71fc1ac03eeddc0a1e6b5262928", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -58608,9 +52072,7 @@ }, { "chartID": "9e3b08378c5881a46c0b53047bcd280d3be523ed", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -58626,9 +52088,7 @@ }, { "chartID": "6ae1753747c5ac858dceb9ab96f8fb8d9f121a92", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -58644,9 +52104,7 @@ }, { "chartID": "5aa748beca0b9599d825c4a681f59b18a0d7f09c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -58662,9 +52120,7 @@ }, { "chartID": "fc7fd1974a34ff26e88b63eb5e8b4f0cc6ccfc53", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -58680,9 +52136,7 @@ }, { "chartID": "65ea2103c6137194905e48fee87a2c16c0eb9abe", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "8+", @@ -58698,9 +52152,7 @@ }, { "chartID": "ea9a7e0d485822ec76ac027122cf5606cc1fe97a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -58716,9 +52168,7 @@ }, { "chartID": "2edccefc101ad0b49709962198126e3f37335675", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -58734,9 +52184,7 @@ }, { "chartID": "2b46cf4bba03225b5510b0d4653eeb2228ee9817", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -58752,9 +52200,7 @@ }, { "chartID": "07316881104756cef9ecf8ac52e9359d2f590243", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "8", @@ -58770,9 +52216,7 @@ }, { "chartID": "c0495e52a56460442e3c9104c72a90276d672a23", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -58788,9 +52232,7 @@ }, { "chartID": "cd966878c64c0b976185f42021a2876a31a517a5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -58806,9 +52248,7 @@ }, { "chartID": "4206a574f8d42d6f0a9f5bc80a02fe889194ff55", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -58824,9 +52264,7 @@ }, { "chartID": "dd45279bf66909e36f0e9678a5964a9afa8d3c16", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -58842,9 +52280,7 @@ }, { "chartID": "b1922fd7c516943a0bd82e6e10d4e3ae7ed77a41", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -58860,9 +52296,7 @@ }, { "chartID": "e4b9ac3154ddad279c098bed2b005523aff98032", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -58878,9 +52312,7 @@ }, { "chartID": "2baac6fac1ac0044ff5d87a1a75d70164048a1e3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -58896,9 +52328,7 @@ }, { "chartID": "d3b045e12a0cc0bc22d69441932a4d9182834940", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "8+", @@ -58914,9 +52344,7 @@ }, { "chartID": "bac700f47ffc914a42ab1b8ca289f6fdf40a6f3d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "11+", @@ -58932,9 +52360,7 @@ }, { "chartID": "a863100a6b8183d178189de361a48cbed21a3841", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -58950,9 +52376,7 @@ }, { "chartID": "19828aad75f4767165bd31e77e0049d19cfb8614", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -58968,9 +52392,7 @@ }, { "chartID": "a80bb0bcadb4ecad738012eec3ae54ec98443b58", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "8+", @@ -58986,9 +52408,7 @@ }, { "chartID": "d03c2a31b18c4fa27538f7158860ba91ae7a5346", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -59004,9 +52424,7 @@ }, { "chartID": "2c0395bfe1131c8f5d010f2f68f830c126f09616", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -59022,9 +52440,7 @@ }, { "chartID": "28b9ca1da0c3879b797f089d43a7656777ba6a33", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -59040,9 +52456,7 @@ }, { "chartID": "45b19e0dea8531461f58fb3e02227c520955b01d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -59058,9 +52472,7 @@ }, { "chartID": "24f826e30cf75f5b4ebdb4bb87271be240b06d2c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -59076,9 +52488,7 @@ }, { "chartID": "65738e7da3533e9248f1f2498759fdf437ab5099", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -59094,9 +52504,7 @@ }, { "chartID": "840e154eada94936a9104a3be7f1b3c88b613eee", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -59112,9 +52520,7 @@ }, { "chartID": "a7c9a643353c121b38b1ae0bd89b4a881fee2dce", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -59130,9 +52536,7 @@ }, { "chartID": "b6047870128117b49fd2db943602e07c41ce3266", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -59148,9 +52552,7 @@ }, { "chartID": "86c079bfe5ddb56d70bb9b1a1b970242b9fc0c73", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -59166,9 +52568,7 @@ }, { "chartID": "0fd92f9ed26e58ba668d20ddb549eaa3380a7d4a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -59184,9 +52584,7 @@ }, { "chartID": "8e22a5b05487de07447604587ba1b087e6cfdd8e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -59202,9 +52600,7 @@ }, { "chartID": "3862db5a93819bde43a34b3c23ba7257ba648cc7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -59220,9 +52616,7 @@ }, { "chartID": "61ddaf91a0a893b882c73697c8db4668142154c6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -59238,9 +52632,7 @@ }, { "chartID": "c97fe02c7d59fe9ec5aa1f65d1212b4ca0487b80", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -59256,9 +52648,7 @@ }, { "chartID": "f69c0d333a73feee17484cb47775e46123dc73af", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -59274,9 +52664,7 @@ }, { "chartID": "7693c84f80d4711a26bb5483fcd390bca1d56b2b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -59292,9 +52680,7 @@ }, { "chartID": "050fde6e5015e4ff4ca7dca1aba66634d5d36b21", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -59310,9 +52696,7 @@ }, { "chartID": "c336fed297e8d73f74e75d2da9a2378df2467740", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -59328,9 +52712,7 @@ }, { "chartID": "288abc66a5a27cc2cc4d709f1a5b66de5ce94c99", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -59346,9 +52728,7 @@ }, { "chartID": "0bba17ddfbd10c6671278f2508c67b2fe2724d64", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -59364,9 +52744,7 @@ }, { "chartID": "1600ca4e9cf9a9f15c56f844e0dbcbaadda2f3dd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -59382,9 +52760,7 @@ }, { "chartID": "b4eb24f9cd702928054f7ad7d88750caa0700e7d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -59400,9 +52776,7 @@ }, { "chartID": "5d8b6fdddadaac15924127476d1d4ab3bd79ace1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -59418,9 +52792,7 @@ }, { "chartID": "4a468aef1f8069e72f2b5767c8ed496dadf569dc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -59436,9 +52808,7 @@ }, { "chartID": "854144d1e85769cc0e0bd7b210747295dc2ea966", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -59454,9 +52824,7 @@ }, { "chartID": "2aa96fdd80975f1fb360d09006906fea7640cc57", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -59472,9 +52840,7 @@ }, { "chartID": "11057f4c6a57cd38cd47582dd49487e13cf4c9a2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -59490,9 +52856,7 @@ }, { "chartID": "f7cd63018831ad17c25220a084e6ebfaec09a92a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -59508,9 +52872,7 @@ }, { "chartID": "0923237b6628c7b21e643b635d5b560f42b9ddde", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -59526,9 +52888,7 @@ }, { "chartID": "ccf7dc021436f84718af0f6cfd5e17a3551a9e3a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -59544,9 +52904,7 @@ }, { "chartID": "591e946b7f4c015aeb883d4ea1ca3996d120d630", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -59562,9 +52920,7 @@ }, { "chartID": "b2a810c8872796f65edbe637b473ee2ec1548f8b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -59580,9 +52936,7 @@ }, { "chartID": "ec7f50315f36b5f4ea265782da6b11a59ac9a987", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -59598,9 +52952,7 @@ }, { "chartID": "185722628c05be53acc7cb44cf655f991b50becd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -59616,9 +52968,7 @@ }, { "chartID": "f8cb595776bda10d43c211997a7c6f302fbed905", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -59634,9 +52984,7 @@ }, { "chartID": "0b9dacb84c2886f1b4aac5260d5896ad17a0233f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -59652,9 +53000,7 @@ }, { "chartID": "080ecc2eadd5068fba44789fe3b99a88f1718035", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -59670,9 +53016,7 @@ }, { "chartID": "49f4558619c28098144c80af6a2090b0cdc37c18", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -59688,9 +53032,7 @@ }, { "chartID": "1593abba0a2082ec43523d37a374f84f0ba1d699", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -59706,9 +53048,7 @@ }, { "chartID": "16a95e2808e82c462fa817f64e4ece106ce02f5b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -59724,9 +53064,7 @@ }, { "chartID": "593cf8cf395dbb42a9d1c9ef88f4b43a86f5904f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -59742,9 +53080,7 @@ }, { "chartID": "e297369eb2c5c3559be382c3e8581d14fad34690", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -59760,9 +53096,7 @@ }, { "chartID": "722d19c79decfd3738a4d2aafbc941a075e6fc00", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -59778,9 +53112,7 @@ }, { "chartID": "0c235471f2610140b4e8d5d83d0b7624a4453543", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -59796,9 +53128,7 @@ }, { "chartID": "3a54dde57a6d12724de9bf6290a4ee5b04e1aecc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -59814,9 +53144,7 @@ }, { "chartID": "83a439bcefc160724f1eacbc3cbc051a7cc88957", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -59832,9 +53160,7 @@ }, { "chartID": "83d734c8f8553531e00ee522740cdfde5a99cb06", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -59850,9 +53176,7 @@ }, { "chartID": "728ef8479a656403b97118ecb507c1d8b694df8b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -59868,9 +53192,7 @@ }, { "chartID": "e2739548c81171739bc6dfc053303ecef6e1fc3c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -59886,9 +53208,7 @@ }, { "chartID": "a7bb694f1c693ee20223ccf0c7eed3f408128c61", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "6", @@ -59904,9 +53224,7 @@ }, { "chartID": "e262f253f0751aee2136e28b740c337587e0df42", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -59922,9 +53240,7 @@ }, { "chartID": "102701d557ce6c82b6c28b988406a78322522b60", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -59940,9 +53256,7 @@ }, { "chartID": "857be6facf3b7318014338c0cc6faa247b918c86", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -59958,9 +53272,7 @@ }, { "chartID": "076322db773117cf3d86cbff99884bdc3877b692", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -59976,9 +53288,7 @@ }, { "chartID": "89b0d49a9f02da9149cb073b6632b62619f0e182", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -59994,9 +53304,7 @@ }, { "chartID": "64b1262a465a4034fbfbe114119e0a4e37af2f19", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -60012,9 +53320,7 @@ }, { "chartID": "b2de62aeafadda35cfad10c60791a066b2b62a66", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -60030,9 +53336,7 @@ }, { "chartID": "265e2182775267317961287313f61ee24e74bd3c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -60048,9 +53352,7 @@ }, { "chartID": "7d7d0c6a3e16a6a9e72edcdfb659b788ea2c83e1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -60066,9 +53368,7 @@ }, { "chartID": "d21b56db1de4ef222f072795557a6ea0de659fb9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -60084,9 +53384,7 @@ }, { "chartID": "e1b24e5c38c2f4a87d8d1d4d4264d9ce78f76961", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -60102,9 +53400,7 @@ }, { "chartID": "4b4eba6857dd8f8d6b8292699a99e6ff6896a39e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -60120,9 +53416,7 @@ }, { "chartID": "4fbe1510cc0918dd4219bd89f4ba8adf7f548c33", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -60138,9 +53432,7 @@ }, { "chartID": "5ed403b674860ab39a7755d9fa80c6d033dee6c9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -60156,9 +53448,7 @@ }, { "chartID": "8e5f04f66b6b0e6497a903eff88cfa2b9feb4882", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -60174,9 +53464,7 @@ }, { "chartID": "708083f8ae3f2ea7f426ba6bd3c39ad588c9d29c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -60192,9 +53480,7 @@ }, { "chartID": "125a16ba2cf57805e5d8a3494dda96dfec67c3db", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -60210,9 +53496,7 @@ }, { "chartID": "7722c39aaeb1dc971ceb628a474271b5573bbd2c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -60228,9 +53512,7 @@ }, { "chartID": "16b15fa92ca3c9f7f1ffb9a317bfaf29aa613261", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -60246,9 +53528,7 @@ }, { "chartID": "100aa4b24c13d16d700c0a9c5cd11a0aff505564", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -60264,9 +53544,7 @@ }, { "chartID": "a8c018a6267e8ac1d7bd09ca7abf1a5d7d62d3ce", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -60282,9 +53560,7 @@ }, { "chartID": "b3eafc22dd546a5709683b220c31481f8c9054f5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -60300,9 +53576,7 @@ }, { "chartID": "61a35e5b6b23761cfdd0aaa9e93ecbea5b6982c1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -60318,9 +53592,7 @@ }, { "chartID": "953303c24ca85ffcde577e6fa36996942fd32fed", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -60336,9 +53608,7 @@ }, { "chartID": "31295884ddc1754be7dd17c27d07785160fb63e5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -60354,9 +53624,7 @@ }, { "chartID": "401f827c39d828fdab0f3bf65feaf5fb4afba6a1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -60372,9 +53640,7 @@ }, { "chartID": "7e536118c66fa102e0dfdae9e1b3c6894f3bf5c4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -60390,9 +53656,7 @@ }, { "chartID": "a746e3317b0669e0f982b10ddd70f79a583ec100", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -60408,9 +53672,7 @@ }, { "chartID": "d579de0ca1c2d5cbfafe6bc8a334c82617cd0fb8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11+", @@ -60426,9 +53688,7 @@ }, { "chartID": "9a89f6bd0b37275cc798b700f75636c1f339af70", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -60444,9 +53704,7 @@ }, { "chartID": "0012db743e051b4c3b265a656cc0d9857752793c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -60462,9 +53720,7 @@ }, { "chartID": "5368e116b518c3ee7195f2f16c88141d4940ef0c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -60480,9 +53736,7 @@ }, { "chartID": "36401ada37b5b59a613b934eee5467f02ddb5deb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11+", @@ -60498,9 +53752,7 @@ }, { "chartID": "6761a447864971bf11db27c820b908f6dac15292", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -60516,9 +53768,7 @@ }, { "chartID": "5d7937530e08da0eaf66fafac6422d6e86c4e75a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -60534,9 +53784,7 @@ }, { "chartID": "d34e0b29911d7bee7addc17cf9568f42f36ca571", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -60552,9 +53800,7 @@ }, { "chartID": "e869b40253909366c023ec8d12c6f6f3ec497730", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -60570,9 +53816,7 @@ }, { "chartID": "fda96cf121b50949c26246950875813e0ad9c6d4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -60588,9 +53832,7 @@ }, { "chartID": "238f9444d30dd520cb1993d52e2f8f25a8fe6cd9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -60606,9 +53848,7 @@ }, { "chartID": "52a7b468f12267b5abff1275ce3ac1079bcd1bbd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -60624,9 +53864,7 @@ }, { "chartID": "76891f8c50663967f3e088e3c0e699a28b71b43f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -60642,9 +53880,7 @@ }, { "chartID": "ff1d91086998e198eadbf33d2b7791bb98900b8d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -60660,9 +53896,7 @@ }, { "chartID": "0d373f5934c64dc49312e7ad23a60db38fe8519d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "5", @@ -60676,9 +53910,7 @@ }, { "chartID": "d9f1625c74e13a08774002eccc8f68de77f806a9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -60692,9 +53924,7 @@ }, { "chartID": "5423d1bca3782d84eaee6f3e9112593b812f6910", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -60708,9 +53938,7 @@ }, { "chartID": "8bbb44bcd822e43a24b705636475a0889d8ae122", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -60724,9 +53952,7 @@ }, { "chartID": "3c8fcfcda1e78cc1b08347a6afd132b0932835f2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "5", @@ -60742,9 +53968,7 @@ }, { "chartID": "fa9b89f5c10757918896e3e9739ff440b69b1ded", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -60760,9 +53984,7 @@ }, { "chartID": "ff7fe9ace80044e609e43e45de411ee1c90c002d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -60778,9 +54000,7 @@ }, { "chartID": "f6019df9e2decd2265499d5f1b36f60039d58e5c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -60796,9 +54016,7 @@ }, { "chartID": "7d5d3c178f899c1fefcb30525d437ce5201792b9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -60814,9 +54032,7 @@ }, { "chartID": "8e3ed90446b4d2aff7b61c1ad114073e252fdd67", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -60832,9 +54048,7 @@ }, { "chartID": "1e2b6393c9f5127d73ccae5b16241fd8fa42d8d5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -60850,9 +54064,7 @@ }, { "chartID": "17a304bc6951e557d85e41be682c5a3a138fa850", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -60868,9 +54080,7 @@ }, { "chartID": "a803a8adf23efbfac22e0707417436b7c456100c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "9", @@ -60886,9 +54096,7 @@ }, { "chartID": "0b166e73f22c6129d89cbdb05e06efbe41fff6d2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -60904,9 +54112,7 @@ }, { "chartID": "ff62c0672896cd2f0377c820685979fecf83dfc9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12+", @@ -60922,9 +54128,7 @@ }, { "chartID": "5e61f77d6d463edd1c14417069d7b3874aa9faa9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -60940,9 +54144,7 @@ }, { "chartID": "912253e74bb153368c60683d2fd35f4fc24f460f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -60958,9 +54160,7 @@ }, { "chartID": "f9a82785cb1b2012d1d7bedac51f22362f3f8190", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -60976,9 +54176,7 @@ }, { "chartID": "bca3f5d162d3049fa141314735c61d2916348cf0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12+", @@ -60994,9 +54192,7 @@ }, { "chartID": "f7a38576f96abc5c13a7f4588a85eb0b9f1ee984", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14+", @@ -61012,9 +54208,7 @@ }, { "chartID": "243295f32ec7191942967893c38dfb7793e60589", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "9", @@ -61030,9 +54224,7 @@ }, { "chartID": "a4787014316cc9898079236c0a35746e4218e2d3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -61048,9 +54240,7 @@ }, { "chartID": "fbcd4adfa550bf6118eaadb16b65d50ed37c5175", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12+", @@ -61066,9 +54256,7 @@ }, { "chartID": "9c561f8203be791d036d2c2318f4cc350e57662d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14+", @@ -61084,9 +54272,7 @@ }, { "chartID": "d7c31849abf11bce8d9e699d17b325378430fb9a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -61102,9 +54288,7 @@ }, { "chartID": "b8bda40cf64f481b4b50323fd145c3e63d17231c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -61120,9 +54304,7 @@ }, { "chartID": "e4f2d430a2a9ff1d0283089267ed90095fc684d8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -61138,9 +54320,7 @@ }, { "chartID": "8cbe95284fc4084b17afb7154559af7e4e2712f1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -61156,9 +54336,7 @@ }, { "chartID": "bc80a39d43497ed02e8d2823866c6f3d415f544c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -61174,9 +54352,7 @@ }, { "chartID": "9f5f45c075db2c3c7aa7d332b123a145667491ed", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -61192,9 +54368,7 @@ }, { "chartID": "a0915468263a53d889c0246cacfa283913a00424", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -61210,9 +54384,7 @@ }, { "chartID": "0ff3ee8cb3a2f29d2f40f4355a03893084f81da9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -61228,9 +54400,7 @@ }, { "chartID": "34b28a64092bfde64cf4ca20738b87831b2e68c1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -61246,9 +54416,7 @@ }, { "chartID": "d7954e2bfa02b7076037e27027b645c0358beb36", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -61264,9 +54432,7 @@ }, { "chartID": "33a684c95642b67a60867c9027a652ed1221230a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -61282,9 +54448,7 @@ }, { "chartID": "7c2cd8bdd943e71f7cf4fb840603884db39a4344", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -61300,9 +54464,7 @@ }, { "chartID": "5582905f4bab1676952646f98cd165dc6476005e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -61318,9 +54480,7 @@ }, { "chartID": "b816fc9aa9977e045e01b088df4fad57a54d37f7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "6", @@ -61336,9 +54496,7 @@ }, { "chartID": "ca2e49614fa8184d66af489c3d537473749f213f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -61354,9 +54512,7 @@ }, { "chartID": "a29f590ca25610c64d4516f05aeaef5675f329a1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -61372,9 +54528,7 @@ }, { "chartID": "3d4bdd41fbc05144d00c89b20a8a81efe79c0ad7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -61390,9 +54544,7 @@ }, { "chartID": "81860201cc8a552493a2573a8cd065fe03b99f8e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -61408,9 +54560,7 @@ }, { "chartID": "a73f0a039dee69cc573a688355ebd1d5ae4d8e8f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -61426,9 +54576,7 @@ }, { "chartID": "70f615d28268fe3ea95f2c7ba6c42520f7a27a60", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -61444,9 +54592,7 @@ }, { "chartID": "35c8bc0eba78d661ad4f9db1301730666f8f99e8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Re:Master", "isPrimary": true, "level": "13", @@ -61461,9 +54607,7 @@ }, { "chartID": "9789b8faeb97cba1573b6c7f9150e0749fc16361", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -61479,9 +54623,7 @@ }, { "chartID": "3c4c18cf8069fa28cd4ce79dfcb14865c83462d4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -61497,9 +54639,7 @@ }, { "chartID": "f08f216ebd329d9b562c1c51138bc8756aeba4c9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -61515,9 +54655,7 @@ }, { "chartID": "6f06fa43104e364163127a7c8a412919b47f1758", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -61533,9 +54671,7 @@ }, { "chartID": "acfd68fbe9ebd390d1d9386cc197c37dc568f756", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8+", @@ -61551,9 +54687,7 @@ }, { "chartID": "cac789718d71d97e7717b1940a8a5ee8716aca94", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -61569,9 +54703,7 @@ }, { "chartID": "7df729a753604245f64a7bf9d02474fab772813e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -61587,9 +54719,7 @@ }, { "chartID": "e22fb3cdc78a27e79b65352d547ef6ddb1617452", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -61605,9 +54735,7 @@ }, { "chartID": "788d6e8e29a596c2686f15eda6390aef6b8f3920", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -61623,9 +54751,7 @@ }, { "chartID": "4fdcba0702334570d4308fa358859609a48b298c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -61641,9 +54767,7 @@ }, { "chartID": "9178a94ac5a893633660f79158fa85b8c4e10e53", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11+", @@ -61659,9 +54783,7 @@ }, { "chartID": "b515c52dcf7745f341cc468fb3194c237d281ce1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -61677,9 +54799,7 @@ }, { "chartID": "759eb42bc4e8cffe2bb9cf2edf3f41f24abe3c4a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -61695,9 +54815,7 @@ }, { "chartID": "22eab667095de1ac8207f040d973137d446a6c6c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -61713,9 +54831,7 @@ }, { "chartID": "2aba9cdf9eb3a298ff4226f360857c2b24968d73", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -61731,9 +54847,7 @@ }, { "chartID": "d300df2bcc16037968bd3d29f9d3d259634d4046", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -61749,9 +54863,7 @@ }, { "chartID": "05afae09da07ba10c0b1f88836faf40634c8464f", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Re:Master", "isPrimary": true, "level": "13+", @@ -61764,9 +54876,7 @@ }, { "chartID": "e05e5a9ff2827975c8eecf203d33407134da9fc4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -61782,9 +54892,7 @@ }, { "chartID": "7599a5a26291f5ff2804431cef784f6715050019", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -61800,9 +54908,7 @@ }, { "chartID": "fe5cc524b667f284eb0348eb3ccb5d6d36276b60", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -61818,9 +54924,7 @@ }, { "chartID": "ce9bdb8d438ee374cf33307c9f7e0ff7bfccd4b1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -61836,9 +54940,7 @@ }, { "chartID": "6c2b830241e5d880fbba9286da2ff991cb0a6e62", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -61854,9 +54956,7 @@ }, { "chartID": "a99248a0f211e3c5f7a688fe4ba62f4c99632260", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -61872,9 +54972,7 @@ }, { "chartID": "73534db0b4c63c1454f3ba374c74d432eb9d95cb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -61890,9 +54988,7 @@ }, { "chartID": "06b20021dcb0ad7d07a3786c71f9872ce1591d33", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -61908,9 +55004,7 @@ }, { "chartID": "d7c7537beb5f259e3754b1133a2483f403e18c78", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Advanced", "isPrimary": true, "level": "8", @@ -61925,9 +55019,7 @@ }, { "chartID": "fe68ed7c79d5f451d6b689f0671cb31127f6244e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Basic", "isPrimary": true, "level": "6", @@ -61942,9 +55034,7 @@ }, { "chartID": "c86740f2d89f8cb54d53085910439be79840efcf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -61960,9 +55050,7 @@ }, { "chartID": "cf7e2b1cd96b815bc9f4d82880410ff3c849e370", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "6", @@ -61978,9 +55066,7 @@ }, { "chartID": "7d0dba6e88d62830527513a0087ca38860389983", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "13", @@ -61996,9 +55082,7 @@ }, { "chartID": "869dffc351a30766302109753a212caa03eddd26", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14+", @@ -62014,9 +55098,7 @@ }, { "chartID": "5c42add964c5e48fc2979a86e33c38677f51d984", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Expert", "isPrimary": true, "level": "12+", @@ -62031,9 +55113,7 @@ }, { "chartID": "a1e73e7bdfefec3f931f736056864cad4167412f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "Master", "isPrimary": true, "level": "14", @@ -62048,9 +55128,7 @@ }, { "chartID": "e6da112074d3e58d5a83e56d5752903b7aa9d3a0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -62066,9 +55144,7 @@ }, { "chartID": "bacfa219bc48e6760b8d6d2ca4d1727719908c75", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -62084,9 +55160,7 @@ }, { "chartID": "e05b405c847019b39f40202c16cf4eb9969e0342", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -62102,9 +55176,7 @@ }, { "chartID": "6d1ec9e8c427f111bf564ed0b33ecc950990a74e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -62120,9 +55192,7 @@ }, { "chartID": "8aa9afdc30b9262c001cfa75b381c05a080a2aa4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -62138,9 +55208,7 @@ }, { "chartID": "53c5d8eda2f274eff40dc8c617ec9b843e26a1a0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -62156,9 +55224,7 @@ }, { "chartID": "05e8f1ab7581c34c85de3599658554f81180361f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12+", @@ -62174,9 +55240,7 @@ }, { "chartID": "47b9115c5322e20ea1d18393b27d1ec0afaf0cc5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -62192,9 +55256,7 @@ }, { "chartID": "e60d3b6f4122de571d86e62f03e9aa8c62ede262", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8+", @@ -62210,9 +55272,7 @@ }, { "chartID": "723b98b4616deecd0661283b4d8688a2907fbfa3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -62228,9 +55288,7 @@ }, { "chartID": "486a1d94ea1fad2e33f3ea3c5bc53c1af80bbd5d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -62246,9 +55304,7 @@ }, { "chartID": "62ee4e65f3864beaae4bd5c870233ebccdac3761", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -62264,9 +55320,7 @@ }, { "chartID": "864dd72df1a311c64fffc8b47a3bea8fdd9c9c23", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -62282,9 +55336,7 @@ }, { "chartID": "cb7ebe6cbac6cc2287a4c46836db624c8b594597", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -62300,9 +55352,7 @@ }, { "chartID": "4a4fed9262e8479ed44df0b30fc56ea1df1fc07f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -62318,9 +55368,7 @@ }, { "chartID": "5ca380911a71f5770464f0b607371c5e78dc65a7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -62336,9 +55384,7 @@ }, { "chartID": "ca97759cf685b134924ac2c9cb56e4d59a17af1e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -62354,9 +55400,7 @@ }, { "chartID": "45082da2e895bfc9824c2043cc8b3eacd2a37f4d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -62372,9 +55416,7 @@ }, { "chartID": "5e65bf3894097a08b4182221046ca4664bbc2fd5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -62390,9 +55432,7 @@ }, { "chartID": "4f8108e5bc903040c78076a722767880919bfc20", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -62408,9 +55448,7 @@ }, { "chartID": "bc1083539ed9bba996b351223b60c8b6c7d04c0b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -62426,9 +55464,7 @@ }, { "chartID": "f038c9b57dbe90bd9e475bf4370648ba2e59c2bd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -62444,9 +55480,7 @@ }, { "chartID": "7327cd3a6cc63239506a9c42f4a8f578e46e5905", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -62462,9 +55496,7 @@ }, { "chartID": "929fbecc87120750137ed3b0620b691603cbf54e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -62480,9 +55512,7 @@ }, { "chartID": "c5955aafdd3c3bbe187a039a54fd3f08aa95cc7b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Re:Master", "isPrimary": true, "level": "13+", @@ -62498,9 +55528,7 @@ }, { "chartID": "900cdef3d4cafb72c60b1ee57342236ec2b7031a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -62516,9 +55544,7 @@ }, { "chartID": "71aeebadd7629d5f5e23934b648e92093d3249a0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -62534,9 +55560,7 @@ }, { "chartID": "1d3f473eebf08865f56e14f9db50cd082288d0ab", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -62552,9 +55576,7 @@ }, { "chartID": "bd5f7607b2b19e4034bd8721da3172ae967dc9c2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -62570,9 +55592,7 @@ }, { "chartID": "4a0030b933b61483cb8b5a649ccaf349bb19dcab", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -62588,9 +55608,7 @@ }, { "chartID": "c6d14ca34dbb9313c7ce04249b91778614151bfd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -62606,9 +55624,7 @@ }, { "chartID": "aa20e013fde7333133e8ae15fe0c32569b966e34", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -62624,9 +55640,7 @@ }, { "chartID": "8644fb43281dd056ff0b4f2f599a6c11470331a8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -62642,9 +55656,7 @@ }, { "chartID": "3af48ea984623d04a5bd13a1e819daf7add1889c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -62660,9 +55672,7 @@ }, { "chartID": "c00c1e83c04210bf02ba50f82e8c2ce50f345a1b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -62678,9 +55688,7 @@ }, { "chartID": "c5366b36cdadec57549d6260832b4b34cc317047", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -62696,9 +55704,7 @@ }, { "chartID": "00679d509c6759788e9d6b6ff88dd04de34bb6c9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -62714,9 +55720,7 @@ }, { "chartID": "55c69c927c192c811af096b052ee3c5192f636ac", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -62732,9 +55736,7 @@ }, { "chartID": "e02e590d98784d8c7b7ba09b35e7593a6a2dfdb4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -62750,9 +55752,7 @@ }, { "chartID": "4a45a09c14afe5025709fa2b7378b1b0892d1448", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -62768,9 +55768,7 @@ }, { "chartID": "6ca8af2202239b20b4edf703faa847649c7ffa7a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -62786,9 +55784,7 @@ }, { "chartID": "6e6615ddd55893b3c20100109dadac5d9003cbac", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "9", @@ -62804,9 +55800,7 @@ }, { "chartID": "e1b18cda899f39d76e41afc8c49548f5ee0d3805", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -62822,9 +55816,7 @@ }, { "chartID": "530228761598f36c51dbdd893d5eaaf11c68cf2f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12+", @@ -62840,9 +55832,7 @@ }, { "chartID": "3b62f1f50ff4fc3caac28c71c2369625134e71db", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -62858,9 +55848,7 @@ }, { "chartID": "d7fe55d8edf41e82c2b62e482495b8e48397216d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -62876,9 +55864,7 @@ }, { "chartID": "64b29a00780577ee606bae272b121969aaddb77d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -62894,9 +55880,7 @@ }, { "chartID": "49de50b281d73eb554459c2d31b340d79091d3ae", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -62912,9 +55896,7 @@ }, { "chartID": "b75732ef7a91e2a9f808c61bf631ba2c665cd089", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -62930,9 +55912,7 @@ }, { "chartID": "cc4f1d63b7b1934fa87247c6e5f61c392d1bc529", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -62947,9 +55927,7 @@ }, { "chartID": "b9cbc43955de6fa7b6cf220551ae239e6125c5a0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -62964,9 +55942,7 @@ }, { "chartID": "c5872cce426a5bffbc7e5202664f90b12404ff18", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -62981,9 +55957,7 @@ }, { "chartID": "10005c5e33922838e78e23922a230c578e871339", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "11+", @@ -62998,9 +55972,7 @@ }, { "chartID": "7ef3a7aa096409109fd0ad82e370be69d1b2419a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Re:Master", "isPrimary": true, "level": "13", @@ -63015,9 +55987,7 @@ }, { "chartID": "1b504b87ecc9c958e53a0c6c90d98e0400e77118", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "5", @@ -63032,9 +56002,7 @@ }, { "chartID": "5da9365aa9cf24c3d7597032a7492520ed353caf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "1", @@ -63049,9 +56017,7 @@ }, { "chartID": "243f47a5a58ff0bf8aa0b66ae6c69f147b4bab94", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "7+", @@ -63066,9 +56032,7 @@ }, { "chartID": "5a3f8b3f07d28068a21caaa04c2bdaa69318725d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "10+", @@ -63083,9 +56047,7 @@ }, { "chartID": "9f5f03333d5b07b2fec9b65d7531f29df787405a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Re:Master", "isPrimary": true, "level": "13", @@ -63100,9 +56062,7 @@ }, { "chartID": "3bde5626f7d8641dd1c10a1749c3e889b1f72d0f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -63117,9 +56077,7 @@ }, { "chartID": "a1dc61a5dc6891d37512bc480e3f14ac47c1f878", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -63134,9 +56092,7 @@ }, { "chartID": "8e3d66b81bfbd378ad148edf1209596988904887", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -63151,9 +56107,7 @@ }, { "chartID": "18f32a02d30c8f4df611a52a8a7b1c02fcfbe666", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "11+", @@ -63168,9 +56122,7 @@ }, { "chartID": "245ef197e5c551aa4c90d9d8b854719895e64c2d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Re:Master", "isPrimary": true, "level": "13", @@ -63185,9 +56137,7 @@ }, { "chartID": "4d4d89b28adb4f03173a69387574e3c762421f34", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -63203,9 +56153,7 @@ }, { "chartID": "0f629933271f9dc3b4c0f7f8a39f16e7ececc967", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -63221,9 +56169,7 @@ }, { "chartID": "eaf2a4c17c01a7c07e7d1ac68fd9f8fbeb0490f7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "8+", @@ -63239,9 +56185,7 @@ }, { "chartID": "b91a7b6a20ecd5184cef6699afcb742c6165073a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -63257,9 +56201,7 @@ }, { "chartID": "fb10378260505ec77fe9871e59ff7cc99f81a0ec", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -63274,9 +56216,7 @@ }, { "chartID": "d06e4ecfe3a8932167342923c56f486d1ce61d21", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -63291,9 +56231,7 @@ }, { "chartID": "a593f07c83786acb19cb57180d64cd385e1db35c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "8+", @@ -63308,9 +56246,7 @@ }, { "chartID": "2533e838e9f9dbcbd632c15c0695b325c9a5c77b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "11", @@ -63325,9 +56261,7 @@ }, { "chartID": "065aaa76bc83240c5ed390923d9d15793f02742a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Re:Master", "isPrimary": true, "level": "12+", @@ -63342,9 +56276,7 @@ }, { "chartID": "c7a99c62871eaccca37343256142ed40710d8ff6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -63360,9 +56292,7 @@ }, { "chartID": "920421c73c10f6ff56311f6edd5e23ffa2354c4b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -63378,9 +56308,7 @@ }, { "chartID": "6dd3ca3ff23d90caee6fcdc808b708ea5306089a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -63396,9 +56324,7 @@ }, { "chartID": "25413857d1ff4f6f3cd29d97d5912a862f1b3089", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -63414,9 +56340,7 @@ }, { "chartID": "f4afc4c1f6c662446adf26a7b43b2a80db142cf8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -63431,9 +56355,7 @@ }, { "chartID": "2529f28b5c77b92807617a8119b47540ac657a11", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -63448,9 +56370,7 @@ }, { "chartID": "22dee19146622f33d6a993d843f95c74652ce614", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -63465,9 +56385,7 @@ }, { "chartID": "18995990659adfe6dffea1ef9855316d4008ab9d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -63482,9 +56400,7 @@ }, { "chartID": "49341808179c6f10c473615bae405547babec5c2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -63499,9 +56415,7 @@ }, { "chartID": "4377ced30589640c82f23e6159cb0b40f1c4a585", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -63516,9 +56430,7 @@ }, { "chartID": "655008bfdd0ca952055159646350449ef65a49a0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "8", @@ -63533,9 +56445,7 @@ }, { "chartID": "012fb3294536118153b59f8b8873ac5c18e82362", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -63550,9 +56460,7 @@ }, { "chartID": "c2424b70eb48185695a0edcb3bfdffdbbbe49e98", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -63568,9 +56476,7 @@ }, { "chartID": "35ab0bf1471cee1cdf8601e71eb2f5c09dd094fd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -63586,9 +56492,7 @@ }, { "chartID": "3dccc4200d0d7249a79161d6e928c431492707a8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "8", @@ -63604,9 +56508,7 @@ }, { "chartID": "9765860d8bc0af7e4728dd661a9ce09536d04a8c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -63622,9 +56524,7 @@ }, { "chartID": "0bb854118ad236e905afed92772afabf5fc01a2e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -63639,9 +56539,7 @@ }, { "chartID": "1ecf1bc04f3324320fc7337e43afd703110d771a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -63656,9 +56554,7 @@ }, { "chartID": "8a4853bbc2fd6c6449306743f413203f0cff374b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -63673,9 +56569,7 @@ }, { "chartID": "b4b324c42c86a3bb3a40577ce65042ad0803cf1e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -63690,9 +56584,7 @@ }, { "chartID": "d819d28b2e6306e2ba2897840b9f8493cad78e7c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -63708,9 +56600,7 @@ }, { "chartID": "0baa54f0994e09726bbdde29bf54c126a6f4480d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -63726,9 +56616,7 @@ }, { "chartID": "fe23a64db851311db2d378eb3d9e9673146f14ee", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "8+", @@ -63744,9 +56632,7 @@ }, { "chartID": "92c9f0325407d23047540e5c197fd2e267d925ff", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -63762,9 +56648,7 @@ }, { "chartID": "284bf27c98062418b6d250c747b15208b6761b09", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -63780,9 +56664,7 @@ }, { "chartID": "c14083ec84db4c8a8989eccdbba80bdd0792844f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -63798,9 +56680,7 @@ }, { "chartID": "53e549dc9c8030393c31f7645338036a376fef27", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -63816,9 +56696,7 @@ }, { "chartID": "156cb8fb8a5fa219922de24f82a46329703e4267", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -63834,9 +56712,7 @@ }, { "chartID": "7026f7d77581d889212240162b00b1943ba384c6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -63852,9 +56728,7 @@ }, { "chartID": "e124dce78ac5a7f5383ef149af0344c9ec4790e5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -63870,9 +56744,7 @@ }, { "chartID": "64a096b9d1ca39321e67ac46b5290ed38960f8db", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -63888,9 +56760,7 @@ }, { "chartID": "357ba08f04af98fa40692755660e0fd09d5c4466", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -63906,9 +56776,7 @@ }, { "chartID": "bd006922521c791e25accdf4d1fb79afa4b7d0af", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -63924,9 +56792,7 @@ }, { "chartID": "04263e4e8fc13172460088393a45b20de20808f1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -63942,9 +56808,7 @@ }, { "chartID": "3ff260e79b49c86e5c4e3fab59a5a71da7d167a9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -63960,9 +56824,7 @@ }, { "chartID": "6da5dc91658a0b6d035cd9761d735497be2c2b10", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -63978,9 +56840,7 @@ }, { "chartID": "3b97bcc822d1dd3717f96094a64e2bb475bf5fa7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -63996,9 +56856,7 @@ }, { "chartID": "25faf2788cba3f0356fda3169af4cc8d9f140c9d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "1", @@ -64014,9 +56872,7 @@ }, { "chartID": "0d90a0dbeb72a8d01fc8bd65600362045a7cb04f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "8+", @@ -64032,9 +56888,7 @@ }, { "chartID": "a3d893b2ba3515b279cb082647d82d9b03ce17c4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -64050,9 +56904,7 @@ }, { "chartID": "0d7f6b6c293281867304302f527909206fb1ae7b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -64068,9 +56920,7 @@ }, { "chartID": "68ea87ea62b4e9688e83cff57bc88c86a969f658", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -64086,9 +56936,7 @@ }, { "chartID": "835dcd2fcab3d4a7ff540f7f7aced41f1cc0a4bf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -64104,9 +56952,7 @@ }, { "chartID": "59756a356772db6a08c0c0e952f66d86f0a22a9d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -64122,9 +56968,7 @@ }, { "chartID": "e742cde7d2efcc1b288ee9a4fbd5dc05d25fd2d2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -64140,9 +56984,7 @@ }, { "chartID": "1b0ef6379df68c619c8152d84548f2eae2487f95", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -64158,9 +57000,7 @@ }, { "chartID": "d0b5969185c5389213ea4764832e73775dd98a3e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -64176,9 +57016,7 @@ }, { "chartID": "5692efd1632a624b893f02de06c1a3a79b13aece", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -64194,9 +57032,7 @@ }, { "chartID": "394327663d779c7c45704c9f41a2d1e0abf86584", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -64212,9 +57048,7 @@ }, { "chartID": "4096f477d77bb8f705235afb9c0faa80fd7c7d95", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -64230,9 +57064,7 @@ }, { "chartID": "82d5626202c061908adaeb5bf6df889c8735cfec", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -64248,9 +57080,7 @@ }, { "chartID": "0ec5055ac0575c24124b07f6767df679447da75e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -64266,9 +57096,7 @@ }, { "chartID": "2330188118d984bf5d20d89d115362e70cc568c2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -64284,9 +57112,7 @@ }, { "chartID": "a03fd287e0a05c58a1b7975f274d4010af35f20e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -64302,9 +57128,7 @@ }, { "chartID": "ccae0d038323d61ab33034e189423f7907b1a709", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -64320,9 +57144,7 @@ }, { "chartID": "6cfba5ffa318b8b63fa0e9d5c2cdb3654eed3493", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -64338,9 +57160,7 @@ }, { "chartID": "204499a57ae3c1ad64b66a5c7c1b0ccf07a3eb1c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -64356,9 +57176,7 @@ }, { "chartID": "f4d70ee45c430af37388c0a36ab41617fe21f03c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -64374,9 +57192,7 @@ }, { "chartID": "3537e95df73d5682f31250b104cbc68f2e55aab7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -64392,9 +57208,7 @@ }, { "chartID": "691afbbdd7bf5637d3ad1fc18579a2f2b647f7ec", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -64410,9 +57224,7 @@ }, { "chartID": "277a4108066a02b61f1544d3df3fde9a08a68d66", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -64428,9 +57240,7 @@ }, { "chartID": "55194a23e51bc3eb159611ce4a21f7d98be4f915", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "1", @@ -64446,9 +57256,7 @@ }, { "chartID": "bba080220ef243558d0ea067aadaae7c2bdf4714", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -64464,9 +57272,7 @@ }, { "chartID": "615d659a9008b4ba710f4459f98f3c8d3ad1c064", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -64482,9 +57288,7 @@ }, { "chartID": "bebca2549c3a214512f68a0b229288c5bb6cc004", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -64500,9 +57304,7 @@ }, { "chartID": "c4dac3300c23c78950d2559e1eade309444511a4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "1", @@ -64518,9 +57320,7 @@ }, { "chartID": "9613b13efdf38bb62f83ce3aca3e1411e07f8e66", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "8+", @@ -64536,9 +57336,7 @@ }, { "chartID": "3957f0d10c636f3a3d199434b3a7d25db828b72b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -64554,9 +57352,7 @@ }, { "chartID": "0b8d006df54d4b252d8b83d3045cdf87a8ec98e7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -64572,9 +57368,7 @@ }, { "chartID": "6bc80e4df2795f4537454265146071985d7b009d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "1", @@ -64590,9 +57384,7 @@ }, { "chartID": "c0af8cb8a6727aef185b4d3f770d464dc7eaace0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "8", @@ -64608,9 +57400,7 @@ }, { "chartID": "866f5cc6636a2de0c2586ed87abade3c9debe913", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -64626,9 +57416,7 @@ }, { "chartID": "a72abe3e3a223fb25158cf18a9619c35432ff501", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -64644,9 +57432,7 @@ }, { "chartID": "13fc283f475d00682f5c1c642670f742a8ddffc1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -64662,9 +57448,7 @@ }, { "chartID": "1215b1d2b67a0bdd6f444bc212edfba1dee7d7ab", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -64680,9 +57464,7 @@ }, { "chartID": "2fc66d1729d9cb718adca05785ccce90aa6c37f3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -64698,9 +57480,7 @@ }, { "chartID": "cf5e124ce1a4ad14e635ef0fe35debc8ccee8620", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -64716,9 +57496,7 @@ }, { "chartID": "59f10742f4b68b7872f33ea7518aee962d2aeb7f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -64734,9 +57512,7 @@ }, { "chartID": "2e6de22d89e7fffbd52064be029eb544e5ac2476", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -64752,9 +57528,7 @@ }, { "chartID": "6301b856c2ff0939745d749d841cf633cff70db5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -64770,9 +57544,7 @@ }, { "chartID": "16cd6d5eb953ab30d1efd1da9cdcea32994817cd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -64788,9 +57560,7 @@ }, { "chartID": "f317ebbd4dd9a06cb604b37fd27891e095717892", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -64806,9 +57576,7 @@ }, { "chartID": "3b89639745c1b0353a5ba2302eb6826f6497cddd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -64824,9 +57592,7 @@ }, { "chartID": "7cad657eb0fd0a89ec7758fd74aee639e0e7f814", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -64842,9 +57608,7 @@ }, { "chartID": "ba41791ca4e3a8bf6c387cf9be772e69c5080ca2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -64860,9 +57624,7 @@ }, { "chartID": "5d651ca6aba33c597a028696578688090657db11", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -64878,9 +57640,7 @@ }, { "chartID": "1437a36e860525593fbfc0e3fd364bd6d81bc3c9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "8+", @@ -64896,9 +57656,7 @@ }, { "chartID": "f71cf9bcbd4109c0b1322f5afcfd968720948fd8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -64914,9 +57672,7 @@ }, { "chartID": "f39f532e0794eff8ccdfe02085856a8867f4e538", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -64932,9 +57688,7 @@ }, { "chartID": "7fd5fc531109c980e219fe864a884188833c84e2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -64950,9 +57704,7 @@ }, { "chartID": "f53e7976caf83d8518b79bb3f9aecb03ca6ac0d5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -64968,9 +57720,7 @@ }, { "chartID": "40dfe91a770a43f8387db9a84f9282166fe646fe", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -64986,9 +57736,7 @@ }, { "chartID": "d6047bf8e868f92be2b38ebf5ea6ee0dafcf02da", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -65004,9 +57752,7 @@ }, { "chartID": "cd15f78bdc6423141bca8753c3d2a6eeb38416d7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -65022,9 +57768,7 @@ }, { "chartID": "43f5a38b8a1c20e0dd37d0fba4a1af675e4593b7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -65040,9 +57784,7 @@ }, { "chartID": "361bf1e779276026e520e4ce16d6f0449c12c670", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -65058,9 +57800,7 @@ }, { "chartID": "9780fa7adec38e9793dcd46e708f9b2f2477acb2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -65076,9 +57816,7 @@ }, { "chartID": "97f0adef827daefe98ded03b507aabf770837da1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -65094,9 +57832,7 @@ }, { "chartID": "56da3f0e8fd378009100f828799b681cdf0e0832", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -65112,9 +57848,7 @@ }, { "chartID": "c3782644375c70f58f6ae33f0a42202e9aa69eac", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -65130,9 +57864,7 @@ }, { "chartID": "a4c8651d6f13d73a80eb4b158d4a80bd62e1b603", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -65148,9 +57880,7 @@ }, { "chartID": "4f8db8861bf785c54ba2d29766c9de8472609898", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -65166,9 +57896,7 @@ }, { "chartID": "9d19d2a5f9383ec65ed3196e859eba97d81cb058", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -65184,9 +57912,7 @@ }, { "chartID": "f976f549e4810bf53831c52f0944425010ce2221", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -65202,9 +57928,7 @@ }, { "chartID": "b743042674365ba1eb42d01267aec5320ae668f0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -65220,9 +57944,7 @@ }, { "chartID": "7506757a3233cfdca531b6123bc2d61a38343dac", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "6", @@ -65238,9 +57960,7 @@ }, { "chartID": "7e260082bfeff1d5429868c1be8c608a9615ec59", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -65256,9 +57976,7 @@ }, { "chartID": "2a908205ab75ad6bdf2a504d05332c26978d151b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -65274,9 +57992,7 @@ }, { "chartID": "8a6859d13c3633d4dbe5fb8f87582bb7ddf32486", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -65292,9 +58008,7 @@ }, { "chartID": "580765a17aae3e17acbf3d6d567868cbb5bf9f7e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -65310,9 +58024,7 @@ }, { "chartID": "01bed5cdb2249a1c27a991132732c27463c832d5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12+", @@ -65328,9 +58040,7 @@ }, { "chartID": "739e933ab3a3567c706d5489f247d80613dd7007", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -65346,9 +58056,7 @@ }, { "chartID": "0441cb74152b44dfd141a7107a62fc5cb91c5b3c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -65364,9 +58072,7 @@ }, { "chartID": "6f9e68f6a8dddbeb75109d97eaa51a32aa462d67", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -65382,9 +58088,7 @@ }, { "chartID": "afa7ec16eeedd008e01bad9c0f436102779d5303", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -65400,9 +58104,7 @@ }, { "chartID": "5f8974a0e16f962dc8c8a313dfd4e4f2a1e13b53", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -65418,9 +58120,7 @@ }, { "chartID": "b53e2c9c2c3688f61b04979d9c8466e4dcce1cf2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -65436,9 +58136,7 @@ }, { "chartID": "dfc13bdc7352a5d3d5415346108ff8a4e65e1bb0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -65454,9 +58152,7 @@ }, { "chartID": "97ed3e10c2b3bd808ab381f7a3ebc00dc52d3655", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11+", @@ -65472,9 +58168,7 @@ }, { "chartID": "9bce11b32db0a63cce69790c74a2325e168f78a5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -65490,9 +58184,7 @@ }, { "chartID": "3d3b38bfe053990f7b3c729403edf53cb4ce105c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -65508,9 +58200,7 @@ }, { "chartID": "52655ea6926a6176a464ccf3b104f1f2b8ce01c8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -65526,9 +58216,7 @@ }, { "chartID": "babf2438ff5e647929d012597b6d325d0d11538b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11+", @@ -65544,9 +58232,7 @@ }, { "chartID": "5a2e063572292f288037873c690e6e1c76927a07", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -65562,9 +58248,7 @@ }, { "chartID": "25f19a471597c54f1465dad9ea81de985737b72d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -65580,9 +58264,7 @@ }, { "chartID": "3d065d71dbc76c2e10be61bc17cc599ecf8bd1f4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -65598,9 +58280,7 @@ }, { "chartID": "7b90c07940457989a8e76aaf7c14307f267ce70b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -65616,9 +58296,7 @@ }, { "chartID": "978ffef28cacffb0d9171d8abe27c5097059fb0a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -65634,9 +58312,7 @@ }, { "chartID": "d6c36f38a0db96640325ba9234c6749756979588", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -65652,9 +58328,7 @@ }, { "chartID": "240f0dbfa367f1d8a0e7397d80f100efed13ddfe", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -65670,9 +58344,7 @@ }, { "chartID": "6aa45d64fcf1482523a10c05c5e4e21cc270614d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -65688,9 +58360,7 @@ }, { "chartID": "4e469043b833c970ecb1ffe14480d1407db01f06", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -65706,9 +58376,7 @@ }, { "chartID": "98dc3ecc0d0af9310add3ab08f681472102f179e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8+", @@ -65724,9 +58392,7 @@ }, { "chartID": "6cf7f7ea23546a39717a4aa66684153f6fd71c11", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -65742,9 +58408,7 @@ }, { "chartID": "4e75cedb383602aa936e7178b47609c34d0f8c32", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -65760,9 +58424,7 @@ }, { "chartID": "a9a2bf402841299d795dbd6881f4d4fe1b002177", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -65778,9 +58440,7 @@ }, { "chartID": "b5e2b68cd4bb3f2f465ad69d3acc753e25051404", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -65796,9 +58456,7 @@ }, { "chartID": "86f581cec57587a6082775ae040b0cf6a98743df", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -65814,9 +58472,7 @@ }, { "chartID": "79306cdd0437dfb3c5a729987e13ee720ce1b3d7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -65832,9 +58488,7 @@ }, { "chartID": "a2637845d8298258a8336f506f4e3d549af1ca5a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -65850,9 +58504,7 @@ }, { "chartID": "0558c32869cc122150985196e60d06b47b03abcc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -65868,9 +58520,7 @@ }, { "chartID": "02b117bf1945caa83eff4ba05c1db5fcd0bb8d17", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -65886,9 +58536,7 @@ }, { "chartID": "cb1866e4f4fca11e55890f7501172928f376eb9b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -65904,9 +58552,7 @@ }, { "chartID": "e1cab9bbd575ee5f05bb801f572445fff4660393", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -65922,9 +58568,7 @@ }, { "chartID": "f1a9249b6592d1f752eb8d0b5d4b122ecf49edb1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -65940,9 +58584,7 @@ }, { "chartID": "c100ac9beffd8e6f0cd474995b2a72a411e73a79", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -65958,9 +58600,7 @@ }, { "chartID": "6da4cfee0e92cc10b958208d1f6f4dbf0f0e2b82", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -65976,9 +58616,7 @@ }, { "chartID": "bd72002648b87c94630141235ea67b1dc96a3205", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -65994,9 +58632,7 @@ }, { "chartID": "949a4734aae747debee8df360cef84c5db6a1d79", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8+", @@ -66012,9 +58648,7 @@ }, { "chartID": "1ed9d943f6b7ae983a024b1b701d1849e64d0f86", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -66030,9 +58664,7 @@ }, { "chartID": "6412b07fda6a0244a94f20b2710e758510359f97", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11+", @@ -66048,9 +58680,7 @@ }, { "chartID": "c5bb827202583a851271f88018962520b086b08c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -66066,9 +58696,7 @@ }, { "chartID": "c76bc4f080e1dfa07a605a76d8f65663e3b8de9e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -66084,9 +58712,7 @@ }, { "chartID": "ecd4b8efac6206aad0315abf10e04055fca29e77", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -66102,9 +58728,7 @@ }, { "chartID": "f7ea59f8707b6a5d7f772b87a810b052b08eeb24", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -66120,9 +58744,7 @@ }, { "chartID": "605e70e0331e742705d43589708c6cef394cd849", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -66138,9 +58760,7 @@ }, { "chartID": "be94febb411c6894e202f4daefdb683124c40339", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -66156,9 +58776,7 @@ }, { "chartID": "4b3b2504a8801be4b88e05320807bdf3dbde4d07", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -66174,9 +58792,7 @@ }, { "chartID": "fab3d632610b9b98ee1e4f68e9ecf0161f9cb8cd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -66192,9 +58808,7 @@ }, { "chartID": "54fbeb80d54b42929f0e7270a36bf6c898d9ac15", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -66210,9 +58824,7 @@ }, { "chartID": "c7acb260573f8423fa3b64e28ff4579590db020c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8+", @@ -66228,9 +58840,7 @@ }, { "chartID": "96a0cf48a64de8791684c8c4ea33af8cd0f5ce45", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -66246,9 +58856,7 @@ }, { "chartID": "cc69e68a66f5b0701ce433c78acae890b1918d2e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12+", @@ -66264,9 +58872,7 @@ }, { "chartID": "efcd0e9e0a8ad930dca979f1103275e0d3c3725d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -66282,9 +58888,7 @@ }, { "chartID": "3e83d500f0badfbb36cb9a9fa043609e1a3bf61d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -66300,9 +58904,7 @@ }, { "chartID": "80bae919625877a30945542375d44b86ff845b8d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -66318,9 +58920,7 @@ }, { "chartID": "8e79d5b3f10a6ab193d7cc0f8522a62d436ee755", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -66336,9 +58936,7 @@ }, { "chartID": "fa272871732c173277cc9d9c1b64a1b5d376e31e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -66354,9 +58952,7 @@ }, { "chartID": "2eb0ddf97bc856e240b4a722fdc6152ca2d69b55", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -66372,9 +58968,7 @@ }, { "chartID": "a5c3ae9906836fcbbc1f99416cc2831a6a886dc0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -66390,9 +58984,7 @@ }, { "chartID": "898d0bbf22b16b15876c9a78b5285dedfb41adb5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -66408,9 +59000,7 @@ }, { "chartID": "c4ff8baf0e0f6bd29fabda97240128fb2495f851", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -66426,9 +59016,7 @@ }, { "chartID": "c32dca11b23b062bd4e61e801858290c21973ba3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -66444,9 +59032,7 @@ }, { "chartID": "2ed0baf19b1759d99f5684b2bde258b95cd8c689", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -66462,9 +59048,7 @@ }, { "chartID": "a8b4e0784818fecf29ceac7e37941895aed9433f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -66480,9 +59064,7 @@ }, { "chartID": "994c35c949b6fa7799621c39e3a3638fa9676755", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -66498,9 +59080,7 @@ }, { "chartID": "e35d303435a5962fef4c6a52b5d8e1ac51ebf89d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -66516,9 +59096,7 @@ }, { "chartID": "d4371d53bcccf92eb0bcc60895ea5e03e6924050", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "6", @@ -66534,9 +59112,7 @@ }, { "chartID": "00ae0f31188b24b98204be8c1567a65cb110600e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -66552,9 +59128,7 @@ }, { "chartID": "3fd1227598c1666921e2ce6ec02ac3d47bf01684", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -66570,9 +59144,7 @@ }, { "chartID": "998fe78bb6c1e94afa84fd7b05b0be15b69593f0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "9", @@ -66588,9 +59160,7 @@ }, { "chartID": "dfd6f2bfe84adf3c40134353fbabd44e06afebdd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -66606,9 +59176,7 @@ }, { "chartID": "aa615bf21be0cc66fb05f35bce0b47fad7b82bf5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -66624,9 +59192,7 @@ }, { "chartID": "0c158246c32ae553c7fc1a0c3dfdeaecde7b27e5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -66642,9 +59208,7 @@ }, { "chartID": "240a84e834f699ca165106245e2fa1d1e33d07cd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -66660,9 +59224,7 @@ }, { "chartID": "cf5ade48f0e07e6af40fa40ea0df571804bd8413", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -66678,9 +59240,7 @@ }, { "chartID": "4281dbf39a5d3c881ff37fcef20401bffd0b76d0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11+", @@ -66696,9 +59256,7 @@ }, { "chartID": "38bb388148d2d4cbde255b9acc63de26d2e1d20e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -66714,9 +59272,7 @@ }, { "chartID": "22d28b26b236a34f3cf6c1cadf595203ed113a41", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -66732,9 +59288,7 @@ }, { "chartID": "8784fea2de42a494ea9d0edf9613081e36837c9b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "6", @@ -66750,9 +59304,7 @@ }, { "chartID": "e9f2484c1db126f9526c273bef794f9ee9c4dc02", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12+", @@ -66768,9 +59320,7 @@ }, { "chartID": "730f0e5e4039642690286646ecc5ce2396f0ac16", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -66786,9 +59336,7 @@ }, { "chartID": "f3afbea3c54292991b7f5c498372e38fd4e8def4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -66804,9 +59352,7 @@ }, { "chartID": "8855700afcdd592e7187f95396f98b6ed391490e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -66822,9 +59368,7 @@ }, { "chartID": "2ea68ec678fe669cd21bf13b709a7a36954f5cb6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11+", @@ -66840,9 +59384,7 @@ }, { "chartID": "622eb210ba1942fb80b4952b5bece4e5c6fdc51b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -66858,9 +59400,7 @@ }, { "chartID": "5bba4d6394f242a795facc75a6ddbc68dc33335b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -66876,9 +59416,7 @@ }, { "chartID": "24ba59e0f716956bd48cca947d5987734a6a0a05", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -66894,9 +59432,7 @@ }, { "chartID": "73fed5650eff1e8f9915db4bc7138e173a4a552a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -66912,9 +59448,7 @@ }, { "chartID": "a71f4665ad95fe0d1a17a2a61041d55301085b17", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -66930,9 +59464,7 @@ }, { "chartID": "eaa8350c6a082c37c3865e41bdc68e59ef0cfe63", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -66948,9 +59480,7 @@ }, { "chartID": "6a4425b4cf0a1478781ce5465a92f73abc20aea5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -66966,9 +59496,7 @@ }, { "chartID": "300ac312633655273170f63a3ffecb41e68ee4b9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -66984,9 +59512,7 @@ }, { "chartID": "f5ef04f89240c6ed0c4689d85d98f7e628d79545", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -67002,9 +59528,7 @@ }, { "chartID": "6b54dd973d85c4a65f1ee7a5b3ebc61ec0e52109", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -67020,9 +59544,7 @@ }, { "chartID": "e6cadd3f4b7aed5f3caa80bc6da0cd9163a4bf09", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -67038,9 +59560,7 @@ }, { "chartID": "8bfab2876fd4d01626b507922f400a93929a954c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -67056,9 +59576,7 @@ }, { "chartID": "02f36c296ab90e0faea519cb037779d4a5713df6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -67074,9 +59592,7 @@ }, { "chartID": "312bd80d278cb3739ffa4bac536302d55ba657db", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -67092,9 +59608,7 @@ }, { "chartID": "91347c56deadd674aa882b9ac05d0e6db1d3b0e5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -67110,9 +59624,7 @@ }, { "chartID": "b30a1884ad3e9391bc190600b82033929dbec146", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -67128,9 +59640,7 @@ }, { "chartID": "b85ba16a57ca564a7fda72f8acbb87ad05605183", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14+", @@ -67146,9 +59656,7 @@ }, { "chartID": "05a0bdad4a1fc462c3437e86aeb8d47ee3f09650", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -67164,9 +59672,7 @@ }, { "chartID": "3696838aad20bb3cf67f845375cb0eb10284ecf2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -67182,9 +59688,7 @@ }, { "chartID": "f9e298feff68d4b2620a71a86c573b86cb5ea6e1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -67200,9 +59704,7 @@ }, { "chartID": "1708cb12ed3660084b3c3588362919945700a9a6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -67218,9 +59720,7 @@ }, { "chartID": "7545bce34b052ac438b7a12ba14110731edaf324", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -67236,9 +59736,7 @@ }, { "chartID": "e27a14ccae31bb3cc05f3e7ba6cbe215cc921156", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -67254,9 +59752,7 @@ }, { "chartID": "363eed45062ef6a97053e7b451b9bd947bb8c1c4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -67272,9 +59768,7 @@ }, { "chartID": "4fa3184edadf42b8b776253c9a111a1665383c2c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -67290,9 +59784,7 @@ }, { "chartID": "370c310bde20b60e9a79f917d81f2bf271319fb3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8+", @@ -67308,9 +59800,7 @@ }, { "chartID": "1e0d7b407d380bb4a2317a0cb50ea5c75090cd26", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -67326,9 +59816,7 @@ }, { "chartID": "e203b590b599d0c8b1b6d7e1647c3a9ff5d17075", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -67344,9 +59832,7 @@ }, { "chartID": "094b78c9e92135c26f29b676c08b43eead6c50a9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -67362,9 +59848,7 @@ }, { "chartID": "7e972762bdb6d072a0e3b0cf87a63915f4a6d0a9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "9+", @@ -67380,9 +59864,7 @@ }, { "chartID": "7b8a6bc56f72d0a48a2eac93092671e3bb535a6d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "6", @@ -67398,9 +59880,7 @@ }, { "chartID": "cda1d02b1513cb89aa9a869ac7eb6d9ebe1d71fb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "13", @@ -67416,9 +59896,7 @@ }, { "chartID": "fcc624a2b29ed59cda0f25e2cecab889a7eb46b6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14+", @@ -67434,9 +59912,7 @@ }, { "chartID": "2aacf9930893a2176cf26a711d3a05cfe46fe48d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -67452,9 +59928,7 @@ }, { "chartID": "d72d78509fd13b79ad7664261f3a3f06be6fbaff", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -67470,9 +59944,7 @@ }, { "chartID": "d073f3a5f9d5c294306cdf4edb3ffbb520d7c196", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -67488,9 +59960,7 @@ }, { "chartID": "2ebba59e170dc1f1d7d41504d5c0bbd21a20bcee", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -67506,9 +59976,7 @@ }, { "chartID": "8fd31274721316decb6a0dea380f9ad97e4866a4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -67524,9 +59992,7 @@ }, { "chartID": "4a8246dc82585dbec5d11890928dcd1cd5be9d84", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -67542,9 +60008,7 @@ }, { "chartID": "981fbc73c206eab7015e4db354a5fc9209272a90", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -67560,9 +60024,7 @@ }, { "chartID": "1e93c7db4a4b91916cad84f69509826cf6f6d69d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -67578,9 +60040,7 @@ }, { "chartID": "d5cbb2e591efd37437094e55f64e6e517f6b9d9a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -67596,9 +60056,7 @@ }, { "chartID": "18d19ba6ccefce3ed3fa842189870ffa72a105f3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -67614,9 +60072,7 @@ }, { "chartID": "fdf9f8108d0a341b63f3547c1976ae4ee2c57222", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11+", @@ -67632,9 +60088,7 @@ }, { "chartID": "1a22bfe9368cd4bfd2e85febec6280ce9285566c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -67650,9 +60104,7 @@ }, { "chartID": "774c336fcea628f5e6fd6bbf584726a2564ab184", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -67668,9 +60120,7 @@ }, { "chartID": "424fc8c0fc157da5cb7473c444be832f211028d4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -67686,9 +60136,7 @@ }, { "chartID": "6b613e1d8cc3189c3867745abcfd25334dea7df3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -67704,9 +60152,7 @@ }, { "chartID": "f02997bd1a46a86c7a72a963614cb4e9410274ab", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -67722,9 +60168,7 @@ }, { "chartID": "17eea67415c6e6b4ad84db5fc004efb9883e2f6d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -67740,9 +60184,7 @@ }, { "chartID": "1fb9ab1a4050da132a3d050f4f03ee5160e02f17", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -67758,9 +60200,7 @@ }, { "chartID": "e87368c9bfccfa411cf87b384c518ac9689ed671", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -67776,9 +60216,7 @@ }, { "chartID": "2e94f8d4535fe41c3923bb034ef8444321cf34a5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -67794,9 +60232,7 @@ }, { "chartID": "1e6c8fac0167a760fff75c4368feadb7c0dea77c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -67812,9 +60248,7 @@ }, { "chartID": "d4b2b4b251dff8c9b94fe98f933ef76b300e2564", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -67830,9 +60264,7 @@ }, { "chartID": "fab0934ecbabf8fd1c7d7ea313a6263daa0a7354", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -67848,9 +60280,7 @@ }, { "chartID": "e8bc68008adc496020844f2544302932e6ee9d8d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -67866,9 +60296,7 @@ }, { "chartID": "e0105c32740ab7a718dd920b46a6d02ff0f38ee8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8+", @@ -67884,9 +60312,7 @@ }, { "chartID": "af9e7f27bea08bd863120cabc1432f97156026a1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -67902,9 +60328,7 @@ }, { "chartID": "acae5429e3f8d9fdb89e8ed0bd1fedc49da0d7f0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "13", @@ -67920,9 +60344,7 @@ }, { "chartID": "a3bf4fe2c3b99c7527074efe0716d6a4fda96c6d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -67938,9 +60360,7 @@ }, { "chartID": "471a70c4d49e2014c095e07adf3bfb8a8add09cb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -67956,9 +60376,7 @@ }, { "chartID": "592522a7ad3a55ef63ec56d2cdeeb0cf58800f39", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -67974,9 +60392,7 @@ }, { "chartID": "10b5dba5c308a599f2e577cfb98f0c13383626a2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -67992,9 +60408,7 @@ }, { "chartID": "6a802e354c0ed950f9425b2955428d0b2e3bc451", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -68010,9 +60424,7 @@ }, { "chartID": "cf5343d3764d9ce6acb45bf32c04ef6c1ace3f5c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -68028,9 +60440,7 @@ }, { "chartID": "898254d49d9d6729261781bdd3be1c9424cd0125", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -68046,9 +60456,7 @@ }, { "chartID": "63cd89b0045d3eed566f2b222a3db48b5fa180cc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "8", @@ -68064,9 +60472,7 @@ }, { "chartID": "7b81fcb48412cd0999daa4a10d634d50cb8fb744", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "11", @@ -68082,9 +60488,7 @@ }, { "chartID": "488de42f51260d7c4dfd50ea1ff21b74b2c19577", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Re:Master", "isPrimary": true, "level": "12+", @@ -68100,9 +60504,7 @@ }, { "chartID": "58d1e633d1ea20c81a3b9acee135f46d26397c1d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -68118,9 +60520,7 @@ }, { "chartID": "aa119c3874d33a2abda0b389ae279c3784fac38b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -68136,9 +60536,7 @@ }, { "chartID": "62676fb0719e76d0bf1dd1f1f7aa01d1533a5811", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -68154,9 +60552,7 @@ }, { "chartID": "8c18c49bf4443d40a82f216bf7224501e1212a0d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "11+", @@ -68172,9 +60568,7 @@ }, { "chartID": "acb287f0bdbecdabec967e9825c88a399578b2f2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Re:Master", "isPrimary": true, "level": "13", @@ -68190,9 +60584,7 @@ }, { "chartID": "2a61609d05dcf675835dee12a2ba7f9089cf33e5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -68208,9 +60600,7 @@ }, { "chartID": "78cfcaec73dc04119cbd9328ee6a093f0e4d3c7a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -68226,9 +60616,7 @@ }, { "chartID": "ef7a24772595a1dee3d0ad6ac70880cb4affccaa", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "8", @@ -68244,9 +60632,7 @@ }, { "chartID": "c22426d869f169199b47ce78375f0fb88181d3ae", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -68262,9 +60648,7 @@ }, { "chartID": "502045ee43a2457662cdcf767db2af3766f3a8d9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -68280,9 +60664,7 @@ }, { "chartID": "f81139cde899c7962eb29f1f800370e0dad3cf5d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -68298,9 +60680,7 @@ }, { "chartID": "41b0dc0371411b02ed210f185672cf51c9de6823", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "8", @@ -68316,9 +60696,7 @@ }, { "chartID": "9d714684210b671752e8ea62f2d3c7af58182a0a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -68334,9 +60712,7 @@ }, { "chartID": "35bde59133639c05181368292def826d60946807", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -68352,9 +60728,7 @@ }, { "chartID": "9cae75da92a064ae500a4b32fdd3b7cb4d0db761", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -68370,9 +60744,7 @@ }, { "chartID": "9a2e18e50d8b3a513ec3bdd51081c1171f5205a5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -68388,9 +60760,7 @@ }, { "chartID": "a17f260c26e4f712725e46a93dae0cdd4713b335", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "11+", @@ -68406,9 +60776,7 @@ }, { "chartID": "f2e6b86d50afeaee4824ba7026ccd10086954116", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Re:Master", "isPrimary": true, "level": "12+", @@ -68424,9 +60792,7 @@ }, { "chartID": "55dde960d122f5257dbfa6688365a55a4cbcf3d5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -68442,9 +60808,7 @@ }, { "chartID": "718463c0be8b9c1cc3564346d0b643eccedc0c3c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -68460,9 +60824,7 @@ }, { "chartID": "6dd86db14805ade492ae075bdaccc5646ecd0547", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -68478,9 +60840,7 @@ }, { "chartID": "416cf03f3ba70eb36c0a01b5a915143d14f3f509", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -68496,9 +60856,7 @@ }, { "chartID": "4f4eddde71de44c44daaf3880d2ad19b196c7ea5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -68514,9 +60872,7 @@ }, { "chartID": "893d1603e40cb3c6b28726b87d5919f594042b5a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -68532,9 +60888,7 @@ }, { "chartID": "1e4cbb4b763866f17408c09b7b01d0fd5df76bae", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -68550,9 +60904,7 @@ }, { "chartID": "6f55b22453ddf636668d9762ef2a09fb5cc0515a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -68568,9 +60920,7 @@ }, { "chartID": "95ceaa137de36fee5a175fd3fd1bc9f755dc8e02", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -68586,9 +60936,7 @@ }, { "chartID": "b1b2b95ad6f87c9b3e5e537595eb96e7c6b06e20", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -68604,9 +60952,7 @@ }, { "chartID": "faa5e23f4e6207f9f2a78f16d1a460ef7e58d474", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -68622,9 +60968,7 @@ }, { "chartID": "bbd29882d4d39d32188ca28eeff9b8a519104e14", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -68640,9 +60984,7 @@ }, { "chartID": "14e20fbb68e8dafad7e7ab7dd979bd7e72d121bf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8+", @@ -68658,9 +61000,7 @@ }, { "chartID": "c4cdae20bc7c5f1b0f06e044ed11979b9432ee53", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -68676,9 +61016,7 @@ }, { "chartID": "5f5042266699457166530c1336ab62b70e8f123d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -68694,9 +61032,7 @@ }, { "chartID": "f1916785fa22db8e7b88290456e5d5dfb7787532", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -68712,9 +61048,7 @@ }, { "chartID": "d4b9adb7385c161f2bea92363682336d213a7e20", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -68730,9 +61064,7 @@ }, { "chartID": "1ebef6ca7af41be34edc1c476852ffb1ffde918c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -68748,9 +61080,7 @@ }, { "chartID": "5e6f72637051d6795fab490c3113e2c5b110be82", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -68766,9 +61096,7 @@ }, { "chartID": "7cb28f1375054e751752d6a6c78bc63325ffc361", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -68784,9 +61112,7 @@ }, { "chartID": "2026f1314c37caa3938df64f6acf37c236113d82", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -68802,9 +61128,7 @@ }, { "chartID": "f13e05115d02e5202338eb9e62eb1389bf659a67", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -68820,9 +61144,7 @@ }, { "chartID": "0c11ffd5a2acd875db39a90a0ebf2e52dfcfdf15", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -68838,9 +61160,7 @@ }, { "chartID": "51e9600debd15f17a1ef1533e822e06ab124c004", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -68856,9 +61176,7 @@ }, { "chartID": "20a9b1a899b0ca68f2537bad1999229f847db55b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Re:Master", "isPrimary": true, "level": "13+", @@ -68874,9 +61192,7 @@ }, { "chartID": "116682e1aec618b20fbe4b9829953514096672c1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -68892,9 +61208,7 @@ }, { "chartID": "84aa6f69a6318d7095fc29880c17d8e73ec86835", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -68910,9 +61224,7 @@ }, { "chartID": "9f957dfcb9600db3d2515792bad1783671d62319", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -68928,9 +61240,7 @@ }, { "chartID": "7db8d0226f5915b2d968190116902b2397ec5415", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -68946,9 +61256,7 @@ }, { "chartID": "b009237795fa30b1b002f1622258de66166f34c4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -68964,9 +61272,7 @@ }, { "chartID": "b18b23f128272d83bf4d65cdf3e06703267ddead", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -68982,9 +61288,7 @@ }, { "chartID": "4b9f8d78772c98aa0102b5c64b0a999a6f3c3445", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -69000,9 +61304,7 @@ }, { "chartID": "97e1ca76fd31f47beab913dbf5869f34e6abaaf6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -69018,9 +61320,7 @@ }, { "chartID": "786679ec7abdec44b656520f5c5543fa0dc0d74c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -69036,9 +61336,7 @@ }, { "chartID": "2bfddd2530534abc6774d5641c936bd2b9884937", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -69054,9 +61352,7 @@ }, { "chartID": "d846138498d2a10d21fc0b591cb7ba4c32be3544", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -69072,9 +61368,7 @@ }, { "chartID": "531edcc59eba4db33166d6871e2f6834b88449a7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -69090,9 +61384,7 @@ }, { "chartID": "8cb551ae48b9d483748a5020c007d00dba2edf2c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -69108,9 +61400,7 @@ }, { "chartID": "b43263fce9cb5e84a8b9404ec0a5f910fd670f15", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -69126,9 +61416,7 @@ }, { "chartID": "7c81cce9da8b382ba16e47530f259d3c8bb96cf9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "8+", @@ -69144,9 +61432,7 @@ }, { "chartID": "55c450356da7f0742be7ee62a0ec3ffcbf6a069c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -69162,9 +61448,7 @@ }, { "chartID": "54e570d2d57795742459a672a8a68945102c2479", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -69180,9 +61464,7 @@ }, { "chartID": "d21e32e7e4295581fe2fd9b2b1f3aeb15efb9829", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -69198,9 +61480,7 @@ }, { "chartID": "542ca535a6fd139100111ebc629768a14d41e0c9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -69216,9 +61496,7 @@ }, { "chartID": "6f59d006d5ce55c186601a334299f5366391fb5c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -69234,9 +61512,7 @@ }, { "chartID": "4027bde63ed05098526dd4a3cf621510647134d2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -69252,9 +61528,7 @@ }, { "chartID": "852b2c9315680c9f38bfa304407aa752d3aad51e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -69270,9 +61544,7 @@ }, { "chartID": "f99ea2e093237da980a46850fe2591661c5380ac", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -69288,9 +61560,7 @@ }, { "chartID": "2533fd57c092c4ab3e824bb238f2e28e891210d2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -69306,9 +61576,7 @@ }, { "chartID": "603bf5c535266fc127977cba6b5b32893b693062", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -69324,9 +61592,7 @@ }, { "chartID": "917114a7797b0caa00a93ec9e05c1e575d87d4bb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -69342,9 +61608,7 @@ }, { "chartID": "0bfc6ab9612475e7737efde51026d17c45feab5e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -69360,9 +61624,7 @@ }, { "chartID": "409e1af47b4ca3895c29f43203b378358e76ebef", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -69378,9 +61640,7 @@ }, { "chartID": "e8c402366f3780b04ebf276dba147baa87443e92", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -69396,9 +61656,7 @@ }, { "chartID": "2cb2e6fa950c29f2c050422a921b3735e4c09f88", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -69414,9 +61672,7 @@ }, { "chartID": "1ac0065c16a8710e14dff178261c2f970ecab56d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -69432,9 +61688,7 @@ }, { "chartID": "7c8d52c39baedf66a3384413297dd58f5b5002c7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -69450,9 +61704,7 @@ }, { "chartID": "8ebef475128fad30718e36d61a968dbcb339099c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -69468,9 +61720,7 @@ }, { "chartID": "98c77508ee4a3520329c79b000afd5f244805ec5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -69486,9 +61736,7 @@ }, { "chartID": "d3646059a20505906c5d6fdcc97a546e653cf6b1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -69504,9 +61752,7 @@ }, { "chartID": "9fad99b18827747a6c93191ebf92148e13147242", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -69522,9 +61768,7 @@ }, { "chartID": "389bf498510efc71bbdc78a6ce16f204a53b3f1d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -69540,9 +61784,7 @@ }, { "chartID": "9294facbd1009eb5cc70a4f7933146b51d66d713", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -69558,9 +61800,7 @@ }, { "chartID": "af8ecb3c83efd43d125333d1de75d05e25c7d1af", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -69576,9 +61816,7 @@ }, { "chartID": "b9027445e1a4cf199d59e5b2aadffa26b1d83773", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -69594,9 +61832,7 @@ }, { "chartID": "18db25926fd48fd2ace88862d5a18c041d0360cc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -69612,9 +61848,7 @@ }, { "chartID": "348f0ef040f2fadfed0222e2506d0608e769cea1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "1", @@ -69630,9 +61864,7 @@ }, { "chartID": "3941d2b5d3676c0f3b7cbf85f5747f584caaae1f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -69648,9 +61880,7 @@ }, { "chartID": "7d30a2ab8d3fe1254d1ce2239fc29d7d7844c2d8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -69666,9 +61896,7 @@ }, { "chartID": "1fbd6798ad4eb296113a136a63aba77b28dd8228", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -69684,9 +61912,7 @@ }, { "chartID": "33eda546f3142ce096b7a3df2084d6ac8b93ffce", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -69702,9 +61928,7 @@ }, { "chartID": "333b36c1baf66415d0e843ea50178ebaaa2189ee", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -69720,9 +61944,7 @@ }, { "chartID": "653e00fc3aafc1a139b5c29b42aeb410e2524696", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -69738,9 +61960,7 @@ }, { "chartID": "50805cc13703fb95558a98235f1551f565c0ab4b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -69756,9 +61976,7 @@ }, { "chartID": "27ecfcac5eaad35b8ba6d7afd5646d7d0e1c66ac", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -69774,9 +61992,7 @@ }, { "chartID": "74095b3d1d88d66498c1459c0647127553cd0acc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -69792,9 +62008,7 @@ }, { "chartID": "a1cd5e89b9422236d1b7bda3969ae48ec54eb944", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -69810,9 +62024,7 @@ }, { "chartID": "6619af683c56d6e7305716cd1c368c598839d026", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -69828,9 +62040,7 @@ }, { "chartID": "85a9ac1ed02b9fdc0b7a09abafca5d387d2975b5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -69846,9 +62056,7 @@ }, { "chartID": "11b4cdc6ecff86806f7a26b97f24563d432b8ccc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -69864,9 +62072,7 @@ }, { "chartID": "4ca1e0db294fee3af2d80a6efd9a095eb1af087a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -69882,9 +62088,7 @@ }, { "chartID": "74c234766cdd94c37fbde1da86871892d606f898", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -69900,9 +62104,7 @@ }, { "chartID": "723677000be2ff81fcd95140cc4dd86bb7d8461a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -69918,9 +62120,7 @@ }, { "chartID": "ded0a88f0d2d04af946a6dc9608a8a3f6e9759b9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -69936,9 +62136,7 @@ }, { "chartID": "a28cf5023dca60a47b4041732a6929b4860bb9a8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -69954,9 +62152,7 @@ }, { "chartID": "101384156c550ff56fd9db67e5450e870dca7c3a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -69972,9 +62168,7 @@ }, { "chartID": "b9f2827c504a90a267a4b58806119e5061a4b4aa", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -69990,9 +62184,7 @@ }, { "chartID": "28fe58af308fb35153a122db4ff557706a999a41", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -70008,9 +62200,7 @@ }, { "chartID": "7cbe416abec6bf1b492c22e49e633a384c3ce16e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -70026,9 +62216,7 @@ }, { "chartID": "03a37365336186ae44d280b923ac81105b3e352e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -70044,9 +62232,7 @@ }, { "chartID": "7d11675f6e3a7e5bb7b837b04883df9d16ac2af0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "1", @@ -70062,9 +62248,7 @@ }, { "chartID": "8f2d7e40949744eabe22e65108673c31cd891ff0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "8", @@ -70080,9 +62264,7 @@ }, { "chartID": "0b4c6bc8185d17a4dd4c3013be3d186ee486c70f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "11+", @@ -70098,9 +62280,7 @@ }, { "chartID": "c9370019ff343c01f57001509e92a23d4f518693", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -70116,9 +62296,7 @@ }, { "chartID": "735b2bbaa58c2886d4cba46eb5edb5162d7870ca", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -70134,9 +62312,7 @@ }, { "chartID": "969724b4112ba6bc38b53d2913b0d28aae6c9599", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -70152,9 +62328,7 @@ }, { "chartID": "d3f2c3a4bbb0b42beb05d078b2a7a1a3ac1a7fa2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -70170,9 +62344,7 @@ }, { "chartID": "10e3385a5665f4244a6cd8f207ed8f8d29276ecd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -70188,9 +62360,7 @@ }, { "chartID": "7446c1d263d4dc74558fdc846715342d028563d3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -70206,9 +62376,7 @@ }, { "chartID": "9781b15e0a40ba00e4c9a7fab2b83fbeaca27bc7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -70224,9 +62392,7 @@ }, { "chartID": "5701aab3b075d13fa0fe3679022f9e0b514ff83f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -70242,9 +62408,7 @@ }, { "chartID": "00d0001f5b6d089e9bfb8fa5c203492ac30760d1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -70260,9 +62424,7 @@ }, { "chartID": "f67ed17de7f091c7978cc50b86bac5fad682c590", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -70278,9 +62440,7 @@ }, { "chartID": "6e43a308eae9d0636fbdf161677e9225bb95e9bf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -70296,9 +62456,7 @@ }, { "chartID": "54292b6f70cb3bb90e99aec7018013990b93114c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -70314,9 +62472,7 @@ }, { "chartID": "4ddc3293d397399ed24ddbd06e6d5252f7aa285e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -70332,9 +62488,7 @@ }, { "chartID": "2049c4cc79e15617f2f79c46ec2539dfb79b2160", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -70350,9 +62504,7 @@ }, { "chartID": "6f419122363b23c6cf4c0905e8c6dc541e9de7b8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "8", @@ -70368,9 +62520,7 @@ }, { "chartID": "1152802474f3878c560ff806113675f1ddc7b769", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -70386,9 +62536,7 @@ }, { "chartID": "0d6bbefd9f87e883c6345053ee9d697dd0592215", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -70404,9 +62552,7 @@ }, { "chartID": "1474bd627ec2cdefbfc4fe43af27d93b26cb2fa9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -70422,9 +62568,7 @@ }, { "chartID": "311866933ffe4464da28b2b22386d59a4a2e84a9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -70440,9 +62584,7 @@ }, { "chartID": "139baa8a9f9dcbf85372b0c95760f3579b5adf29", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -70458,9 +62600,7 @@ }, { "chartID": "518a3ec03958b408c0812da837e37317dd66d3b8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -70476,9 +62616,7 @@ }, { "chartID": "b6835e12e63e1d8acab8d1a5cee3e97a395864d3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -70494,9 +62632,7 @@ }, { "chartID": "95c302adc226d4beba9ed4a83c5e2e0a128d6ff9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -70512,9 +62648,7 @@ }, { "chartID": "c2f7d716c113986d19f009260db970a468ed1cfa", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -70530,9 +62664,7 @@ }, { "chartID": "6f2f3966d3b7ab3a2f7a9fca99f2021d27d3e465", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -70548,9 +62680,7 @@ }, { "chartID": "60b39cc2bd0e770d3d157f978fa87af4d7b34533", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -70566,9 +62696,7 @@ }, { "chartID": "fbd3a60cceef3881c3c6760ccc71da9e35196b69", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -70584,9 +62712,7 @@ }, { "chartID": "aebc31af1a8d37e78491f24026166210a560f78f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -70602,9 +62728,7 @@ }, { "chartID": "e7f6816fd3e6cb96ea4dc84d1e736179352e776a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -70620,9 +62744,7 @@ }, { "chartID": "b2ae0cd358df234488e37a81978022ebd7be307c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "1", @@ -70638,9 +62760,7 @@ }, { "chartID": "8a582fe62b5cbcbb99338eed063d161d39e78674", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "8+", @@ -70656,9 +62776,7 @@ }, { "chartID": "d93770b8346e31d80e6dff1b26bc6495ebf43d87", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -70674,9 +62792,7 @@ }, { "chartID": "b584856a96a51493967d055e1b9d8d26e4ff19ef", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -70692,9 +62808,7 @@ }, { "chartID": "797081b84ab4912d8ffc36d954fd02254af55390", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -70710,9 +62824,7 @@ }, { "chartID": "adfc3e1e0f5af6571c546a3a1e6a636163f03a94", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -70728,9 +62840,7 @@ }, { "chartID": "034c656f2a43878bbb4fd0efb685f1b43c313b11", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -70746,9 +62856,7 @@ }, { "chartID": "f8e169c630ea12f678f4aa26c8cff8cddf0f8af8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -70764,9 +62872,7 @@ }, { "chartID": "1873d6ddfff5f717e4b06eab6a65100ce8368780", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -70782,9 +62888,7 @@ }, { "chartID": "6eb23d2a6227362ad4f45f9aacd7f98540190003", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -70800,9 +62904,7 @@ }, { "chartID": "b70614f8ed7f3a4b91927ec0c1b99ee9822fec12", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -70818,9 +62920,7 @@ }, { "chartID": "c2deb416c6875dc94909e34f9d873b1803608b6e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "9", @@ -70836,9 +62936,7 @@ }, { "chartID": "0233930d49827250fc15bf026944e85c5b1bea53", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -70854,9 +62952,7 @@ }, { "chartID": "3bad54c4766b8bcf8afba6cd9990340acf96aec0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12+", @@ -70872,9 +62968,7 @@ }, { "chartID": "c0c576c04612b361bd402634eecc46a89d5c981b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14+", @@ -70890,9 +62984,7 @@ }, { "chartID": "29748454e12ac80da60bcc2f9c9eabafbcee979e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -70908,9 +63000,7 @@ }, { "chartID": "cdb68e2c9ffd939178190f10905207304726d300", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -70926,9 +63016,7 @@ }, { "chartID": "9fbbf26e0b4f1c5e5ec54dc0e91f78ff776b5f13", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -70944,9 +63032,7 @@ }, { "chartID": "146583921384392800a62a3dc41142d1405cdf0e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -70962,9 +63048,7 @@ }, { "chartID": "f073dae5855646efb8be7d64b8b3c12dc4aaf5c6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -70980,9 +63064,7 @@ }, { "chartID": "cac523c6081e6ff4d6d3676c7ada031df95ed13f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -70998,9 +63080,7 @@ }, { "chartID": "5407307e2e29b13182deebdf6f727256f8033280", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "8+", @@ -71016,9 +63096,7 @@ }, { "chartID": "c07f672ba582e2b6eb8b660a2711bb181fed089e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -71034,9 +63112,7 @@ }, { "chartID": "e6c4139b6e0c961c06100d780aa6a2abc2e0e65f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -71052,9 +63128,7 @@ }, { "chartID": "870f2e559c481089bef61f3efaf44fe4247dd6f3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -71070,9 +63144,7 @@ }, { "chartID": "b6a4dd095349c445cbe45262370bb3bf72f6dc42", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -71088,9 +63160,7 @@ }, { "chartID": "42740492062d9a9a8f23b14611adec65a13b25de", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "11+", @@ -71106,9 +63176,7 @@ }, { "chartID": "b4c138de8fc3e94c052807793c97925a4a30fd3d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Re:Master", "isPrimary": true, "level": "13", @@ -71124,9 +63192,7 @@ }, { "chartID": "bf705199f08609e16156cd38fa3b89498841876f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -71142,9 +63208,7 @@ }, { "chartID": "d099ae0577a018934accf8f5f7e479b910a2dfec", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -71160,9 +63224,7 @@ }, { "chartID": "f0dce62a3ea098035c9b0a1afca7ab46f49733a2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "8+", @@ -71178,9 +63240,7 @@ }, { "chartID": "b54caed7ec56aec17a2642e64ac265438de8c23d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -71196,9 +63256,7 @@ }, { "chartID": "90e746e886d6402e168d3c235e5bc7646b6efdf8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -71214,9 +63272,7 @@ }, { "chartID": "206724984ee6a8c7d614e3134e47088556eb3bac", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -71232,9 +63288,7 @@ }, { "chartID": "95f5ee59999151951f41130efeb348dfd5f5342c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -71250,9 +63304,7 @@ }, { "chartID": "b3575f418142636d0f0f68ded1bdc217641f50d9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -71268,9 +63320,7 @@ }, { "chartID": "d382ef3829563bb401befe61753f0217b2d23e5c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -71286,9 +63336,7 @@ }, { "chartID": "230deebbbe1e31afb96f95425245cae2dec94f26", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -71304,9 +63352,7 @@ }, { "chartID": "1fd3a72011f0b5549619301004b9f51a8252bf16", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -71322,9 +63368,7 @@ }, { "chartID": "29eb9a477248d97393eaac2a30f4fa043fa5f85b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -71340,9 +63384,7 @@ }, { "chartID": "66272f684189e832db41eb6862156de30d58a3bb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -71358,9 +63400,7 @@ }, { "chartID": "1eb82fba179b3155c68dc6f9f98695475f8af666", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -71376,9 +63416,7 @@ }, { "chartID": "3cdfdb51578d983e00fbd8434dcd6ce87299530b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -71394,9 +63432,7 @@ }, { "chartID": "57532805ef919a33f6b88534a2bd7fc2cd6a5dff", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -71412,9 +63448,7 @@ }, { "chartID": "0d51ebb7d19eef3428a9abafb375db87056bd298", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -71430,9 +63464,7 @@ }, { "chartID": "bab8219f23d234f20ca27be5f934038fa2add07b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "6", @@ -71448,9 +63480,7 @@ }, { "chartID": "4d94b0d994fa9852a4ee765964039ebdfc49e6c1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12+", @@ -71466,9 +63496,7 @@ }, { "chartID": "3bb97bc3e72df4abb4c46f0ce879296edb5ba5a8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14+", @@ -71484,9 +63512,7 @@ }, { "chartID": "01b46fdc0660ae3b21717c5dba690a3332730b9c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -71502,9 +63528,7 @@ }, { "chartID": "586748ebb4b07953a3d34a3e5373d33ef9bf2137", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -71520,9 +63544,7 @@ }, { "chartID": "bd927547774b73d29636631ee45a93b23932a26f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -71538,9 +63560,7 @@ }, { "chartID": "28d53fb1e4342a4c55f694f27bed3be512722f80", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -71556,9 +63576,7 @@ }, { "chartID": "f127b11235fbad95fb0a9566bc2eb30a0edfcc98", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -71574,9 +63592,7 @@ }, { "chartID": "541daa5673febad6a62db902ad80a7b60fc88fb1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -71592,9 +63608,7 @@ }, { "chartID": "0028981e02fe7149131823714c8e18d033593b1f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -71610,9 +63624,7 @@ }, { "chartID": "847fd94926959bfbb7718540b568c660716b2dac", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -71628,9 +63640,7 @@ }, { "chartID": "7a78ee4025dfbf8540ecfcddd3914bc4893f649f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -71646,9 +63656,7 @@ }, { "chartID": "cef635277fba0946980af179d03fac1918ccf5aa", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -71664,9 +63672,7 @@ }, { "chartID": "fb34dd7440ebe17277975aadd159ae3989fad13e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11+", @@ -71682,9 +63688,7 @@ }, { "chartID": "cf4b9a70c78979b355f5a7366aee39b133a0adba", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -71700,9 +63704,7 @@ }, { "chartID": "38f50709674cddc1f18cd03832bbc227f2f726b5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -71718,9 +63720,7 @@ }, { "chartID": "4961a71aca9fc8e8d1ee80911e47cd993d1052e5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "6", @@ -71736,9 +63736,7 @@ }, { "chartID": "f42960575281803ac30d2a6c337826d99eeef5f1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "13", @@ -71754,9 +63752,7 @@ }, { "chartID": "8a9b01f648f81d1f3602b4323b2c89b3372b3fb1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -71772,9 +63768,7 @@ }, { "chartID": "5a17819748432ecea68e6dbacf425f98f1ec3809", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -71790,9 +63784,7 @@ }, { "chartID": "4548c483fd318a0c55ac7ba36ad0720d824efbcb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "6", @@ -71808,9 +63800,7 @@ }, { "chartID": "ca7db90958902d672afac4deb41be6895d06b4a0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "13+", @@ -71826,9 +63816,7 @@ }, { "chartID": "5c09f16a3f3c6a619ef4363baba56b6054b023ec", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14+", @@ -71844,9 +63832,7 @@ }, { "chartID": "0c07a71e6e8b13e336439c16f6cf16105e145324", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -71862,9 +63848,7 @@ }, { "chartID": "767a389770d5adc4369895768d985b875e4e214d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -71880,9 +63864,7 @@ }, { "chartID": "7c278ef2e9938a9df3fbbe1f2d62eb7be9bed62d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -71898,9 +63880,7 @@ }, { "chartID": "1c21a20eb7b9cbfd45766049b4196a4f20d790ba", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -71916,9 +63896,7 @@ }, { "chartID": "da01ede9ac55b76d8f9fd33dd73971761f92ba48", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -71934,9 +63912,7 @@ }, { "chartID": "59e48be8fc78eec653a560332beb42cdf6a70f3a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -71952,9 +63928,7 @@ }, { "chartID": "79cc6a2418c8156625f6391e25a951b8fa66928d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -71970,9 +63944,7 @@ }, { "chartID": "a2d7839e795a7d84621eebb27ad660906765b9dc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -71988,9 +63960,7 @@ }, { "chartID": "80a4fcd87b5d2c13d08a0a604eaba845794d6092", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -72006,9 +63976,7 @@ }, { "chartID": "c73ade5e1a2148c9b5b4d2c4086679315ddca028", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -72024,9 +63992,7 @@ }, { "chartID": "911332b652b80092edd80035e8d6401aa423ded8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12+", @@ -72042,9 +64008,7 @@ }, { "chartID": "aecfd25b2d17e08211664b964530caeee42928c7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -72060,9 +64024,7 @@ }, { "chartID": "3b29961f0bded48b1733232b36816b8506e4013b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -72078,9 +64040,7 @@ }, { "chartID": "86cf71f10a31dc21926537c8392ac47b3e0571c3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -72096,9 +64056,7 @@ }, { "chartID": "effc76393bfe5d23fd868d9ff6e8a8172b62ff0d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -72114,9 +64072,7 @@ }, { "chartID": "5c35177486c2ed98266a0dd193cc27d42115efa2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -72132,9 +64088,7 @@ }, { "chartID": "5c001338cfb598a4f6ea3be664692dc16f964153", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -72150,9 +64104,7 @@ }, { "chartID": "975897faed5ee3b2faad383b22d88e78b57d2d22", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -72168,9 +64120,7 @@ }, { "chartID": "f7d1981a2546fe3dac2dbf5c0b1931531579d743", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -72186,9 +64136,7 @@ }, { "chartID": "92442eb9505a0a1b63112ee8e1553a9f85dec0fc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -72204,9 +64152,7 @@ }, { "chartID": "a8d2cc08f70650392dc307ea034bf3b82c7830fe", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -72222,9 +64168,7 @@ }, { "chartID": "aea9b6aaed8f4954c813140ca2154db39f34d46e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -72240,9 +64184,7 @@ }, { "chartID": "19503bdc8c097c8a8681acd2cbf4c25d249ccab6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -72258,9 +64200,7 @@ }, { "chartID": "29b26b3951efe1d3f579ac30f06b93d334640517", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -72276,9 +64216,7 @@ }, { "chartID": "7d38e955e11f4091a2d63a243c7e3fad0cbdba2a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -72294,9 +64232,7 @@ }, { "chartID": "ca0128f04f6918d712cee5b3270aa0ccda88bdb0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -72312,9 +64248,7 @@ }, { "chartID": "67f5bc863469e94beade93a0fb588e85147950c3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -72330,9 +64264,7 @@ }, { "chartID": "19d1a400d90c8c79619be20023d5fbacc0db6648", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -72348,9 +64280,7 @@ }, { "chartID": "799d2301b9e009cbb2c0085344b60fe9434cb7d3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8+", @@ -72366,9 +64296,7 @@ }, { "chartID": "d5a0bd7817d99b5ab26426fe7447ad22524abaa0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -72384,9 +64312,7 @@ }, { "chartID": "3dbc9ca2ebc5d364c43616b269e295350541712f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -72402,9 +64328,7 @@ }, { "chartID": "23708dafd367a6b51ab355657dbb4e866dfbde27", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -72420,9 +64344,7 @@ }, { "chartID": "654c9fb1082f66cd4491cd0418cf8331168c6a98", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -72438,9 +64360,7 @@ }, { "chartID": "39d2f06cb5c151ab43c925b98e52f14d44b9f5cb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -72456,9 +64376,7 @@ }, { "chartID": "b117cacf153e476be09d552829c2d995b01fdcd4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "13", @@ -72474,9 +64392,7 @@ }, { "chartID": "93289617ed0f57d8e503bce039f1598c1a95fa1f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14+", @@ -72492,9 +64408,7 @@ }, { "chartID": "fb77e421f42fa16a62f4db6391990b50317ff898", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -72510,9 +64424,7 @@ }, { "chartID": "807f55da8176083a399ee012f4c72172465a94ca", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "6", @@ -72528,9 +64440,7 @@ }, { "chartID": "2d600a591869dd0d7d226167d1b85c0636564f85", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12+", @@ -72546,9 +64456,7 @@ }, { "chartID": "b3006f831f772de00106094d6d7c83311781ef88", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -72564,9 +64472,7 @@ }, { "chartID": "7c9403848b3457b0613349d4a0019299e7e45151", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -72582,9 +64488,7 @@ }, { "chartID": "e554cbc7ba0b96bac815a9e91fee0cc0b8854275", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -72600,9 +64504,7 @@ }, { "chartID": "15095c7cc51bd1cfd2ae3a91ba5babe805d8158f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -72618,9 +64520,7 @@ }, { "chartID": "84206dd1539194f84d05a031f4d3334b3b3f7ff2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -72636,9 +64536,7 @@ }, { "chartID": "e19ed1340e6a224168aa3a66270c98cff5df3a3d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8+", @@ -72654,9 +64552,7 @@ }, { "chartID": "0889db7b3d69170e38fe278b5b1f7d82a9c4a8a3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "6", @@ -72672,9 +64568,7 @@ }, { "chartID": "ee9553e0efb238d091b09cb893c781e2505f2db3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12+", @@ -72690,9 +64584,7 @@ }, { "chartID": "99ca4a6a05e034d761321db9045687eebb958f68", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14+", @@ -72708,9 +64600,7 @@ }, { "chartID": "b32552cefba4db53d018ee0a0918188ed4256a22", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -72726,9 +64616,7 @@ }, { "chartID": "cad096d7f96ba19d3174b1584c45c8a8ee4c5c7b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "6", @@ -72744,9 +64632,7 @@ }, { "chartID": "9f99bcbbd122ec0e3d3b02efc589f8a00b24f951", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12+", @@ -72762,9 +64648,7 @@ }, { "chartID": "ffe76577767abb1a4dabeaa44ada376e49fc3736", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14+", @@ -72780,9 +64664,7 @@ }, { "chartID": "f28ed8af555627e33b5714b06fdc0f41ae7c6df0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8+", @@ -72798,9 +64680,7 @@ }, { "chartID": "fcfd205fe92facd30a33a1cbd461d01dfd04c08e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -72816,9 +64696,7 @@ }, { "chartID": "406012834839f87d89709c9c89d80cfed53a5801", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -72834,9 +64712,7 @@ }, { "chartID": "5103cf22ccc17d9b7b118e9b4ba3ce3caa25a4bc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -72852,9 +64728,7 @@ }, { "chartID": "8a25dd0257336e278e8ec553836a622a67a4f5b0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "9+", @@ -72870,9 +64744,7 @@ }, { "chartID": "35ddf4d432940f576351ee1d64e471e55f1e535f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "7", @@ -72888,9 +64760,7 @@ }, { "chartID": "0959440184fceb2a3aeb61f6313c1d1ef813c374", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "13", @@ -72906,9 +64776,7 @@ }, { "chartID": "a4ff3ba3bb053b8d494dadc496fba0c0092977cf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14+", @@ -72924,9 +64792,7 @@ }, { "chartID": "3f0e2f77a8611fb973769b7a526e59c4db6bb788", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -72942,9 +64808,7 @@ }, { "chartID": "1fab2becd7ae6f6b0ba174de5cf6ec6800d658b9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -72960,9 +64824,7 @@ }, { "chartID": "94d85e5f3b32ea534ac19464c5caef1447fbe15d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -72978,9 +64840,7 @@ }, { "chartID": "8dee56c6614250e091dabe3c4b9a6aa18a903830", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -72996,9 +64856,7 @@ }, { "chartID": "286e058800d2ae068ba62bb6fe638c439a232ac7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -73014,9 +64872,7 @@ }, { "chartID": "eded24078fd613d7fc6ddcca0cf996d6a9ffe99e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -73032,9 +64888,7 @@ }, { "chartID": "74213e9600937dcb13a82986ef4310ee7365a5e3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -73050,9 +64904,7 @@ }, { "chartID": "76b9f5a2656c100104efa73a417d90c30570373f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -73068,9 +64920,7 @@ }, { "chartID": "cbe795156874b6533866cbe1885a7877da53a55f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -73086,9 +64936,7 @@ }, { "chartID": "915720c637f92d12d4ae2a5c38b1ec1b73f54da7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -73104,9 +64952,7 @@ }, { "chartID": "b5d322f70ae3ecde89fb86aefa82532d52f214f6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -73122,9 +64968,7 @@ }, { "chartID": "aedbfdd93618b39408e94114c921ec8a085552bb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -73140,9 +64984,7 @@ }, { "chartID": "1b1651fc5c44d64038a70607b481efb4bcf75235", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -73158,9 +65000,7 @@ }, { "chartID": "6b166d1792effc4b8f2b6447dddb33a947cc0415", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -73176,9 +65016,7 @@ }, { "chartID": "5d2d3fd1d83a12230c5ac8b30c5d2400627b662b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -73194,9 +65032,7 @@ }, { "chartID": "ae3e9c29e1e1c7ab9bcb9f195ddcacd64650a292", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -73212,9 +65048,7 @@ }, { "chartID": "fdec56e7cd2bf31b45734aae957281aa569dd9ab", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -73230,9 +65064,7 @@ }, { "chartID": "be2fcec9e65c69b62283f4d1fa2bdd735ffce814", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -73248,9 +65080,7 @@ }, { "chartID": "ce8f573aa1037f0b8507f0a0dd293c84366741ac", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -73266,9 +65096,7 @@ }, { "chartID": "714095b6295810a4fd386f6f050dc3b9866ef3aa", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -73284,9 +65112,7 @@ }, { "chartID": "b49b6d8c2a303e231b2f83cfc2cf4a865094158a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -73302,9 +65128,7 @@ }, { "chartID": "653986ee612a13ee44f4e22fa548bb05de016356", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -73320,9 +65144,7 @@ }, { "chartID": "9396bfc7cb362d567bf98d35cac8209503f4d983", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -73338,9 +65160,7 @@ }, { "chartID": "9ff53fac37e75c8d6adedd73c8cc41d077a4db0e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -73356,9 +65176,7 @@ }, { "chartID": "98bec687d46bbc2ef55de471b6b7a934e1ecdc4a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -73374,9 +65192,7 @@ }, { "chartID": "dbc28f86478ae8047c538887af3bee32341e0777", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -73392,9 +65208,7 @@ }, { "chartID": "bf6fd1859c3bf6f3ee3ba2f7b1cf7134ab069ad7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11+", @@ -73410,9 +65224,7 @@ }, { "chartID": "20e9bfce2f9f63d17d91b4d1923962832ceda460", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -73428,9 +65240,7 @@ }, { "chartID": "c36403a2d7d66cc77f84eb39e23ce2533d2b1cdb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -73446,9 +65256,7 @@ }, { "chartID": "84646f082fdbbe7ce1c72586269e989a482dcddf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -73464,9 +65272,7 @@ }, { "chartID": "9a6943f877e818a93a8453da3b40ced321bc821a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -73482,9 +65288,7 @@ }, { "chartID": "4be8f631179f942794daca1fe7083172eabfa52d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -73500,9 +65304,7 @@ }, { "chartID": "18e4bce1d3edf00b5d69c5f26bff86b987a35242", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -73518,9 +65320,7 @@ }, { "chartID": "2295ecfdcfe2923ce52442cfe9cafe77fca6a686", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "6", @@ -73536,9 +65336,7 @@ }, { "chartID": "3d12202c47b3bbf8dc31982ba9abca1f8d90784e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -73554,9 +65352,7 @@ }, { "chartID": "31a9f000aad8c63d25491a4147468852704d8141", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -73572,9 +65368,7 @@ }, { "chartID": "6305e8d48caaa0eaa2f0b5ed1e29f8d189a3041d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -73590,9 +65384,7 @@ }, { "chartID": "e851537b33f695f9194a12163334422094edc756", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "1", @@ -73608,9 +65400,7 @@ }, { "chartID": "734f39793f2aea3bbc5b1c1615d1841bb6bb49ba", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "8", @@ -73626,9 +65416,7 @@ }, { "chartID": "a49acc7aaab8da152000dd064da03e79b21b4b8e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -73644,9 +65432,7 @@ }, { "chartID": "6197dd9ce63dde62c97f155eaeff5e7f957515b1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -73662,9 +65448,7 @@ }, { "chartID": "3611d880f168a0b6af04a1dab342d5288b288111", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -73680,9 +65464,7 @@ }, { "chartID": "d40cf6903f9830f733829d8226b8c5f7a918b311", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -73698,9 +65480,7 @@ }, { "chartID": "b39c1340ca2b9b5ef8524d63cb6243f5bd913c39", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "11", @@ -73716,9 +65496,7 @@ }, { "chartID": "1e9631558a62c544fa2a250435e93a4b1ab22226", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Re:Master", "isPrimary": true, "level": "13", @@ -73734,9 +65512,7 @@ }, { "chartID": "1deadc50bec4bdcabe9dcff9ba8ad4d423919b83", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -73752,9 +65528,7 @@ }, { "chartID": "0ef9b7fdee888964e8b6df7cb06ba9f22d071448", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -73770,9 +65544,7 @@ }, { "chartID": "6052bf6dcca927b8db3c8489e9cd406a2335728c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11+", @@ -73788,9 +65560,7 @@ }, { "chartID": "530e95b859b4b13dd67b4ce6b082e02e7315946f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -73806,9 +65576,7 @@ }, { "chartID": "f535acc71083f7bc19fbb363bf71db857796c269", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -73824,9 +65592,7 @@ }, { "chartID": "919922215e11151e652b5421c932a7ee67a1b5fd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -73842,9 +65608,7 @@ }, { "chartID": "adc8ab803c5ae0fb48d74e8bbc7fcdcea9a645cd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -73860,9 +65624,7 @@ }, { "chartID": "8162e715ede86ce436e672ec6224e05da4b1cc1f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "11", @@ -73878,9 +65640,7 @@ }, { "chartID": "34c2a84cce62b79984453170eacb4780610129c0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Re:Master", "isPrimary": true, "level": "13", @@ -73896,9 +65656,7 @@ }, { "chartID": "71cc9f0046e2f1c17a657dc32469767567ea57f6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -73914,9 +65672,7 @@ }, { "chartID": "cb04b93f786ae17982416f9181c72df50d3f57cb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -73932,9 +65688,7 @@ }, { "chartID": "eea83784ea88e1a9a8d0090bb762a4be28dbe455", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -73950,9 +65704,7 @@ }, { "chartID": "e5917feaab1be44424126360e35b315fa58d9b97", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "11+", @@ -73968,9 +65720,7 @@ }, { "chartID": "71bc6de9ec19ac94930cf44aaa3544943c99a608", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Re:Master", "isPrimary": true, "level": "13", @@ -73986,9 +65736,7 @@ }, { "chartID": "b9875b41b285dc815af4921f4315596558ba77f5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -74004,9 +65752,7 @@ }, { "chartID": "9ee9bd170ca6f3be80c3ad1b9e76a2c4bd514c16", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -74022,9 +65768,7 @@ }, { "chartID": "cdcc58340a5dacade7ee2a96b6ab24b0986915b9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -74040,9 +65784,7 @@ }, { "chartID": "06d2273f32dae3e4d1d2181a73b097d044677397", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -74058,9 +65800,7 @@ }, { "chartID": "5072d98513d231da4e39d421a04b6251922f3c31", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -74076,9 +65816,7 @@ }, { "chartID": "57d52b4114459f5d3ad844865920728423d5f952", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -74094,9 +65832,7 @@ }, { "chartID": "8a616f0a5ea0053d0792d343d50607da3b7210d1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -74112,9 +65848,7 @@ }, { "chartID": "367614cd56c79a0c3f52569f7668fb15ab9cdab0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -74130,9 +65864,7 @@ }, { "chartID": "19bbddebbc918c88fcc212d98112373a1dc520a7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -74148,9 +65880,7 @@ }, { "chartID": "0fc9d723a279911203579035faa4fd85a927721b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -74166,9 +65896,7 @@ }, { "chartID": "c649d3bca6a97babc9f9c2ffa031a3fcdb27e2ae", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12+", @@ -74184,9 +65912,7 @@ }, { "chartID": "b29c55df2d1750d3b53d5f9e3959f8b51f433f86", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -74202,9 +65928,7 @@ }, { "chartID": "e36352ae883d921b13adf9e0a5a9b16ab060730f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8+", @@ -74220,9 +65944,7 @@ }, { "chartID": "ffef7d13cbdf877a4e4f4362e9babc8b27f5aaa4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -74238,9 +65960,7 @@ }, { "chartID": "bdcc52d163ca727ce634769fa5e9c80b7c965c38", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -74256,9 +65976,7 @@ }, { "chartID": "62fd65a784bfe311a0806915b42080ce656d86a2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -74274,9 +65992,7 @@ }, { "chartID": "397f3355e92160ab5b6cb59e1c9e3c93a9438915", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -74292,9 +66008,7 @@ }, { "chartID": "a90aebf43bfc2db956c2a224ba66cf215c01680f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -74310,9 +66024,7 @@ }, { "chartID": "096e3bba00864ede096245247fff53526bfb0733", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11+", @@ -74328,9 +66040,7 @@ }, { "chartID": "246819c41382d176dfa1c377c59b1aae4498fadf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -74346,9 +66056,7 @@ }, { "chartID": "97fff7c3b580b46e37cbadee627134705d340458", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -74364,9 +66072,7 @@ }, { "chartID": "851dc50847c7e62864dff64034b5fe0971c034cc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -74382,9 +66088,7 @@ }, { "chartID": "ac94dc071519130537c92d08f906d53a6f298711", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -74400,9 +66104,7 @@ }, { "chartID": "b0cbf5de65c5a0aed47983f630ac07220e24ef79", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -74418,9 +66120,7 @@ }, { "chartID": "b78c0ffca8abe599c3acb2dee1af8c214254aac2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -74436,9 +66136,7 @@ }, { "chartID": "38deef9c0820089530730c4aed3daf46f85722cb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -74454,9 +66152,7 @@ }, { "chartID": "65b858991259f174143c7301775bcd0658887989", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -74472,9 +66168,7 @@ }, { "chartID": "d63f8c281cf23c49d1d4ca2f1e31ebbcd8711f54", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -74490,9 +66184,7 @@ }, { "chartID": "10b5376ed33d8a1ef1bb90e00d762af2c059737e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -74508,9 +66200,7 @@ }, { "chartID": "33002d8e1b98eac714a58921358d257000a431b3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -74526,9 +66216,7 @@ }, { "chartID": "d82bec474aece8d5cfdcef0bd0317215b408d005", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "8+", @@ -74544,9 +66232,7 @@ }, { "chartID": "af8af94b98372c78185acc7fa794a9394a81bb4d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -74562,9 +66248,7 @@ }, { "chartID": "b6a71af9ded92ba9a474745bc74084966c67c4f9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -74579,9 +66263,7 @@ }, { "chartID": "f77cd4d523b36d1402e27c79e36af3164ed789de", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -74596,9 +66278,7 @@ }, { "chartID": "38e0aadd4879baa79ef8106160d5192a030847c9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -74613,9 +66293,7 @@ }, { "chartID": "cc88c6af47c6e2053572e60e9cd11bc07af7152b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -74630,9 +66308,7 @@ }, { "chartID": "3763ca047ec75f8eb2480a17df38b0c5ced8935a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -74648,9 +66324,7 @@ }, { "chartID": "00342f6bec12ee15e0f4653498b1180ee5eeb5cf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -74666,9 +66340,7 @@ }, { "chartID": "52100135d91b18f90fd73b9a9b2850bd17f63302", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -74684,9 +66356,7 @@ }, { "chartID": "723f217a86905063cdbecdd5fd488bc3ed681a39", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -74702,9 +66372,7 @@ }, { "chartID": "95855e66c796406cd68655f2d2722129c94c419a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -74720,9 +66388,7 @@ }, { "chartID": "5e217d4df702549aabd0942270fbaab1991ceed0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -74738,9 +66404,7 @@ }, { "chartID": "f08cbab6ae32b8af562673da671fd7c494a1766a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11+", @@ -74756,9 +66420,7 @@ }, { "chartID": "ec6d2e32605d3154db272dcee14c49e01321a4f5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -74774,9 +66436,7 @@ }, { "chartID": "f905574776f98b0f5980b8e5c583d4ba925d7b25", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -74792,9 +66452,7 @@ }, { "chartID": "46a2c2d5088418d282ab0a954dd7785d8e354fc9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -74810,9 +66468,7 @@ }, { "chartID": "670ebae81a7fdef7c6f9676584042dee962ec3f6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -74828,9 +66484,7 @@ }, { "chartID": "7bc933891bb1084b3f9610c7354fadc354c67867", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -74846,9 +66500,7 @@ }, { "chartID": "8cd48a6d67dd6561f70ea605078d8162e586ae43", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8+", @@ -74864,9 +66516,7 @@ }, { "chartID": "6e7870f505d11a7443ff9750eb7027e4b252787e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "6", @@ -74882,9 +66532,7 @@ }, { "chartID": "546e499a06b21329c4fb45bd086f9d4df40868b2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12+", @@ -74900,9 +66548,7 @@ }, { "chartID": "080c126b78f885396b9cf42159f680bddc918c26", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -74918,9 +66564,7 @@ }, { "chartID": "3db2c2c71fd4c48a42529b17a97f4fe8e817a2d9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -74936,9 +66580,7 @@ }, { "chartID": "e06b7ebecceecc7b71a793456b4072012dacd5fa", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -74954,9 +66596,7 @@ }, { "chartID": "cddc07fc87cb50313e666e1aa46758f6c764371f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11+", @@ -74972,9 +66612,7 @@ }, { "chartID": "b2890fa410453ad7fb98d38a1d9bbf1cd5a7d168", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -74990,9 +66628,7 @@ }, { "chartID": "69a393dc6bdc3d6463b654e852a888029cc1f4a9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -75008,9 +66644,7 @@ }, { "chartID": "f5de61b2dc0be80b37f43b892bb81daeb800fb54", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -75026,9 +66660,7 @@ }, { "chartID": "96469ef76060df72e0de1b2ae0cb4fda89ebd2dd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -75044,9 +66676,7 @@ }, { "chartID": "3fa877000304f83e2757adad866c1f8721d0225c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -75062,9 +66692,7 @@ }, { "chartID": "c9fec832ded2e541eb61f3642503a26331309942", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -75080,9 +66708,7 @@ }, { "chartID": "5fb002f21b562fa3e1b2fcfaf1c3f5426fdc7bf2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "6", @@ -75098,9 +66724,7 @@ }, { "chartID": "e960acb3425ebfac4b7f4eaf0d7011b9ed95826e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "13", @@ -75116,9 +66740,7 @@ }, { "chartID": "be1b20327c1309c1415d207b7de99076bb923b25", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -75134,9 +66756,7 @@ }, { "chartID": "c164de8786226de4fc3e9aee78f2b344701f2e4e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -75152,9 +66772,7 @@ }, { "chartID": "4766e6a8f6cf69e2c128e03e146c05860de6abe6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -75170,9 +66788,7 @@ }, { "chartID": "7c93172de56b4d8e63cb0a994b4cdc368ba4a7be", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -75188,9 +66804,7 @@ }, { "chartID": "5c29cd37aa959db3832ccf069de6a3c0b4828cbc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -75206,9 +66820,7 @@ }, { "chartID": "44421338e32d47f8bad144a9fb1da9af4985285d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -75224,9 +66836,7 @@ }, { "chartID": "514614dafb648140881994484da8e841c9f3c2cc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -75242,9 +66852,7 @@ }, { "chartID": "209a6ec2c5a250c49ee11a90efa97aa79a9b0814", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -75260,9 +66868,7 @@ }, { "chartID": "bc61f981257a992b01ca4a1d670c235dd0e62597", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -75278,9 +66884,7 @@ }, { "chartID": "d4a2737393b13326834478f979f9f1451e0d4873", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -75296,9 +66900,7 @@ }, { "chartID": "3502862d64121c3f3d82b0483806e50183e36603", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -75314,9 +66916,7 @@ }, { "chartID": "bcc5197a782fa70172bfd983cf3c1de766918bb3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -75332,9 +66932,7 @@ }, { "chartID": "959f4b7d09407b35f888878d2668e037bfd2711b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -75350,9 +66948,7 @@ }, { "chartID": "36a33750e5763e39fbde8a2d8534cba721f8e090", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -75368,9 +66964,7 @@ }, { "chartID": "c388e124a0f1d7977fd7c23c8f66d3a2cfb86cae", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -75386,9 +66980,7 @@ }, { "chartID": "df1cdef0a914bd29d1b0d3d0d83e08ba66a19b86", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -75404,9 +66996,7 @@ }, { "chartID": "6033091318e88f52e4d0a09ce41b939a123ba81f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -75422,9 +67012,7 @@ }, { "chartID": "9dcb533126bd829ec28233d4ceb033f937dea85b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -75440,9 +67028,7 @@ }, { "chartID": "b6b24db21523cb2b412cb656ae7b1dc7c754449a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -75458,9 +67044,7 @@ }, { "chartID": "1a672b10f9053e7c9d78b4b98d25eb274333c8ee", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -75476,9 +67060,7 @@ }, { "chartID": "d8af74c84eedb2f50db0f81bdf2869b30ee50d40", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -75494,9 +67076,7 @@ }, { "chartID": "00a80e7f81ee12a7b59e25625f7a426b656a30a5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -75512,9 +67092,7 @@ }, { "chartID": "c2625d83a08f9516c5eb78319661fb9b1314290c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -75530,9 +67108,7 @@ }, { "chartID": "eec030e4373effbc5233fd8664b389d538a190d5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -75548,9 +67124,7 @@ }, { "chartID": "762c4390906e7c4a94de9c7facbc6023a255a7ac", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -75566,9 +67140,7 @@ }, { "chartID": "f94cc7516289ce2a51e135c1dc92a7b457af6429", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -75584,9 +67156,7 @@ }, { "chartID": "a09d1f03ece82574563e5de8bfbb02173a6da982", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -75602,9 +67172,7 @@ }, { "chartID": "8222a371838f8461422322e3226461811c6190e1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -75620,9 +67188,7 @@ }, { "chartID": "1329f8466326eb9b68f214dd0db50fd7cfb5d688", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -75638,9 +67204,7 @@ }, { "chartID": "5c0ada044a6fb42bbddc902b798aa379426ae181", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -75656,9 +67220,7 @@ }, { "chartID": "dad3c0422054bf69b99338d61f798e8b09ab1829", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -75674,9 +67236,7 @@ }, { "chartID": "711d0dfb6a490923d28ed2e5a190038ad582256e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -75692,9 +67252,7 @@ }, { "chartID": "8678a0ce16ef2fe801e59d5ebaa6d874016feee6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -75710,9 +67268,7 @@ }, { "chartID": "b3778c315dd7f89cfb683be86fdba68cd53acf8f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -75728,9 +67284,7 @@ }, { "chartID": "ee49c4781032d53611a0750404ac210e13dd927b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -75746,9 +67300,7 @@ }, { "chartID": "6af4157974e789b354fab934405e4c0196c8bffb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -75764,9 +67316,7 @@ }, { "chartID": "4764f54b6bdc239bd62e4fd3f645c25df4a45096", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -75782,9 +67332,7 @@ }, { "chartID": "9f6659bdc8a369cd8fdb90795a89929b61b359a6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -75800,9 +67348,7 @@ }, { "chartID": "7fde557243611bbbee8a4537ccddcd765d98f644", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -75818,9 +67364,7 @@ }, { "chartID": "72c1da5110c9de3f170646c9b83d44d149349030", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -75836,9 +67380,7 @@ }, { "chartID": "b1eebd90df5414f35c9982e079f204dd67b800d5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -75854,9 +67396,7 @@ }, { "chartID": "73213462795e19680471c1c3f9ea79fb1d10f547", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -75872,9 +67412,7 @@ }, { "chartID": "a401c350a1f431ca5f52e42960e91f07c8351290", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -75890,9 +67428,7 @@ }, { "chartID": "035bbf24b219bc7067c0a5df1de0998c3bc83646", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -75908,9 +67444,7 @@ }, { "chartID": "73231bcb353ad061b5485d941030509fdedb15cd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -75926,9 +67460,7 @@ }, { "chartID": "562f91a7f04f1aea4602ded4a492c2a188c1711a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -75944,9 +67476,7 @@ }, { "chartID": "7e70dc45de13857fe2bda00da9e2d9f9938a9806", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -75962,9 +67492,7 @@ }, { "chartID": "c64e73b663817d07e797bc8d614334d0b69ab56a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -75980,9 +67508,7 @@ }, { "chartID": "df9925856de37ee0504230d511f030e5f1b1832e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -75998,9 +67524,7 @@ }, { "chartID": "78c143b49e8e16b9269527c463c4d29f3c0bfc72", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -76016,9 +67540,7 @@ }, { "chartID": "63b9cc5a80ceb39ce6d36ddb74ed18aff6487b92", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -76034,9 +67556,7 @@ }, { "chartID": "77e5ee4aaf504a2305508917dde5269dc58efc8e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -76052,9 +67572,7 @@ }, { "chartID": "b3202c8105e763cbd8319d2493207f439803d794", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -76070,9 +67588,7 @@ }, { "chartID": "990ab4bbf2a3ec1be0df62792d45d9c78c947960", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -76088,9 +67604,7 @@ }, { "chartID": "013438acebb6e256e8bf8d61b77b2a649a69b7c3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -76106,9 +67620,7 @@ }, { "chartID": "a38e88d713ad1f3e754c9c34e554c381619fc216", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -76124,9 +67636,7 @@ }, { "chartID": "c2501696df54ad8093fe5a9cfc46b12438fd1c0d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -76142,9 +67652,7 @@ }, { "chartID": "fa2627385ac562bfefc1a1507f7abca680f3b2c6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8+", @@ -76160,9 +67668,7 @@ }, { "chartID": "7d156967ed41e3779b1665fee4343db845e059b4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "6", @@ -76178,9 +67684,7 @@ }, { "chartID": "db4f7078295f0a92e4d77756103e555fb36c53f3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "13", @@ -76196,9 +67700,7 @@ }, { "chartID": "c10c646f19fa9bc82ee9318125f173ac9c714245", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -76214,9 +67716,7 @@ }, { "chartID": "8d325cdb67f2a588f6619dc18149d8d03e97a882", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -76232,9 +67732,7 @@ }, { "chartID": "53ce093f59da4e483b4df08f9693c72b77f0c375", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -76250,9 +67748,7 @@ }, { "chartID": "adde7815e5af4346b78202526c38a76efe9f290a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -76268,9 +67764,7 @@ }, { "chartID": "c148ac04c5d88d7cac88e5d27df3c4219a6c10e6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -76286,9 +67780,7 @@ }, { "chartID": "b380abe203fbe569f3196fd3385e698822333497", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -76304,9 +67796,7 @@ }, { "chartID": "e001fd3e26f3577c19c5b2e391db8eab91bdc6b3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -76322,9 +67812,7 @@ }, { "chartID": "48fcd37e1c40a46a1179a5c33123bf1b4079473d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -76340,9 +67828,7 @@ }, { "chartID": "570b65e7fc93e079964c9509269b00f1b8ecfc33", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -76358,9 +67844,7 @@ }, { "chartID": "bcd3324486fe7574ff18808d7a8f32c2165f6d97", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -76376,9 +67860,7 @@ }, { "chartID": "5c74b2c092d4ca8dacf74b06dddac9fdb3d7a64e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -76394,9 +67876,7 @@ }, { "chartID": "93a708804ebb0cc33fb4023af3308479aa655df9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -76412,9 +67892,7 @@ }, { "chartID": "bbcf90172c86390cccc106737682ca8fb155c9aa", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -76430,9 +67908,7 @@ }, { "chartID": "b6ce8c2ac69f5f1fa42b8114af288e5d24402701", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -76448,9 +67924,7 @@ }, { "chartID": "dfc6d85f3d5ce624af4d6b1a26ba38959ab9ff0b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "1", @@ -76466,9 +67940,7 @@ }, { "chartID": "76e806b1259bfa8213995a3ffbd7f8a42b25eef0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -76484,9 +67956,7 @@ }, { "chartID": "8bb4fe63f50328e9a039c512dc675b2e4dd32729", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -76502,9 +67972,7 @@ }, { "chartID": "572393cc30e1a0a82d2de611d175a2326038afce", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -76520,9 +67988,7 @@ }, { "chartID": "6c9793e330646481c40b5346ec00b2a432559f0a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -76538,9 +68004,7 @@ }, { "chartID": "8c6038578d3e0c72d864cf4ced105859f2a334fe", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -76556,9 +68020,7 @@ }, { "chartID": "af42154b50c26f44bd91eb0ba6c9c2efac50a6e3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -76574,9 +68036,7 @@ }, { "chartID": "b3eac30d4aa94311877c57b6b4a3b099c76875bb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -76591,9 +68051,7 @@ }, { "chartID": "4e00aeee460ebb5fbc3315ec992eba13f7fc9778", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -76608,9 +68066,7 @@ }, { "chartID": "4338b59f737770e09e906147e44381770c248dd1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -76625,9 +68081,7 @@ }, { "chartID": "363ed418c634262f027570b55f9a3247e83ce40d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -76642,9 +68096,7 @@ }, { "chartID": "0026b55b0fe15786eee76981a056d7ae251611a3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -76659,9 +68111,7 @@ }, { "chartID": "6db3aa21f1c831123fa14c06a5b36b9b48a0e1ce", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -76676,9 +68126,7 @@ }, { "chartID": "10a98ab84de42cf7a43236521887338293fb8e96", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -76693,9 +68141,7 @@ }, { "chartID": "97391f54de109906095d16219c273378e071c246", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -76710,9 +68156,7 @@ }, { "chartID": "78761956c016178c0608f138a8071485f61ffd0f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -76727,9 +68171,7 @@ }, { "chartID": "9a366a7a2e181acf54d493e28beaa13f9fed81d0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -76744,9 +68186,7 @@ }, { "chartID": "244df90793dddc5ca058d73a0a05ab0277a4ced2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -76761,9 +68201,7 @@ }, { "chartID": "7280866e2fcbf21b5457566711e596fdc8275b8b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -76778,9 +68216,7 @@ }, { "chartID": "137da7d5699f022bf7b975264bcd6dadcac5b431", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -76795,9 +68231,7 @@ }, { "chartID": "23e0dce056035f23962bca849af3bc3cdf7469de", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -76812,9 +68246,7 @@ }, { "chartID": "47dcfc3a1f9ba766e92bb5c16a0fd676dbcfea09", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -76829,9 +68261,7 @@ }, { "chartID": "89f344edd8ef9922c251c223d56c3ee2dacf0290", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -76846,9 +68276,7 @@ }, { "chartID": "b8cf764a53434b2dc492fb50162e49358e8ab4f9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -76863,9 +68291,7 @@ }, { "chartID": "1399c7f29875cb53a50af8009df5c31c36604fea", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -76880,9 +68306,7 @@ }, { "chartID": "71c14958b8024ba935aa1748d3a7c8b8ca786a53", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -76897,9 +68321,7 @@ }, { "chartID": "30f2fc24457abf468b80e33de05a9fb95f7880e8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -76914,9 +68336,7 @@ }, { "chartID": "3d326616e6f06e2021e38767b6764b569f219b63", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "9+", @@ -76931,9 +68351,7 @@ }, { "chartID": "fff86fd8ceeec6231ffa59d4c684520a4a193c29", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -76948,9 +68366,7 @@ }, { "chartID": "e8e63831b931b64fa2635ebd15b10b0ead094f58", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12+", @@ -76965,9 +68381,7 @@ }, { "chartID": "33ebdfc22376b932440a59f206062104d45caf29", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14+", @@ -76982,9 +68396,7 @@ }, { "chartID": "b3742b34a072fb1ae05047ffbb5caeec4b5ae2ac", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -76999,9 +68411,7 @@ }, { "chartID": "61b4a4eee1cb0530a06d5f50a12129f7fe38bfca", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -77016,9 +68426,7 @@ }, { "chartID": "94044aa466aade599cb063da90adc11c7583af4b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12+", @@ -77033,9 +68441,7 @@ }, { "chartID": "073b0482c06def03ffd58784f310bcffb39eb61d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -77050,9 +68456,7 @@ }, { "chartID": "97dcf2adba7c7266aa8102077234caa05ea39d1c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8+", @@ -77067,9 +68471,7 @@ }, { "chartID": "23e2541407f9b94398e59d53ba39844a6dbefdca", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -77084,9 +68486,7 @@ }, { "chartID": "d970d1254ef5ea74ba3fc37d50149199830c5e76", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12+", @@ -77101,9 +68501,7 @@ }, { "chartID": "8f44a46e132c7c97f9bea1dda7e69dafb782a9e8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -77118,9 +68516,7 @@ }, { "chartID": "dabce68c42a4df932fce66ec7c7253246bcb8bb9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "9", @@ -77135,9 +68531,7 @@ }, { "chartID": "2f9174f570d415d094d3767adee46fdd6dccd65e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -77152,9 +68546,7 @@ }, { "chartID": "fc0bd43fd0d81f7b65bff302db6800a3280c1cef", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12+", @@ -77169,9 +68561,7 @@ }, { "chartID": "39ec94f19e682a16e7401dbb8f2cb183b1679c07", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -77186,9 +68576,7 @@ }, { "chartID": "6d52ebfbe881759a79df8533b9701935703437a6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -77203,9 +68591,7 @@ }, { "chartID": "cd70fc18f0edc9e3fe70b1dda7eb9f9f1f3604ff", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -77220,9 +68606,7 @@ }, { "chartID": "ec99f42805a3c6cfbebaeb3fec6bb72abf74e227", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -77237,9 +68621,7 @@ }, { "chartID": "2ae5db2017d15649139cbb525ca074a4c9a66b2c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -77254,9 +68636,7 @@ }, { "chartID": "32f99c084755c02259019359d8b9c4d4318407f1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -77271,9 +68651,7 @@ }, { "chartID": "bbdc08194c7cb0f21a861ade8c34235eee71d6d3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -77288,9 +68666,7 @@ }, { "chartID": "0d4e34b75d4a352b21712a5de92ae1772ac6fc65", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -77305,9 +68681,7 @@ }, { "chartID": "72f10294cae24a7d8069df6c2492752e5fabc230", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -77322,9 +68696,7 @@ }, { "chartID": "98ce6511dbae5f6ee432a7b1050753bc15c0cddd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8+", @@ -77339,9 +68711,7 @@ }, { "chartID": "3e5ece0c10b2a0764166ac179c8a1ec44238524b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "6", @@ -77356,9 +68726,7 @@ }, { "chartID": "6f3eb56e03170ade025db11e84ccdce5c286efbe", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -77373,9 +68741,7 @@ }, { "chartID": "c2921a6a1237f26188cfb91a5f399e3ccd27f7ec", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -77390,9 +68756,7 @@ }, { "chartID": "abb018b2b90b35a7624d36b0ecfbf6bc8cd4be8b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -77407,9 +68771,7 @@ }, { "chartID": "256662bfa2205177f70c0e98f593b447a4cfc82e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "1", @@ -77424,9 +68786,7 @@ }, { "chartID": "4f68d1ea55220b4f58fead772247ef9c1b279f55", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "8", @@ -77441,9 +68801,7 @@ }, { "chartID": "af6750695b3dc4d23bbdc268b1ac9da3b2d2fd7b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -77458,9 +68816,7 @@ }, { "chartID": "c063d8e76ac8f1e5e7b202f245f932c978007348", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -77475,9 +68831,7 @@ }, { "chartID": "743e8c16db937e098bf39dad60a3703342aee90b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -77492,9 +68846,7 @@ }, { "chartID": "7f8495836bc3a4df0891c966c94fb39e2ebc124d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -77509,9 +68861,7 @@ }, { "chartID": "ce84aac54cebdbb9e755963249e27194cb677c48", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -77526,9 +68876,7 @@ }, { "chartID": "b53a669ffbd8ae3e53168a337476ed677dd93858", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -77543,9 +68891,7 @@ }, { "chartID": "459f8b2967e45261d2f448194c1762b357dff818", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -77560,9 +68906,7 @@ }, { "chartID": "166ca3e892a15e2b676bd592686398f6d370edd5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -77577,9 +68921,7 @@ }, { "chartID": "03c07109de4c8f2018c0a9b73f47835cd1e6e072", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -77594,9 +68936,7 @@ }, { "chartID": "dd89fe99407a2ca90230221c9f8a26e9757a8f40", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -77611,9 +68951,7 @@ }, { "chartID": "cfdcc13b1a35a97930af9b4627fc0aceed750d5d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -77628,9 +68966,7 @@ }, { "chartID": "048e276e272f7e8ceade53eaa694253489262495", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "8", @@ -77645,9 +68981,7 @@ }, { "chartID": "b07bcf487b76b7934c84083267b648e3351f74c9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "11", @@ -77662,9 +68996,7 @@ }, { "chartID": "5d9d0c68e6593ad0427e230a69171e386ecbb20c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Re:Master", "isPrimary": true, "level": "13", @@ -77679,9 +69011,7 @@ }, { "chartID": "d5d3f622822caecf5eadaecbf50db66a0c6c7605", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -77696,9 +69026,7 @@ }, { "chartID": "fa07ab2c73407adbedfaadf53de110c19f092946", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -77713,9 +69041,7 @@ }, { "chartID": "9acfcdf1461473d9129a791b6de98245e61bf643", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -77730,9 +69056,7 @@ }, { "chartID": "64d1cfd6ee5522dc1936590f4a7720a7c4ae0965", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -77747,9 +69071,7 @@ }, { "chartID": "c460e2faac6df11d6340fe709c52762a8f12b71b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -77764,9 +69086,7 @@ }, { "chartID": "731e65ade6f820c6233d0145977a19ddfad25dc1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -77781,9 +69101,7 @@ }, { "chartID": "f3d9d54a0031e6110ae00c7faef89f91efc3ffde", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -77798,9 +69116,7 @@ }, { "chartID": "3d5cbda2714c8a079feff2c50ad4a892e1d61c00", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "11", @@ -77815,9 +69131,7 @@ }, { "chartID": "436247f380aa8260f4d927c4d0fc15b82acc1eb9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Re:Master", "isPrimary": true, "level": "13", @@ -77832,9 +69146,7 @@ }, { "chartID": "5754286a1b6afd477ed54dd4a10cfe532574cffa", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -77849,9 +69161,7 @@ }, { "chartID": "584df250ee424c178c746dbf11ffa5bdf28938c9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -77866,9 +69176,7 @@ }, { "chartID": "39163c854735a02767921ffe844d757caa618e1d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -77883,9 +69191,7 @@ }, { "chartID": "e89f384e2788a05c0a94b5b928a39d2da7496b1d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "11+", @@ -77900,9 +69206,7 @@ }, { "chartID": "2437566f8cff316234e244e3937dd5fa3619b6e6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Re:Master", "isPrimary": true, "level": "13", @@ -77917,9 +69221,7 @@ }, { "chartID": "ff31da69673b495222773345c3ee048143715125", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -77934,9 +69236,7 @@ }, { "chartID": "c2fe0ee2483f7481012af61a4afa75e5c942943b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -77951,9 +69251,7 @@ }, { "chartID": "7e618e69db612d1df03a9d58b6ba0d6eb99ade0a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -77968,9 +69266,7 @@ }, { "chartID": "f0e23a168af49513be426f6044f92cabdcfcbfe9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -77985,9 +69281,7 @@ }, { "chartID": "d2b7af669ae117985877df387b165bceb42a756d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -78002,9 +69296,7 @@ }, { "chartID": "b8fc3e6e903fb57cbe3c8794eeb6cb9bf45dc30b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -78019,9 +69311,7 @@ }, { "chartID": "ac146a0f1f802f9db8309ba352f0a95346b28025", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -78036,9 +69326,7 @@ }, { "chartID": "b9666aaf47a2541aed9c21a6897357e7c2e809a9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -78053,9 +69341,7 @@ }, { "chartID": "ac657c1c7cec60aa8b8252ae2af41fb421b2560d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -78070,9 +69356,7 @@ }, { "chartID": "f76106ceea9387403f909eab1644f15a27b8a5f6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -78087,9 +69371,7 @@ }, { "chartID": "2be8ab1fdf9dfb591fa94ac700fcfbf45c4e37e6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -78104,9 +69386,7 @@ }, { "chartID": "665e0dea4ebd397fa9c73ef66c311251ec9434d4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -78121,9 +69401,7 @@ }, { "chartID": "ee9656935ae6fd83e3e83851eecfc05f41dd0c56", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -78138,9 +69416,7 @@ }, { "chartID": "af5007dcec89122f4ae1416cc8f857f395c167c9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -78155,9 +69431,7 @@ }, { "chartID": "8cf474a274e2faa03eefd361bee1f9b7847eba41", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -78172,9 +69446,7 @@ }, { "chartID": "6b182790cc4413c2dd9c7a9a52a60f02002a614f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -78189,9 +69461,7 @@ }, { "chartID": "a310c1cd7db94b870c2a3a9b3778bf0866a51671", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -78206,9 +69476,7 @@ }, { "chartID": "2bbf7b4e9191534d0965ffe5ab9dcfc348d19875", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -78223,9 +69491,7 @@ }, { "chartID": "fd8a2998d87e96bead37359e0386cb2c52814d79", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -78240,9 +69506,7 @@ }, { "chartID": "5eb2e812432ae4f8146df2ee7523d0c26bba0eba", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -78257,9 +69521,7 @@ }, { "chartID": "adef4002df57f08938063c0999862b9e1b12deec", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -78274,9 +69536,7 @@ }, { "chartID": "c36b1dfd909bf25b85a14f62e19f9b9f1de350cf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "1", @@ -78291,9 +69551,7 @@ }, { "chartID": "020edd0c542f47284dff0659a1ddf4fc56104ef7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -78308,9 +69566,7 @@ }, { "chartID": "a118694b4135a6d850d63da72b4db4d6ff3f8153", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -78325,9 +69581,7 @@ }, { "chartID": "4ecf94e670f97c04cf2a409262b61bf57560b55c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -78342,9 +69596,7 @@ }, { "chartID": "ace20e16e7f8750eac17727c0be692af0d8a01dd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -78359,9 +69611,7 @@ }, { "chartID": "694d87d185d808e6252d5cbe4286f68107473b62", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -78376,9 +69626,7 @@ }, { "chartID": "1d64ff97a6bd004b1e29f2972220bae30d0c983e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -78393,9 +69641,7 @@ }, { "chartID": "d35584318cdcb2fe75b25673f8eb95f475a1b8c9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -78410,9 +69656,7 @@ }, { "chartID": "aba34c421dcc11ef8d2864bf39c8c38cc1400b8e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -78427,9 +69671,7 @@ }, { "chartID": "a1cd95881cb63b06b37e2f60083df67e1de44863", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -78444,9 +69686,7 @@ }, { "chartID": "28c0f987c8aa622d4bfc4006af8e0d6bd497877a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -78461,9 +69701,7 @@ }, { "chartID": "33bbfdf455b8c151470525c73556622d7e5bfe9e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -78478,9 +69716,7 @@ }, { "chartID": "63e3c5fcc1d2ef2bb53ee57478c8946332c212c8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -78495,9 +69731,7 @@ }, { "chartID": "cac9eaa4116a17579382264d402fe80356b8f630", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -78512,9 +69746,7 @@ }, { "chartID": "c56a3b250e6500f8552f9455a70d7de410bf4022", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -78529,9 +69761,7 @@ }, { "chartID": "cec773a4a3cd40ce65412fff394a0266e229c891", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -78546,9 +69776,7 @@ }, { "chartID": "96f964c577c97823d64576fee4f9c9abdf8d3c76", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -78563,9 +69791,7 @@ }, { "chartID": "828a945eabb169e7232efd6d0c586ab50535030c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -78580,9 +69806,7 @@ }, { "chartID": "b65732a8fb7b9087d45935bef19b0928483e6466", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -78597,9 +69821,7 @@ }, { "chartID": "fdd1eb5052c07a24a3bf6ab3dedc4dc561dd98d2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -78614,9 +69836,7 @@ }, { "chartID": "6be26b77547d18d4b100472373f2bbe9905ab7ac", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -78631,9 +69851,7 @@ }, { "chartID": "53e3bc5eb9bee701be583579d7d662c44cd5b1e2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -78648,9 +69866,7 @@ }, { "chartID": "f812f46cc060679f66f12aaf64cb44c36bbd3794", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -78665,9 +69881,7 @@ }, { "chartID": "3887b25c5c3df292b35b8368ba5ff68da154e4b9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -78682,9 +69896,7 @@ }, { "chartID": "f15b033baf68f0022e8df8c8428855415733575e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -78699,9 +69911,7 @@ }, { "chartID": "495b05aacd2d6a4dbea01b30ea0e873eea468571", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -78716,9 +69926,7 @@ }, { "chartID": "15575036ef109df60582a86481865fe950ae10a4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -78733,9 +69941,7 @@ }, { "chartID": "87f8172142545e86b2fa2f5f85fc31d14a560c70", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -78750,9 +69956,7 @@ }, { "chartID": "9829cf23f675db8d50658bbde9aab04d00833670", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -78767,9 +69971,7 @@ }, { "chartID": "080600ef95aa298d9488262f29117df5195dcc91", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -78784,9 +69986,7 @@ }, { "chartID": "294af7dee84f5ec88c0810c486f78f33ae4cb75d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -78801,9 +70001,7 @@ }, { "chartID": "962266049666e8ca6ec568508c2891ade935aaf5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -78818,9 +70016,7 @@ }, { "chartID": "4ecd346d0cafd6b2078e608f4321f05b23a99b45", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -78835,9 +70031,7 @@ }, { "chartID": "b9d6e4d3b91a48b59039bc5d8860f316cb4a3c42", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -78852,9 +70046,7 @@ }, { "chartID": "0509b8730cb9a7ca06c5f3ec32bb4d5bdd120ca8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -78869,9 +70061,7 @@ }, { "chartID": "e44d53a4c96e46ee2bc1fed5dd4249106038ca22", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -78886,9 +70076,7 @@ }, { "chartID": "19032876d5c30b14b77b88ea66ecf1d1b13a9224", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -78903,9 +70091,7 @@ }, { "chartID": "6dc646e965b8e94f09b35f276205bbad00325ea3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -78920,9 +70106,7 @@ }, { "chartID": "04195f89a7e2dec09aab28f5220849665e54510c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -78937,9 +70121,7 @@ }, { "chartID": "5d83046111885daaa31112e8ce75c358aacb1da8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -78954,9 +70136,7 @@ }, { "chartID": "f001c04644a79625cb8f05edc82cc3f71a1cb079", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -78971,9 +70151,7 @@ }, { "chartID": "b01f9b956b2977fa4e0313c7f4309377bece7c0c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -78988,9 +70166,7 @@ }, { "chartID": "b58b3a4e83de95839d07ef0fc5232cf822448dc5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -79005,9 +70181,7 @@ }, { "chartID": "d4bdd492e49e7e6e3b4cdef0f3259eb6c29520d3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -79022,9 +70196,7 @@ }, { "chartID": "69ed95ae6670d59c8bccf6b5cebeaffa0187fddb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "6", @@ -79039,9 +70211,7 @@ }, { "chartID": "5d2645e402edd0af3172e1c65728689006789ed9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12+", @@ -79056,9 +70226,7 @@ }, { "chartID": "0e23943e58a87f16f562e733d6b88273b0906806", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -79073,9 +70241,7 @@ }, { "chartID": "1800c45e76ae5210a9ab73ed7e835a010668f874", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -79090,9 +70256,7 @@ }, { "chartID": "7eb990302a775d63fe5d1d6b18caf2a6e5b7784a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "6", @@ -79107,9 +70271,7 @@ }, { "chartID": "6d9c056a6de5cd0bb61c03e58b899a307dc57e22", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12+", @@ -79124,9 +70286,7 @@ }, { "chartID": "f327fa06bbe0fe24a717472e9b8210a0cb5ce310", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -79141,9 +70301,7 @@ }, { "chartID": "88fe1a27c79d0df8b872ef2e640beee28d0b26df", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -79158,9 +70316,7 @@ }, { "chartID": "2f2b403a384f64cfb17d24688c242579262e6e8c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -79175,9 +70331,7 @@ }, { "chartID": "4f8a5782c2b5829921c9258ec44e1281f0a62d75", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -79192,9 +70346,7 @@ }, { "chartID": "9b26b3147c55f8ba5c84be23148fde7bc15b78cb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -79209,9 +70361,7 @@ }, { "chartID": "40c62ae150a6488025253c1b5859f850a2245eac", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -79226,9 +70376,7 @@ }, { "chartID": "bb2bb3636d6c8452fcf0468a5ca7be0089363bc8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -79243,9 +70391,7 @@ }, { "chartID": "9f0a96135d5c61b567cdc65f56b91897986f5180", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -79260,9 +70406,7 @@ }, { "chartID": "5146d03cf532a8d0deced89506f14a7eec6a3b9b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -79277,9 +70421,7 @@ }, { "chartID": "0b7baec8001e4a73d5cada9825de8faaf6a5f612", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -79294,9 +70436,7 @@ }, { "chartID": "89a3f37b8d56e7b8a26c6b777b829949e6bb088d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -79311,9 +70451,7 @@ }, { "chartID": "f361f0ef0a5a0df0ff177a032413ce63a12d5a9b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -79328,9 +70466,7 @@ }, { "chartID": "c5398b0579450b9316da4900ab61ca9432c02cc7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -79345,9 +70481,7 @@ }, { "chartID": "0c72b567e9170658b1e4cfbe50ee9a9be98996ed", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -79362,9 +70496,7 @@ }, { "chartID": "78a828751d3ab8cca49b6bffed132953f6bc2bbd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -79379,9 +70511,7 @@ }, { "chartID": "98155a4622c3575135725045b5e5a26d3c1c1fc3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11+", @@ -79396,9 +70526,7 @@ }, { "chartID": "da9615bda5c82e038efc6bbcbc934799e39b2a92", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -79413,9 +70541,7 @@ }, { "chartID": "af2b2e9795389fcb129c2b58f1cbac08dbcbb66c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -79430,9 +70556,7 @@ }, { "chartID": "402ee574e9a4dbdc336aeba39f6e62772573fed8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -79447,9 +70571,7 @@ }, { "chartID": "6ac128c1340c012f541636db515b6242d728415d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -79464,9 +70586,7 @@ }, { "chartID": "7e6da3b3bf6b75bbb731c9f9a29acde01c0e21f3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -79481,9 +70601,7 @@ }, { "chartID": "3dddd542a385a6d6fbbc24c2b6435cdb8cf2220c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8+", @@ -79498,9 +70616,7 @@ }, { "chartID": "d6dba650676335436ad81d723d9afcfdfccbc54c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -79515,9 +70631,7 @@ }, { "chartID": "a0862d70273f0e142409c27e1f2162e459055335", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12+", @@ -79532,9 +70646,7 @@ }, { "chartID": "d3833492117b86e619ababda464b863874fa1875", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -79549,9 +70661,7 @@ }, { "chartID": "00622c95291c835887b75237a28d42bb4d41f9e7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -79566,9 +70676,7 @@ }, { "chartID": "e72338eb8d7b471218111aa2a0d568056db519b1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -79583,9 +70691,7 @@ }, { "chartID": "d3949ff7e1abf8632c4e94a96a49250cc3794078", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -79600,9 +70706,7 @@ }, { "chartID": "3e501adc2fa7a2ee8fc70e342ee1a8578c90c712", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -79617,9 +70721,7 @@ }, { "chartID": "c5a1ebfdc94e743c6565546aedf78f69bc8bc6ae", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -79634,9 +70736,7 @@ }, { "chartID": "e67b78dddb9c0d0d6fd136018a77bb6597881be4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -79651,9 +70751,7 @@ }, { "chartID": "f28015917bd9e9286d666f621baac7798d0f3437", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -79668,9 +70766,7 @@ }, { "chartID": "3adebf45c3fa8a1a172f4bb7649722145a9de95b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -79685,9 +70781,7 @@ }, { "chartID": "ad1125e20f306f0ae9c2c2da6becddc1ac25993d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -79702,9 +70796,7 @@ }, { "chartID": "fd9f6ca76e75ccefea0c34c99f90a9a9dc5bdb6e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -79719,9 +70811,7 @@ }, { "chartID": "07dc76678aea93ae82cb723f4de4b0946b18bf22", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11+", @@ -79736,9 +70826,7 @@ }, { "chartID": "7d850c38412376bccd3002496bfda9439617dc7b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -79753,9 +70841,7 @@ }, { "chartID": "07cf3d331c0a7023faace3ec8758ec9dc0caa09e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -79770,9 +70856,7 @@ }, { "chartID": "ad566849e3b31f649fde4617e5ce6c346f373ffc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -79787,9 +70871,7 @@ }, { "chartID": "29d58771474ca5233e72f2462a65f849e5122cb9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -79804,9 +70886,7 @@ }, { "chartID": "cbf29205f7a70c3e9f348c7834de82931c92b1f8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -79821,9 +70901,7 @@ }, { "chartID": "85bec17cccb296e95013ab145bad1551bdb1376e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -79838,9 +70916,7 @@ }, { "chartID": "bf2c9f8d65a1bbb51d363db78451ce440287e4c9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -79855,9 +70931,7 @@ }, { "chartID": "55a826663475249ff9ac9de1d9dbdbf916a40202", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -79872,9 +70946,7 @@ }, { "chartID": "8b5ddce4703f1d5434f82385ef7a88e9a7dc9d06", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -79889,9 +70961,7 @@ }, { "chartID": "2224ff460249aad5eba3c1e69c3795a1dec7029b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8+", @@ -79906,9 +70976,7 @@ }, { "chartID": "8eca3412f6979a742bc0cd8dba1b58602fc9efe7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -79923,9 +70991,7 @@ }, { "chartID": "092c6e6cf566b1c2f42fdb135fdb5fbadfe200d7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12+", @@ -79940,9 +71006,7 @@ }, { "chartID": "d2adf5bcb7ff91c47620067e1c44d1e7ae0da185", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -79957,9 +71021,7 @@ }, { "chartID": "1c04cdcbfd8e333791684b2820973feabd822a18", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8+", @@ -79974,9 +71036,7 @@ }, { "chartID": "106ee2540b842fee9cfcd966fc9ded69ddf93ee6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "6", @@ -79991,9 +71051,7 @@ }, { "chartID": "c7b786c429c79e16ffdf04dced1fefc075e780af", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "13", @@ -80008,9 +71066,7 @@ }, { "chartID": "f6a968ef0247366931667b175760c79d182b5407", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14+", @@ -80025,9 +71081,7 @@ }, { "chartID": "685a251d738867ca49590e98be45fc5f55cbb4f1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -80042,9 +71096,7 @@ }, { "chartID": "e7e8909c3a967af6ea97ff99c738a8aa1f8dee0c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -80059,9 +71111,7 @@ }, { "chartID": "6748652a5f0a87fa2ebd2cbe643603711f3bd832", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -80076,9 +71126,7 @@ }, { "chartID": "996ff6c5400242ca48b58f8f28298e7aa7c886eb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -80093,9 +71141,7 @@ }, { "chartID": "85dec0a6b63b1f773fd6741a1703e187dc0727ed", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -80110,9 +71156,7 @@ }, { "chartID": "449f175e249cf5e1c5184f6e84b0cbcc517227ba", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -80127,9 +71171,7 @@ }, { "chartID": "221efb48c6f03d666de10717f81eff1c0cd37180", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12+", @@ -80144,9 +71186,7 @@ }, { "chartID": "690429a3ad9141a772cc0c87a54fd69f03b2eb00", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -80161,9 +71201,7 @@ }, { "chartID": "0c72662d7c696360edd2c599b33344131a6f0c64", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -80178,9 +71216,7 @@ }, { "chartID": "2ab7b05f10f516a552549140be261e6b434d377e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -80195,9 +71231,7 @@ }, { "chartID": "a25ec6932db572d3a23840a6245b95bb2b5362ef", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12+", @@ -80212,9 +71246,7 @@ }, { "chartID": "79c85d31e118fefce4f675e78fe3c6e13e908ddf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -80229,9 +71261,7 @@ }, { "chartID": "bd9ca9bc4efb8d8499bfa7031e9941e85f3021b6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -80246,9 +71276,7 @@ }, { "chartID": "68d9f54c0fcc41f8b57ad853a47e7525440f3949", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -80263,9 +71291,7 @@ }, { "chartID": "733865d933e6cbd0e258e113ac45cb9076c559af", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "8+", @@ -80280,9 +71306,7 @@ }, { "chartID": "75ea0a0ed3fbd0c9c2e987934572e2b710eb140b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -80297,9 +71321,7 @@ }, { "chartID": "5572c7f34d0f0813c2ad3d5a638e915c09e3ba37", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -80314,9 +71336,7 @@ }, { "chartID": "7f1dea290cc4155591a49412d8ce3b6e0f38ee5b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -80331,9 +71351,7 @@ }, { "chartID": "d893f274f1444ce0a1693e72342d2141db45924e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -80348,9 +71366,7 @@ }, { "chartID": "e85d8382768ba53240d72277a24e3294858420e3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -80365,9 +71381,7 @@ }, { "chartID": "09728c028a4eeb0ef08b4e15f1299dc2fae4479f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -80382,9 +71396,7 @@ }, { "chartID": "a11b4413a158ff03647192249567f69cd7adbf64", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -80399,9 +71411,7 @@ }, { "chartID": "cee147090116c66929e8f83ec90c227b5ff031ac", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -80416,9 +71426,7 @@ }, { "chartID": "d6356db9188e34cd0b8d1c40d43c9827ada20cd9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -80433,9 +71441,7 @@ }, { "chartID": "1df60f8e75c31d859e1e7f1f1d4e089c41799b49", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -80450,9 +71456,7 @@ }, { "chartID": "330d9d1bc6721f1b520d232105e5ece650a80cc6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -80467,9 +71471,7 @@ }, { "chartID": "deb1cabebdc05830f8bc7608c9ea54c97ab51cc5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11+", @@ -80484,9 +71486,7 @@ }, { "chartID": "04056d4e4cba2e43a96e15ea0a69051f5cc9e7bb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -80501,9 +71501,7 @@ }, { "chartID": "65e3f0f0250b5bdc47c2adbae29c50a298a60b11", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -80518,9 +71516,7 @@ }, { "chartID": "48b478a6ce082869db1d7d883238413222b8cb15", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -80535,9 +71531,7 @@ }, { "chartID": "0d3786bf945344c0cbd0b4cbd5c98553fe6d9de6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -80552,9 +71546,7 @@ }, { "chartID": "123b6a4331d75a564d94a5de0731a14a2693f4d1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -80569,9 +71561,7 @@ }, { "chartID": "b28ccf30c13e3e6b7b1dc4a87bc6557c5d63362a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -80586,9 +71576,7 @@ }, { "chartID": "bcd62d0c3d8ed862b5df59775a3b222d84727da7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -80603,9 +71591,7 @@ }, { "chartID": "0fd1af00b35430185a9b39711f8954d7752d40a3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -80620,9 +71606,7 @@ }, { "chartID": "85d73b1bf12038dc4537c0462c140ddf2a7fbcfa", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -80637,9 +71621,7 @@ }, { "chartID": "fe873b5299d241aff4405cdc81ff588509a7fcff", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -80654,9 +71636,7 @@ }, { "chartID": "9c96e15a5ffe75bb4351e1a0b526795cbb1b529e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -80671,9 +71651,7 @@ }, { "chartID": "8b8b9fe2e808460b457394d611f4106286163327", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -80688,9 +71666,7 @@ }, { "chartID": "e59951a13da39fa637aa8c156168c32c109b9293", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -80705,9 +71681,7 @@ }, { "chartID": "b755d6ae1b0ee6da73b39306d9280ebcc16ccf0a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -80722,9 +71696,7 @@ }, { "chartID": "891441c3fbafadfe5139ac7170f701df72c6e1fa", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -80739,9 +71711,7 @@ }, { "chartID": "cebb2c462d3d92cd66b3d297e603c8e6b4685a1d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "8", @@ -80756,9 +71726,7 @@ }, { "chartID": "ccfc340ddfcb888b6c79f8ee0aeeaac2395de791", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -80773,9 +71741,7 @@ }, { "chartID": "4ccfa7f2a588ac5b53fc2f86996248866d9fbfc3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -80790,9 +71756,7 @@ }, { "chartID": "31321558f06f0e766f8de887bbbfd634a4b915b2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -80807,9 +71771,7 @@ }, { "chartID": "7d4a5f9fab1b95a5a3c856b807bcb92be6963fac", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11+", @@ -80824,9 +71786,7 @@ }, { "chartID": "949731b9a8615934f1b40fd7a76ea96a248778d7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -80841,9 +71801,7 @@ }, { "chartID": "a5cd25e2aa597b279e8a2a198b9c8a06241f2924", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -80858,9 +71816,7 @@ }, { "chartID": "9162ee3fe2bbc677ed16ac5fb824ec092237efd4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -80875,9 +71831,7 @@ }, { "chartID": "834d841716436ef30a514fa8438c97a376e52f6a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12+", @@ -80892,9 +71846,7 @@ }, { "chartID": "20da956277223cff7ac3091fdd6cf6a6041278e6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -80909,9 +71861,7 @@ }, { "chartID": "80d07bf430a277bf125bb054946a731151395428", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8+", @@ -80926,9 +71876,7 @@ }, { "chartID": "287ad46fae9954cf04915dc902f39594efcdafbf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "6", @@ -80943,9 +71891,7 @@ }, { "chartID": "6be08b228bc9c0fb75bfa9b610f078228c67aa88", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12+", @@ -80960,9 +71906,7 @@ }, { "chartID": "dfd196e479fa798a0fc05e4734a014574f6c6b4e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -80977,9 +71921,7 @@ }, { "chartID": "1e3ff942eaa872f17721764e17cc14f3609cb9cd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "9", @@ -80994,9 +71936,7 @@ }, { "chartID": "01dbe6af3fe626de71651e2cae7290d95fde3bc2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "6", @@ -81011,9 +71951,7 @@ }, { "chartID": "e1363111422696637d56573a308e7aff6d6d7adb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "13", @@ -81028,9 +71966,7 @@ }, { "chartID": "3b45d9d0dab9ade0f19b6afe613b770046e78d6b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14+", @@ -81045,9 +71981,7 @@ }, { "chartID": "c7e940b491beadbe7498aadc176850d160be68ea", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -81062,9 +71996,7 @@ }, { "chartID": "f919e17c6e436f91b842328bf18fcf9a37a9f0f7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -81079,9 +72011,7 @@ }, { "chartID": "d3f9a1547313777b2c29bc17463ebece94e295f1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -81096,9 +72026,7 @@ }, { "chartID": "8f94f9a5ddbd75e76e2c492247ca9ed133b873bb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -81113,9 +72041,7 @@ }, { "chartID": "ecf4e475181d82a4d15a931bb4b1e84bc2db493f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -81130,9 +72056,7 @@ }, { "chartID": "78c06ca0d4ba695e5ed16ee4ea0b91e482b6eea8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -81147,9 +72071,7 @@ }, { "chartID": "97d719b3c77af61f90e773668c38e5ee01757df2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -81164,9 +72086,7 @@ }, { "chartID": "82d77a96867fa19b4c8d8ee53422aa79b1665823", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -81181,9 +72101,7 @@ }, { "chartID": "91390700310aebea371548ead70d18d586acdd81", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -81198,9 +72116,7 @@ }, { "chartID": "a2c0de024fff80ef8b9f4278b1e292a09dfa7797", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -81215,9 +72131,7 @@ }, { "chartID": "928206e99f6899817ae597023dbc195563e2cf0b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -81232,9 +72146,7 @@ }, { "chartID": "389bf3b3f8c7be9ddd82de95d24dc1d8a21f5f70", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -81249,9 +72161,7 @@ }, { "chartID": "f1bd89ba07e69fbc00aca97e4933b0763ffd42af", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -81266,9 +72176,7 @@ }, { "chartID": "14afc4807ab17b7838b1e596ff25637cdaf45652", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -81283,9 +72191,7 @@ }, { "chartID": "0fc162bc31ed9ddb308f4945d32c43c886c2e730", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -81300,9 +72206,7 @@ }, { "chartID": "fa7ef4768f0e180a745a0facea28304fb956b436", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -81317,9 +72221,7 @@ }, { "chartID": "9b83357f13879ece66f599b897d3dfcf316a9ded", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -81334,9 +72236,7 @@ }, { "chartID": "a2f08a1d888c732363bc348dd2cf3f1db46dfbed", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "1", @@ -81351,9 +72251,7 @@ }, { "chartID": "719118c02cd241ae88750f08ee511f73a21c9e39", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "8", @@ -81368,9 +72266,7 @@ }, { "chartID": "3a2e6caaac34210f263e9148c0947c87a4bc9873", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -81385,9 +72281,7 @@ }, { "chartID": "1bf748922dfc7540954476f379c85c128060789d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -81402,9 +72296,7 @@ }, { "chartID": "39ce3f2ab9eae3b9ba54f3efe5a92eb95d6bc70b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -81419,9 +72311,7 @@ }, { "chartID": "a46ee2559cf6e29b42c84342102c546edf89220b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -81436,9 +72326,7 @@ }, { "chartID": "f99f1d3f6661f78881af96d3e5354a4484ecb757", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -81453,9 +72341,7 @@ }, { "chartID": "fd6842c30a24a2b7b317519389704fb5fc7da911", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -81470,9 +72356,7 @@ }, { "chartID": "98db6f6cfe4e0aaf5f08ce0fc891d5c6e3805428", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "6", @@ -81487,9 +72371,7 @@ }, { "chartID": "05b6f4eae41b21913d3f9c379dac7bb8a9ccfd77", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12+", @@ -81504,9 +72386,7 @@ }, { "chartID": "6b6a9ef0bf90e4e5d5f019999b4f59d4526e3a3e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -81521,9 +72401,7 @@ }, { "chartID": "fb42c6bd54ef42f07ad78a113de9cf5def3d5d0b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -81538,9 +72416,7 @@ }, { "chartID": "366f73063267873e5e07fa18f94b8c4025ceb6e6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -81555,9 +72431,7 @@ }, { "chartID": "9b53139eef272fc55b142fef7aaa8d34d9b5df1e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11+", @@ -81572,9 +72446,7 @@ }, { "chartID": "7b2214f5c958523360843418468149005f405ed8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -81589,9 +72461,7 @@ }, { "chartID": "6d64dd39b5a3a07bd68bd4d8451243360058a027", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -81606,9 +72476,7 @@ }, { "chartID": "a12a8e3a458aeee21b0b2d8445d6ce79c6d8df71", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -81623,9 +72491,7 @@ }, { "chartID": "b6607382e5c3fa0932bf710ae2f71006b1f62db6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -81640,9 +72506,7 @@ }, { "chartID": "36b9930a9acf4fb2963fbdc66be11390b893360c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -81657,9 +72521,7 @@ }, { "chartID": "748716394423681235adebd140adae92a5cf806c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -81674,9 +72536,7 @@ }, { "chartID": "79f26158edcf4846969ebea646530868d641616e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -81691,9 +72551,7 @@ }, { "chartID": "65679b0d0a7278fec73688c65178e9db6223c4ab", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -81708,9 +72566,7 @@ }, { "chartID": "6b7f63716755b5419e489113a052a0c46def0836", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -81725,9 +72581,7 @@ }, { "chartID": "07e3f573925fd3a2904bd58897070243823cbef6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -81741,9 +72595,7 @@ }, { "chartID": "ce5e74841b4d66190ad4c7c205a77b794f807ea0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -81757,9 +72609,7 @@ }, { "chartID": "89abc668a9d69329dd94e30b22ba31cc91e94c3b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -81773,9 +72623,7 @@ }, { "chartID": "3dac2daccc86b6d6283f7b5aaa400caa0f4303cf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -81789,9 +72637,7 @@ }, { "chartID": "782eeac06ddcca35e93f893ce686c11d43a0e269", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -81805,9 +72651,7 @@ }, { "chartID": "a5919aeb853eacdd983b2597e2112e11b9ff11f9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -81821,9 +72665,7 @@ }, { "chartID": "039734b1c0deddb4db9953c488b6902328531358", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -81837,9 +72679,7 @@ }, { "chartID": "bb6d82d317e728165873e35c81ae185434372244", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -81853,9 +72693,7 @@ }, { "chartID": "8c4d496cda3a0cae1a075ff2dd237cdeadabc775", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -81869,9 +72707,7 @@ }, { "chartID": "b6be8f63181b33518c582bcdd22b142297a6414b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -81885,9 +72721,7 @@ }, { "chartID": "02c9e5a5a78cbbf4e4bcb5b3a3c1cf31e02c7494", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -81901,9 +72735,7 @@ }, { "chartID": "7ee79ddff5ead75f6e560e08517656de7626b631", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -81917,9 +72749,7 @@ }, { "chartID": "d41d3f0d6558df4cad516cab21b18bd7ec0081fb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -81933,9 +72763,7 @@ }, { "chartID": "49134c97dad29276880990935aedb544305c8d83", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -81949,9 +72777,7 @@ }, { "chartID": "332cc8daafdafa63e64889ffa3fe6f6986e45fd5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11+", @@ -81965,9 +72791,7 @@ }, { "chartID": "1813a2720c9920c460eb6427d71ade80fcf32620", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -81981,9 +72805,7 @@ }, { "chartID": "ecb146e5fdaa6c2874f96511ede6c2b9da6d6163", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -81997,9 +72819,7 @@ }, { "chartID": "d7e63c55f8a7fc6989056eaf84f7d038786f03da", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "6", @@ -82013,9 +72833,7 @@ }, { "chartID": "b67acccc905c8d5f262f2476d08e7be948de15f2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12+", @@ -82029,9 +72847,7 @@ }, { "chartID": "d04c9d5ffad02f209ac1c37d7c6954cb3b558cf2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14+", @@ -82045,9 +72861,7 @@ }, { "chartID": "08b5f8ffbe7b370cbe40c0206bf64dcbb2519d23", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -82061,9 +72875,7 @@ }, { "chartID": "7860a45c3c9e4603160a779e5038cc575fde0e6f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -82077,9 +72889,7 @@ }, { "chartID": "3970e8e8f6e21d35040214ede6f6145c327739b9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -82093,9 +72903,7 @@ }, { "chartID": "e48a223ed23621c6a914ff1ebc4da4ae6aaed4b2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -82109,9 +72917,7 @@ }, { "chartID": "7efb89b10d022b42de1f2fd4c3bccfb23d255167", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -82125,9 +72931,7 @@ }, { "chartID": "920b07024a58e02c1fa392e62c8ff73e57cd8b03", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -82141,9 +72945,7 @@ }, { "chartID": "33dbccd2ba152e80f0dbc38acca8221692b29a4a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -82157,9 +72959,7 @@ }, { "chartID": "71c6bc7b604b9656bfe21d9017f5a9a5cce60cda", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -82173,9 +72973,7 @@ }, { "chartID": "b397b82a86e7b01bf8df492de27b951545610697", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -82189,9 +72987,7 @@ }, { "chartID": "38243eb25b0d2ee33cb6d73a93370894a3177b1b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -82205,9 +73001,7 @@ }, { "chartID": "3d2f0193aa6d8d8cbbc04251eb5db9012eb60fbe", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -82221,9 +73015,7 @@ }, { "chartID": "f443785e1f5f927d249c839c22af988d1df6e8d1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -82237,9 +73029,7 @@ }, { "chartID": "df522b540517143589ebdca8218c4f574e9f8e12", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -82253,9 +73043,7 @@ }, { "chartID": "546764f6b0c8819eeaba89f768c21505c49418dc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -82269,9 +73057,7 @@ }, { "chartID": "760a00d5959a88a5fd1eb89678086e7303ba95eb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -82285,9 +73071,7 @@ }, { "chartID": "e016fc2a3e509f3a4ae03745b2a326409aec6658", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -82301,9 +73085,7 @@ }, { "chartID": "b90d71925212be98656b5e713c478f9121d7409e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -82317,9 +73099,7 @@ }, { "chartID": "a5851ae0f7c8a983df1e317c7725dbaee38b6da7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -82333,9 +73113,7 @@ }, { "chartID": "11c378ada421654318c5b1b95b87e34affc41ec3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -82349,9 +73127,7 @@ }, { "chartID": "193740d49613131b1d278ea79d4980f09820dded", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -82365,9 +73141,7 @@ }, { "chartID": "2248ed0fcc7cb84fbffa083e8865cf1bd5f85436", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -82381,9 +73155,7 @@ }, { "chartID": "d63a4b7a480d6723e45a58aaecd47e21db1636d4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -82397,9 +73169,7 @@ }, { "chartID": "a1d72de6ac6807e7068038fd5c846b12c9dc4eaf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -82413,9 +73183,7 @@ }, { "chartID": "27246dc18c4886417daf689d8ba464f07a759029", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -82429,9 +73197,7 @@ }, { "chartID": "2f4b1d6a4110cf630fb23b5b072fbf21b6812bee", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -82445,9 +73211,7 @@ }, { "chartID": "a8bf7964984a97f83fb7dfe2c603c3e368e05636", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -82461,9 +73225,7 @@ }, { "chartID": "335392936a649c0eb9ba6203630d05786d19e0df", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11+", @@ -82477,9 +73239,7 @@ }, { "chartID": "88dfccd129cf5caf19b37f019b5b95b0066c2c2b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -82493,9 +73253,7 @@ }, { "chartID": "88a9c94d6aed01f10bc90c7d60e31df71572adf6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -82509,9 +73267,7 @@ }, { "chartID": "6a33bcb68af423a541af954a2ed599afab256ae5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -82525,9 +73281,7 @@ }, { "chartID": "cb73a6237a26da0d44121b5bc5d9a0e6f5993175", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -82541,9 +73295,7 @@ }, { "chartID": "ebd24f8019dd64d63ea81cc67d2986fed52c76ed", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -82557,9 +73309,7 @@ }, { "chartID": "98722934bda91b9e5f627fff9bf1aed23de7d15c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -82573,9 +73323,7 @@ }, { "chartID": "aa40472f14af36b960a6749c57a2f94a877898fc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -82589,9 +73337,7 @@ }, { "chartID": "93a90af0eb15d0a7fbc88b2e33400eb795181646", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12+", @@ -82605,9 +73351,7 @@ }, { "chartID": "75f1a019bbe8d59f0fd5c4341a1946c51729a934", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14+", @@ -82621,9 +73365,7 @@ }, { "chartID": "c0fbcf387f93d9f022aaf6f2b3a368edbfb53819", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -82637,9 +73379,7 @@ }, { "chartID": "194a8e4a727fe5af0c0672304af83f936e55a0bf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "6", @@ -82653,9 +73393,7 @@ }, { "chartID": "6ba5ee12dfeea02777cd5f8c8f14ec3e0f313970", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12+", @@ -82669,9 +73407,7 @@ }, { "chartID": "431f712c51fd6aa6d30d97f546a32b1452ca2c85", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -82685,9 +73421,7 @@ }, { "chartID": "45b1abc1e7af169703a846e0364a7e945bd86710", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "5", @@ -82701,9 +73435,7 @@ }, { "chartID": "b0c033a4927c1e3b312fb0790ea3844241f9d5ff", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -82717,9 +73449,7 @@ }, { "chartID": "9c2155df733dd5a7fe65c495675e46638458c15d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -82733,9 +73463,7 @@ }, { "chartID": "d904bb4119789d5ebbee57306bd10fab3847ef57", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -82749,9 +73477,7 @@ }, { "chartID": "68ea5c31161ca9e913901eb996329358bc6456a5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -82765,9 +73491,7 @@ }, { "chartID": "84391b241c1f922f74581380e60c0dd2869be5f3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -82781,9 +73505,7 @@ }, { "chartID": "2c55f3cefd8cf1566f67eb588c93ae9b0bf4c74a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -82797,9 +73519,7 @@ }, { "chartID": "a64a3cdfa7903c96aeefc6b9bbf858576ebeb26e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -82813,9 +73533,7 @@ }, { "chartID": "b6208185ed22644594aa1c34aa8ac20dbdd536c2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -82829,9 +73547,7 @@ }, { "chartID": "27a117919e1dc3d5244acefa5badf57c70447457", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -82845,9 +73561,7 @@ }, { "chartID": "7980beb4d4b7316590b2018952d320b94ada4140", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -82861,9 +73575,7 @@ }, { "chartID": "9810d8f5deb82802e073d3cff81d43dc6ac6b3fc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -82877,9 +73589,7 @@ }, { "chartID": "c29aaf76b24ccaeb91294accf20231c19b48b80e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -82893,9 +73603,7 @@ }, { "chartID": "cb6ba114e5dc0e6043764bb263176e43852a32fa", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -82909,9 +73617,7 @@ }, { "chartID": "59061fc3fdd81b8970f8d5581f693df256a3928e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "8+", @@ -82925,9 +73631,7 @@ }, { "chartID": "403241bcde291d780f686a7d66a8e9c48d40c77b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "11+", @@ -82941,9 +73645,7 @@ }, { "chartID": "8268d4eb6c15c0fc3e54ab7967d694e5723f963d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Re:Master", "isPrimary": true, "level": "13", @@ -82957,9 +73659,7 @@ }, { "chartID": "ac201bffa16d6dd5b511f9a058f8716db4dbe26f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -82973,9 +73673,7 @@ }, { "chartID": "2d9bd3ba79e5a27868919907c206d432dd58b3df", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -82989,9 +73687,7 @@ }, { "chartID": "3da0714a952a312d071a73d95bb6dcd8f990d320", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -83005,9 +73701,7 @@ }, { "chartID": "095ee3b9c7ba7c59fbf9d0b35306b824e64f4a6a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -83021,9 +73715,7 @@ }, { "chartID": "c35f250f650123cf3799840af7d4e9f684137d84", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -83037,9 +73729,7 @@ }, { "chartID": "c3a25f8874f123e7197dae07cc31bdfbc5cab8cd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -83053,9 +73743,7 @@ }, { "chartID": "90efd887cc16ebf83438c94772fb09439f457647", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -83069,9 +73757,7 @@ }, { "chartID": "d14fc5ce642e608e163bf27199fbb8ec474ad086", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -83085,9 +73771,7 @@ }, { "chartID": "74d19b5dd07b5a29f5b7472a804f5f9d1fab8970", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -83101,9 +73785,7 @@ }, { "chartID": "5b15edc5045c90539dee061a218dca11ce31bb3c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -83117,9 +73799,7 @@ }, { "chartID": "7302b19461043e48aeaefe4ed91e60e7131ac12b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -83133,9 +73813,7 @@ }, { "chartID": "8aa1b6fc783505cdc08edfdd6980d9b9ab4ca4c0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "11", @@ -83149,9 +73827,7 @@ }, { "chartID": "4371f9a5a6549ced196dd75711268255dc0f5139", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Re:Master", "isPrimary": true, "level": "13+", @@ -83165,9 +73841,7 @@ }, { "chartID": "7938d1991db2bd5b93d5e40235db2355ef2c8d7d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -83181,9 +73855,7 @@ }, { "chartID": "b79014fedcccdef6726877ba4e7f1c2f4579d7eb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -83197,9 +73869,7 @@ }, { "chartID": "789a3b7324c30964689413f908692bcc85d6d7bf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "8+", @@ -83213,9 +73883,7 @@ }, { "chartID": "9c09830000dca08f2ebfcc8f9f95b5f9d95d4469", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "11", @@ -83229,9 +73897,7 @@ }, { "chartID": "407a34b964efd6c91bf649e56578db6b78e2bfd4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Re:Master", "isPrimary": true, "level": "13", @@ -83245,9 +73911,7 @@ }, { "chartID": "966853ada8d1d35d2723ed5d4f7e12b900b0cc04", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -83261,9 +73925,7 @@ }, { "chartID": "04aec8c08f59506f78cbbf9ce5b80ac63f52b7ca", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -83277,9 +73939,7 @@ }, { "chartID": "9757d0f8481e588075972433deba5db1e5f7b334", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "8+", @@ -83293,9 +73953,7 @@ }, { "chartID": "9cb92686a0e3d47be5d158b37bfb10815264ebbf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -83309,9 +73967,7 @@ }, { "chartID": "35229b37512407dd4fb466e5593184d464cd3716", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -83325,9 +73981,7 @@ }, { "chartID": "0c82770f37365c79c83fb782545496673b9004a0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -83341,9 +73995,7 @@ }, { "chartID": "3b105fe34194dc5559bf490f3e9c6c6ca8fc7e73", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -83357,9 +74009,7 @@ }, { "chartID": "4a3dd30a26cff071348e45334dfa196b439c2447", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -83373,9 +74023,7 @@ }, { "chartID": "6bc52153083654a4e4aae2f18b9d057e96d55fe8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -83389,9 +74037,7 @@ }, { "chartID": "e59b1fb156424b980a22157f1f15a436a16d52b7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -83405,9 +74051,7 @@ }, { "chartID": "f59b93bd626f252c3ddcfea8436a7159f4620469", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -83421,9 +74065,7 @@ }, { "chartID": "f7021a6c1776fd96a482c70ca1d93f6f08b7dd71", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -83437,9 +74079,7 @@ }, { "chartID": "467cc9bcd34b0a2cb925b082944bfb7a66b3e995", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -83453,9 +74093,7 @@ }, { "chartID": "f41f0be3ceeaa3cb3999d34a241651aa76a0f908", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -83469,9 +74107,7 @@ }, { "chartID": "231fdd6b504fee0151ab7f5cec427138d6387260", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -83485,9 +74121,7 @@ }, { "chartID": "0c6bc1dbf675bb8127e7a294839a0152f66db8d5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -83501,9 +74135,7 @@ }, { "chartID": "b2474d40e5b3a6a488d2d899acf5f27d3996c8ca", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -83517,9 +74149,7 @@ }, { "chartID": "370a6f4341afea8854e1d2423e0539c22280e57c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -83533,9 +74163,7 @@ }, { "chartID": "98568372cdf19669c1f98037c70a96ec544bb58d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -83549,9 +74177,7 @@ }, { "chartID": "cf1f5c8e0059156a0615bcc839ab5513d6f9fb7e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -83565,9 +74191,7 @@ }, { "chartID": "cc2865f9ed5bbcd137d33aea5c2b93785af381ec", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -83581,9 +74205,7 @@ }, { "chartID": "35d2601c7a200b7a25c83bcd6749fd3afbaf897f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -83597,9 +74219,7 @@ }, { "chartID": "ee9dc3fb3cb1ee4e6478b810c1b358854ee8b058", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -83613,9 +74233,7 @@ }, { "chartID": "7d05e7e21b0cb861afd26c16d63156d05e04925b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -83629,9 +74247,7 @@ }, { "chartID": "2b13dfae8c7d3e0d34564fc72436f0b920bf2a37", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -83645,9 +74261,7 @@ }, { "chartID": "0e1531507e6ec56088e07767f30e58aebf2a8f32", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -83661,9 +74275,7 @@ }, { "chartID": "20ab01688a8ddf26fbdc66b2cf2eeb03853318a3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -83677,9 +74289,7 @@ }, { "chartID": "e6975b279dc6efc85e957bf74710fa6235056c17", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -83693,9 +74303,7 @@ }, { "chartID": "6b46b0d10aba9486eb47ff1091317b97205ae4a8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -83709,9 +74317,7 @@ }, { "chartID": "abff4da35c8561d4be86da7b9ea6f6c6d61b0bb6", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -83725,9 +74331,7 @@ }, { "chartID": "04a38faed97af9cba6a60fcc2563e4e67d1a6e72", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -83741,9 +74345,7 @@ }, { "chartID": "90262af55f81e57edacd6d407eec46f18529e260", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -83757,9 +74359,7 @@ }, { "chartID": "4e567c44084443827e164402e9835d071d5fd6c5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -83773,9 +74373,7 @@ }, { "chartID": "dd98603ef80723162afe01ba9bf97ab3fa1d69d8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -83789,9 +74387,7 @@ }, { "chartID": "6d5d19ddee661eba136c3fe590e8f167c0730006", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -83805,9 +74401,7 @@ }, { "chartID": "d7ca8be68c397d0580c798fb68c06b61f217dffd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -83821,9 +74415,7 @@ }, { "chartID": "b9617528dc76948fd2bdafea42de559237e19338", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8+", @@ -83837,9 +74429,7 @@ }, { "chartID": "3ecaa4dbad49164c0eaa309622357a2f79cc3fe2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "6", @@ -83853,9 +74443,7 @@ }, { "chartID": "31035731c9eee043a9213cbb2f755935bfde1436", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -83869,9 +74457,7 @@ }, { "chartID": "3a6cd3c13e48ec7d85687556dc63145ed364f195", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -83885,9 +74471,7 @@ }, { "chartID": "42acc472ed5bd84eea3ade8f8f3428ff37cfced9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -83901,9 +74485,7 @@ }, { "chartID": "435eb9f01bcb2d59bf2338bf7b8b2731a2c917a4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "1", @@ -83917,9 +74499,7 @@ }, { "chartID": "451ca8a5bd649d9e23053af88762584111a83177", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "8+", @@ -83933,9 +74513,7 @@ }, { "chartID": "a404e5fd555453b4a99e09201ff56a0ad1c2d81c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -83949,9 +74527,7 @@ }, { "chartID": "1c1a750344a3e99a739e64a658e0f4e825f233ec", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -83965,9 +74541,7 @@ }, { "chartID": "830cbe46051c10bcdab71fe5cc1ec6d068d26294", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -83981,9 +74555,7 @@ }, { "chartID": "0c5611ff5714a7b2d7b796962f7a438ddebdec47", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -83997,9 +74569,7 @@ }, { "chartID": "ba679d933b706b83577417d01fc9535188335484", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -84013,9 +74583,7 @@ }, { "chartID": "1c56c833f412594f3631d5e17c2daf552409886e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -84029,9 +74597,7 @@ }, { "chartID": "f9dab18d08b639917edfcbc6ebf3ca28ff151516", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -84045,9 +74611,7 @@ }, { "chartID": "117400e05a04bc5b566a1fc437a6541bf08dbfe4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -84061,9 +74625,7 @@ }, { "chartID": "e580c64dfa4109a6778277b105f5a419325e911e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -84077,9 +74639,7 @@ }, { "chartID": "09c9ad1e5c520547797e2f7f2a649aa31e81afae", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -84093,9 +74653,7 @@ }, { "chartID": "43ffc734048b865b5fd9acc48e786999b115d0fe", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -84109,9 +74667,7 @@ }, { "chartID": "454204f3afab7890688b6a41f2b33dc38e64668c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -84125,9 +74681,7 @@ }, { "chartID": "3a38b669b28a2721b793309b628930d8d96491f8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -84141,9 +74695,7 @@ }, { "chartID": "57c7456edeb56c4edc0c85f13edd992bd7286dda", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -84157,9 +74709,7 @@ }, { "chartID": "f5c52abacb31c5527b2241f3f8f97521898ac63c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -84173,9 +74723,7 @@ }, { "chartID": "9cbf1a5c60792974e79c776dd3a40d088c00c371", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -84189,9 +74737,7 @@ }, { "chartID": "1a043c299011c2f11a145aa1bd229f7174710c5f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -84205,9 +74751,7 @@ }, { "chartID": "b47fd10c5722769ca20176127bcf8a1ed2d63283", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -84221,9 +74765,7 @@ }, { "chartID": "6e3e7f1f59560c70e0161308d9e5e28f0436b873", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -84237,9 +74779,7 @@ }, { "chartID": "059a50150f8d2d4389dc48e441dfff97faacb145", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -84253,9 +74793,7 @@ }, { "chartID": "1bf26d960a9ad28ee361ca1fc4f5e65b57a9e7f3", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -84269,9 +74807,7 @@ }, { "chartID": "6b53c72b6b61852a1d074446999b9612660068fb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -84285,9 +74821,7 @@ }, { "chartID": "4bc95bc3322fea1a5d614ad3cf0e409169495fb4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -84301,9 +74835,7 @@ }, { "chartID": "ac41b66d81e6705e3bf972ba2e1466d2fa332fa1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11+", @@ -84317,9 +74849,7 @@ }, { "chartID": "66aa6e1e1e6dc6a3271e3ace793ecd0a7acda97d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -84333,9 +74863,7 @@ }, { "chartID": "28733784b7d6c7d74ea3283da6dde28d767784fb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -84349,9 +74877,7 @@ }, { "chartID": "a886af631f31b91d557b3a157afccfd5d3fbb3c4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -84365,9 +74891,7 @@ }, { "chartID": "3e10f4a50d097899552cbaae86c5515aa5bb2fb4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -84381,9 +74905,7 @@ }, { "chartID": "536bde2622c29e2e5c0a7fc5ddea8dc34327de18", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -84397,9 +74919,7 @@ }, { "chartID": "2668ed72c74c6b0215d7257b03003a41903e90ad", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -84413,9 +74933,7 @@ }, { "chartID": "e48ceb0757e97aadd46c72eecc7076763facca4a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -84429,9 +74947,7 @@ }, { "chartID": "cc571f17018eedf0201dc90e21a37f4cb82744e4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -84445,9 +74961,7 @@ }, { "chartID": "6dabb9fb75412acd20daf722bc22ce67573384bc", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -84461,9 +74975,7 @@ }, { "chartID": "abb66f18e686e62eb6f7c82105960568874695f4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -84477,9 +74989,7 @@ }, { "chartID": "a3f675b1d483613d49342410abd19fbe8b911c6d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -84493,9 +75003,7 @@ }, { "chartID": "d6032017c4ad84d635e8e0c63f666324d0e76831", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -84509,9 +75017,7 @@ }, { "chartID": "6c0860a627d9980268d363438da2a703d2305b23", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -84525,9 +75031,7 @@ }, { "chartID": "d771f2adf0595929b6305e764ab06297aa6a0b31", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -84541,9 +75045,7 @@ }, { "chartID": "515b53599c9dbaa05b0ad503b360521c5fa607a2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -84557,9 +75059,7 @@ }, { "chartID": "958f9ff9d9a08c4e141fc187cc7a012c5ffe613c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "8+", @@ -84573,9 +75073,7 @@ }, { "chartID": "115dc6c46bed6ba618c6ed5a4df0d185b0ba63c4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -84589,9 +75087,7 @@ }, { "chartID": "8e7655953e3e78c62e727edd35d922f7c2192c88", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -84605,9 +75101,7 @@ }, { "chartID": "fd79475ff6084652f3078806fb8f53c9cda88495", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -84621,9 +75115,7 @@ }, { "chartID": "d4688fad71aa96041c17c77766a2fa6e62da1b31", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -84637,9 +75129,7 @@ }, { "chartID": "edce2e4c6ac6fd507211f462b06b03c11fd7f452", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -84653,9 +75143,7 @@ }, { "chartID": "4812b9f6f67311ef1f070a8736559ba4795fb06b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -84669,9 +75157,7 @@ }, { "chartID": "1b081a432b2c5a0cac3bec3693c5380e7eeec89b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -84685,9 +75171,7 @@ }, { "chartID": "dc3b1d09c96299da7693cd9c8742a4e7dd081652", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11+", @@ -84701,9 +75185,7 @@ }, { "chartID": "03a68b5e13c67d26f235f0b4c4d72966b2ea080f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -84717,9 +75199,7 @@ }, { "chartID": "bb6bec2a001c7f8071869e93f084d3a254664af9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -84733,9 +75213,7 @@ }, { "chartID": "0198fc5f6c6df1f7273b6d133c77a49b44ddd5b4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -84749,9 +75227,7 @@ }, { "chartID": "b3fd81da2c695189d8cb3000584afb59166dd27c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -84765,9 +75241,7 @@ }, { "chartID": "e3b8b52a59bb7c609850693e40a93b4df7deff02", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -84781,9 +75255,7 @@ }, { "chartID": "478bc11b72e60695a8fd4102d14b2d16e5d44f8f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -84797,9 +75269,7 @@ }, { "chartID": "1442da535ad1226c850e31a3ea73bc9c8883af0b", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -84813,9 +75283,7 @@ }, { "chartID": "9ffe55d640d6f310fe5f857db927080d72840dcd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -84829,9 +75297,7 @@ }, { "chartID": "bffff150fc83729616d5edc6cbee80f8b56088b8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -84845,9 +75311,7 @@ }, { "chartID": "cf4786c88b0bca74df13aee748991730c66531a4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -84861,9 +75325,7 @@ }, { "chartID": "dedcebfaad2357304a25a41bbc329580a05e71d1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -84877,9 +75339,7 @@ }, { "chartID": "45960d954f5c10329cef54ab61892cbd75ee89ec", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -84893,9 +75353,7 @@ }, { "chartID": "003d907e074871a14f34ab6751bbd353e71a99d7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -84909,9 +75367,7 @@ }, { "chartID": "1143d068325e6720b93eed99bd9b1c162140b529", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -84925,9 +75381,7 @@ }, { "chartID": "8a683adab3050238297a90208bb87ccec5662acf", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -84941,9 +75395,7 @@ }, { "chartID": "be0acff218abea3ede1acf70d073fa089fde5fcd", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -84957,9 +75409,7 @@ }, { "chartID": "b287fb9ea305e13e9a9c2c75746b8b96ef18665c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -84973,9 +75423,7 @@ }, { "chartID": "d96665f7d6e03ee7955bde480b7385097658eecb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -84989,9 +75437,7 @@ }, { "chartID": "987ffe94eb0a06422b9da503ab99c8e5b1ebf9c0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -85005,9 +75451,7 @@ }, { "chartID": "31b0f8802a7b23444572548298a2180c63117804", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -85021,9 +75465,7 @@ }, { "chartID": "bf9630fe34635ca2605ab952a5919e927c6a26ca", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -85037,9 +75479,7 @@ }, { "chartID": "3df22faf11bd5dbdcc7b2f1028815ffcc67fd759", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -85053,9 +75493,7 @@ }, { "chartID": "7178f831ba3f46d1c558ad374cfc593847553135", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -85069,9 +75507,7 @@ }, { "chartID": "508197d88139b77243b68115301031a921e3dd54", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -85085,9 +75521,7 @@ }, { "chartID": "e21231f7c3045eb03aff540731977aa5e493e488", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -85101,9 +75535,7 @@ }, { "chartID": "61f3173f933bd80b78081dfadc1f47d8da221ac2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -85117,9 +75549,7 @@ }, { "chartID": "2dac360423888c4041833b12b30f080cf98dcf57", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -85133,9 +75563,7 @@ }, { "chartID": "210c60de71bc748fa2e1f8f61b44f952865c816c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -85149,9 +75577,7 @@ }, { "chartID": "8915aaef9ead8b393886c196e9c5b96469f180ac", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -85165,9 +75591,7 @@ }, { "chartID": "d65c0df6201053e7eb9d15b987640e54df4a38f8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -85181,9 +75605,7 @@ }, { "chartID": "fbaa627c9c06e73f89e107ca7b5443c2ad6cfe8c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -85197,9 +75619,7 @@ }, { "chartID": "c1b42c8038702a0bf325370eeed61986b1f789a7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -85213,9 +75633,7 @@ }, { "chartID": "851bb8324803d83a39da8d592094cb2bd831e3a8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -85229,9 +75647,7 @@ }, { "chartID": "bcf1e4716539bedcd5da75cccd2af21f7e3874bb", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "9", @@ -85245,9 +75661,7 @@ }, { "chartID": "5345bb228557a8db3baa22eeb28afe52502c3416", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "6", @@ -85261,9 +75675,7 @@ }, { "chartID": "a6379454eaf27d5d27dd30f7a85b62eba011ec34", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12+", @@ -85277,9 +75689,7 @@ }, { "chartID": "35218d82aad2a3786fe8a908a56f705e4bec585a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -85293,9 +75703,7 @@ }, { "chartID": "8bb1866c424349e885816a7e42faf9ddab721db8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -85309,9 +75717,7 @@ }, { "chartID": "a15cfe0143bb1a89c6590c8aa822b28bfedbec0f", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -85325,9 +75731,7 @@ }, { "chartID": "3da5c00c153ec1d580a9830f5b0308fcb7688afa", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -85341,9 +75745,7 @@ }, { "chartID": "09e26cdbe780060945d3afb4908a2544f4468712", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -85357,9 +75759,7 @@ }, { "chartID": "fb18abcf8c90aa5d0088b2a143effc165288dc7a", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -85373,9 +75773,7 @@ }, { "chartID": "0f57b606506dbf20d59eded9c472ba9e09d8704d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -85389,9 +75787,7 @@ }, { "chartID": "207d6de729299e8e1595e04fa5e02611743b3fa5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12+", @@ -85405,9 +75801,7 @@ }, { "chartID": "b1a724306bd2840507287017adfe5f57f80ad800", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14+", @@ -85421,9 +75815,7 @@ }, { "chartID": "43ae73f4a9736bfa553650c3ac583be4a80edb8e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -85437,9 +75829,7 @@ }, { "chartID": "579a12afca67f61c54c9ac7bc2d12b62e244b606", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -85453,9 +75843,7 @@ }, { "chartID": "e39784ae32c1f0c4d6120fadde9c7c766122eab0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -85469,9 +75857,7 @@ }, { "chartID": "c5e7b713a10614ea26bfa149675fe08e9f0bb7a0", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -85485,9 +75871,7 @@ }, { "chartID": "3eb62e587b5c1b55d50f21a60e73c7ac5dd3c713", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -85501,9 +75885,7 @@ }, { "chartID": "d2ac569d22ed4445537b893daede666924fddae4", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -85517,9 +75899,7 @@ }, { "chartID": "da7558d93c2e6fb698e1381c0623b6bae782e43c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -85533,9 +75913,7 @@ }, { "chartID": "84c6edd8da6e8af6a59a41d717a7d7eadfb907c2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -85549,9 +75927,7 @@ }, { "chartID": "465ac5df857fc02780816904b44edfa5a7c31690", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -85565,9 +75941,7 @@ }, { "chartID": "a267796290005412e8eefb4a9ec4126b6e581073", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -85581,9 +75955,7 @@ }, { "chartID": "f39a7e9f5d81625fd77b7b969f9f14af3016457d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -85597,9 +75969,7 @@ }, { "chartID": "110019ac654c9a90945703e410085a8505b3680d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -85613,9 +75983,7 @@ }, { "chartID": "ea7cece9644344138edcd971b4937f7486e9a453", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -85629,9 +75997,7 @@ }, { "chartID": "e80459b76bd40bf42cc1d899ccbd33b20e653522", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -85645,9 +76011,7 @@ }, { "chartID": "d8cc602cf590b17267ca6c998067a72ef0c599f7", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -85661,9 +76025,7 @@ }, { "chartID": "11e96531e8181a6ceddfa22a143bf00f2480fd8e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -85677,9 +76039,7 @@ }, { "chartID": "4f0af3f4d7863397cde04171e2b05c91f9dee5e9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "5", @@ -85693,9 +76053,7 @@ }, { "chartID": "23f628e594399f0daac5e0783f079d40f89bf138", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -85709,9 +76067,7 @@ }, { "chartID": "fed22dd4b5107805a6a15f53411363a97c67b8e8", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -85725,9 +76081,7 @@ }, { "chartID": "199c36b58998396aedb64b9f27f984371a5de3e2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -85741,9 +76095,7 @@ }, { "chartID": "b33db1d588be2a94500367ce98d7e553a0789999", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -85757,9 +76109,7 @@ }, { "chartID": "363faec21c030c2a2f2242c21daa1589c7d41409", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -85773,9 +76123,7 @@ }, { "chartID": "5416dbb6b73d0ad4b11d2dc5a39dd0b8d7128ce5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -85789,9 +76137,7 @@ }, { "chartID": "31adedeebb258d378e0e0ae9718b0ddc2c9ef43d", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -85805,9 +76151,7 @@ }, { "chartID": "cc52fd87aa2196b0628af9431b54894f5f9922d9", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -85821,9 +76165,7 @@ }, { "chartID": "a83a61e270d6073ab02b410d5f7b69251b113d9c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -85837,9 +76179,7 @@ }, { "chartID": "9c9b0b8433f488705b884225cba5b5d975bab026", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -85853,9 +76193,7 @@ }, { "chartID": "37f434f576f0e95d454bc29548d2e82e860e371c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -85869,9 +76207,7 @@ }, { "chartID": "01733e06a216a83bb7be067b609894e199249d8c", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -85885,9 +76221,7 @@ }, { "chartID": "fae653511a937ca28de86738165e7093ce447dc5", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "6", @@ -85901,9 +76235,7 @@ }, { "chartID": "441cbb9e7c5c3bde96c99b954003c9b73636287e", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "13", @@ -85917,9 +76249,7 @@ }, { "chartID": "58120f9b3c231a84e19cad416d96d318e4e872a2", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14+", @@ -85933,9 +76263,7 @@ }, { "chartID": "2d2196d0d33f27f5b6ac4b9a1e2e937ad43c9ce1", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8+", @@ -85949,9 +76277,7 @@ }, { "chartID": "015eab66f424d7bd913beb3a1bef51e801fe6995", - "data": { - "isLatest": false - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "6", @@ -85965,9 +76291,7 @@ }, { "chartID": "88b5def1d194009d8fccfd4a019879f4a45802eb", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12+", @@ -85981,9 +76305,7 @@ }, { "chartID": "d592519617c007e81bae6233ee37e13ba016262d", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14+", @@ -85997,9 +76319,7 @@ }, { "chartID": "bcba09e278a1fb37e80b86406e83a11ec615f555", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -86012,9 +76332,7 @@ }, { "chartID": "bac813e5bb74e2b6c39eed7fd686d3b03afc7ea7", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -86027,9 +76345,7 @@ }, { "chartID": "d6515fe00669ecbad0d07027244c0f389ba3a776", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -86042,9 +76358,7 @@ }, { "chartID": "cf50398d5c06a2e499a0750b6bb843bba7686456", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -86057,9 +76371,7 @@ }, { "chartID": "0b5e66c48fee1ecfa9a38afbfcef5c11b5a13d99", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -86072,9 +76384,7 @@ }, { "chartID": "632b1e13bf48c7b308b1c06c2c93902b0b55d517", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "6", @@ -86087,9 +76397,7 @@ }, { "chartID": "c43b705ad42132a517aa7716966fa507633da577", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12+", @@ -86102,9 +76410,7 @@ }, { "chartID": "ba43d79ac01270409c6a7f64981572219fe30605", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -86117,9 +76423,7 @@ }, { "chartID": "82202b33074e1cb51ddc0e1785ec4099a3619b5a", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -86132,9 +76436,7 @@ }, { "chartID": "ed98cb70be86fab208b8f79e42cc2d9ac732e5bd", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -86147,9 +76449,7 @@ }, { "chartID": "f0c6e0522e405f7fa8c45bab909672c1ecc9be50", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -86162,9 +76462,7 @@ }, { "chartID": "328c0d3a5ce058b8880391fb6c682d498f01cefe", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -86177,9 +76475,7 @@ }, { "chartID": "709cde0c6fded6640f3a072a9252b4827597502f", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -86192,9 +76488,7 @@ }, { "chartID": "d23ca8db4511672703fb33c411587e31f4a413b2", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -86207,9 +76501,7 @@ }, { "chartID": "c348f23a83903f7f82ec0f85101bf24c9f83dd1e", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -86222,9 +76514,7 @@ }, { "chartID": "f81dc0ef17f40adfa59e0d6f99513e85f5083cbd", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -86237,9 +76527,7 @@ }, { "chartID": "ae28827abd58d5fb6ab3d716e4d8be0aa278f693", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -86252,9 +76540,7 @@ }, { "chartID": "684f1dadb44c9940f354d742a22e1512d7c912ec", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -86267,9 +76553,7 @@ }, { "chartID": "11d6bac1166bbb5db393fe3aab14599d70db294a", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -86282,9 +76566,7 @@ }, { "chartID": "4a9da1c5d94aa60fdfd3ab465a187566fc74b65b", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -86297,9 +76579,7 @@ }, { "chartID": "fb0abb3cda7314c9d57eaaca9281989cfccaf8b9", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -86312,9 +76592,7 @@ }, { "chartID": "83cfda9024c26c92c079be9207489b6d8315e199", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -86327,9 +76605,7 @@ }, { "chartID": "e5d576c7c28c6cdfeaa6e6b9373dfc36b1b7bdd9", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -86342,9 +76618,7 @@ }, { "chartID": "8e91a6ca0ee5c34bdc8c1e262b527958901759d3", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -86357,9 +76631,7 @@ }, { "chartID": "861170da9af7a838799cd7abfe47c1f1d2445895", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -86372,9 +76644,7 @@ }, { "chartID": "a916ee9e829240083f40def728bf95d694218b12", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -86387,9 +76657,7 @@ }, { "chartID": "7f36313945f95287506ca2af2e7d9e7b80beecb1", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -86402,9 +76670,7 @@ }, { "chartID": "7945e2085b83603f0373d76ac076d3eb8eeb3ad4", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -86417,9 +76683,7 @@ }, { "chartID": "e56f721129aa8312be1de22731498c45367219bc", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -86432,9 +76696,7 @@ }, { "chartID": "84fe042bd054ffd1b0df2e9e02d3c2518bd4a119", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -86447,9 +76709,7 @@ }, { "chartID": "108f7f537acc7dad6c9b48ad5ede6190d55b0925", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11+", @@ -86462,9 +76722,7 @@ }, { "chartID": "109acc19e1de2e0b6355021c40b18618b340707f", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -86477,9 +76735,7 @@ }, { "chartID": "88ed1984fa4771d5b5d3178fedecfd9a930e7486", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -86492,9 +76748,7 @@ }, { "chartID": "c2ec2740677ef73dc5a97955496f71aa4ebc1d77", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "6", @@ -86507,9 +76761,7 @@ }, { "chartID": "730a52be793b86879e03cd751f459ec0ba3181ce", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12+", @@ -86522,9 +76774,7 @@ }, { "chartID": "132e9c87fbc274a78391c9f3bffe614f4b1d5704", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14+", @@ -86537,9 +76787,7 @@ }, { "chartID": "2e51f910e83c1ca2a068913accdf8cd02a16d294", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -86552,9 +76800,7 @@ }, { "chartID": "bc3454da5175b7029bf017c6dc496cec9c77594a", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -86567,9 +76813,7 @@ }, { "chartID": "f035698c03f10438f1e8c9388d4b75a6a67ba8cd", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -86582,9 +76826,7 @@ }, { "chartID": "344c17c3b441eb49f81f6079afaba084bc1cc1d9", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -86597,9 +76839,7 @@ }, { "chartID": "022db9adc53be712a82a2c33bbc6e3f2b0f6f269", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -86612,9 +76852,7 @@ }, { "chartID": "bea667a35415b1e0b97a42555e3f7e1380a05a17", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -86627,9 +76865,7 @@ }, { "chartID": "0b5ec5b9d408dfa88136182663a693662b5e55fa", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -86642,9 +76878,7 @@ }, { "chartID": "607af77ac1fcd7fea84ea2e3414b91c9463a9478", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -86657,9 +76891,7 @@ }, { "chartID": "c3dde8ad4f867ed676d39b08a529ae38945c602c", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -86672,9 +76904,7 @@ }, { "chartID": "c3baf2407c49a2f42018111003d8b2b3a925a2c0", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -86687,9 +76917,7 @@ }, { "chartID": "1c697a57d3e825851683a4473d97fb0a505792af", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -86702,9 +76930,7 @@ }, { "chartID": "1f5c4275e078203ef2c8bd70ce3838c8bd593e47", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -86717,9 +76943,7 @@ }, { "chartID": "951c214d6049350f9cd5a0df2314a21a91fd9f19", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -86732,9 +76956,7 @@ }, { "chartID": "80c7c66fefbcc83609841f50d5205dd1c2cd80a5", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -86747,9 +76969,7 @@ }, { "chartID": "fbc2c9b0f14fb96e7270df364839da96f4c4fb86", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -86762,9 +76982,7 @@ }, { "chartID": "84538c4bc9398f062829b09d5f66333de83bfc13", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -86777,9 +76995,7 @@ }, { "chartID": "efdbae568704db36a6bb65c049f128fe938045a1", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -86792,9 +77008,7 @@ }, { "chartID": "caec2340a278fb85efe7dca0bb5f9b19f59fd7f4", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -86807,9 +77021,7 @@ }, { "chartID": "7627192e12705bc9a52fe5db4975b788e26c256b", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -86822,9 +77034,7 @@ }, { "chartID": "056955891f7ba0a0ae35cf51febe8c452a57f2fe", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -86837,9 +77047,7 @@ }, { "chartID": "bb1eb32c968186349744321e65bb4dad78918145", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -86852,9 +77060,7 @@ }, { "chartID": "a8fd30c317064dcb057f8f9a57ae51c933bf7d43", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "6", @@ -86867,9 +77073,7 @@ }, { "chartID": "12670aba4066c683bf85d10265d1e177fc9b115b", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12+", @@ -86882,9 +77086,7 @@ }, { "chartID": "f7635e6b8421515a698cb655e6a70f7a5b993106", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -86897,9 +77099,7 @@ }, { "chartID": "a5a16f1c64abe5b79ee398aaf189ec07dd223851", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -86912,9 +77112,7 @@ }, { "chartID": "ee72f2a3b2e7d8167bbc36a2e50f02d8a530bf09", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -86927,9 +77125,7 @@ }, { "chartID": "9e2c9af58086f44af547ed918630a47f8be1ef82", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11+", @@ -86942,9 +77138,7 @@ }, { "chartID": "1af79ccbc534f10f53370719eb36593af7c802ee", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -86957,9 +77151,7 @@ }, { "chartID": "811df7c71d7419e77ac45812e6e22662f1e70345", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -86972,9 +77164,7 @@ }, { "chartID": "572968a8a753a0bb2b318e5ae849fd2d77f02462", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -86987,9 +77177,7 @@ }, { "chartID": "381bc903f15d27137e6fc2d2d9d4e8e54e53a376", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -87002,9 +77190,7 @@ }, { "chartID": "5bd847639dbc6421546b769143304ee1b4adc4e6", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -87017,9 +77203,7 @@ }, { "chartID": "c43071f3e2cb013092012c25b11a35acd48fb49e", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -87032,9 +77216,7 @@ }, { "chartID": "cda1d99f643749520f4becd1572cfdc316ddb1b4", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -87047,9 +77229,7 @@ }, { "chartID": "ef73b4869b668f9d68b43a7d5bc958a522fdd2e2", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -87062,9 +77242,7 @@ }, { "chartID": "8c1a18826c5f64b65c530ff298b20bf2ac98b1c3", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -87077,9 +77255,7 @@ }, { "chartID": "96de076ca338e46142b7dbe027b5fcb138c5b152", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -87092,9 +77268,7 @@ }, { "chartID": "9f34e6c84836b3bfc853612a780ca92e20dcf170", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -87107,9 +77281,7 @@ }, { "chartID": "f1ffb6d6e5d743cfe5263244e32153710dfe5a16", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -87122,9 +77294,7 @@ }, { "chartID": "21cc350a438e6bd7db8a1fcad23f2dff1601bbb6", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -87137,9 +77307,7 @@ }, { "chartID": "dfe3f973cd8e2407659edc3f177e13f0e07bbc59", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -87152,9 +77320,7 @@ }, { "chartID": "48a6163377aa50f1230514d5e596cdb600317ebb", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -87167,9 +77333,7 @@ }, { "chartID": "451da9524f2d5b8c33fdc060993ef1d8a1c64bd1", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12+", @@ -87182,9 +77346,7 @@ }, { "chartID": "8adedc6de1f69d30a9daec1f615da9ef3e9d93c3", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -87197,9 +77359,7 @@ }, { "chartID": "973af0729703122c45997858ba32a6a815397582", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -87212,9 +77372,7 @@ }, { "chartID": "526f7c3b6fc7f4692fdd89cbd1b1ebb1292f3e13", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -87227,9 +77385,7 @@ }, { "chartID": "05840375d24dabedc1cef7d83af2bc6fa84bf973", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -87242,9 +77398,7 @@ }, { "chartID": "194adbc0e67e5911d349383c881f1c9623ca160f", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -87257,9 +77411,7 @@ }, { "chartID": "a953239685a1808c099285e09e461518d69531e9", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -87272,9 +77424,7 @@ }, { "chartID": "84789df106ecb5315217dc53ce933b934d81544f", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -87287,9 +77437,7 @@ }, { "chartID": "fc37c8019b5b3ae9a136999ff106c3966f34bd17", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -87302,9 +77450,7 @@ }, { "chartID": "f467db3060379d78ef01c89aba52e67c2fedc9b8", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "11+", @@ -87317,9 +77463,7 @@ }, { "chartID": "50e4fab103e991fad86c6a9413add5016312a848", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Re:Master", "isPrimary": true, "level": "13+", @@ -87332,9 +77476,7 @@ }, { "chartID": "904e6ce5b5500e5abaf7439b48e405cd3624fde3", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -87347,9 +77489,7 @@ }, { "chartID": "e2c90da901d9a8251a715a2f94126ab8beb4dd0c", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -87362,9 +77502,7 @@ }, { "chartID": "18f30ecd1fc152281a2b2051e33c7aa61a90a116", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -87377,9 +77515,7 @@ }, { "chartID": "11005ea237584a4beacd5fff8e17a42ce39bf28b", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -87392,9 +77528,7 @@ }, { "chartID": "b01077de002c651405abc33cd14bde8b44bbdbb0", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -87407,9 +77541,7 @@ }, { "chartID": "537250cb7e38aefb00d02734059cf110366f2100", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -87422,9 +77554,7 @@ }, { "chartID": "bd75f31095ebf4e387ba1c35893a148952cf3ecc", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -87437,9 +77567,7 @@ }, { "chartID": "159b0511c147c4e23614297e477d6a1ba8b42d58", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -87452,9 +77580,7 @@ }, { "chartID": "4b2e8fd7322a005beda270ad68a4e534f4a86d10", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -87467,9 +77593,7 @@ }, { "chartID": "f8d8853b1c48ea89d769d2078b9be41cedf2ccf6", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -87482,9 +77606,7 @@ }, { "chartID": "dcf2ab38bea4fc868f52a04ca84a33fa28b7237a", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -87497,9 +77619,7 @@ }, { "chartID": "66791049b131ec70bce57485397b874b8c721aff", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -87512,9 +77632,7 @@ }, { "chartID": "05e5516f9f298788cccde95c7f768de803569505", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -87527,9 +77645,7 @@ }, { "chartID": "b3976248529cca51e0fcf979888ed6e3d328d6e3", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -87542,9 +77658,7 @@ }, { "chartID": "cad84bd6722f2cc9148661bcca4adb9e07cfd433", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11+", @@ -87557,9 +77671,7 @@ }, { "chartID": "114261f96aeadb2e9d478e6074b027e62384137c", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -87572,9 +77684,7 @@ }, { "chartID": "7ea578295235bffbaca9d29b73c3c15dae188424", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -87587,9 +77697,7 @@ }, { "chartID": "cf5ea2c60c0b779cefedcecffe802b61d92eca94", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -87602,9 +77710,7 @@ }, { "chartID": "ede9923896213147719d48d25ddf9aa58a490fbe", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -87617,9 +77723,7 @@ }, { "chartID": "5bc9a7275dd7325b2c804ddf501a5130f64abcae", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "11+", @@ -87632,9 +77736,7 @@ }, { "chartID": "c4acf223e569adcaf948c2e9adf58888dd543ac6", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Re:Master", "isPrimary": true, "level": "13+", @@ -87647,9 +77749,7 @@ }, { "chartID": "4f0c73f91350a244148033464905d2b604fd82a3", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -87662,9 +77762,7 @@ }, { "chartID": "3282d9005bc434618143fe11f60ed16fe5b5488c", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -87677,9 +77775,7 @@ }, { "chartID": "9a4fd4c5d6b7fe18d5f3d51297eee5de8dfc6d69", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -87692,9 +77788,7 @@ }, { "chartID": "b36bf071bbbfa2bf2ea849d564059e58bf7e2e77", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -87707,9 +77801,7 @@ }, { "chartID": "1823aebee7df43aa3f626b80d81d285eb457f86a", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -87722,9 +77814,7 @@ }, { "chartID": "e1026cb28aa0e4161bd0e9bdbb063631ddabebf5", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -87737,9 +77827,7 @@ }, { "chartID": "55510e9c19b7c80558c24ba666112edfbec3c6a4", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -87752,9 +77840,7 @@ }, { "chartID": "3103d5f3e5ba59dac1ca1fd84345ac777440ffc2", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -87767,9 +77853,7 @@ }, { "chartID": "8f3036ca282f91b0b7eed890739c0286afb6f42c", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -87782,9 +77866,7 @@ }, { "chartID": "8dfb93f698498c6801f3c546bdb67b2f6fdb8614", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -87797,9 +77879,7 @@ }, { "chartID": "18e8d75424437dbe3d9726defd6acc63e1be1794", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -87812,9 +77892,7 @@ }, { "chartID": "93cfaa1bf9e2f4263d1cb30bd2caa61583cf846e", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "11+", @@ -87827,9 +77905,7 @@ }, { "chartID": "ba7d48dda32c43ac150ff237d1e0a88ad3e0c830", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Re:Master", "isPrimary": true, "level": "13+", @@ -87842,9 +77918,7 @@ }, { "chartID": "6a9b839a41888e7b584db6108d25162a2686910c", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -87857,9 +77931,7 @@ }, { "chartID": "c6d79a377c830a6f4092559b317273e09ebda4c1", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -87872,9 +77944,7 @@ }, { "chartID": "3b0ab9a64b922f1aa2bcb5bda90828d52ca1a95b", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11+", @@ -87887,9 +77957,7 @@ }, { "chartID": "582342b54824719ce475d715bf8832255998ffc9", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -87902,9 +77970,7 @@ }, { "chartID": "5e77e871e8ab130514f8b44ebbdddffeacec8bde", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -87917,9 +77983,7 @@ }, { "chartID": "c0be34798e6326f9b70e50ccc91484628c76967f", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -87932,9 +77996,7 @@ }, { "chartID": "19382d75863c9929a0164479a4a478db428d1545", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -87947,9 +78009,7 @@ }, { "chartID": "4778af7c34e74ac24496f8e70826117e7a47ecc3", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -87962,9 +78022,7 @@ }, { "chartID": "442c2cf03b89842f9b70a9cfb89928d8000e6a95", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -87977,9 +78035,7 @@ }, { "chartID": "78b36cb1ab13776afc5eb26789c60fca34e5c8be", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -87992,9 +78048,7 @@ }, { "chartID": "ea09fc8377b56ee70166b39fd9d47800b8aa5416", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -88007,9 +78061,7 @@ }, { "chartID": "4493bc7177f6e85151814a335e2337df6bf75b89", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -88022,9 +78074,7 @@ }, { "chartID": "85fc84b92f1d516b3b01462c05605e43f9f09fa7", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -88037,9 +78087,7 @@ }, { "chartID": "7d29e140017c592d07198bdaa9eff3765fd7eac8", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -88052,9 +78100,7 @@ }, { "chartID": "5edd960006558edf948313a3cbe2ee253d6f105b", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -88067,9 +78113,7 @@ }, { "chartID": "4918e7700db603113dc765ec938d74a6878e2765", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -88082,9 +78126,7 @@ }, { "chartID": "8ffdbfb83c938c3ec7967b0bdd6f09a574620447", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -88097,9 +78139,7 @@ }, { "chartID": "be777838a534762ad9fe78f04e027569f77dd955", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -88112,9 +78152,7 @@ }, { "chartID": "341570abb9f28078e2748074a18f558c8031ee8f", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11+", @@ -88127,9 +78165,7 @@ }, { "chartID": "5a5450187a6344f03e52d87eabc77e3b75405cec", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -88142,9 +78178,7 @@ }, { "chartID": "9eb44aeb85e174aced0161444138c4c103c6bcf2", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -88157,9 +78191,7 @@ }, { "chartID": "09b1ebc49de9c746abdb9342abc7b4cc08454126", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "6", @@ -88172,9 +78204,7 @@ }, { "chartID": "92d08772bd0a2126e2ea89a769fab412e7a02cd3", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -88187,9 +78217,7 @@ }, { "chartID": "28a81b6dbff284b7e72a6b59d134915bf3577782", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -88202,9 +78230,7 @@ }, { "chartID": "e5cd40c5d7ba61e0426e269ad3b6ef1bbc65b09b", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -88217,9 +78243,7 @@ }, { "chartID": "8fa30bfdc91cb9bf7813101b81445f8d42d8c2fb", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -88232,9 +78256,7 @@ }, { "chartID": "5c8c2b724ebb293171fe0ae7196e00d7e6aa9a27", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -88247,9 +78269,7 @@ }, { "chartID": "77d38f272524267ea994f3c5b05bd1887e07a4c3", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12", @@ -88262,9 +78282,7 @@ }, { "chartID": "f4dac02669c6c2eb832aff060d8aa1270e5869c0", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -88277,9 +78295,7 @@ }, { "chartID": "191f8ecf2df03c58541bf9c4e85c70ba12d8a0ff", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -88292,9 +78308,7 @@ }, { "chartID": "04d137e7569545d769ad688d1a42fb68793ddf95", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -88307,9 +78321,7 @@ }, { "chartID": "37e76b6d82f7f7654eead7f8d4583d09a1003cb2", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -88322,9 +78334,7 @@ }, { "chartID": "48256719afd2bee0d237dce5d6766b6ae0e11c26", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8+", @@ -88337,9 +78347,7 @@ }, { "chartID": "def1a3d135cf1c4fc024f6068ef5f53b8f1a67e1", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "6", @@ -88352,9 +78360,7 @@ }, { "chartID": "f82a47fdf967f04e5628107902e8e0215307e025", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12+", @@ -88367,9 +78373,7 @@ }, { "chartID": "9096ddfc2bdcd54ead3b57cfa16a8f72bc980f0e", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -88382,9 +78386,7 @@ }, { "chartID": "9b7f134fc78d3a820800e4433daa7eda99f9f19d", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8+", @@ -88397,9 +78399,7 @@ }, { "chartID": "4d6a9055161973d9dadddc6018743626e88179b0", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "6", @@ -88412,9 +78412,7 @@ }, { "chartID": "02bc2897d049934dfe8b1679b9dd925a94857a91", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12+", @@ -88427,9 +78425,7 @@ }, { "chartID": "f6a5704b666ce23ebeb52bb189b5a4bce1167f24", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -88442,9 +78438,7 @@ }, { "chartID": "bdbcd362318950535f64dd236465451b24d0afde", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -88457,9 +78451,7 @@ }, { "chartID": "1bbe0fcb66d4c4ad442389a2b8c57c5a476e0b81", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "5", @@ -88472,9 +78464,7 @@ }, { "chartID": "a29a707b77c6edcb9685a420c8087392bc499cc5", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -88487,9 +78477,7 @@ }, { "chartID": "945106332ee8c3afe405e454cf932fbb42c24970", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -88502,9 +78490,7 @@ }, { "chartID": "3c83e1fc370d90bd6c120870a5724d17fc7fc0a8", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8+", @@ -88517,9 +78503,7 @@ }, { "chartID": "fd46d1349340130cd487401a953ecc707407000f", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "7", @@ -88532,9 +78516,7 @@ }, { "chartID": "9dd0bf022ce2f68116896a9fde9d735573c979aa", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "13", @@ -88547,9 +78529,7 @@ }, { "chartID": "4d51febb0b716b5f5f2d0c1c18a30345f3508a4b", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14+", @@ -88562,9 +78542,7 @@ }, { "chartID": "35efe7c5ba80980388031930f06dbf66e6299c1b", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8+", @@ -88577,9 +78555,7 @@ }, { "chartID": "cdb5b93ea0bd2e323e66cdb67267d7df2e6da01a", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "7", @@ -88592,9 +78568,7 @@ }, { "chartID": "1fac725e2aeabc270b38edb0a32b095eec0e7b50", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "13+", @@ -88607,9 +78581,7 @@ }, { "chartID": "e9005d9c6bf9a40d55cc8be0d5db62cbcf65e17f", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14+", @@ -88622,9 +78594,7 @@ }, { "chartID": "4b21a6cec263ddc158dd435b39a79f5d40c95c20", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -88637,9 +78607,7 @@ }, { "chartID": "7d531d0abab12d9e471eae62515a6f540aa0c6d1", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -88652,9 +78620,7 @@ }, { "chartID": "7d3179fb8fadf75b09a61c33be7921343014f7ca", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -88667,9 +78633,7 @@ }, { "chartID": "cd3e4249f5dcd411ad17e50615b3ceb251b8b639", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -88682,9 +78646,7 @@ }, { "chartID": "8e8be3a500636dc9181763e0d642695f807e2143", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -88697,9 +78659,7 @@ }, { "chartID": "9fd5c711f1ac036d07464e37f0a01daeca652aca", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -88712,9 +78672,7 @@ }, { "chartID": "3f2060f19b992057173da24b662f5aba5ab176cb", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -88727,9 +78685,7 @@ }, { "chartID": "d25ed7c4ea431f1aa0855cea4ba725faceca506c", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -88742,9 +78698,7 @@ }, { "chartID": "b929a3bfd2a85da93622d46029a89cb50df0d45c", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -88757,9 +78711,7 @@ }, { "chartID": "b62d1fba46c2b291329019a14f99c1fd625f63a3", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -88772,9 +78724,7 @@ }, { "chartID": "2bbe67bcae51cb1047db50b3e2db3b1c10b70d8c", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -88787,9 +78737,7 @@ }, { "chartID": "9daa95158ed7a72bc664dc1501cac1142f77c743", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -88802,9 +78750,7 @@ }, { "chartID": "2a89440796b401ef33f46df6d23303acb02613b9", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -88817,9 +78763,7 @@ }, { "chartID": "691572989c28fbc065ae346debde6a2cd84c1cbd", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -88832,9 +78776,7 @@ }, { "chartID": "8f2c643017cbb4a7a8dc175ffb73f1c69d8e1e85", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -88847,9 +78789,7 @@ }, { "chartID": "8a8c378d04034828b5acbf1b1797d4e82186a337", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -88862,9 +78802,7 @@ }, { "chartID": "45560d64a2194265bf93b48fea284df669883995", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -88877,9 +78815,7 @@ }, { "chartID": "ef51b03e1f112e1876f828c45b583bedb5e101cb", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -88892,9 +78828,7 @@ }, { "chartID": "e6ee219f780e3564b104529791935c864952bc9f", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -88907,9 +78841,7 @@ }, { "chartID": "9ac9e29f8a7a173f4e52ea07ffad801da9f71372", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -88922,9 +78854,7 @@ }, { "chartID": "6987672293857ed8540e0190924352026ee6c9a0", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -88937,9 +78867,7 @@ }, { "chartID": "6e63fc6602b0bc71d64881857c5e74e865d8f166", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -88952,9 +78880,7 @@ }, { "chartID": "1e4cf541d4334ce0a457b4e1aa2101413e0d3b4c", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -88967,9 +78893,7 @@ }, { "chartID": "05892e7967aaf69751332baafdb9404959fe3fad", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -88982,9 +78906,7 @@ }, { "chartID": "a81672591c8a554b7696daa1be1cddee343469dd", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -88997,9 +78919,7 @@ }, { "chartID": "39e8a0c0baf30e37a707ae9529e08439240c27bf", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -89012,9 +78932,7 @@ }, { "chartID": "ea639405d37cdbbdbe7a609fac5f5170912471fc", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -89027,9 +78945,7 @@ }, { "chartID": "681330fd1de69ab383b513545631195a87db4c37", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -89042,9 +78958,7 @@ }, { "chartID": "e7b5b4cdab9e0c57cc06a98cabc70fdb1f2a5214", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -89057,9 +78971,7 @@ }, { "chartID": "b4c8302af5dea125b0e8d2c2053f9ac3ae6bc1d1", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -89072,9 +78984,7 @@ }, { "chartID": "0abbb20e684ca20e4112ecf353d542a911180777", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -89087,9 +78997,7 @@ }, { "chartID": "9215d749b622adadc6754867e0943c5faa771cb9", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -89102,9 +79010,7 @@ }, { "chartID": "77aba7d3183209bcc7b45b317f61baa7170f5e23", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -89117,9 +79023,7 @@ }, { "chartID": "49f47c53bd8f52a2290abbca8faca0124927b0f5", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -89132,9 +79036,7 @@ }, { "chartID": "3e00cccd5e475926aabd7176cde4250fe908d1ec", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -89147,9 +79049,7 @@ }, { "chartID": "74348cb985944a9faafd81b79a6eed3ec61cd785", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -89162,9 +79062,7 @@ }, { "chartID": "2cf81c814316a71e0b457ab2f7667cdb75305476", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -89177,9 +79075,7 @@ }, { "chartID": "65fb473e72de748bc73c8f37f1d8c096e6f4df47", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -89192,9 +79088,7 @@ }, { "chartID": "dc345a14893a9be4fc2329d22bc1bf21621cdfc8", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -89207,9 +79101,7 @@ }, { "chartID": "72ca58caaef7e36ab028e5b8d0c278db078d605a", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -89222,9 +79114,7 @@ }, { "chartID": "0d6b0ecfafdc314db2358d5a02cb46fadee384f5", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -89237,9 +79127,7 @@ }, { "chartID": "bee54f26affaadaa8fdb8f4e56923641ec385ed1", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -89252,9 +79140,7 @@ }, { "chartID": "c1d8a18f634dfdb8c5247f1f9f9efcd85cc3a865", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11+", @@ -89267,9 +79153,7 @@ }, { "chartID": "139bee36a2a8c2e6b198b5ea018828b8ff4ee412", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -89282,9 +79166,7 @@ }, { "chartID": "a41da982abf00c22e144f099c063bc31de7ddc1f", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -89297,9 +79179,7 @@ }, { "chartID": "089416cc16de063c3a2b0c5dd9ea17dc225dc4ba", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -89312,9 +79192,7 @@ }, { "chartID": "930530f67ca44c4b68d276901e97e5fcf2f81f78", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11+", @@ -89327,9 +79205,7 @@ }, { "chartID": "975f0f015a6688058acc20e4baccd980cbe84978", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -89342,9 +79218,7 @@ }, { "chartID": "d8a763b9f74e95dc9aa11e06cf4053840ac4b114", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -89357,9 +79231,7 @@ }, { "chartID": "37c1341f7ebd39bf11d0329c7bac042be04c040d", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -89372,9 +79244,7 @@ }, { "chartID": "99b0721a127ad06a3be8c8b43d8629d57d0ac864", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -89387,9 +79257,7 @@ }, { "chartID": "6a2566f731f0407cdc94de84065af5fe06070a0f", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14+", @@ -89402,9 +79270,7 @@ }, { "chartID": "0ca51c82e272299fec0ce177b7216bc0da69317a", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -89417,9 +79283,7 @@ }, { "chartID": "6ac2ba09eb4b76eac72dae827d555a1148de1f81", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -89432,9 +79296,7 @@ }, { "chartID": "02942bc3ad259bd37f5c0905d8fdb8453ae527c2", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -89447,9 +79309,7 @@ }, { "chartID": "92897e639f4636e9fe1a52d65ee0196d79b7e724", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -89462,9 +79322,7 @@ }, { "chartID": "541d6aa2208ce17fb766c289c9ebf01109534a8c", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7+", @@ -89477,9 +79335,7 @@ }, { "chartID": "bfb6755243feb53e8aa989b1d30dbe04212e6907", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -89492,9 +79348,7 @@ }, { "chartID": "5935de4a0f72a6ab3e71b4c104dcc3a097602bc1", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11", @@ -89507,9 +79361,7 @@ }, { "chartID": "65463a38cb01577298770ec7eea72fdaabcdb3d5", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -89522,9 +79374,7 @@ }, { "chartID": "b8264112e15abdca59a32eee147a8792ed9ba822", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -89537,9 +79387,7 @@ }, { "chartID": "f183ec64bf28d13823e07c648e676b5b41e8babb", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -89552,9 +79400,7 @@ }, { "chartID": "cdaec98d4c32775c3e99d37a4a8efcec1877ad08", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -89567,9 +79413,7 @@ }, { "chartID": "e151e4bd6fe64e55604ecc69a08d888e7fa7d40e", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14", @@ -89582,9 +79426,7 @@ }, { "chartID": "2de2dbd1d3116df35173b84acdd6e2f6bf24da48", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -89597,9 +79439,7 @@ }, { "chartID": "a7a385fe40c084c45a6c9d519bd1f98ee9b71b1b", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -89612,9 +79452,7 @@ }, { "chartID": "ffaf8f3e79bd2cfb32adbfb18e4ae989b1b3f822", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -89627,9 +79465,7 @@ }, { "chartID": "e167a037f73f27e38370e9a30674a18adc6f0761", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -89642,9 +79478,7 @@ }, { "chartID": "b7f010e94bbd26ad9c705b4e0112dfefd92e0689", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -89657,9 +79491,7 @@ }, { "chartID": "603796412f52a90cb25f5b4774012019a0ec01ba", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "1", @@ -89672,9 +79504,7 @@ }, { "chartID": "07aa291b02fb8c4602198d03feeb13ea61c9c7ee", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9", @@ -89687,9 +79517,7 @@ }, { "chartID": "5f57863fb89fd39e6124b75653fc86b4bdc50c95", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -89702,9 +79530,7 @@ }, { "chartID": "963a6f87dd58a658332b086a80c50863ed60baac", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -89717,9 +79543,7 @@ }, { "chartID": "f9a01098aecff716ac7e8191b6c2e00b7bfbbf9d", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -89732,9 +79556,7 @@ }, { "chartID": "ab0bb3ecdbcc96c703d47de08bf11105dfa1a5b9", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "11+", @@ -89747,9 +79569,7 @@ }, { "chartID": "8bb65b8444025c9763282957eab723d453ba0b25", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", @@ -89762,9 +79582,7 @@ }, { "chartID": "3adc751c26ba28fd8ac748c4fc399e6ae8820cb8", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8+", @@ -89777,9 +79595,7 @@ }, { "chartID": "7b167362649b6106992317f366bd1d20919e5025", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -89792,9 +79608,7 @@ }, { "chartID": "c42ce80043b9249d567bd196de837c62f9e24fba", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "12", @@ -89807,9 +79621,7 @@ }, { "chartID": "79b6ebc915becd392ac7176566e481c026b55b51", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13+", @@ -89822,9 +79634,7 @@ }, { "chartID": "e3fdcadb0ef150d93a300f4bc130f0892947a971", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "10", @@ -89837,9 +79647,7 @@ }, { "chartID": "49f02280b2a5f4cc4086c7fe543f2d595d1a5e3e", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "7", @@ -89852,9 +79660,7 @@ }, { "chartID": "6a252126d11b6b5338ad6c193666cd90bf19efa8", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "13+", @@ -89867,9 +79673,7 @@ }, { "chartID": "042779355b4b6838f601506d5bd0995b4262db82", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14+", @@ -89882,9 +79686,7 @@ }, { "chartID": "a32e56e5d2b0b6eaba41c126bd2a2f00a0151348", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Re:Master", "isPrimary": true, "level": "15", @@ -89897,9 +79699,7 @@ }, { "chartID": "4dd57ec74ec451e1e38e8e707ad25ba908a744b0", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "8", @@ -89912,9 +79712,7 @@ }, { "chartID": "769cf460ccb09b63addf2fe17fa624f80e3ddc2b", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "6", @@ -89927,9 +79725,7 @@ }, { "chartID": "f70664c128fad6b63a9157fcfceb730b439dfc6c", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "13", @@ -89942,9 +79738,7 @@ }, { "chartID": "1ca11f6eafac846450004856f1ba99699276a0ff", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "14+", @@ -89957,9 +79751,7 @@ }, { "chartID": "60f67a207732afda6e9432e79814aedd5b2f71d7", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -89972,9 +79764,7 @@ }, { "chartID": "5e8ad41875b7afee88e1060aba227c91149368fd", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "3", @@ -89987,9 +79777,7 @@ }, { "chartID": "65854f4a50fc860134b0eeca25418538f112b374", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10", @@ -90002,9 +79790,7 @@ }, { "chartID": "716f59ca94bad047ad6d93e15969a3803a6dc3de", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -90017,9 +79803,7 @@ }, { "chartID": "ebb7fcf596ca32593154ab3aadb0160b71b3db5d", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "6", @@ -90032,9 +79816,7 @@ }, { "chartID": "9bcc2bed605f3b1760859a0e2a5e0e555eccdf93", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "2", @@ -90047,9 +79829,7 @@ }, { "chartID": "c996efd1d9d7b1228a0407be95a52a3fcd200602", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "9+", @@ -90062,9 +79842,7 @@ }, { "chartID": "f4a8d23b4eec50def8211e73b4ae150a45035fc6", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "12+", @@ -90077,9 +79855,7 @@ }, { "chartID": "375c384d70f6c631fe8c8c51dc6ee803127f4f21", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Advanced", "isPrimary": true, "level": "7", @@ -90092,9 +79868,7 @@ }, { "chartID": "aafd2321356beca395199ce42d87bf81541c8128", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Basic", "isPrimary": true, "level": "4", @@ -90107,9 +79881,7 @@ }, { "chartID": "f4172205c51ec376cce2524564a5c349dbb5985a", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Expert", "isPrimary": true, "level": "10+", @@ -90122,9 +79894,7 @@ }, { "chartID": "6aaab45d7bf84b983efdda82546a74633a2b56ef", - "data": { - "isLatest": true - }, + "data": {}, "difficulty": "DX Master", "isPrimary": true, "level": "13", diff --git a/database-seeds/collections/charts-wacca.json b/database-seeds/collections/charts-wacca.json index 91e76d714..53a090be2 100644 --- a/database-seeds/collections/charts-wacca.json +++ b/database-seeds/collections/charts-wacca.json @@ -2,8 +2,7 @@ { "chartID": "eff4fbe0089023c4636fe3c252110cbdffdc0083", "data": { - "inGameID": 3030, - "isHot": true + "inGameID": 3030 }, "difficulty": "EXPERT", "isPrimary": true, @@ -18,8 +17,7 @@ { "chartID": "336c1118cf87342549a84f5f6ecabbfdbcb80bb2", "data": { - "inGameID": 3030, - "isHot": true + "inGameID": 3030 }, "difficulty": "HARD", "isPrimary": true, @@ -34,8 +32,7 @@ { "chartID": "27ee6cbae89f988334b117d769d7d94b3156b2a3", "data": { - "inGameID": 3030, - "isHot": true + "inGameID": 3030 }, "difficulty": "NORMAL", "isPrimary": true, @@ -50,8 +47,7 @@ { "chartID": "d2ab0a38da3d5ad43e90536e8e6810397221f513", "data": { - "inGameID": 2204, - "isHot": true + "inGameID": 2204 }, "difficulty": "EXPERT", "isPrimary": true, @@ -66,8 +62,7 @@ { "chartID": "420b546ad1794e4d987a2339b33323640e96f64a", "data": { - "inGameID": 2204, - "isHot": true + "inGameID": 2204 }, "difficulty": "HARD", "isPrimary": true, @@ -82,8 +77,7 @@ { "chartID": "a712bac8e9d803e29832a4c54532e0c8e5a41e1e", "data": { - "inGameID": 2204, - "isHot": true + "inGameID": 2204 }, "difficulty": "INFERNO", "isPrimary": true, @@ -98,8 +92,7 @@ { "chartID": "7fad53f405f58f618836037bec5234ea83ad9267", "data": { - "inGameID": 2204, - "isHot": true + "inGameID": 2204 }, "difficulty": "NORMAL", "isPrimary": true, @@ -114,8 +107,7 @@ { "chartID": "ede3270470924639573dcc83c4857e0c819f4c23", "data": { - "inGameID": 3023, - "isHot": true + "inGameID": 3023 }, "difficulty": "EXPERT", "isPrimary": true, @@ -130,8 +122,7 @@ { "chartID": "849273b3af4b65846b61df7bf2d6935d114154e1", "data": { - "inGameID": 3023, - "isHot": true + "inGameID": 3023 }, "difficulty": "HARD", "isPrimary": true, @@ -146,8 +137,7 @@ { "chartID": "3d494364906690c7fdb62d6b3bf3c49463ad4e77", "data": { - "inGameID": 3023, - "isHot": true + "inGameID": 3023 }, "difficulty": "INFERNO", "isPrimary": true, @@ -162,8 +152,7 @@ { "chartID": "5d6c6cc0aec820e42a98ed827f3b60724ed26ea1", "data": { - "inGameID": 3023, - "isHot": true + "inGameID": 3023 }, "difficulty": "NORMAL", "isPrimary": true, @@ -178,8 +167,7 @@ { "chartID": "15f1ae5248fa57948369742b494913b7a99f38d3", "data": { - "inGameID": 3027, - "isHot": true + "inGameID": 3027 }, "difficulty": "EXPERT", "isPrimary": true, @@ -194,8 +182,7 @@ { "chartID": "fde641cac5ce001093c615363791797c20d34fca", "data": { - "inGameID": 3027, - "isHot": true + "inGameID": 3027 }, "difficulty": "HARD", "isPrimary": true, @@ -210,8 +197,7 @@ { "chartID": "7bd4d21931648d830c2beede2c6fc8c6ac098e0a", "data": { - "inGameID": 3027, - "isHot": true + "inGameID": 3027 }, "difficulty": "NORMAL", "isPrimary": true, @@ -226,8 +212,7 @@ { "chartID": "e325b8ef59cacc1022d8f34ff405dc85c8095fd6", "data": { - "inGameID": 3042, - "isHot": true + "inGameID": 3042 }, "difficulty": "EXPERT", "isPrimary": true, @@ -242,8 +227,7 @@ { "chartID": "1e9b70b5d855b9598af347dfdc4a2e9f3c5aef2c", "data": { - "inGameID": 3042, - "isHot": true + "inGameID": 3042 }, "difficulty": "HARD", "isPrimary": true, @@ -258,8 +242,7 @@ { "chartID": "c6826a3b6c5e18435b2e4a9a0175c68999c0f2a2", "data": { - "inGameID": 3042, - "isHot": true + "inGameID": 3042 }, "difficulty": "NORMAL", "isPrimary": true, @@ -274,8 +257,7 @@ { "chartID": "7fa89d8614a8a9d4227a2637e92e0911415f423e", "data": { - "inGameID": 3039, - "isHot": true + "inGameID": 3039 }, "difficulty": "EXPERT", "isPrimary": true, @@ -290,8 +272,7 @@ { "chartID": "da559b03d79c6d23511be20dc7afb4d1002ba1da", "data": { - "inGameID": 3039, - "isHot": true + "inGameID": 3039 }, "difficulty": "HARD", "isPrimary": true, @@ -306,8 +287,7 @@ { "chartID": "1d6ae5f08c1afe879fc6d0dfedc2bd97c12e74c8", "data": { - "inGameID": 3039, - "isHot": true + "inGameID": 3039 }, "difficulty": "NORMAL", "isPrimary": true, @@ -322,8 +302,7 @@ { "chartID": "216bd9be049086be0aedb94baeb8080c708621b6", "data": { - "inGameID": 3038, - "isHot": true + "inGameID": 3038 }, "difficulty": "EXPERT", "isPrimary": true, @@ -338,8 +317,7 @@ { "chartID": "63156b5865ab8863db7d155884ee6cf9b237dc7a", "data": { - "inGameID": 3038, - "isHot": true + "inGameID": 3038 }, "difficulty": "HARD", "isPrimary": true, @@ -354,8 +332,7 @@ { "chartID": "ade2212bda39fc4f1e5f0ff967758560aa919e8b", "data": { - "inGameID": 3038, - "isHot": true + "inGameID": 3038 }, "difficulty": "NORMAL", "isPrimary": true, @@ -370,8 +347,7 @@ { "chartID": "cf8544bc5113f6d5036ecc9fc4e45e7e09899867", "data": { - "inGameID": 3037, - "isHot": true + "inGameID": 3037 }, "difficulty": "EXPERT", "isPrimary": true, @@ -386,8 +362,7 @@ { "chartID": "c0c9f0f49788d919c4c5d084429b5c49a518cb38", "data": { - "inGameID": 3037, - "isHot": true + "inGameID": 3037 }, "difficulty": "HARD", "isPrimary": true, @@ -402,8 +377,7 @@ { "chartID": "92a7984930d0e488a398259413c2e515ca799fe5", "data": { - "inGameID": 3037, - "isHot": true + "inGameID": 3037 }, "difficulty": "NORMAL", "isPrimary": true, @@ -418,8 +392,7 @@ { "chartID": "751a1c796d307c65672b6d7861e28509e2b30bb2", "data": { - "inGameID": 3036, - "isHot": true + "inGameID": 3036 }, "difficulty": "EXPERT", "isPrimary": true, @@ -434,8 +407,7 @@ { "chartID": "96907b2fdf11cbd6c145752300b66fce2ad4dacb", "data": { - "inGameID": 3036, - "isHot": true + "inGameID": 3036 }, "difficulty": "HARD", "isPrimary": true, @@ -450,8 +422,7 @@ { "chartID": "7bc0268ea5aee203b525ba8a11a003887c109b09", "data": { - "inGameID": 3036, - "isHot": true + "inGameID": 3036 }, "difficulty": "NORMAL", "isPrimary": true, @@ -466,8 +437,7 @@ { "chartID": "966d200be3ff52c7cd52ca84c5f23ca572e13e69", "data": { - "inGameID": 3041, - "isHot": true + "inGameID": 3041 }, "difficulty": "EXPERT", "isPrimary": true, @@ -482,8 +452,7 @@ { "chartID": "7f1aa5d0050cc84dd2b1778452064bed192df856", "data": { - "inGameID": 3041, - "isHot": true + "inGameID": 3041 }, "difficulty": "HARD", "isPrimary": true, @@ -498,8 +467,7 @@ { "chartID": "1094e6065989be54065619eb6719a4c84d78a48d", "data": { - "inGameID": 3041, - "isHot": true + "inGameID": 3041 }, "difficulty": "NORMAL", "isPrimary": true, @@ -514,8 +482,7 @@ { "chartID": "d2a24be66b26bd9b2349b3c31ef4982c9f17eff2", "data": { - "inGameID": 3040, - "isHot": true + "inGameID": 3040 }, "difficulty": "EXPERT", "isPrimary": true, @@ -530,8 +497,7 @@ { "chartID": "d511594852971b702b2ad8a0f7511109c8f3d613", "data": { - "inGameID": 3040, - "isHot": true + "inGameID": 3040 }, "difficulty": "HARD", "isPrimary": true, @@ -546,8 +512,7 @@ { "chartID": "8e75afa5e355a273a6118fc98103d77c9eeb2beb", "data": { - "inGameID": 3040, - "isHot": true + "inGameID": 3040 }, "difficulty": "NORMAL", "isPrimary": true, @@ -562,8 +527,7 @@ { "chartID": "0122ce50e99397b493147e301fb6fc758f8a5a3f", "data": { - "inGameID": 2238, - "isHot": true + "inGameID": 2238 }, "difficulty": "EXPERT", "isPrimary": true, @@ -578,8 +542,7 @@ { "chartID": "0c6cea690a5b6ddcbb0b202527880ca2581102f1", "data": { - "inGameID": 2238, - "isHot": true + "inGameID": 2238 }, "difficulty": "HARD", "isPrimary": true, @@ -594,8 +557,7 @@ { "chartID": "844ea0e1bdf403dd5eaa35cd1b467a05650f2b7e", "data": { - "inGameID": 2238, - "isHot": true + "inGameID": 2238 }, "difficulty": "NORMAL", "isPrimary": true, @@ -610,8 +572,7 @@ { "chartID": "7da30dd905e955b6d9b1d50e6c577bb0ac03c39f", "data": { - "inGameID": 1032, - "isHot": true + "inGameID": 1032 }, "difficulty": "EXPERT", "isPrimary": true, @@ -626,8 +587,7 @@ { "chartID": "03d386e11e498020dd470dd06579f1eadf0cca0c", "data": { - "inGameID": 1032, - "isHot": true + "inGameID": 1032 }, "difficulty": "HARD", "isPrimary": true, @@ -642,8 +602,7 @@ { "chartID": "9b78c8dea0798a69119eebee36e1305ce16ba207", "data": { - "inGameID": 1032, - "isHot": true + "inGameID": 1032 }, "difficulty": "NORMAL", "isPrimary": true, @@ -658,8 +617,7 @@ { "chartID": "6ee69f7b2b2f2bc58679a7d70bffac14e317b729", "data": { - "inGameID": 3025, - "isHot": true + "inGameID": 3025 }, "difficulty": "EXPERT", "isPrimary": true, @@ -674,8 +632,7 @@ { "chartID": "ccbbfeb38695a9f703f65d572b8e4e5ee3a66642", "data": { - "inGameID": 3025, - "isHot": true + "inGameID": 3025 }, "difficulty": "HARD", "isPrimary": true, @@ -690,8 +647,7 @@ { "chartID": "0e098e134b9dd30f8a59067299882cb66f8e81e0", "data": { - "inGameID": 3025, - "isHot": true + "inGameID": 3025 }, "difficulty": "NORMAL", "isPrimary": true, @@ -706,8 +662,7 @@ { "chartID": "23bb720a98b733806368914741778614e49693d4", "data": { - "inGameID": 3035, - "isHot": true + "inGameID": 3035 }, "difficulty": "EXPERT", "isPrimary": true, @@ -722,8 +677,7 @@ { "chartID": "02ea10d1347316d115063af94bbf6294f1c3398b", "data": { - "inGameID": 3035, - "isHot": true + "inGameID": 3035 }, "difficulty": "HARD", "isPrimary": true, @@ -738,8 +692,7 @@ { "chartID": "6d087e71c8ecea781270cff2be3617802396e950", "data": { - "inGameID": 3035, - "isHot": true + "inGameID": 3035 }, "difficulty": "NORMAL", "isPrimary": true, @@ -754,8 +707,7 @@ { "chartID": "967b608d762a06a25bdb4747b13a6ca33a61cdf3", "data": { - "inGameID": 3024, - "isHot": true + "inGameID": 3024 }, "difficulty": "EXPERT", "isPrimary": true, @@ -770,8 +722,7 @@ { "chartID": "c4b86a5d579c9e8ce0d5e9828a58ed6ecef058e3", "data": { - "inGameID": 3024, - "isHot": true + "inGameID": 3024 }, "difficulty": "HARD", "isPrimary": true, @@ -786,8 +737,7 @@ { "chartID": "afed96d5439b6a2bace46d7546e5ac6ca4928677", "data": { - "inGameID": 3024, - "isHot": true + "inGameID": 3024 }, "difficulty": "NORMAL", "isPrimary": true, @@ -802,8 +752,7 @@ { "chartID": "5a8c6aa5cb6a3b1d5908509be763d7939522d77f", "data": { - "inGameID": 3026, - "isHot": true + "inGameID": 3026 }, "difficulty": "EXPERT", "isPrimary": true, @@ -818,8 +767,7 @@ { "chartID": "b4a4c817f6d30162457b69a64d8b6aceea2d9843", "data": { - "inGameID": 3026, - "isHot": true + "inGameID": 3026 }, "difficulty": "HARD", "isPrimary": true, @@ -834,8 +782,7 @@ { "chartID": "04fee254fe05c1898136b87ce276042b212dfc72", "data": { - "inGameID": 3026, - "isHot": true + "inGameID": 3026 }, "difficulty": "NORMAL", "isPrimary": true, @@ -850,8 +797,7 @@ { "chartID": "d59e911c8d9cfa6cd73b002494ffa9abe3d520f5", "data": { - "inGameID": 2240, - "isHot": true + "inGameID": 2240 }, "difficulty": "EXPERT", "isPrimary": true, @@ -866,8 +812,7 @@ { "chartID": "d9924c55029a2e40f4fcdaae428dc53a3d1e148d", "data": { - "inGameID": 2240, - "isHot": true + "inGameID": 2240 }, "difficulty": "HARD", "isPrimary": true, @@ -882,8 +827,7 @@ { "chartID": "675822f2d804a351590ee16939cfd398a9c30aa4", "data": { - "inGameID": 2240, - "isHot": true + "inGameID": 2240 }, "difficulty": "NORMAL", "isPrimary": true, @@ -898,8 +842,7 @@ { "chartID": "37fac2cd3ef19392625a3a572d850b7b4e299fc3", "data": { - "inGameID": 1205, - "isHot": false + "inGameID": 1205 }, "difficulty": "EXPERT", "isPrimary": true, @@ -914,8 +857,7 @@ { "chartID": "e884d68b82fbad918323a9d5947b9eedec7684d9", "data": { - "inGameID": 1205, - "isHot": false + "inGameID": 1205 }, "difficulty": "HARD", "isPrimary": true, @@ -930,8 +872,7 @@ { "chartID": "ada5b199a29e1302438494c610a7a5b91cef5a13", "data": { - "inGameID": 1205, - "isHot": true + "inGameID": 1205 }, "difficulty": "INFERNO", "isPrimary": true, @@ -946,8 +887,7 @@ { "chartID": "f3e8b6e801431c7555f498fda114d8784ead0d5c", "data": { - "inGameID": 1205, - "isHot": false + "inGameID": 1205 }, "difficulty": "NORMAL", "isPrimary": true, @@ -962,8 +902,7 @@ { "chartID": "e8422f5eb6d6bba5515014eb4016bd55c71430ab", "data": { - "inGameID": 26, - "isHot": false + "inGameID": 26 }, "difficulty": "EXPERT", "isPrimary": true, @@ -978,8 +917,7 @@ { "chartID": "b2d144a93a8bb8b35ea829f05031ba562a961b5c", "data": { - "inGameID": 26, - "isHot": false + "inGameID": 26 }, "difficulty": "HARD", "isPrimary": true, @@ -994,8 +932,7 @@ { "chartID": "3be2e9ac86d3f34b4d49f8928855cc8ef16ef81f", "data": { - "inGameID": 26, - "isHot": true + "inGameID": 26 }, "difficulty": "INFERNO", "isPrimary": true, @@ -1010,8 +947,7 @@ { "chartID": "2ec34bac51599969a146d08dd39af4aba37886d9", "data": { - "inGameID": 26, - "isHot": false + "inGameID": 26 }, "difficulty": "NORMAL", "isPrimary": true, @@ -1026,8 +962,7 @@ { "chartID": "4de599f08d56948fbf95924f528b841d3a973155", "data": { - "inGameID": 3031, - "isHot": true + "inGameID": 3031 }, "difficulty": "EXPERT", "isPrimary": true, @@ -1042,8 +977,7 @@ { "chartID": "e5e6ef29f44c72a9847fb6c7d9bf67ef84de0f6e", "data": { - "inGameID": 3031, - "isHot": true + "inGameID": 3031 }, "difficulty": "HARD", "isPrimary": true, @@ -1058,8 +992,7 @@ { "chartID": "44dabe0571089f6526bce06bdbcd97df8f6b89f8", "data": { - "inGameID": 3031, - "isHot": true + "inGameID": 3031 }, "difficulty": "NORMAL", "isPrimary": true, @@ -1074,8 +1007,7 @@ { "chartID": "eef554a8df3f9b7e197f17a65a4019e03a540e96", "data": { - "inGameID": 3033, - "isHot": true + "inGameID": 3033 }, "difficulty": "EXPERT", "isPrimary": true, @@ -1090,8 +1022,7 @@ { "chartID": "bd78a0076ad18a0a8ad5afafde2de93f68f2a4b5", "data": { - "inGameID": 3033, - "isHot": true + "inGameID": 3033 }, "difficulty": "HARD", "isPrimary": true, @@ -1106,8 +1037,7 @@ { "chartID": "34134290d765dbda87790af48f6785b1c4c85d63", "data": { - "inGameID": 3033, - "isHot": true + "inGameID": 3033 }, "difficulty": "NORMAL", "isPrimary": true, @@ -1122,8 +1052,7 @@ { "chartID": "25eafd31b13f9d8788f9761212ce513b7f7c8f28", "data": { - "inGameID": 3034, - "isHot": true + "inGameID": 3034 }, "difficulty": "EXPERT", "isPrimary": true, @@ -1138,8 +1067,7 @@ { "chartID": "9caf393b965e84363e28d2d1e8d51aaa470d1f88", "data": { - "inGameID": 3034, - "isHot": true + "inGameID": 3034 }, "difficulty": "HARD", "isPrimary": true, @@ -1154,8 +1082,7 @@ { "chartID": "acf7bca3b0eaa03e57d782baf7120c89bb9a587a", "data": { - "inGameID": 3034, - "isHot": true + "inGameID": 3034 }, "difficulty": "NORMAL", "isPrimary": true, @@ -1170,8 +1097,7 @@ { "chartID": "4d31a5f14bad2960e249668c6cbb8046d8d5bb61", "data": { - "inGameID": 2227, - "isHot": true + "inGameID": 2227 }, "difficulty": "EXPERT", "isPrimary": true, @@ -1186,8 +1112,7 @@ { "chartID": "4149b8f3f295ac0252f1472916382582e47b0a2c", "data": { - "inGameID": 2227, - "isHot": true + "inGameID": 2227 }, "difficulty": "HARD", "isPrimary": true, @@ -1202,8 +1127,7 @@ { "chartID": "edca5a4c801fccd594c5ba797bffe0352fb0e502", "data": { - "inGameID": 2227, - "isHot": true + "inGameID": 2227 }, "difficulty": "NORMAL", "isPrimary": true, @@ -1218,8 +1142,7 @@ { "chartID": "fba7f978427c5f032a78b965c66c2c359ea12707", "data": { - "inGameID": 2228, - "isHot": true + "inGameID": 2228 }, "difficulty": "EXPERT", "isPrimary": true, @@ -1234,8 +1157,7 @@ { "chartID": "9d1f750cae837c05974007d829404e588b3c6508", "data": { - "inGameID": 2228, - "isHot": true + "inGameID": 2228 }, "difficulty": "HARD", "isPrimary": true, @@ -1250,8 +1172,7 @@ { "chartID": "ba9ff6bf02fefc911310540b3bde1c6be3b8766a", "data": { - "inGameID": 2228, - "isHot": true + "inGameID": 2228 }, "difficulty": "NORMAL", "isPrimary": true, @@ -1266,8 +1187,7 @@ { "chartID": "a37aec2850caaecb95446a3b1428db166d4d7a04", "data": { - "inGameID": 3003, - "isHot": true + "inGameID": 3003 }, "difficulty": "EXPERT", "isPrimary": true, @@ -1282,8 +1202,7 @@ { "chartID": "cea0d186d5b30b7e3b8a7b3dfb37fbac3b0d62f2", "data": { - "inGameID": 3003, - "isHot": true + "inGameID": 3003 }, "difficulty": "HARD", "isPrimary": true, @@ -1298,8 +1217,7 @@ { "chartID": "428a69fb6af926292ae0f8239422d88895e0eba0", "data": { - "inGameID": 3003, - "isHot": true + "inGameID": 3003 }, "difficulty": "NORMAL", "isPrimary": true, @@ -1314,8 +1232,7 @@ { "chartID": "0e61ff8a3dbdf3ebbd03b6b86dd881dadb78e43d", "data": { - "inGameID": 2239, - "isHot": true + "inGameID": 2239 }, "difficulty": "EXPERT", "isPrimary": true, @@ -1330,8 +1247,7 @@ { "chartID": "a48c4e4d5401b15c349189b06e93386d0c1d1100", "data": { - "inGameID": 2239, - "isHot": true + "inGameID": 2239 }, "difficulty": "HARD", "isPrimary": true, @@ -1346,8 +1262,7 @@ { "chartID": "a0c6f06f8904820c436e96a4141984784cf433b5", "data": { - "inGameID": 2239, - "isHot": true + "inGameID": 2239 }, "difficulty": "NORMAL", "isPrimary": true, @@ -1362,8 +1277,7 @@ { "chartID": "a12250d3806af3b76fbebed94cb4f24568d64f8c", "data": { - "inGameID": 3005, - "isHot": true + "inGameID": 3005 }, "difficulty": "EXPERT", "isPrimary": true, @@ -1378,8 +1292,7 @@ { "chartID": "8873fc8996b8c15f5121dbca655f9105bb426feb", "data": { - "inGameID": 3005, - "isHot": true + "inGameID": 3005 }, "difficulty": "HARD", "isPrimary": true, @@ -1394,8 +1307,7 @@ { "chartID": "7ae08bdc8592ba97042252ad1cc2b3a51e2720fa", "data": { - "inGameID": 3005, - "isHot": true + "inGameID": 3005 }, "difficulty": "NORMAL", "isPrimary": true, @@ -1410,8 +1322,7 @@ { "chartID": "d014f5d19f3ca74d3b34d78dd5f082cc73f72cae", "data": { - "inGameID": 3006, - "isHot": true + "inGameID": 3006 }, "difficulty": "EXPERT", "isPrimary": true, @@ -1426,8 +1337,7 @@ { "chartID": "c51edfaa4cfa56d41218139e6854ce49a954f461", "data": { - "inGameID": 3006, - "isHot": true + "inGameID": 3006 }, "difficulty": "HARD", "isPrimary": true, @@ -1442,8 +1352,7 @@ { "chartID": "52d3483d703a5b45472795b935fdb18b0fb57051", "data": { - "inGameID": 3006, - "isHot": true + "inGameID": 3006 }, "difficulty": "NORMAL", "isPrimary": true, @@ -1458,8 +1367,7 @@ { "chartID": "d60eac20879de2f749e02d8c36aa226c1f1d4717", "data": { - "inGameID": 3007, - "isHot": true + "inGameID": 3007 }, "difficulty": "EXPERT", "isPrimary": true, @@ -1474,8 +1382,7 @@ { "chartID": "f4bd38d4a9a5a8cc589b0e409c4e1d56c12b4900", "data": { - "inGameID": 3007, - "isHot": true + "inGameID": 3007 }, "difficulty": "HARD", "isPrimary": true, @@ -1490,8 +1397,7 @@ { "chartID": "6633efa8325221bdc884eb0f19454feb81d5d066", "data": { - "inGameID": 3007, - "isHot": true + "inGameID": 3007 }, "difficulty": "NORMAL", "isPrimary": true, @@ -1506,8 +1412,7 @@ { "chartID": "efc140bc72affe42916a09062a5e12063c4de278", "data": { - "inGameID": 3029, - "isHot": true + "inGameID": 3029 }, "difficulty": "EXPERT", "isPrimary": true, @@ -1522,8 +1427,7 @@ { "chartID": "cc4297a59b99bf67e4a8a1f6dc01768f41443a6d", "data": { - "inGameID": 3029, - "isHot": true + "inGameID": 3029 }, "difficulty": "HARD", "isPrimary": true, @@ -1538,8 +1442,7 @@ { "chartID": "766b0b2a667ddf4d56fba143d238c3c43e8813ce", "data": { - "inGameID": 3029, - "isHot": true + "inGameID": 3029 }, "difficulty": "NORMAL", "isPrimary": true, @@ -1554,8 +1457,7 @@ { "chartID": "8b7d006593de5cf0b21428041d5ccb9dca0734aa", "data": { - "inGameID": 3017, - "isHot": true + "inGameID": 3017 }, "difficulty": "EXPERT", "isPrimary": true, @@ -1570,8 +1472,7 @@ { "chartID": "b683ff6dd1f38b765ea9f55d056956441d4be6a8", "data": { - "inGameID": 3017, - "isHot": true + "inGameID": 3017 }, "difficulty": "HARD", "isPrimary": true, @@ -1586,8 +1487,7 @@ { "chartID": "4fb919dc8e0fba5bfa8baff3f211416e9635455f", "data": { - "inGameID": 3017, - "isHot": true + "inGameID": 3017 }, "difficulty": "NORMAL", "isPrimary": true, @@ -1602,8 +1502,7 @@ { "chartID": "3bbe8d725b4fcd227c1bc536cbd1d1c989986a5c", "data": { - "inGameID": 3018, - "isHot": true + "inGameID": 3018 }, "difficulty": "EXPERT", "isPrimary": true, @@ -1618,8 +1517,7 @@ { "chartID": "cd0ca4231f7f0b22729ddfeb141c5f03bf10e933", "data": { - "inGameID": 3018, - "isHot": true + "inGameID": 3018 }, "difficulty": "HARD", "isPrimary": true, @@ -1634,8 +1532,7 @@ { "chartID": "f1f4ff803519d2c94db95588d28413e3b007b032", "data": { - "inGameID": 3018, - "isHot": true + "inGameID": 3018 }, "difficulty": "NORMAL", "isPrimary": true, @@ -1650,8 +1547,7 @@ { "chartID": "550860e21cdf5171789ae52d1b6c428ece76deb6", "data": { - "inGameID": 3019, - "isHot": true + "inGameID": 3019 }, "difficulty": "EXPERT", "isPrimary": true, @@ -1666,8 +1562,7 @@ { "chartID": "36470e67cbbf19dad2b9fed266e981384bd2d5f0", "data": { - "inGameID": 3019, - "isHot": true + "inGameID": 3019 }, "difficulty": "HARD", "isPrimary": true, @@ -1682,8 +1577,7 @@ { "chartID": "0cd24640d9c77211730e49522ce1b8e308b8efef", "data": { - "inGameID": 3019, - "isHot": true + "inGameID": 3019 }, "difficulty": "NORMAL", "isPrimary": true, @@ -1698,8 +1592,7 @@ { "chartID": "34ec8ad30ec1847bdc023d5620d3fe81cab834b8", "data": { - "inGameID": 3020, - "isHot": true + "inGameID": 3020 }, "difficulty": "EXPERT", "isPrimary": true, @@ -1714,8 +1607,7 @@ { "chartID": "33c50469cfdfa92601f0976e2adb7874f22f08a2", "data": { - "inGameID": 3020, - "isHot": true + "inGameID": 3020 }, "difficulty": "HARD", "isPrimary": true, @@ -1730,8 +1622,7 @@ { "chartID": "3f4f924894e0601313e38bba5527bfcea11658ab", "data": { - "inGameID": 3020, - "isHot": true + "inGameID": 3020 }, "difficulty": "NORMAL", "isPrimary": true, @@ -1746,8 +1637,7 @@ { "chartID": "f825a6225372bf87923a67be5e3d002ab73c263e", "data": { - "inGameID": 3021, - "isHot": true + "inGameID": 3021 }, "difficulty": "EXPERT", "isPrimary": true, @@ -1762,8 +1652,7 @@ { "chartID": "ff49151e90dc2f86d5dd9d7d2c42cf0197c78622", "data": { - "inGameID": 3021, - "isHot": true + "inGameID": 3021 }, "difficulty": "HARD", "isPrimary": true, @@ -1778,8 +1667,7 @@ { "chartID": "b23c4beb4ddfa289aea03c851108dc0aa987338d", "data": { - "inGameID": 3021, - "isHot": true + "inGameID": 3021 }, "difficulty": "NORMAL", "isPrimary": true, @@ -1794,8 +1682,7 @@ { "chartID": "6ae2757f8174279ce9c8b0e6c1ef71304616491e", "data": { - "inGameID": 3022, - "isHot": true + "inGameID": 3022 }, "difficulty": "EXPERT", "isPrimary": true, @@ -1810,8 +1697,7 @@ { "chartID": "38984806113697e799eb283f5d831a5591e2e739", "data": { - "inGameID": 3022, - "isHot": true + "inGameID": 3022 }, "difficulty": "HARD", "isPrimary": true, @@ -1826,8 +1712,7 @@ { "chartID": "d002ef42583be4d320e4a5a508f57f8a10939be5", "data": { - "inGameID": 3022, - "isHot": true + "inGameID": 3022 }, "difficulty": "NORMAL", "isPrimary": true, @@ -1842,8 +1727,7 @@ { "chartID": "c4e80c8e0dbf9827312a0f4a5aa23d32a7f63e53", "data": { - "inGameID": 3008, - "isHot": true + "inGameID": 3008 }, "difficulty": "EXPERT", "isPrimary": true, @@ -1858,8 +1742,7 @@ { "chartID": "724fa2aaaa7939d73896ace7b99c70edae4f91ef", "data": { - "inGameID": 3008, - "isHot": true + "inGameID": 3008 }, "difficulty": "HARD", "isPrimary": true, @@ -1874,8 +1757,7 @@ { "chartID": "e012a5e0fe8fcee6b2693da1adc836615c17b816", "data": { - "inGameID": 3008, - "isHot": true + "inGameID": 3008 }, "difficulty": "NORMAL", "isPrimary": true, @@ -1890,8 +1772,7 @@ { "chartID": "2ec90f13e330aefc878199392e0d627d5dd2478f", "data": { - "inGameID": 3009, - "isHot": true + "inGameID": 3009 }, "difficulty": "EXPERT", "isPrimary": true, @@ -1906,8 +1787,7 @@ { "chartID": "af045d28823237d803961fdd590de20713d93337", "data": { - "inGameID": 3009, - "isHot": true + "inGameID": 3009 }, "difficulty": "HARD", "isPrimary": true, @@ -1922,8 +1802,7 @@ { "chartID": "52d48cee1cbafb08b48c471d1e61fe9af72adcbe", "data": { - "inGameID": 3009, - "isHot": true + "inGameID": 3009 }, "difficulty": "NORMAL", "isPrimary": true, @@ -1938,8 +1817,7 @@ { "chartID": "36dda5db55e8544a556f8b195b2beb7ab54c3451", "data": { - "inGameID": 3011, - "isHot": true + "inGameID": 3011 }, "difficulty": "EXPERT", "isPrimary": true, @@ -1954,8 +1832,7 @@ { "chartID": "10715c148bcd3cf24e6c895b1fd81085e336c00c", "data": { - "inGameID": 3011, - "isHot": true + "inGameID": 3011 }, "difficulty": "HARD", "isPrimary": true, @@ -1970,8 +1847,7 @@ { "chartID": "cc384f7ac347b46d1b046851c11db6a65476311a", "data": { - "inGameID": 3011, - "isHot": true + "inGameID": 3011 }, "difficulty": "INFERNO", "isPrimary": true, @@ -1986,8 +1862,7 @@ { "chartID": "1aaf04c98b8a276e38acba1645ef04fd0288d94a", "data": { - "inGameID": 3011, - "isHot": true + "inGameID": 3011 }, "difficulty": "NORMAL", "isPrimary": true, @@ -2002,8 +1877,7 @@ { "chartID": "a9e03b08a6cc0f744f428446430f44f4df62f0cc", "data": { - "inGameID": 3012, - "isHot": true + "inGameID": 3012 }, "difficulty": "EXPERT", "isPrimary": true, @@ -2018,8 +1892,7 @@ { "chartID": "8967eda52931557b625605bd43ba8e6a7d6f4ba4", "data": { - "inGameID": 3012, - "isHot": true + "inGameID": 3012 }, "difficulty": "HARD", "isPrimary": true, @@ -2034,8 +1907,7 @@ { "chartID": "05dd68e7860808f3f7eacc4c48dd2bcec155eba7", "data": { - "inGameID": 3012, - "isHot": true + "inGameID": 3012 }, "difficulty": "NORMAL", "isPrimary": true, @@ -2050,8 +1922,7 @@ { "chartID": "124f98b22ee4de309bfcd2ddf5df40b43947a290", "data": { - "inGameID": 3015, - "isHot": true + "inGameID": 3015 }, "difficulty": "EXPERT", "isPrimary": true, @@ -2066,8 +1937,7 @@ { "chartID": "4f10c14f481cc5e1ce715a1c9761163dfe0a8554", "data": { - "inGameID": 3015, - "isHot": true + "inGameID": 3015 }, "difficulty": "HARD", "isPrimary": true, @@ -2082,8 +1952,7 @@ { "chartID": "331c86461f3df091495a59b18b36d09a2b16280a", "data": { - "inGameID": 3015, - "isHot": true + "inGameID": 3015 }, "difficulty": "NORMAL", "isPrimary": true, @@ -2098,8 +1967,7 @@ { "chartID": "e578bddfe576126c35171e87ba92b7054ac164f7", "data": { - "inGameID": 3028, - "isHot": true + "inGameID": 3028 }, "difficulty": "EXPERT", "isPrimary": true, @@ -2114,8 +1982,7 @@ { "chartID": "19d3a7475e6b601834d938b52aa1fbaf9d3a83e8", "data": { - "inGameID": 3028, - "isHot": true + "inGameID": 3028 }, "difficulty": "HARD", "isPrimary": true, @@ -2130,8 +1997,7 @@ { "chartID": "d8e58e305dc43a95a5dff1adefbd17843f22f0d8", "data": { - "inGameID": 3028, - "isHot": true + "inGameID": 3028 }, "difficulty": "NORMAL", "isPrimary": true, @@ -2146,8 +2012,7 @@ { "chartID": "186d95ce518f3dfab24ab6966923418146d9e0eb", "data": { - "inGameID": 3013, - "isHot": true + "inGameID": 3013 }, "difficulty": "EXPERT", "isPrimary": true, @@ -2162,8 +2027,7 @@ { "chartID": "7a91c444de77bee285e29bbedeec51e00c6694e3", "data": { - "inGameID": 3013, - "isHot": true + "inGameID": 3013 }, "difficulty": "HARD", "isPrimary": true, @@ -2178,8 +2042,7 @@ { "chartID": "85ca0367ac59c7dcad9a13fb97158547a4d270bc", "data": { - "inGameID": 3013, - "isHot": true + "inGameID": 3013 }, "difficulty": "NORMAL", "isPrimary": true, @@ -2194,8 +2057,7 @@ { "chartID": "e0fe6ee7a81efea8424630b83009703ecfd800cb", "data": { - "inGameID": 3016, - "isHot": true + "inGameID": 3016 }, "difficulty": "EXPERT", "isPrimary": true, @@ -2210,8 +2072,7 @@ { "chartID": "a7813f5b8c29dd0766711a290a3c2e484294d519", "data": { - "inGameID": 3016, - "isHot": true + "inGameID": 3016 }, "difficulty": "HARD", "isPrimary": true, @@ -2226,8 +2087,7 @@ { "chartID": "c7251fe812682a8df9ba6aae2f3b580e17d904d5", "data": { - "inGameID": 3016, - "isHot": true + "inGameID": 3016 }, "difficulty": "NORMAL", "isPrimary": true, @@ -2242,8 +2102,7 @@ { "chartID": "4ac6fb85803dc53afdecb01008cb0ce264c21969", "data": { - "inGameID": 2256, - "isHot": false + "inGameID": 2256 }, "difficulty": "EXPERT", "isPrimary": true, @@ -2258,8 +2117,7 @@ { "chartID": "ae6307abb66337cb4c7e56b3ad0b2a195d1872f3", "data": { - "inGameID": 2256, - "isHot": false + "inGameID": 2256 }, "difficulty": "HARD", "isPrimary": true, @@ -2274,8 +2132,7 @@ { "chartID": "616d1283ccfa7fda7a8dca3362b318872a1dc5eb", "data": { - "inGameID": 2256, - "isHot": false + "inGameID": 2256 }, "difficulty": "NORMAL", "isPrimary": true, @@ -2290,8 +2147,7 @@ { "chartID": "ae2a0e5a46d6ab153504b354d960af7b1fb8c069", "data": { - "inGameID": 2232, - "isHot": false + "inGameID": 2232 }, "difficulty": "EXPERT", "isPrimary": true, @@ -2306,8 +2162,7 @@ { "chartID": "ff40347d180eefd36d4b072daadf44d7c372314c", "data": { - "inGameID": 2232, - "isHot": false + "inGameID": 2232 }, "difficulty": "HARD", "isPrimary": true, @@ -2322,8 +2177,7 @@ { "chartID": "aa0f56e04d2fcf81c1d38c354259c70db7260f0f", "data": { - "inGameID": 2232, - "isHot": false + "inGameID": 2232 }, "difficulty": "NORMAL", "isPrimary": true, @@ -2338,8 +2192,7 @@ { "chartID": "77a0d324ef77f239c26e76821a01f1639539c637", "data": { - "inGameID": 2255, - "isHot": false + "inGameID": 2255 }, "difficulty": "EXPERT", "isPrimary": true, @@ -2354,8 +2207,7 @@ { "chartID": "0ce3c3288b765edb63d87b5889f5fa793710aa87", "data": { - "inGameID": 2255, - "isHot": false + "inGameID": 2255 }, "difficulty": "HARD", "isPrimary": true, @@ -2370,8 +2222,7 @@ { "chartID": "e26c2eb510501fe20482b82a9412d6a4b395c41d", "data": { - "inGameID": 2255, - "isHot": false + "inGameID": 2255 }, "difficulty": "NORMAL", "isPrimary": true, @@ -2386,8 +2237,7 @@ { "chartID": "cc16f18549afe6c118ddf29a1de6e1fc96f2fdb5", "data": { - "inGameID": 2234, - "isHot": false + "inGameID": 2234 }, "difficulty": "EXPERT", "isPrimary": true, @@ -2402,8 +2252,7 @@ { "chartID": "c7118176d97f82645decb299ef81733204af1388", "data": { - "inGameID": 2234, - "isHot": false + "inGameID": 2234 }, "difficulty": "HARD", "isPrimary": true, @@ -2418,8 +2267,7 @@ { "chartID": "c395e9176bbc80cdb57baa317c55beba30eec37a", "data": { - "inGameID": 2234, - "isHot": false + "inGameID": 2234 }, "difficulty": "NORMAL", "isPrimary": true, @@ -2434,8 +2282,7 @@ { "chartID": "04e4d8f29b0a0d961fde55c6681cb8808f93cec5", "data": { - "inGameID": 2235, - "isHot": false + "inGameID": 2235 }, "difficulty": "EXPERT", "isPrimary": true, @@ -2450,8 +2297,7 @@ { "chartID": "5e74053de4baa3f7d7ee023fc71a8e022fe04658", "data": { - "inGameID": 2235, - "isHot": false + "inGameID": 2235 }, "difficulty": "HARD", "isPrimary": true, @@ -2466,8 +2312,7 @@ { "chartID": "cd7b81c3e4009fd6ec4b6186c2a738e65aa724f5", "data": { - "inGameID": 2235, - "isHot": false + "inGameID": 2235 }, "difficulty": "INFERNO", "isPrimary": true, @@ -2482,8 +2327,7 @@ { "chartID": "255723c5180be93e1c37f1fa42c1f729fb7eb655", "data": { - "inGameID": 2235, - "isHot": false + "inGameID": 2235 }, "difficulty": "NORMAL", "isPrimary": true, @@ -2498,8 +2342,7 @@ { "chartID": "4efdd2f8c1f3f1c393fbf44a8007fae2268fb83a", "data": { - "inGameID": 2236, - "isHot": false + "inGameID": 2236 }, "difficulty": "EXPERT", "isPrimary": true, @@ -2514,8 +2357,7 @@ { "chartID": "c602c251d9910f6665d05e56c8ec8b3af86af396", "data": { - "inGameID": 2236, - "isHot": false + "inGameID": 2236 }, "difficulty": "HARD", "isPrimary": true, @@ -2530,8 +2372,7 @@ { "chartID": "10ea441cf280b342de1d98155bca4501df5ac1ff", "data": { - "inGameID": 2236, - "isHot": false + "inGameID": 2236 }, "difficulty": "INFERNO", "isPrimary": true, @@ -2546,8 +2387,7 @@ { "chartID": "5564d44578db53bb88b2b0b2c60ff813e5228392", "data": { - "inGameID": 2236, - "isHot": false + "inGameID": 2236 }, "difficulty": "NORMAL", "isPrimary": true, @@ -2562,8 +2402,7 @@ { "chartID": "78bbe8153770fe23c99c61419949f10480081261", "data": { - "inGameID": 2252, - "isHot": false + "inGameID": 2252 }, "difficulty": "EXPERT", "isPrimary": true, @@ -2578,8 +2417,7 @@ { "chartID": "fe915a999a271e3b6b120f5adf3d15f200311edb", "data": { - "inGameID": 2252, - "isHot": false + "inGameID": 2252 }, "difficulty": "HARD", "isPrimary": true, @@ -2594,8 +2432,7 @@ { "chartID": "9c29162fc6c043229287e4e159d3c3a96a419581", "data": { - "inGameID": 2252, - "isHot": false + "inGameID": 2252 }, "difficulty": "NORMAL", "isPrimary": true, @@ -2610,8 +2447,7 @@ { "chartID": "cbd6ef64609766d5990fd790252a004113f542e3", "data": { - "inGameID": 2253, - "isHot": false + "inGameID": 2253 }, "difficulty": "EXPERT", "isPrimary": true, @@ -2626,8 +2462,7 @@ { "chartID": "5357140af29cfa8f028cf73cae9c792ce58756fd", "data": { - "inGameID": 2253, - "isHot": false + "inGameID": 2253 }, "difficulty": "HARD", "isPrimary": true, @@ -2642,8 +2477,7 @@ { "chartID": "e207e5ed19586c3fa651db94f755143b7525a3ed", "data": { - "inGameID": 2253, - "isHot": false + "inGameID": 2253 }, "difficulty": "NORMAL", "isPrimary": true, @@ -2658,8 +2492,7 @@ { "chartID": "dcc36bcf21381fe87fbeb64b7e862f41d07567ef", "data": { - "inGameID": 2254, - "isHot": false + "inGameID": 2254 }, "difficulty": "EXPERT", "isPrimary": true, @@ -2674,8 +2507,7 @@ { "chartID": "db0599a9c941a1f06314f4d73c345f60a572c758", "data": { - "inGameID": 2254, - "isHot": false + "inGameID": 2254 }, "difficulty": "HARD", "isPrimary": true, @@ -2690,8 +2522,7 @@ { "chartID": "e6ab3fce047317adc779bdb944336ac6aa65c16e", "data": { - "inGameID": 2254, - "isHot": false + "inGameID": 2254 }, "difficulty": "NORMAL", "isPrimary": true, @@ -2706,8 +2537,7 @@ { "chartID": "92e039fb15bff1e9d7bed802cb7df96b41b5fa79", "data": { - "inGameID": 2229, - "isHot": false + "inGameID": 2229 }, "difficulty": "EXPERT", "isPrimary": true, @@ -2722,8 +2552,7 @@ { "chartID": "6d8377e2e75e6c167fa84e9cafee06c0557a54e7", "data": { - "inGameID": 2229, - "isHot": false + "inGameID": 2229 }, "difficulty": "HARD", "isPrimary": true, @@ -2738,8 +2567,7 @@ { "chartID": "4747a1f40430a7cf5f1ad8ba4874c578143a5984", "data": { - "inGameID": 2229, - "isHot": false + "inGameID": 2229 }, "difficulty": "NORMAL", "isPrimary": true, @@ -2754,8 +2582,7 @@ { "chartID": "e594f00624d597088c35bff3d8cb51d6d6f192c0", "data": { - "inGameID": 2230, - "isHot": false + "inGameID": 2230 }, "difficulty": "EXPERT", "isPrimary": true, @@ -2770,8 +2597,7 @@ { "chartID": "c8560581d8b0da89941a647c64a5800ce3f665ab", "data": { - "inGameID": 2230, - "isHot": false + "inGameID": 2230 }, "difficulty": "HARD", "isPrimary": true, @@ -2786,8 +2612,7 @@ { "chartID": "3aecfd8d0709b2677ea417e04cdc06e508d846be", "data": { - "inGameID": 2230, - "isHot": false + "inGameID": 2230 }, "difficulty": "NORMAL", "isPrimary": true, @@ -2802,8 +2627,7 @@ { "chartID": "f562f33cd97ad98ce38bb03ca5a324c863b10bda", "data": { - "inGameID": 2231, - "isHot": false + "inGameID": 2231 }, "difficulty": "EXPERT", "isPrimary": true, @@ -2818,8 +2642,7 @@ { "chartID": "f97f83f22ac8e1635b0df632bab33581a57ce5bc", "data": { - "inGameID": 2231, - "isHot": false + "inGameID": 2231 }, "difficulty": "HARD", "isPrimary": true, @@ -2834,8 +2657,7 @@ { "chartID": "af656090bd2357a3885d0b9a1131380ff8c08025", "data": { - "inGameID": 2231, - "isHot": false + "inGameID": 2231 }, "difficulty": "NORMAL", "isPrimary": true, @@ -2850,8 +2672,7 @@ { "chartID": "e55991c3d70c71a7e80855018de841f952caaf67", "data": { - "inGameID": 2247, - "isHot": false + "inGameID": 2247 }, "difficulty": "EXPERT", "isPrimary": true, @@ -2866,8 +2687,7 @@ { "chartID": "96a5023c8079c22774784a66215100929452cb0b", "data": { - "inGameID": 2247, - "isHot": false + "inGameID": 2247 }, "difficulty": "HARD", "isPrimary": true, @@ -2882,8 +2702,7 @@ { "chartID": "03b7b27dd35e865d12a717099ff7a232a9709cc3", "data": { - "inGameID": 2247, - "isHot": false + "inGameID": 2247 }, "difficulty": "NORMAL", "isPrimary": true, @@ -2898,8 +2717,7 @@ { "chartID": "7e711380eedf7d017b447362e8689444135773fc", "data": { - "inGameID": 2248, - "isHot": false + "inGameID": 2248 }, "difficulty": "EXPERT", "isPrimary": true, @@ -2914,8 +2732,7 @@ { "chartID": "cc2aff8598632681e899bf64ec952cd64f2be264", "data": { - "inGameID": 2248, - "isHot": false + "inGameID": 2248 }, "difficulty": "HARD", "isPrimary": true, @@ -2930,8 +2747,7 @@ { "chartID": "84015f896fb4bf9e51c658d1ae0053e4a0cf2a3f", "data": { - "inGameID": 2248, - "isHot": false + "inGameID": 2248 }, "difficulty": "NORMAL", "isPrimary": true, @@ -2946,8 +2762,7 @@ { "chartID": "d7a428cb264f7890fc4bca137a2ba495c8bdee1c", "data": { - "inGameID": 2249, - "isHot": false + "inGameID": 2249 }, "difficulty": "EXPERT", "isPrimary": true, @@ -2962,8 +2777,7 @@ { "chartID": "3bc01e69660d8abc0a0132d6f8865cd41757c0c4", "data": { - "inGameID": 2249, - "isHot": false + "inGameID": 2249 }, "difficulty": "HARD", "isPrimary": true, @@ -2978,8 +2792,7 @@ { "chartID": "1581a57f5e90cf4a317e0876a6663e1503592414", "data": { - "inGameID": 2249, - "isHot": false + "inGameID": 2249 }, "difficulty": "NORMAL", "isPrimary": true, @@ -2994,8 +2807,7 @@ { "chartID": "616324e6d0aacd96a176120e5b42c95e7900612c", "data": { - "inGameID": 2250, - "isHot": false + "inGameID": 2250 }, "difficulty": "EXPERT", "isPrimary": true, @@ -3010,8 +2822,7 @@ { "chartID": "27772eabb8acc80f3add8999dc857b7fbb6d02d8", "data": { - "inGameID": 2250, - "isHot": false + "inGameID": 2250 }, "difficulty": "HARD", "isPrimary": true, @@ -3026,8 +2837,7 @@ { "chartID": "c0ca4ea1773c6684ce0b61a79fcfa42d613566ca", "data": { - "inGameID": 2250, - "isHot": false + "inGameID": 2250 }, "difficulty": "NORMAL", "isPrimary": true, @@ -3042,8 +2852,7 @@ { "chartID": "5bf40d5347f0efeffc7d085416eaa0b22f0548be", "data": { - "inGameID": 2243, - "isHot": false + "inGameID": 2243 }, "difficulty": "EXPERT", "isPrimary": true, @@ -3058,8 +2867,7 @@ { "chartID": "d030bb943e1c489c5d9ccef8adba523f0a78d3ac", "data": { - "inGameID": 2243, - "isHot": false + "inGameID": 2243 }, "difficulty": "HARD", "isPrimary": true, @@ -3074,8 +2882,7 @@ { "chartID": "5361714ba92011db6d96443991e0942d8d9ad3ea", "data": { - "inGameID": 2243, - "isHot": false + "inGameID": 2243 }, "difficulty": "INFERNO", "isPrimary": true, @@ -3090,8 +2897,7 @@ { "chartID": "b7391d16c21daf8b499ef54f9ccdb8242dccd069", "data": { - "inGameID": 2243, - "isHot": false + "inGameID": 2243 }, "difficulty": "NORMAL", "isPrimary": true, @@ -3106,8 +2912,7 @@ { "chartID": "0a3198daa6d8f29faa0cc3047af1a534b8002930", "data": { - "inGameID": 2251, - "isHot": false + "inGameID": 2251 }, "difficulty": "EXPERT", "isPrimary": true, @@ -3122,8 +2927,7 @@ { "chartID": "06a6b5607a6e1c81a41f2a4986a764588d167b37", "data": { - "inGameID": 2251, - "isHot": false + "inGameID": 2251 }, "difficulty": "HARD", "isPrimary": true, @@ -3138,8 +2942,7 @@ { "chartID": "414df170b51bd572527b24d9addb578f9757992f", "data": { - "inGameID": 2251, - "isHot": false + "inGameID": 2251 }, "difficulty": "NORMAL", "isPrimary": true, @@ -3154,8 +2957,7 @@ { "chartID": "678e0d22cd285c7613dd297e5fa67579c8cc946f", "data": { - "inGameID": 2244, - "isHot": false + "inGameID": 2244 }, "difficulty": "EXPERT", "isPrimary": true, @@ -3170,8 +2972,7 @@ { "chartID": "5493bfc007ef01eee3549663ea63d07055c9daef", "data": { - "inGameID": 2244, - "isHot": false + "inGameID": 2244 }, "difficulty": "HARD", "isPrimary": true, @@ -3186,8 +2987,7 @@ { "chartID": "e7dd5ffc4469cb7a644f632b1c7f2cc9bbeadf26", "data": { - "inGameID": 2244, - "isHot": false + "inGameID": 2244 }, "difficulty": "NORMAL", "isPrimary": true, @@ -3202,8 +3002,7 @@ { "chartID": "a2252a4a9cd3885f3c35448b3961ab24951093da", "data": { - "inGameID": 2245, - "isHot": false + "inGameID": 2245 }, "difficulty": "EXPERT", "isPrimary": true, @@ -3218,8 +3017,7 @@ { "chartID": "3e0e5578ed5b8532d10a25e565a463d18ba03b9b", "data": { - "inGameID": 2245, - "isHot": false + "inGameID": 2245 }, "difficulty": "HARD", "isPrimary": true, @@ -3234,8 +3032,7 @@ { "chartID": "30067a407b1da00d3bdf010d0296caae5220c290", "data": { - "inGameID": 2245, - "isHot": false + "inGameID": 2245 }, "difficulty": "NORMAL", "isPrimary": true, @@ -3250,8 +3047,7 @@ { "chartID": "9db549b693a4d495658e981474ae27447d2c1528", "data": { - "inGameID": 2246, - "isHot": false + "inGameID": 2246 }, "difficulty": "EXPERT", "isPrimary": true, @@ -3266,8 +3062,7 @@ { "chartID": "7602d36b047ef139384a48ddd87ea3e1504d455e", "data": { - "inGameID": 2246, - "isHot": false + "inGameID": 2246 }, "difficulty": "HARD", "isPrimary": true, @@ -3282,8 +3077,7 @@ { "chartID": "5e03bd1064135a089669102c6b03f083ccf0fe1e", "data": { - "inGameID": 2246, - "isHot": false + "inGameID": 2246 }, "difficulty": "NORMAL", "isPrimary": true, @@ -3298,8 +3092,7 @@ { "chartID": "5e5ab83a02a7c8e679942df6ad54ea254583aea7", "data": { - "inGameID": 2223, - "isHot": false + "inGameID": 2223 }, "difficulty": "EXPERT", "isPrimary": true, @@ -3314,8 +3107,7 @@ { "chartID": "82f9180ef2307f7851b5e7c137c9c4ab307932fb", "data": { - "inGameID": 2223, - "isHot": false + "inGameID": 2223 }, "difficulty": "HARD", "isPrimary": true, @@ -3330,8 +3122,7 @@ { "chartID": "8353dc791f67940c3aef63b5bf50981df894bba3", "data": { - "inGameID": 2223, - "isHot": false + "inGameID": 2223 }, "difficulty": "NORMAL", "isPrimary": true, @@ -3346,8 +3137,7 @@ { "chartID": "8f43433ed7da6769c0666743c0589deaf2df75b0", "data": { - "inGameID": 2222, - "isHot": false + "inGameID": 2222 }, "difficulty": "EXPERT", "isPrimary": true, @@ -3362,8 +3152,7 @@ { "chartID": "ca9d50ababec42082add8d3eb4d364f01e120c6c", "data": { - "inGameID": 2222, - "isHot": false + "inGameID": 2222 }, "difficulty": "HARD", "isPrimary": true, @@ -3378,8 +3167,7 @@ { "chartID": "ed673ca0115f70a085066886888dc6147ef175c1", "data": { - "inGameID": 2222, - "isHot": false + "inGameID": 2222 }, "difficulty": "NORMAL", "isPrimary": true, @@ -3394,8 +3182,7 @@ { "chartID": "2ad5b3fedd719c65888ec4b9821dc3402bafb96b", "data": { - "inGameID": 2225, - "isHot": false + "inGameID": 2225 }, "difficulty": "EXPERT", "isPrimary": true, @@ -3410,8 +3197,7 @@ { "chartID": "43d98441b87265dba3ff53103deaf49df71e73d3", "data": { - "inGameID": 2225, - "isHot": false + "inGameID": 2225 }, "difficulty": "HARD", "isPrimary": true, @@ -3426,8 +3212,7 @@ { "chartID": "ebc4549ffaead6abba8281c801c7e02d26014e14", "data": { - "inGameID": 2225, - "isHot": false + "inGameID": 2225 }, "difficulty": "NORMAL", "isPrimary": true, @@ -3442,8 +3227,7 @@ { "chartID": "8fd55450f16281ba2c0073f556646c046f108477", "data": { - "inGameID": 2224, - "isHot": false + "inGameID": 2224 }, "difficulty": "EXPERT", "isPrimary": true, @@ -3458,8 +3242,7 @@ { "chartID": "530c2550e7e35e2bf1e907934dc843d757de9184", "data": { - "inGameID": 2224, - "isHot": false + "inGameID": 2224 }, "difficulty": "HARD", "isPrimary": true, @@ -3474,8 +3257,7 @@ { "chartID": "20ab36ec4d5d71f977b84e5c1a873553ff77dd01", "data": { - "inGameID": 2224, - "isHot": false + "inGameID": 2224 }, "difficulty": "NORMAL", "isPrimary": true, @@ -3490,8 +3272,7 @@ { "chartID": "c318d077cfecd3eaa3d526bc4cc513a611d779fe", "data": { - "inGameID": 2226, - "isHot": false + "inGameID": 2226 }, "difficulty": "EXPERT", "isPrimary": true, @@ -3506,8 +3287,7 @@ { "chartID": "03fd73c4e1261c5a386ee39729de46a4078a1373", "data": { - "inGameID": 2226, - "isHot": false + "inGameID": 2226 }, "difficulty": "HARD", "isPrimary": true, @@ -3522,8 +3302,7 @@ { "chartID": "85f24396d535089b6547b1994dca54f61b60d5d0", "data": { - "inGameID": 2226, - "isHot": false + "inGameID": 2226 }, "difficulty": "NORMAL", "isPrimary": true, @@ -3538,8 +3317,7 @@ { "chartID": "0384c94df01297092cb2a074fa751d10c5ca0304", "data": { - "inGameID": 2220, - "isHot": false + "inGameID": 2220 }, "difficulty": "EXPERT", "isPrimary": true, @@ -3554,8 +3332,7 @@ { "chartID": "9d39582215b08022aeb0f846dc3873332f562843", "data": { - "inGameID": 2220, - "isHot": false + "inGameID": 2220 }, "difficulty": "HARD", "isPrimary": true, @@ -3570,8 +3347,7 @@ { "chartID": "b53eecbdbb68d42d350acc7a49e61f38b07095cc", "data": { - "inGameID": 2220, - "isHot": false + "inGameID": 2220 }, "difficulty": "NORMAL", "isPrimary": true, @@ -3586,8 +3362,7 @@ { "chartID": "d11220fd09bed11e9c8343f29a6b6088df2f6fea", "data": { - "inGameID": 2221, - "isHot": false + "inGameID": 2221 }, "difficulty": "EXPERT", "isPrimary": true, @@ -3602,8 +3377,7 @@ { "chartID": "d529ad0ef761bd597cf29a5ee33db547aeb1fe25", "data": { - "inGameID": 2221, - "isHot": false + "inGameID": 2221 }, "difficulty": "HARD", "isPrimary": true, @@ -3618,8 +3392,7 @@ { "chartID": "9a27da15a017125887d859a931d254a702e7cc38", "data": { - "inGameID": 2221, - "isHot": false + "inGameID": 2221 }, "difficulty": "NORMAL", "isPrimary": true, @@ -3634,8 +3407,7 @@ { "chartID": "d4e428ea518c64b818cf5fc23ca84c7af712bcbb", "data": { - "inGameID": 2219, - "isHot": false + "inGameID": 2219 }, "difficulty": "EXPERT", "isPrimary": true, @@ -3650,8 +3422,7 @@ { "chartID": "105c8d76f845d7d04cda3048d9dfc168b02065f8", "data": { - "inGameID": 2219, - "isHot": false + "inGameID": 2219 }, "difficulty": "HARD", "isPrimary": true, @@ -3666,8 +3437,7 @@ { "chartID": "1de5fab7c1ef71e2084b5688f78358e3782468de", "data": { - "inGameID": 2219, - "isHot": false + "inGameID": 2219 }, "difficulty": "NORMAL", "isPrimary": true, @@ -3682,8 +3452,7 @@ { "chartID": "a2fe0b8448d3ab589c77e0e02baf573c989e5ce5", "data": { - "inGameID": 2217, - "isHot": false + "inGameID": 2217 }, "difficulty": "EXPERT", "isPrimary": true, @@ -3698,8 +3467,7 @@ { "chartID": "223c6c026d85a89716813353bb3de51fbe7364a1", "data": { - "inGameID": 2217, - "isHot": false + "inGameID": 2217 }, "difficulty": "HARD", "isPrimary": true, @@ -3714,8 +3482,7 @@ { "chartID": "21043db0dc9316e8d6696db3ec4182b244a7ddbc", "data": { - "inGameID": 2217, - "isHot": false + "inGameID": 2217 }, "difficulty": "NORMAL", "isPrimary": true, @@ -3730,8 +3497,7 @@ { "chartID": "38208205357811c67837988508149c0f53d8dc6a", "data": { - "inGameID": 2218, - "isHot": false + "inGameID": 2218 }, "difficulty": "EXPERT", "isPrimary": true, @@ -3746,8 +3512,7 @@ { "chartID": "2424209087aba2227418f8e3e75cd81d623cd8b0", "data": { - "inGameID": 2218, - "isHot": false + "inGameID": 2218 }, "difficulty": "HARD", "isPrimary": true, @@ -3762,8 +3527,7 @@ { "chartID": "dcccb4c92503d26eb46192d4d4ab36c5ab0bc67d", "data": { - "inGameID": 2218, - "isHot": false + "inGameID": 2218 }, "difficulty": "NORMAL", "isPrimary": true, @@ -3778,8 +3542,7 @@ { "chartID": "2abcf2da86f3d968dbe07695ab7ebf6b79cb0841", "data": { - "inGameID": 2085, - "isHot": false + "inGameID": 2085 }, "difficulty": "EXPERT", "isPrimary": true, @@ -3794,8 +3557,7 @@ { "chartID": "90f5db6c0cdd731f59d9d305c90bea6afd56e3f1", "data": { - "inGameID": 2085, - "isHot": false + "inGameID": 2085 }, "difficulty": "HARD", "isPrimary": true, @@ -3810,8 +3572,7 @@ { "chartID": "74dd9de46f662d739c0c7be916507e6bac6a66fc", "data": { - "inGameID": 2085, - "isHot": false + "inGameID": 2085 }, "difficulty": "NORMAL", "isPrimary": true, @@ -3826,8 +3587,7 @@ { "chartID": "487e95a7046563ee882de4c32f3ed582aa02355e", "data": { - "inGameID": 2039, - "isHot": false + "inGameID": 2039 }, "difficulty": "EXPERT", "isPrimary": true, @@ -3842,8 +3602,7 @@ { "chartID": "77c0fc146e0a89bf8aaf03c472d03e28570dbb4a", "data": { - "inGameID": 2039, - "isHot": false + "inGameID": 2039 }, "difficulty": "HARD", "isPrimary": true, @@ -3858,8 +3617,7 @@ { "chartID": "7a8bcf0d2495cc90a40e33de6dee25ad9cb6031b", "data": { - "inGameID": 2039, - "isHot": false + "inGameID": 2039 }, "difficulty": "NORMAL", "isPrimary": true, @@ -3874,8 +3632,7 @@ { "chartID": "f45037d2ad8802b64254136da0131ea13b487d57", "data": { - "inGameID": 2038, - "isHot": false + "inGameID": 2038 }, "difficulty": "EXPERT", "isPrimary": true, @@ -3890,8 +3647,7 @@ { "chartID": "5340ba01ac08c223f0529af59a495f10e400f4eb", "data": { - "inGameID": 2038, - "isHot": false + "inGameID": 2038 }, "difficulty": "HARD", "isPrimary": true, @@ -3906,8 +3662,7 @@ { "chartID": "b0140896fdebeeddda0ab00ce0b5fa3f8bd6277f", "data": { - "inGameID": 2038, - "isHot": false + "inGameID": 2038 }, "difficulty": "NORMAL", "isPrimary": true, @@ -3922,8 +3677,7 @@ { "chartID": "b25be82b1de9e7737a2e85d3b1dac4f1683250ca", "data": { - "inGameID": 2214, - "isHot": false + "inGameID": 2214 }, "difficulty": "EXPERT", "isPrimary": true, @@ -3938,8 +3692,7 @@ { "chartID": "4c8acbdc697610f3dbbd6df8a4c5094fb19cbf02", "data": { - "inGameID": 2214, - "isHot": false + "inGameID": 2214 }, "difficulty": "HARD", "isPrimary": true, @@ -3954,8 +3707,7 @@ { "chartID": "760cfea42e09b75da720c95fd4f218a2ca87f659", "data": { - "inGameID": 2214, - "isHot": false + "inGameID": 2214 }, "difficulty": "NORMAL", "isPrimary": true, @@ -3970,8 +3722,7 @@ { "chartID": "54da046dcd8f83efd21b34d86c53d3d71b610583", "data": { - "inGameID": 2215, - "isHot": false + "inGameID": 2215 }, "difficulty": "EXPERT", "isPrimary": true, @@ -3986,8 +3737,7 @@ { "chartID": "373941c3a84ec7c877212c58513d1d2f033728f7", "data": { - "inGameID": 2215, - "isHot": false + "inGameID": 2215 }, "difficulty": "HARD", "isPrimary": true, @@ -4002,8 +3752,7 @@ { "chartID": "a707d1da7510c27458e38719df74cc01d0b3cf6b", "data": { - "inGameID": 2215, - "isHot": false + "inGameID": 2215 }, "difficulty": "NORMAL", "isPrimary": true, @@ -4018,8 +3767,7 @@ { "chartID": "e4f9c52d7859066d6de9ac30671e7b704bc7d67a", "data": { - "inGameID": 2205, - "isHot": false + "inGameID": 2205 }, "difficulty": "EXPERT", "isPrimary": true, @@ -4034,8 +3782,7 @@ { "chartID": "8573dde57ce5d8a5b14b139e94880937f4b823bc", "data": { - "inGameID": 2205, - "isHot": false + "inGameID": 2205 }, "difficulty": "HARD", "isPrimary": true, @@ -4050,8 +3797,7 @@ { "chartID": "f82adbcdef0c0d290103a9ab682f940934f01311", "data": { - "inGameID": 2205, - "isHot": false + "inGameID": 2205 }, "difficulty": "NORMAL", "isPrimary": true, @@ -4066,8 +3812,7 @@ { "chartID": "a610efe67c4dad769bda6cf9103123836400c3ff", "data": { - "inGameID": 2216, - "isHot": false + "inGameID": 2216 }, "difficulty": "EXPERT", "isPrimary": true, @@ -4082,8 +3827,7 @@ { "chartID": "9ff5b5990ccee8cb273618f8b3b0e855814e7cb8", "data": { - "inGameID": 2216, - "isHot": false + "inGameID": 2216 }, "difficulty": "HARD", "isPrimary": true, @@ -4098,8 +3842,7 @@ { "chartID": "a34ff753932d1301e26092f44db57b3d42b999b1", "data": { - "inGameID": 2216, - "isHot": false + "inGameID": 2216 }, "difficulty": "NORMAL", "isPrimary": true, @@ -4114,8 +3857,7 @@ { "chartID": "d57df974e6f29ffdbd648a7a471fbced5d867394", "data": { - "inGameID": 2203, - "isHot": false + "inGameID": 2203 }, "difficulty": "EXPERT", "isPrimary": true, @@ -4130,8 +3872,7 @@ { "chartID": "0e3640e09e037893a43b3130e1f5665dceb3da8c", "data": { - "inGameID": 2203, - "isHot": false + "inGameID": 2203 }, "difficulty": "HARD", "isPrimary": true, @@ -4146,8 +3887,7 @@ { "chartID": "8dee190260939473c0e17e6c6eafc9e182ff5b0f", "data": { - "inGameID": 2203, - "isHot": false + "inGameID": 2203 }, "difficulty": "NORMAL", "isPrimary": true, @@ -4162,8 +3902,7 @@ { "chartID": "774fbbad70dbe6d7889a762aa909342e1042da73", "data": { - "inGameID": 2202, - "isHot": false + "inGameID": 2202 }, "difficulty": "EXPERT", "isPrimary": true, @@ -4178,8 +3917,7 @@ { "chartID": "f4ea4e42642e403bdf0e252239363d22bafb1654", "data": { - "inGameID": 2202, - "isHot": false + "inGameID": 2202 }, "difficulty": "HARD", "isPrimary": true, @@ -4194,8 +3932,7 @@ { "chartID": "b272c0bfbe61b9943f43eaa1dd709bfa266d53fe", "data": { - "inGameID": 2202, - "isHot": false + "inGameID": 2202 }, "difficulty": "NORMAL", "isPrimary": true, @@ -4210,8 +3947,7 @@ { "chartID": "353faafda89faa0eca45c347d3cfe8b27db158ec", "data": { - "inGameID": 2058, - "isHot": false + "inGameID": 2058 }, "difficulty": "EXPERT", "isPrimary": true, @@ -4226,8 +3962,7 @@ { "chartID": "30c48587a0b67781c094a91e559ebadd67c4f852", "data": { - "inGameID": 2058, - "isHot": false + "inGameID": 2058 }, "difficulty": "HARD", "isPrimary": true, @@ -4242,8 +3977,7 @@ { "chartID": "5aace3b4c6c28c6b503ba58406653a83938d554b", "data": { - "inGameID": 2058, - "isHot": false + "inGameID": 2058 }, "difficulty": "NORMAL", "isPrimary": true, @@ -4258,8 +3992,7 @@ { "chartID": "b4c0d13ff46b2dd79e55af25f732e90bef958fc9", "data": { - "inGameID": 1219, - "isHot": false + "inGameID": 1219 }, "difficulty": "EXPERT", "isPrimary": true, @@ -4274,8 +4007,7 @@ { "chartID": "834f4a4d870758aab4f9f2c303b32b7b27fa2091", "data": { - "inGameID": 1219, - "isHot": false + "inGameID": 1219 }, "difficulty": "HARD", "isPrimary": true, @@ -4290,8 +4022,7 @@ { "chartID": "3d1a135f409eae48ef1191ffb47be38b35227f58", "data": { - "inGameID": 1219, - "isHot": false + "inGameID": 1219 }, "difficulty": "NORMAL", "isPrimary": true, @@ -4306,8 +4037,7 @@ { "chartID": "c60a80fcad53d9c28c105717ca3688116efa86cd", "data": { - "inGameID": 1209, - "isHot": false + "inGameID": 1209 }, "difficulty": "EXPERT", "isPrimary": true, @@ -4322,8 +4052,7 @@ { "chartID": "04cf2aa57fb02bc81daf4ef4a3327b8f9d496f2d", "data": { - "inGameID": 1209, - "isHot": false + "inGameID": 1209 }, "difficulty": "HARD", "isPrimary": true, @@ -4338,8 +4067,7 @@ { "chartID": "9104e8ffc7a2d273645c63a4be99b61181122668", "data": { - "inGameID": 1209, - "isHot": false + "inGameID": 1209 }, "difficulty": "NORMAL", "isPrimary": true, @@ -4354,8 +4082,7 @@ { "chartID": "1cb99cf676481cad87ee3aa2d948353492f4ab35", "data": { - "inGameID": 2206, - "isHot": false + "inGameID": 2206 }, "difficulty": "EXPERT", "isPrimary": true, @@ -4370,8 +4097,7 @@ { "chartID": "f2070f33ec967d8ddc5dc4e82ed03ce93d34a6b3", "data": { - "inGameID": 2206, - "isHot": false + "inGameID": 2206 }, "difficulty": "HARD", "isPrimary": true, @@ -4386,8 +4112,7 @@ { "chartID": "21517a07ab06fa6ce79a2544be54329c990d0712", "data": { - "inGameID": 2206, - "isHot": false + "inGameID": 2206 }, "difficulty": "NORMAL", "isPrimary": true, @@ -4402,8 +4127,7 @@ { "chartID": "4a27d5674af0e9c83ffd604f9c98828240aebe32", "data": { - "inGameID": 2092, - "isHot": false + "inGameID": 2092 }, "difficulty": "EXPERT", "isPrimary": true, @@ -4418,8 +4142,7 @@ { "chartID": "c302b89aa14a06bdaba79a4c6e0a267ac320e49f", "data": { - "inGameID": 2092, - "isHot": false + "inGameID": 2092 }, "difficulty": "HARD", "isPrimary": true, @@ -4434,8 +4157,7 @@ { "chartID": "2bda47a10dd25a37ae76e6b0ddbe17af8223119e", "data": { - "inGameID": 2092, - "isHot": false + "inGameID": 2092 }, "difficulty": "NORMAL", "isPrimary": true, @@ -4450,8 +4172,7 @@ { "chartID": "1d6a1d7aa376f173cf2b9a5e064a54eddecd8597", "data": { - "inGameID": 2083, - "isHot": false + "inGameID": 2083 }, "difficulty": "EXPERT", "isPrimary": true, @@ -4466,8 +4187,7 @@ { "chartID": "0c6fdbb69d6cc05eab90e0690cf775bd28ec0b94", "data": { - "inGameID": 2083, - "isHot": false + "inGameID": 2083 }, "difficulty": "HARD", "isPrimary": true, @@ -4482,8 +4202,7 @@ { "chartID": "34a24f1a8487c2eeb502b04b2098ec867adf9301", "data": { - "inGameID": 2083, - "isHot": false + "inGameID": 2083 }, "difficulty": "NORMAL", "isPrimary": true, @@ -4498,8 +4217,7 @@ { "chartID": "25ae9c7dd45244a61f1860354f0c04574db28c8b", "data": { - "inGameID": 2082, - "isHot": false + "inGameID": 2082 }, "difficulty": "EXPERT", "isPrimary": true, @@ -4514,8 +4232,7 @@ { "chartID": "8efd0e32ca3d4885dad07baa62a66ce940dc1e78", "data": { - "inGameID": 2082, - "isHot": false + "inGameID": 2082 }, "difficulty": "HARD", "isPrimary": true, @@ -4530,8 +4247,7 @@ { "chartID": "d671f6ff76c1cf06120a3c3fd9a53e611178926c", "data": { - "inGameID": 2082, - "isHot": false + "inGameID": 2082 }, "difficulty": "NORMAL", "isPrimary": true, @@ -4546,8 +4262,7 @@ { "chartID": "3ebf9324755e9b59805d008f38eed12c0c8c817f", "data": { - "inGameID": 2081, - "isHot": false + "inGameID": 2081 }, "difficulty": "EXPERT", "isPrimary": true, @@ -4562,8 +4277,7 @@ { "chartID": "d538751dbfd3deee51dc698f3e5c2cc5743f6782", "data": { - "inGameID": 2081, - "isHot": false + "inGameID": 2081 }, "difficulty": "HARD", "isPrimary": true, @@ -4578,8 +4292,7 @@ { "chartID": "81f44b546a637ef80eb1a7c1f5267826b2c29ecd", "data": { - "inGameID": 2081, - "isHot": false + "inGameID": 2081 }, "difficulty": "NORMAL", "isPrimary": true, @@ -4594,8 +4307,7 @@ { "chartID": "f0d415ef3df33e46f60ef721a7f304b77a6d648b", "data": { - "inGameID": 2080, - "isHot": false + "inGameID": 2080 }, "difficulty": "EXPERT", "isPrimary": true, @@ -4610,8 +4322,7 @@ { "chartID": "45e68862a57c63f85c9c4786b6b125e17a470e3e", "data": { - "inGameID": 2080, - "isHot": false + "inGameID": 2080 }, "difficulty": "HARD", "isPrimary": true, @@ -4626,8 +4337,7 @@ { "chartID": "4de21604a54fcf27a10f37c8c420ca18fad92043", "data": { - "inGameID": 2080, - "isHot": false + "inGameID": 2080 }, "difficulty": "NORMAL", "isPrimary": true, @@ -4642,8 +4352,7 @@ { "chartID": "2e68a7edd0345611d45bd1f99421420cd1ee157a", "data": { - "inGameID": 2079, - "isHot": false + "inGameID": 2079 }, "difficulty": "EXPERT", "isPrimary": true, @@ -4658,8 +4367,7 @@ { "chartID": "3c45e4006467a91daaf1e6d58d5f391c558921fb", "data": { - "inGameID": 2079, - "isHot": false + "inGameID": 2079 }, "difficulty": "HARD", "isPrimary": true, @@ -4674,8 +4382,7 @@ { "chartID": "d1d18d3d6522ab2baac55d580c7780733c59295e", "data": { - "inGameID": 2079, - "isHot": false + "inGameID": 2079 }, "difficulty": "NORMAL", "isPrimary": true, @@ -4690,8 +4397,7 @@ { "chartID": "56f64b2eca62e47dbcd2428edef16c3ca9feb9e8", "data": { - "inGameID": 2207, - "isHot": false + "inGameID": 2207 }, "difficulty": "EXPERT", "isPrimary": true, @@ -4706,8 +4412,7 @@ { "chartID": "d9540bbd0a76d127c5364440cd986c19a240823c", "data": { - "inGameID": 2207, - "isHot": false + "inGameID": 2207 }, "difficulty": "HARD", "isPrimary": true, @@ -4722,8 +4427,7 @@ { "chartID": "666ec8526017ba686c3db5ee1f015b570e994fe6", "data": { - "inGameID": 2207, - "isHot": false + "inGameID": 2207 }, "difficulty": "NORMAL", "isPrimary": true, @@ -4738,8 +4442,7 @@ { "chartID": "6f859ccaa37dfaa60359de96c0885dc2740c6663", "data": { - "inGameID": 1241, - "isHot": false + "inGameID": 1241 }, "difficulty": "EXPERT", "isPrimary": true, @@ -4754,8 +4457,7 @@ { "chartID": "d14010aed71db738f24cd767f9c980cef871fa70", "data": { - "inGameID": 1241, - "isHot": false + "inGameID": 1241 }, "difficulty": "HARD", "isPrimary": true, @@ -4770,8 +4472,7 @@ { "chartID": "52baf7448e7013521c1f111d57757a89d22c9622", "data": { - "inGameID": 1241, - "isHot": false + "inGameID": 1241 }, "difficulty": "NORMAL", "isPrimary": true, @@ -4786,8 +4487,7 @@ { "chartID": "a233427b7e76f5349049647c68eb9277984f9aa2", "data": { - "inGameID": 2209, - "isHot": false + "inGameID": 2209 }, "difficulty": "EXPERT", "isPrimary": true, @@ -4802,8 +4502,7 @@ { "chartID": "7a44ef6aa813a410ac74ba54b643e11b1b6831f9", "data": { - "inGameID": 2209, - "isHot": false + "inGameID": 2209 }, "difficulty": "HARD", "isPrimary": true, @@ -4818,8 +4517,7 @@ { "chartID": "ffaefc976471d428cfed2b9f6c6f6791a20419e9", "data": { - "inGameID": 2209, - "isHot": false + "inGameID": 2209 }, "difficulty": "NORMAL", "isPrimary": true, @@ -4834,8 +4532,7 @@ { "chartID": "57422a0436489a0de6414744199d71633b7044aa", "data": { - "inGameID": 2208, - "isHot": false + "inGameID": 2208 }, "difficulty": "EXPERT", "isPrimary": true, @@ -4850,8 +4547,7 @@ { "chartID": "2cbeec05e0936ee1875f5c30210d8d341b77071c", "data": { - "inGameID": 2208, - "isHot": false + "inGameID": 2208 }, "difficulty": "HARD", "isPrimary": true, @@ -4866,8 +4562,7 @@ { "chartID": "6ab34c65c76411245c43534148e2da28c1158e4a", "data": { - "inGameID": 2208, - "isHot": false + "inGameID": 2208 }, "difficulty": "NORMAL", "isPrimary": true, @@ -4882,8 +4577,7 @@ { "chartID": "8a898db95ca48fbf9b9461d04035e9b487284a28", "data": { - "inGameID": 2211, - "isHot": false + "inGameID": 2211 }, "difficulty": "EXPERT", "isPrimary": true, @@ -4898,8 +4592,7 @@ { "chartID": "425888d50ff83ed082bd86f2a8f342f38ceca4cb", "data": { - "inGameID": 2211, - "isHot": false + "inGameID": 2211 }, "difficulty": "HARD", "isPrimary": true, @@ -4914,8 +4607,7 @@ { "chartID": "c2e20d1fd7bdbc4b2de5bc058266853e3a3454a8", "data": { - "inGameID": 2211, - "isHot": false + "inGameID": 2211 }, "difficulty": "NORMAL", "isPrimary": true, @@ -4930,8 +4622,7 @@ { "chartID": "d7c59ffa298f300e444b69a0e4e7c475af48e3fe", "data": { - "inGameID": 2210, - "isHot": false + "inGameID": 2210 }, "difficulty": "EXPERT", "isPrimary": true, @@ -4946,8 +4637,7 @@ { "chartID": "cab304ff3e41aaeaef12ca7202f356d2156c27b7", "data": { - "inGameID": 2210, - "isHot": false + "inGameID": 2210 }, "difficulty": "HARD", "isPrimary": true, @@ -4962,8 +4652,7 @@ { "chartID": "55ad3e2b2f4de29615f65472c6d35d6da331f886", "data": { - "inGameID": 2210, - "isHot": false + "inGameID": 2210 }, "difficulty": "NORMAL", "isPrimary": true, @@ -4978,8 +4667,7 @@ { "chartID": "26c0f75ee94f8f6e302419d5afef795672a794d7", "data": { - "inGameID": 2212, - "isHot": false + "inGameID": 2212 }, "difficulty": "EXPERT", "isPrimary": true, @@ -4994,8 +4682,7 @@ { "chartID": "54581756396d2e9f1d972e2933773b9f18501711", "data": { - "inGameID": 2212, - "isHot": false + "inGameID": 2212 }, "difficulty": "HARD", "isPrimary": true, @@ -5010,8 +4697,7 @@ { "chartID": "55b14d0361c0aa7dad824edef158ae00caad28e8", "data": { - "inGameID": 2212, - "isHot": false + "inGameID": 2212 }, "difficulty": "NORMAL", "isPrimary": true, @@ -5026,8 +4712,7 @@ { "chartID": "63dbda49187bb7f00213f4cb7fbe18ffee38515b", "data": { - "inGameID": 2213, - "isHot": false + "inGameID": 2213 }, "difficulty": "EXPERT", "isPrimary": true, @@ -5042,8 +4727,7 @@ { "chartID": "b3e2423d1fcd17aaf8a7b67c7d5853c08e32b32f", "data": { - "inGameID": 2213, - "isHot": false + "inGameID": 2213 }, "difficulty": "HARD", "isPrimary": true, @@ -5058,8 +4742,7 @@ { "chartID": "5b7977c50de8bda0eac7221886408d90da052725", "data": { - "inGameID": 2213, - "isHot": false + "inGameID": 2213 }, "difficulty": "NORMAL", "isPrimary": true, @@ -5074,8 +4757,7 @@ { "chartID": "0292f9ee2912e12834a3d11fbcf7a40591b28da6", "data": { - "inGameID": 2053, - "isHot": false + "inGameID": 2053 }, "difficulty": "EXPERT", "isPrimary": true, @@ -5090,8 +4772,7 @@ { "chartID": "6a059f5d1c4a4b33c115a482f135db93c914a2a0", "data": { - "inGameID": 2053, - "isHot": false + "inGameID": 2053 }, "difficulty": "HARD", "isPrimary": true, @@ -5106,8 +4787,7 @@ { "chartID": "f7b241970bf98c3fbdda7ef5f793cb9040397d80", "data": { - "inGameID": 2053, - "isHot": false + "inGameID": 2053 }, "difficulty": "NORMAL", "isPrimary": true, @@ -5122,8 +4802,7 @@ { "chartID": "6990e1c429530055e3ca1447547b4a1da3812635", "data": { - "inGameID": 2046, - "isHot": false + "inGameID": 2046 }, "difficulty": "EXPERT", "isPrimary": true, @@ -5138,8 +4817,7 @@ { "chartID": "7fc8c18c384cb93011a8815ecf1c1b558ec2d724", "data": { - "inGameID": 2046, - "isHot": false + "inGameID": 2046 }, "difficulty": "HARD", "isPrimary": true, @@ -5154,8 +4832,7 @@ { "chartID": "eef2ba2479189ab786f9dcecf17e0eb18c39cd54", "data": { - "inGameID": 2046, - "isHot": false + "inGameID": 2046 }, "difficulty": "NORMAL", "isPrimary": true, @@ -5170,8 +4847,7 @@ { "chartID": "9ddc7a32dd80887281d09c8fd408fd1fadb1e79b", "data": { - "inGameID": 2055, - "isHot": false + "inGameID": 2055 }, "difficulty": "EXPERT", "isPrimary": true, @@ -5186,8 +4862,7 @@ { "chartID": "4a2dff5629782c374b510f43445c00a1060147d5", "data": { - "inGameID": 2055, - "isHot": false + "inGameID": 2055 }, "difficulty": "HARD", "isPrimary": true, @@ -5202,8 +4877,7 @@ { "chartID": "07abbeeb1aaa828d02fe4b1af6f767056ac18679", "data": { - "inGameID": 2055, - "isHot": false + "inGameID": 2055 }, "difficulty": "NORMAL", "isPrimary": true, @@ -5218,8 +4892,7 @@ { "chartID": "e86f92899987749a9e9f39966568d12a7f8c3988", "data": { - "inGameID": 2054, - "isHot": false + "inGameID": 2054 }, "difficulty": "EXPERT", "isPrimary": true, @@ -5234,8 +4907,7 @@ { "chartID": "390e776645d878d9bc58818ac5b64ab9c62e4588", "data": { - "inGameID": 2054, - "isHot": false + "inGameID": 2054 }, "difficulty": "HARD", "isPrimary": true, @@ -5250,8 +4922,7 @@ { "chartID": "c006f0b0f353774f99090055286b95e9a3d49522", "data": { - "inGameID": 2054, - "isHot": false + "inGameID": 2054 }, "difficulty": "NORMAL", "isPrimary": true, @@ -5266,8 +4937,7 @@ { "chartID": "fdca3b25a1cfd233bacc53e9da5f9572ccafe08c", "data": { - "inGameID": 2056, - "isHot": false + "inGameID": 2056 }, "difficulty": "EXPERT", "isPrimary": true, @@ -5282,8 +4952,7 @@ { "chartID": "fd32b17093956c1143b5fbab77a9e895673a13ed", "data": { - "inGameID": 2056, - "isHot": false + "inGameID": 2056 }, "difficulty": "HARD", "isPrimary": true, @@ -5298,8 +4967,7 @@ { "chartID": "0dface1481f36b073cd042a7b81ee13b2c4b994d", "data": { - "inGameID": 2056, - "isHot": false + "inGameID": 2056 }, "difficulty": "NORMAL", "isPrimary": true, @@ -5314,8 +4982,7 @@ { "chartID": "94e4007ab84714b65f36ba2f713e25d0699114ef", "data": { - "inGameID": 2074, - "isHot": false + "inGameID": 2074 }, "difficulty": "EXPERT", "isPrimary": true, @@ -5330,8 +4997,7 @@ { "chartID": "77f53b79f55bb69f71426af2ccb63582a3aaf3a5", "data": { - "inGameID": 2074, - "isHot": false + "inGameID": 2074 }, "difficulty": "HARD", "isPrimary": true, @@ -5346,8 +5012,7 @@ { "chartID": "3572d648d28d9fc1f4fde66beb765f12088b731c", "data": { - "inGameID": 2074, - "isHot": false + "inGameID": 2074 }, "difficulty": "NORMAL", "isPrimary": true, @@ -5362,8 +5027,7 @@ { "chartID": "b18dbc1acd167bc5b4e8e86cb00067a2495bfa83", "data": { - "inGameID": 2071, - "isHot": false + "inGameID": 2071 }, "difficulty": "EXPERT", "isPrimary": true, @@ -5378,8 +5042,7 @@ { "chartID": "a5880c1387f49bbb648d090996dfe84adde80a32", "data": { - "inGameID": 2071, - "isHot": false + "inGameID": 2071 }, "difficulty": "HARD", "isPrimary": true, @@ -5394,8 +5057,7 @@ { "chartID": "7cf45a49888b4ff74cee6a437c591fcacc80dff7", "data": { - "inGameID": 2071, - "isHot": false + "inGameID": 2071 }, "difficulty": "NORMAL", "isPrimary": true, @@ -5410,8 +5072,7 @@ { "chartID": "7aaea1acc29a5616685aa8f4b8e6a5f168a07e1c", "data": { - "inGameID": 2072, - "isHot": false + "inGameID": 2072 }, "difficulty": "EXPERT", "isPrimary": true, @@ -5426,8 +5087,7 @@ { "chartID": "3ef074c3628b50b4e8133ff7845d9d7f27953f3e", "data": { - "inGameID": 2072, - "isHot": false + "inGameID": 2072 }, "difficulty": "HARD", "isPrimary": true, @@ -5442,8 +5102,7 @@ { "chartID": "42ed408bac69b2cf0d0caf48797277f59a170e15", "data": { - "inGameID": 2072, - "isHot": false + "inGameID": 2072 }, "difficulty": "NORMAL", "isPrimary": true, @@ -5458,8 +5117,7 @@ { "chartID": "2de82ab9ca3b4937512d965d3e634b778f0f7512", "data": { - "inGameID": 2073, - "isHot": false + "inGameID": 2073 }, "difficulty": "EXPERT", "isPrimary": true, @@ -5474,8 +5132,7 @@ { "chartID": "ece7a4a10c4282fbab4b884e1e693ffd7d5d25fd", "data": { - "inGameID": 2073, - "isHot": false + "inGameID": 2073 }, "difficulty": "HARD", "isPrimary": true, @@ -5490,8 +5147,7 @@ { "chartID": "8b16c44d99f5e90db86be761ffe06f8b53f25b2c", "data": { - "inGameID": 2073, - "isHot": false + "inGameID": 2073 }, "difficulty": "NORMAL", "isPrimary": true, @@ -5506,8 +5162,7 @@ { "chartID": "e517d6a79d3ce9870a43e9311788365a927df974", "data": { - "inGameID": 2077, - "isHot": false + "inGameID": 2077 }, "difficulty": "EXPERT", "isPrimary": true, @@ -5522,8 +5177,7 @@ { "chartID": "0737e9b77aec0ba4859e1f12d7e0a3b7835e2176", "data": { - "inGameID": 2077, - "isHot": false + "inGameID": 2077 }, "difficulty": "HARD", "isPrimary": true, @@ -5538,8 +5192,7 @@ { "chartID": "7ffe275794cf3f331a09e2f00b8496e5962465db", "data": { - "inGameID": 2077, - "isHot": false + "inGameID": 2077 }, "difficulty": "NORMAL", "isPrimary": true, @@ -5554,8 +5207,7 @@ { "chartID": "ac97bac83e9414f53f47280467b94ae18db555ec", "data": { - "inGameID": 2076, - "isHot": false + "inGameID": 2076 }, "difficulty": "EXPERT", "isPrimary": true, @@ -5570,8 +5222,7 @@ { "chartID": "d5dab3bd57060a241f560530665ad70cca1725bb", "data": { - "inGameID": 2076, - "isHot": false + "inGameID": 2076 }, "difficulty": "HARD", "isPrimary": true, @@ -5586,8 +5237,7 @@ { "chartID": "1d887cb7d520f969686880eaf96575dadadc9dcd", "data": { - "inGameID": 2076, - "isHot": false + "inGameID": 2076 }, "difficulty": "NORMAL", "isPrimary": true, @@ -5602,8 +5252,7 @@ { "chartID": "6cae7acc3f63d66f8e3e7071533c40b23e44e84d", "data": { - "inGameID": 1239, - "isHot": false + "inGameID": 1239 }, "difficulty": "EXPERT", "isPrimary": true, @@ -5618,8 +5267,7 @@ { "chartID": "1f2826111621c8ac6b762c359aaa8ea19c06a946", "data": { - "inGameID": 1239, - "isHot": false + "inGameID": 1239 }, "difficulty": "HARD", "isPrimary": true, @@ -5634,8 +5282,7 @@ { "chartID": "e257b09af5497682dbc5c421536a526d4c01db8d", "data": { - "inGameID": 1239, - "isHot": false + "inGameID": 1239 }, "difficulty": "NORMAL", "isPrimary": true, @@ -5650,8 +5297,7 @@ { "chartID": "64a8a5150a6911ebfeb3dbaf652443a41efc723c", "data": { - "inGameID": 2078, - "isHot": false + "inGameID": 2078 }, "difficulty": "EXPERT", "isPrimary": true, @@ -5666,8 +5312,7 @@ { "chartID": "4ae925be99c9a8cc4b20e4734bcbc4fa807edda5", "data": { - "inGameID": 2078, - "isHot": false + "inGameID": 2078 }, "difficulty": "HARD", "isPrimary": true, @@ -5682,8 +5327,7 @@ { "chartID": "b845518beb9af8a7b9576803f120922755f5714f", "data": { - "inGameID": 2078, - "isHot": false + "inGameID": 2078 }, "difficulty": "NORMAL", "isPrimary": true, @@ -5698,8 +5342,7 @@ { "chartID": "7bc2410603e2752abb995f34590d1b2eb3b77e9f", "data": { - "inGameID": 2062, - "isHot": false + "inGameID": 2062 }, "difficulty": "EXPERT", "isPrimary": true, @@ -5714,8 +5357,7 @@ { "chartID": "61ee0edd0e36220c2aab9227a9c7f9290020c472", "data": { - "inGameID": 2062, - "isHot": false + "inGameID": 2062 }, "difficulty": "HARD", "isPrimary": true, @@ -5730,8 +5372,7 @@ { "chartID": "aa0301109233199dfdbf4000c6477ba8a97e3b74", "data": { - "inGameID": 2062, - "isHot": false + "inGameID": 2062 }, "difficulty": "NORMAL", "isPrimary": true, @@ -5746,8 +5387,7 @@ { "chartID": "d6e5386ce275cd0dfae9c09225a1704d84f4054f", "data": { - "inGameID": 1256, - "isHot": false + "inGameID": 1256 }, "difficulty": "EXPERT", "isPrimary": true, @@ -5762,8 +5402,7 @@ { "chartID": "5c84c130a66483b48b638479872bd57ff5cf94c9", "data": { - "inGameID": 1256, - "isHot": false + "inGameID": 1256 }, "difficulty": "HARD", "isPrimary": true, @@ -5778,8 +5417,7 @@ { "chartID": "eee480abff8b7163426a0c53787fbfb2c0657bff", "data": { - "inGameID": 1256, - "isHot": false + "inGameID": 1256 }, "difficulty": "NORMAL", "isPrimary": true, @@ -5794,8 +5432,7 @@ { "chartID": "65446e3c05338ec3ecceabdc72c3709947c35841", "data": { - "inGameID": 2060, - "isHot": false + "inGameID": 2060 }, "difficulty": "EXPERT", "isPrimary": true, @@ -5810,8 +5447,7 @@ { "chartID": "4b87a0c85df93c79ac640acb987473bd88c4efeb", "data": { - "inGameID": 2060, - "isHot": false + "inGameID": 2060 }, "difficulty": "HARD", "isPrimary": true, @@ -5826,8 +5462,7 @@ { "chartID": "189648a3895632ebbfbe66cb3b53f61d823bb1fa", "data": { - "inGameID": 2060, - "isHot": false + "inGameID": 2060 }, "difficulty": "NORMAL", "isPrimary": true, @@ -5842,8 +5477,7 @@ { "chartID": "da35fa7218925d24dfe794cdcbfafd50f2be87af", "data": { - "inGameID": 2075, - "isHot": false + "inGameID": 2075 }, "difficulty": "EXPERT", "isPrimary": true, @@ -5858,8 +5492,7 @@ { "chartID": "8f3672d745a89b4a34a25b04f6fd1bef1be395c9", "data": { - "inGameID": 2075, - "isHot": false + "inGameID": 2075 }, "difficulty": "HARD", "isPrimary": true, @@ -5874,8 +5507,7 @@ { "chartID": "d13ea6b5b5b2237f692795d38add915ebbb2e405", "data": { - "inGameID": 2075, - "isHot": false + "inGameID": 2075 }, "difficulty": "NORMAL", "isPrimary": true, @@ -5890,8 +5522,7 @@ { "chartID": "8d53c49bdb43d48dcbabdd9dadaf880788781910", "data": { - "inGameID": 2059, - "isHot": false + "inGameID": 2059 }, "difficulty": "EXPERT", "isPrimary": true, @@ -5906,8 +5537,7 @@ { "chartID": "fa1ac134ef4b3ebc1a1534c8a27d801fa2a8ed02", "data": { - "inGameID": 2059, - "isHot": false + "inGameID": 2059 }, "difficulty": "HARD", "isPrimary": true, @@ -5922,8 +5552,7 @@ { "chartID": "af19ed9e9604f7d8fce7a50502e17dfbaf70c834", "data": { - "inGameID": 2059, - "isHot": false + "inGameID": 2059 }, "difficulty": "NORMAL", "isPrimary": true, @@ -5938,8 +5567,7 @@ { "chartID": "6ed472c62acf9065d91443e1a74fc66a893c035c", "data": { - "inGameID": 2091, - "isHot": false + "inGameID": 2091 }, "difficulty": "EXPERT", "isPrimary": true, @@ -5954,8 +5582,7 @@ { "chartID": "d1e8bbafab0817dcd7948cb04a0a93dab60e7934", "data": { - "inGameID": 2091, - "isHot": false + "inGameID": 2091 }, "difficulty": "HARD", "isPrimary": true, @@ -5970,8 +5597,7 @@ { "chartID": "988c3a3426de674f9cf8e405dce1c24494c926b4", "data": { - "inGameID": 2091, - "isHot": false + "inGameID": 2091 }, "difficulty": "NORMAL", "isPrimary": true, @@ -5986,8 +5612,7 @@ { "chartID": "919dc0d18bba741112660a98d91d575e756890e4", "data": { - "inGameID": 2089, - "isHot": false + "inGameID": 2089 }, "difficulty": "EXPERT", "isPrimary": true, @@ -6002,8 +5627,7 @@ { "chartID": "2bf52d0ef8978a0e631a0a18f0e5c6418c4c8091", "data": { - "inGameID": 2089, - "isHot": false + "inGameID": 2089 }, "difficulty": "HARD", "isPrimary": true, @@ -6018,8 +5642,7 @@ { "chartID": "1a01d83d3d3c7d312237d6b4dd30f3454937cda8", "data": { - "inGameID": 2089, - "isHot": false + "inGameID": 2089 }, "difficulty": "NORMAL", "isPrimary": true, @@ -6034,8 +5657,7 @@ { "chartID": "cb2794abd7cf45a945eadad2fcaf21ab920a70c2", "data": { - "inGameID": 2088, - "isHot": false + "inGameID": 2088 }, "difficulty": "EXPERT", "isPrimary": true, @@ -6050,8 +5672,7 @@ { "chartID": "b8001fef8c27bd2e7003be799c16403a202f0c9b", "data": { - "inGameID": 2088, - "isHot": false + "inGameID": 2088 }, "difficulty": "HARD", "isPrimary": true, @@ -6066,8 +5687,7 @@ { "chartID": "42eef7bf9bf18dce12e29aac559e4c64ef8881e0", "data": { - "inGameID": 2088, - "isHot": false + "inGameID": 2088 }, "difficulty": "NORMAL", "isPrimary": true, @@ -6082,8 +5702,7 @@ { "chartID": "72fcec39296c3bfc44fce08eab68f91804666c37", "data": { - "inGameID": 2090, - "isHot": false + "inGameID": 2090 }, "difficulty": "EXPERT", "isPrimary": true, @@ -6098,8 +5717,7 @@ { "chartID": "5f111501358f662ce8b7b88d4e3eb5b6715c64eb", "data": { - "inGameID": 2090, - "isHot": false + "inGameID": 2090 }, "difficulty": "HARD", "isPrimary": true, @@ -6114,8 +5732,7 @@ { "chartID": "4daec2bf144335e91c445b1358b2353a5e5343ce", "data": { - "inGameID": 2090, - "isHot": false + "inGameID": 2090 }, "difficulty": "NORMAL", "isPrimary": true, @@ -6130,8 +5747,7 @@ { "chartID": "101dbfe74732f942f480326417d4c02f241ac482", "data": { - "inGameID": 2037, - "isHot": false + "inGameID": 2037 }, "difficulty": "EXPERT", "isPrimary": true, @@ -6146,8 +5762,7 @@ { "chartID": "9feb4c4c3675139bd871f03a4813fd2a79c9df8d", "data": { - "inGameID": 2037, - "isHot": false + "inGameID": 2037 }, "difficulty": "HARD", "isPrimary": true, @@ -6162,8 +5777,7 @@ { "chartID": "835d850d1a31070af1232271c2309f197e844a02", "data": { - "inGameID": 2037, - "isHot": false + "inGameID": 2037 }, "difficulty": "NORMAL", "isPrimary": true, @@ -6178,8 +5792,7 @@ { "chartID": "30b6579c94e67c4eaf3baeccff80f7a9284d196f", "data": { - "inGameID": 2070, - "isHot": false + "inGameID": 2070 }, "difficulty": "EXPERT", "isPrimary": true, @@ -6194,8 +5807,7 @@ { "chartID": "f3df9866fbce82b2c47921c2064469622372af82", "data": { - "inGameID": 2070, - "isHot": false + "inGameID": 2070 }, "difficulty": "HARD", "isPrimary": true, @@ -6210,8 +5822,7 @@ { "chartID": "e77526b2ee14454975b2859c7072c3b103dcf830", "data": { - "inGameID": 2070, - "isHot": false + "inGameID": 2070 }, "difficulty": "NORMAL", "isPrimary": true, @@ -6226,8 +5837,7 @@ { "chartID": "5dfbbcb43b0d9b7cf93ad23c5278d3ac1095e55a", "data": { - "inGameID": 2049, - "isHot": false + "inGameID": 2049 }, "difficulty": "EXPERT", "isPrimary": true, @@ -6242,8 +5852,7 @@ { "chartID": "135be23d52fb1ab2242e86e95d2ce7eccef69402", "data": { - "inGameID": 2049, - "isHot": false + "inGameID": 2049 }, "difficulty": "HARD", "isPrimary": true, @@ -6258,8 +5867,7 @@ { "chartID": "1f850177a1b579ccad3c9f824841b4e280a73c9b", "data": { - "inGameID": 2049, - "isHot": false + "inGameID": 2049 }, "difficulty": "NORMAL", "isPrimary": true, @@ -6274,8 +5882,7 @@ { "chartID": "28dd34e7a39b0c25690c8149e3546d322ca25a31", "data": { - "inGameID": 2048, - "isHot": false + "inGameID": 2048 }, "difficulty": "EXPERT", "isPrimary": true, @@ -6290,8 +5897,7 @@ { "chartID": "6dc8fb226b78dcfda6bdbdb687a2dc0c6943ae60", "data": { - "inGameID": 2048, - "isHot": false + "inGameID": 2048 }, "difficulty": "HARD", "isPrimary": true, @@ -6306,8 +5912,7 @@ { "chartID": "2e3fa97855d8497355587a27244f5f3846b037cf", "data": { - "inGameID": 2048, - "isHot": false + "inGameID": 2048 }, "difficulty": "NORMAL", "isPrimary": true, @@ -6322,8 +5927,7 @@ { "chartID": "724ae0c8934e228ae5c68c91c8f1ead791862835", "data": { - "inGameID": 2021, - "isHot": false + "inGameID": 2021 }, "difficulty": "EXPERT", "isPrimary": true, @@ -6338,8 +5942,7 @@ { "chartID": "e4082af1ab8c5670289dfc70c82b7751a24a5ba3", "data": { - "inGameID": 2021, - "isHot": false + "inGameID": 2021 }, "difficulty": "HARD", "isPrimary": true, @@ -6354,8 +5957,7 @@ { "chartID": "82eb1f140237ca151d70f8c44d396c249beb91e1", "data": { - "inGameID": 2021, - "isHot": false + "inGameID": 2021 }, "difficulty": "INFERNO", "isPrimary": true, @@ -6370,8 +5972,7 @@ { "chartID": "ce2c5b088d477d54a05c0b728d13cb490e71f163", "data": { - "inGameID": 2021, - "isHot": false + "inGameID": 2021 }, "difficulty": "NORMAL", "isPrimary": true, @@ -6386,8 +5987,7 @@ { "chartID": "4a953e5ba83f8ae8d98a0bcbca93350d8d2a2114", "data": { - "inGameID": 2024, - "isHot": false + "inGameID": 2024 }, "difficulty": "EXPERT", "isPrimary": true, @@ -6402,8 +6002,7 @@ { "chartID": "b3e81f3ec01e40636dbe8bd49a3b67b3a4a6c438", "data": { - "inGameID": 2024, - "isHot": false + "inGameID": 2024 }, "difficulty": "HARD", "isPrimary": true, @@ -6418,8 +6017,7 @@ { "chartID": "5889e5bf770db36379f240ae48df078b2105a52c", "data": { - "inGameID": 2024, - "isHot": false + "inGameID": 2024 }, "difficulty": "NORMAL", "isPrimary": true, @@ -6434,8 +6032,7 @@ { "chartID": "5c4d07c74cd8c228e990b2aa37e0dce5866d661b", "data": { - "inGameID": 2067, - "isHot": false + "inGameID": 2067 }, "difficulty": "EXPERT", "isPrimary": true, @@ -6450,8 +6047,7 @@ { "chartID": "44497938cd47cf435c795b3e6f32f7d75ab7f296", "data": { - "inGameID": 2067, - "isHot": false + "inGameID": 2067 }, "difficulty": "HARD", "isPrimary": true, @@ -6466,8 +6062,7 @@ { "chartID": "4146b0046757dcb06bbff2daf0248691176caeb7", "data": { - "inGameID": 2067, - "isHot": false + "inGameID": 2067 }, "difficulty": "NORMAL", "isPrimary": true, @@ -6482,8 +6077,7 @@ { "chartID": "58b4d63448fdac1e13a8b4672f9de0bf41f94008", "data": { - "inGameID": 2066, - "isHot": false + "inGameID": 2066 }, "difficulty": "EXPERT", "isPrimary": true, @@ -6498,8 +6092,7 @@ { "chartID": "ba6ecd1095d48b73df645d9c3b556cb1952534cf", "data": { - "inGameID": 2066, - "isHot": false + "inGameID": 2066 }, "difficulty": "HARD", "isPrimary": true, @@ -6514,8 +6107,7 @@ { "chartID": "59ad2ecb600b87ab5301d32d959ab2819d1f062c", "data": { - "inGameID": 2066, - "isHot": false + "inGameID": 2066 }, "difficulty": "NORMAL", "isPrimary": true, @@ -6530,8 +6122,7 @@ { "chartID": "73d67ef84bb91e0f289285b6d84daf7af9f2f9c7", "data": { - "inGameID": 1204, - "isHot": false + "inGameID": 1204 }, "difficulty": "EXPERT", "isPrimary": true, @@ -6546,8 +6137,7 @@ { "chartID": "3fdfa4676112643128761efce4fda65e409558d6", "data": { - "inGameID": 1204, - "isHot": false + "inGameID": 1204 }, "difficulty": "HARD", "isPrimary": true, @@ -6562,8 +6152,7 @@ { "chartID": "2be4480fcfa8fdf067feb62b615c4343c9badc9b", "data": { - "inGameID": 1204, - "isHot": false + "inGameID": 1204 }, "difficulty": "NORMAL", "isPrimary": true, @@ -6578,8 +6167,7 @@ { "chartID": "c603efd8a2477549ca25b84df2df5951e040b6e6", "data": { - "inGameID": 2043, - "isHot": false + "inGameID": 2043 }, "difficulty": "EXPERT", "isPrimary": true, @@ -6594,8 +6182,7 @@ { "chartID": "22e2aa91502a00598b9eba1542522a1f457597ee", "data": { - "inGameID": 2043, - "isHot": false + "inGameID": 2043 }, "difficulty": "HARD", "isPrimary": true, @@ -6610,8 +6197,7 @@ { "chartID": "6b8422aac7e132ca27e7217620364a1555e8d365", "data": { - "inGameID": 2043, - "isHot": false + "inGameID": 2043 }, "difficulty": "NORMAL", "isPrimary": true, @@ -6626,8 +6212,7 @@ { "chartID": "da32dafff1bc300e59138f498029aa7e12ac6fcb", "data": { - "inGameID": 2068, - "isHot": false + "inGameID": 2068 }, "difficulty": "EXPERT", "isPrimary": true, @@ -6642,8 +6227,7 @@ { "chartID": "2b36fb66ed2ea3df6b5af0837e8559109c57cbc4", "data": { - "inGameID": 2068, - "isHot": false + "inGameID": 2068 }, "difficulty": "HARD", "isPrimary": true, @@ -6658,8 +6242,7 @@ { "chartID": "95770d6d6fe41e008ef46f8d2044b81cbcbc9672", "data": { - "inGameID": 2068, - "isHot": false + "inGameID": 2068 }, "difficulty": "NORMAL", "isPrimary": true, @@ -6674,8 +6257,7 @@ { "chartID": "a072ee02fefdb0d54d9e8eba77241990bab57480", "data": { - "inGameID": 2069, - "isHot": false + "inGameID": 2069 }, "difficulty": "EXPERT", "isPrimary": true, @@ -6690,8 +6272,7 @@ { "chartID": "6a34df8afbada1b6030793fc78bae868a94fd1d7", "data": { - "inGameID": 2069, - "isHot": false + "inGameID": 2069 }, "difficulty": "HARD", "isPrimary": true, @@ -6706,8 +6287,7 @@ { "chartID": "37ad4f38604687d2b0904a85a7a073f76f1a3158", "data": { - "inGameID": 2069, - "isHot": false + "inGameID": 2069 }, "difficulty": "NORMAL", "isPrimary": true, @@ -6722,8 +6302,7 @@ { "chartID": "b7da55db33abb29f6f20acbe8849200572ce3acb", "data": { - "inGameID": 2084, - "isHot": false + "inGameID": 2084 }, "difficulty": "EXPERT", "isPrimary": true, @@ -6738,8 +6317,7 @@ { "chartID": "e5f7ace1f365bfbfc7138e0d0adb0746b0c85763", "data": { - "inGameID": 2084, - "isHot": false + "inGameID": 2084 }, "difficulty": "HARD", "isPrimary": true, @@ -6754,8 +6332,7 @@ { "chartID": "f883143916a5541859b64d8841c2294c4b58b5d8", "data": { - "inGameID": 2084, - "isHot": false + "inGameID": 2084 }, "difficulty": "NORMAL", "isPrimary": true, @@ -6770,8 +6347,7 @@ { "chartID": "41cceb34829753276736ab5b293ea1a8a3eedf1f", "data": { - "inGameID": 2040, - "isHot": false + "inGameID": 2040 }, "difficulty": "EXPERT", "isPrimary": true, @@ -6786,8 +6362,7 @@ { "chartID": "b40c28b2768ba3e26bb43025c23dc6b6778e8bf4", "data": { - "inGameID": 2040, - "isHot": false + "inGameID": 2040 }, "difficulty": "HARD", "isPrimary": true, @@ -6802,8 +6377,7 @@ { "chartID": "50649c839e0f16c6a56fe090a47bd737ee255ece", "data": { - "inGameID": 2040, - "isHot": false + "inGameID": 2040 }, "difficulty": "NORMAL", "isPrimary": true, @@ -6818,8 +6392,7 @@ { "chartID": "f48aff02c874c6f79c3806b2b6cf81637ae53f3f", "data": { - "inGameID": 2042, - "isHot": false + "inGameID": 2042 }, "difficulty": "EXPERT", "isPrimary": true, @@ -6834,8 +6407,7 @@ { "chartID": "32c7d7f7911cfdfaf37c508674498b18c773ff0c", "data": { - "inGameID": 2042, - "isHot": false + "inGameID": 2042 }, "difficulty": "HARD", "isPrimary": true, @@ -6850,8 +6422,7 @@ { "chartID": "021fe314dafa21046a0abcf8830ebb2be83038b0", "data": { - "inGameID": 2042, - "isHot": false + "inGameID": 2042 }, "difficulty": "NORMAL", "isPrimary": true, @@ -6866,8 +6437,7 @@ { "chartID": "2bbbb1c451e56f9113cc2dccf209e1ae1a817262", "data": { - "inGameID": 1240, - "isHot": false + "inGameID": 1240 }, "difficulty": "EXPERT", "isPrimary": true, @@ -6882,8 +6452,7 @@ { "chartID": "f2d0ea1fe2ada5a5ac5df05102a3366fa821f93a", "data": { - "inGameID": 1240, - "isHot": false + "inGameID": 1240 }, "difficulty": "HARD", "isPrimary": true, @@ -6898,8 +6467,7 @@ { "chartID": "91d551cf51a3f240dd56644eb00df048b0e293da", "data": { - "inGameID": 1240, - "isHot": false + "inGameID": 1240 }, "difficulty": "NORMAL", "isPrimary": true, @@ -6914,8 +6482,7 @@ { "chartID": "29317b7485b7902c80518d1fa03b0aefd038d85a", "data": { - "inGameID": 2036, - "isHot": false + "inGameID": 2036 }, "difficulty": "EXPERT", "isPrimary": true, @@ -6930,8 +6497,7 @@ { "chartID": "2c29b80992f5e0acf53969ab3da76a545b491a5f", "data": { - "inGameID": 2036, - "isHot": false + "inGameID": 2036 }, "difficulty": "HARD", "isPrimary": true, @@ -6946,8 +6512,7 @@ { "chartID": "71d45d60588ffaf839ad73545eaf234f0459cfe6", "data": { - "inGameID": 2036, - "isHot": false + "inGameID": 2036 }, "difficulty": "NORMAL", "isPrimary": true, @@ -6962,8 +6527,7 @@ { "chartID": "0ef83e908d58eb25689267d690ca22d39a3b7ee2", "data": { - "inGameID": 2010, - "isHot": false + "inGameID": 2010 }, "difficulty": "EXPERT", "isPrimary": true, @@ -6978,8 +6542,7 @@ { "chartID": "e97cead438af6b66c1441d7429e2925e1ed78ac4", "data": { - "inGameID": 2010, - "isHot": false + "inGameID": 2010 }, "difficulty": "HARD", "isPrimary": true, @@ -6994,8 +6557,7 @@ { "chartID": "609547a50041f855b4d4415cdc719f5f353a73cd", "data": { - "inGameID": 2010, - "isHot": false + "inGameID": 2010 }, "difficulty": "NORMAL", "isPrimary": true, @@ -7010,8 +6572,7 @@ { "chartID": "515900feade6b5071462d966c65aa8a596734b8f", "data": { - "inGameID": 2047, - "isHot": false + "inGameID": 2047 }, "difficulty": "EXPERT", "isPrimary": true, @@ -7026,8 +6587,7 @@ { "chartID": "563de95ac43983a8033026340e40d8109e7614bf", "data": { - "inGameID": 2047, - "isHot": false + "inGameID": 2047 }, "difficulty": "HARD", "isPrimary": true, @@ -7042,8 +6602,7 @@ { "chartID": "2cb878fd708a7afefbc684feeec7a8410f7a4a7a", "data": { - "inGameID": 2047, - "isHot": false + "inGameID": 2047 }, "difficulty": "NORMAL", "isPrimary": true, @@ -7058,8 +6617,7 @@ { "chartID": "2464837dad3a6702700fa6cd7b32673a7be7dc1a", "data": { - "inGameID": 2032, - "isHot": false + "inGameID": 2032 }, "difficulty": "EXPERT", "isPrimary": true, @@ -7074,8 +6632,7 @@ { "chartID": "310e45ab2cea24bc7008b4a082c84fc0411f4b4e", "data": { - "inGameID": 2032, - "isHot": false + "inGameID": 2032 }, "difficulty": "HARD", "isPrimary": true, @@ -7090,8 +6647,7 @@ { "chartID": "5ad036a632f9b8e50cee0a1813cd5bd038bdc319", "data": { - "inGameID": 2032, - "isHot": false + "inGameID": 2032 }, "difficulty": "NORMAL", "isPrimary": true, @@ -7106,8 +6662,7 @@ { "chartID": "7fb5475bc2d3fcf698a04d1506279ad65caa2f8c", "data": { - "inGameID": 2033, - "isHot": false + "inGameID": 2033 }, "difficulty": "EXPERT", "isPrimary": true, @@ -7122,8 +6677,7 @@ { "chartID": "6a0e7d646c1cce4a3487993c230fb2fd4889424b", "data": { - "inGameID": 2033, - "isHot": false + "inGameID": 2033 }, "difficulty": "HARD", "isPrimary": true, @@ -7138,8 +6692,7 @@ { "chartID": "73cc5806d674f48e4eed83b5694a1ac48ec84615", "data": { - "inGameID": 2033, - "isHot": false + "inGameID": 2033 }, "difficulty": "NORMAL", "isPrimary": true, @@ -7154,8 +6707,7 @@ { "chartID": "a6d3069edf26ecd238c73491cdcc7e8eeff439ec", "data": { - "inGameID": 2034, - "isHot": false + "inGameID": 2034 }, "difficulty": "EXPERT", "isPrimary": true, @@ -7170,8 +6722,7 @@ { "chartID": "be0915bfe91c2c0df5fa2accd176466f4620bc9c", "data": { - "inGameID": 2034, - "isHot": false + "inGameID": 2034 }, "difficulty": "HARD", "isPrimary": true, @@ -7186,8 +6737,7 @@ { "chartID": "687e530a5569f97c153f58478ff68465f087c1ae", "data": { - "inGameID": 2034, - "isHot": false + "inGameID": 2034 }, "difficulty": "NORMAL", "isPrimary": true, @@ -7202,8 +6752,7 @@ { "chartID": "d0cc722e428e00d8218bfd0eb00624ef311cb047", "data": { - "inGameID": 2012, - "isHot": false + "inGameID": 2012 }, "difficulty": "EXPERT", "isPrimary": true, @@ -7218,8 +6767,7 @@ { "chartID": "c31444da78bb84eeda4717ad9d9082d1469354cc", "data": { - "inGameID": 2012, - "isHot": false + "inGameID": 2012 }, "difficulty": "HARD", "isPrimary": true, @@ -7234,8 +6782,7 @@ { "chartID": "e453c2189e259f8e85157f015b879a718631b1ce", "data": { - "inGameID": 2012, - "isHot": false + "inGameID": 2012 }, "difficulty": "INFERNO", "isPrimary": true, @@ -7250,8 +6797,7 @@ { "chartID": "e037929dcf5ada1fa130f4cc77e6289b30fcf72c", "data": { - "inGameID": 2012, - "isHot": false + "inGameID": 2012 }, "difficulty": "NORMAL", "isPrimary": true, @@ -7266,8 +6812,7 @@ { "chartID": "19b6b20d1aa82035c86299e04031b97ea2c40528", "data": { - "inGameID": 2001, - "isHot": false + "inGameID": 2001 }, "difficulty": "EXPERT", "isPrimary": true, @@ -7282,8 +6827,7 @@ { "chartID": "94da858a151b86109ec26b4448605b7ca1fee556", "data": { - "inGameID": 2001, - "isHot": false + "inGameID": 2001 }, "difficulty": "HARD", "isPrimary": true, @@ -7298,8 +6842,7 @@ { "chartID": "cbf0ee4c4a81b229277513867121389a02607769", "data": { - "inGameID": 2001, - "isHot": false + "inGameID": 2001 }, "difficulty": "NORMAL", "isPrimary": true, @@ -7314,8 +6857,7 @@ { "chartID": "cf6d5e729f18c5f2a98fdc3acb19cf04fec2a62a", "data": { - "inGameID": 1020, - "isHot": false + "inGameID": 1020 }, "difficulty": "EXPERT", "isPrimary": true, @@ -7330,8 +6872,7 @@ { "chartID": "4215b3e78816874b2a433c9cd28de3b448efdb8a", "data": { - "inGameID": 1020, - "isHot": false + "inGameID": 1020 }, "difficulty": "HARD", "isPrimary": true, @@ -7346,8 +6887,7 @@ { "chartID": "0b2385ea31e1ae4f1e0eee9ca866ee4cf1cb0e8e", "data": { - "inGameID": 1020, - "isHot": false + "inGameID": 1020 }, "difficulty": "NORMAL", "isPrimary": true, @@ -7362,8 +6902,7 @@ { "chartID": "82da0b4823b5557ea2e3138f87ad153b1a66da2d", "data": { - "inGameID": 1008, - "isHot": false + "inGameID": 1008 }, "difficulty": "EXPERT", "isPrimary": true, @@ -7378,8 +6917,7 @@ { "chartID": "4b38520bf5dcffb329e3952bd839abbd7c68c995", "data": { - "inGameID": 1008, - "isHot": false + "inGameID": 1008 }, "difficulty": "HARD", "isPrimary": true, @@ -7394,8 +6932,7 @@ { "chartID": "62e7c9c4771f0fd6f62c5f7ae3774b2df412a88a", "data": { - "inGameID": 1008, - "isHot": false + "inGameID": 1008 }, "difficulty": "NORMAL", "isPrimary": true, @@ -7410,8 +6947,7 @@ { "chartID": "f19fc5d4d5d49811224230c6562822befb41a178", "data": { - "inGameID": 1264, - "isHot": false + "inGameID": 1264 }, "difficulty": "EXPERT", "isPrimary": true, @@ -7426,8 +6962,7 @@ { "chartID": "e5db8a3955a32e6bbddbe0e04efd2f8e9e5fa0de", "data": { - "inGameID": 1264, - "isHot": false + "inGameID": 1264 }, "difficulty": "HARD", "isPrimary": true, @@ -7442,8 +6977,7 @@ { "chartID": "0e948e6636d451298760ed08c8d027bc8316218c", "data": { - "inGameID": 1264, - "isHot": false + "inGameID": 1264 }, "difficulty": "NORMAL", "isPrimary": true, @@ -7458,8 +6992,7 @@ { "chartID": "a284ea7fce92f83e23b66ab2231488ff78093019", "data": { - "inGameID": 2002, - "isHot": false + "inGameID": 2002 }, "difficulty": "EXPERT", "isPrimary": true, @@ -7474,8 +7007,7 @@ { "chartID": "a2dcb8b8501f6adfaaa0f7fc934f3fec73579006", "data": { - "inGameID": 2002, - "isHot": false + "inGameID": 2002 }, "difficulty": "HARD", "isPrimary": true, @@ -7490,8 +7022,7 @@ { "chartID": "610d2dc0a682321ca925b8d5a3c7ce99c68f862e", "data": { - "inGameID": 2002, - "isHot": false + "inGameID": 2002 }, "difficulty": "NORMAL", "isPrimary": true, @@ -7506,8 +7037,7 @@ { "chartID": "745521849887f203bc488db35186426f486e29a1", "data": { - "inGameID": 2003, - "isHot": false + "inGameID": 2003 }, "difficulty": "EXPERT", "isPrimary": true, @@ -7522,8 +7052,7 @@ { "chartID": "55507d6cad1b37e5a775c951c393d5aa9fb4f895", "data": { - "inGameID": 2003, - "isHot": false + "inGameID": 2003 }, "difficulty": "HARD", "isPrimary": true, @@ -7538,8 +7067,7 @@ { "chartID": "1fa94fcd21338039cc195b7d8be0f5d7a561275b", "data": { - "inGameID": 2003, - "isHot": false + "inGameID": 2003 }, "difficulty": "NORMAL", "isPrimary": true, @@ -7554,8 +7082,7 @@ { "chartID": "8e42533a6fbfef4e5395ccf8812c46c7ab15c380", "data": { - "inGameID": 2023, - "isHot": false + "inGameID": 2023 }, "difficulty": "EXPERT", "isPrimary": true, @@ -7570,8 +7097,7 @@ { "chartID": "29b11b4c53138759a64470978f87bf65cc902a27", "data": { - "inGameID": 2023, - "isHot": false + "inGameID": 2023 }, "difficulty": "HARD", "isPrimary": true, @@ -7586,8 +7112,7 @@ { "chartID": "1059d232266556c421219c7b0206e19698c333a4", "data": { - "inGameID": 2023, - "isHot": false + "inGameID": 2023 }, "difficulty": "NORMAL", "isPrimary": true, @@ -7602,8 +7127,7 @@ { "chartID": "75c5b9d79e5a2cb1729300b63040f9ee63c902e0", "data": { - "inGameID": 2028, - "isHot": false + "inGameID": 2028 }, "difficulty": "EXPERT", "isPrimary": true, @@ -7618,8 +7142,7 @@ { "chartID": "5c37429936c7972eb7fa380fffc58fc5260da802", "data": { - "inGameID": 2028, - "isHot": false + "inGameID": 2028 }, "difficulty": "HARD", "isPrimary": true, @@ -7634,8 +7157,7 @@ { "chartID": "0b921d2cb4921f8e72dc4bdd38539e2d92ecef00", "data": { - "inGameID": 2028, - "isHot": false + "inGameID": 2028 }, "difficulty": "NORMAL", "isPrimary": true, @@ -7650,8 +7172,7 @@ { "chartID": "bd4d656c4217dfd9b821d085fa58ab280decae2c", "data": { - "inGameID": 2030, - "isHot": false + "inGameID": 2030 }, "difficulty": "EXPERT", "isPrimary": true, @@ -7666,8 +7187,7 @@ { "chartID": "df6ea1ccbb36e20afb7f8c954a981dad68dafbc1", "data": { - "inGameID": 2030, - "isHot": false + "inGameID": 2030 }, "difficulty": "HARD", "isPrimary": true, @@ -7682,8 +7202,7 @@ { "chartID": "c983c86e8e0ed9689147ebd0779d0397f48919c9", "data": { - "inGameID": 2030, - "isHot": false + "inGameID": 2030 }, "difficulty": "NORMAL", "isPrimary": true, @@ -7698,8 +7217,7 @@ { "chartID": "f6a0c2990c0227a4bc18ce8a4607afd6649576fe", "data": { - "inGameID": 2027, - "isHot": false + "inGameID": 2027 }, "difficulty": "EXPERT", "isPrimary": true, @@ -7714,8 +7232,7 @@ { "chartID": "ad35bbcdc85f5ad410544209618f89e1456056ee", "data": { - "inGameID": 2027, - "isHot": false + "inGameID": 2027 }, "difficulty": "HARD", "isPrimary": true, @@ -7730,8 +7247,7 @@ { "chartID": "c309fd3c312938c65a536e1bbc0e4e8f07d80970", "data": { - "inGameID": 2027, - "isHot": false + "inGameID": 2027 }, "difficulty": "NORMAL", "isPrimary": true, @@ -7746,8 +7262,7 @@ { "chartID": "cb7e475af4a00672b0f4e326bc6947917b8b02e5", "data": { - "inGameID": 2031, - "isHot": false + "inGameID": 2031 }, "difficulty": "EXPERT", "isPrimary": true, @@ -7762,8 +7277,7 @@ { "chartID": "29770de3d969f93f2931f9cc6a7a5608a9a78a14", "data": { - "inGameID": 2031, - "isHot": false + "inGameID": 2031 }, "difficulty": "HARD", "isPrimary": true, @@ -7778,8 +7292,7 @@ { "chartID": "20661360ed8d4ca34c0dfb105a0e9769b07d87fe", "data": { - "inGameID": 2031, - "isHot": false + "inGameID": 2031 }, "difficulty": "NORMAL", "isPrimary": true, @@ -7794,8 +7307,7 @@ { "chartID": "12078a0060bbd9cbe91d0177cb945a4141e8d0a3", "data": { - "inGameID": 2029, - "isHot": false + "inGameID": 2029 }, "difficulty": "EXPERT", "isPrimary": true, @@ -7810,8 +7322,7 @@ { "chartID": "0413fa3aa87788cd019472665b240b065cd1031a", "data": { - "inGameID": 2029, - "isHot": false + "inGameID": 2029 }, "difficulty": "HARD", "isPrimary": true, @@ -7826,8 +7337,7 @@ { "chartID": "717693d149888fddb10918488356a495036ddc89", "data": { - "inGameID": 2029, - "isHot": false + "inGameID": 2029 }, "difficulty": "NORMAL", "isPrimary": true, @@ -7842,8 +7352,7 @@ { "chartID": "3f24d2fa21727fe49e4e6e426983543e1ad1be5c", "data": { - "inGameID": 2006, - "isHot": false + "inGameID": 2006 }, "difficulty": "EXPERT", "isPrimary": true, @@ -7858,8 +7367,7 @@ { "chartID": "37fed06a2190a4fb7fa43b21431cc12e94fb549a", "data": { - "inGameID": 2006, - "isHot": false + "inGameID": 2006 }, "difficulty": "HARD", "isPrimary": true, @@ -7874,8 +7382,7 @@ { "chartID": "7afd0dfdcdd26974e1c9bd86404c4e12f3daff4d", "data": { - "inGameID": 2006, - "isHot": false + "inGameID": 2006 }, "difficulty": "NORMAL", "isPrimary": true, @@ -7890,8 +7397,7 @@ { "chartID": "1921c63ae6b6c68e0a0e58456c0eaf034b21bbf2", "data": { - "inGameID": 2004, - "isHot": false + "inGameID": 2004 }, "difficulty": "EXPERT", "isPrimary": true, @@ -7906,8 +7412,7 @@ { "chartID": "042490d378984638fdd4228ba4aae936d99cdafb", "data": { - "inGameID": 2004, - "isHot": false + "inGameID": 2004 }, "difficulty": "HARD", "isPrimary": true, @@ -7922,8 +7427,7 @@ { "chartID": "299b37aa5193fb4e85c1b88072544875e40ce6cd", "data": { - "inGameID": 2004, - "isHot": false + "inGameID": 2004 }, "difficulty": "NORMAL", "isPrimary": true, @@ -7938,8 +7442,7 @@ { "chartID": "f4275c298ece92c22506372ea637168f7344f472", "data": { - "inGameID": 2005, - "isHot": false + "inGameID": 2005 }, "difficulty": "EXPERT", "isPrimary": true, @@ -7954,8 +7457,7 @@ { "chartID": "9126c416cb6e13d4ce5a76efff3da22e7daa9efa", "data": { - "inGameID": 2005, - "isHot": false + "inGameID": 2005 }, "difficulty": "HARD", "isPrimary": true, @@ -7970,8 +7472,7 @@ { "chartID": "9b6efae92b5b6ab636d1c6434e11915c59e881a1", "data": { - "inGameID": 2005, - "isHot": false + "inGameID": 2005 }, "difficulty": "NORMAL", "isPrimary": true, @@ -7986,8 +7487,7 @@ { "chartID": "a94efdcf0ad23ddce4d7d7c0f8f5c42fa55ac6c2", "data": { - "inGameID": 1224, - "isHot": false + "inGameID": 1224 }, "difficulty": "EXPERT", "isPrimary": true, @@ -8002,8 +7502,7 @@ { "chartID": "943450abeaff4268e64598028ddd9523f4267c1e", "data": { - "inGameID": 1224, - "isHot": false + "inGameID": 1224 }, "difficulty": "HARD", "isPrimary": true, @@ -8018,8 +7517,7 @@ { "chartID": "545fa6071ab0e1a64a6f637ae230f9c916c2c393", "data": { - "inGameID": 1224, - "isHot": false + "inGameID": 1224 }, "difficulty": "NORMAL", "isPrimary": true, @@ -8034,8 +7532,7 @@ { "chartID": "8d2ea21fd3b5b31d7791e5cec8a9e0d4002c9902", "data": { - "inGameID": 2008, - "isHot": false + "inGameID": 2008 }, "difficulty": "EXPERT", "isPrimary": true, @@ -8050,8 +7547,7 @@ { "chartID": "ac66d3ac7051cea63e9c8d2db9f3ce28934590f2", "data": { - "inGameID": 2008, - "isHot": false + "inGameID": 2008 }, "difficulty": "HARD", "isPrimary": true, @@ -8066,8 +7562,7 @@ { "chartID": "a5172b4ad07fd3eb7d8c3fcb8c47f8cf75591f84", "data": { - "inGameID": 2008, - "isHot": false + "inGameID": 2008 }, "difficulty": "NORMAL", "isPrimary": true, @@ -8082,8 +7577,7 @@ { "chartID": "a666f3e1285ee416e1d9244a43565436837f8278", "data": { - "inGameID": 2007, - "isHot": false + "inGameID": 2007 }, "difficulty": "EXPERT", "isPrimary": true, @@ -8098,8 +7592,7 @@ { "chartID": "e7df48dbdd0083dcb066bd0195e45c02b18a680c", "data": { - "inGameID": 2007, - "isHot": false + "inGameID": 2007 }, "difficulty": "HARD", "isPrimary": true, @@ -8114,8 +7607,7 @@ { "chartID": "b4e49c3325bf148d790a8306bd6f1016f262634c", "data": { - "inGameID": 2007, - "isHot": false + "inGameID": 2007 }, "difficulty": "NORMAL", "isPrimary": true, @@ -8130,8 +7622,7 @@ { "chartID": "3f4b87f59fb75ba7477fb148e6e85cae96ff18a5", "data": { - "inGameID": 2009, - "isHot": false + "inGameID": 2009 }, "difficulty": "EXPERT", "isPrimary": true, @@ -8146,8 +7637,7 @@ { "chartID": "1cba926963d25680650dce04cb5563fd1fb3ed10", "data": { - "inGameID": 2009, - "isHot": false + "inGameID": 2009 }, "difficulty": "HARD", "isPrimary": true, @@ -8162,8 +7652,7 @@ { "chartID": "25b448c2afd3300c027087799ae4129bf7960451", "data": { - "inGameID": 2009, - "isHot": false + "inGameID": 2009 }, "difficulty": "NORMAL", "isPrimary": true, @@ -8178,8 +7667,7 @@ { "chartID": "ba47d767544806c2bed8e6f8ce7e9f4a642d57c8", "data": { - "inGameID": 2011, - "isHot": false + "inGameID": 2011 }, "difficulty": "EXPERT", "isPrimary": true, @@ -8194,8 +7682,7 @@ { "chartID": "ff430a592dbbd0ec66dec59a0f273016274a3001", "data": { - "inGameID": 2011, - "isHot": false + "inGameID": 2011 }, "difficulty": "HARD", "isPrimary": true, @@ -8210,8 +7697,7 @@ { "chartID": "001ddfcb50f0198493a15f034d590d93f8fdd1ca", "data": { - "inGameID": 2011, - "isHot": false + "inGameID": 2011 }, "difficulty": "NORMAL", "isPrimary": true, @@ -8226,8 +7712,7 @@ { "chartID": "0a468659899fdcb08f6be2080a0c3f4fa3bf0500", "data": { - "inGameID": 2065, - "isHot": false + "inGameID": 2065 }, "difficulty": "EXPERT", "isPrimary": true, @@ -8242,8 +7727,7 @@ { "chartID": "81d7d648987c63d3a7452b9f6665612c8e72b0b9", "data": { - "inGameID": 2065, - "isHot": false + "inGameID": 2065 }, "difficulty": "HARD", "isPrimary": true, @@ -8258,8 +7742,7 @@ { "chartID": "748a2bb999b2b49793238f5d1ef543bfbb2bf0f2", "data": { - "inGameID": 2065, - "isHot": false + "inGameID": 2065 }, "difficulty": "NORMAL", "isPrimary": true, @@ -8274,8 +7757,7 @@ { "chartID": "11c71acac7388f3cbf5d132c420a6247eabc846e", "data": { - "inGameID": 2019, - "isHot": false + "inGameID": 2019 }, "difficulty": "EXPERT", "isPrimary": true, @@ -8290,8 +7772,7 @@ { "chartID": "3d794e1b6c4eb8dec798a18647aacf2c810154ca", "data": { - "inGameID": 2019, - "isHot": false + "inGameID": 2019 }, "difficulty": "HARD", "isPrimary": true, @@ -8306,8 +7787,7 @@ { "chartID": "ebb8885e0ea37ea503cc1b9efc5eb0557f541a56", "data": { - "inGameID": 2019, - "isHot": false + "inGameID": 2019 }, "difficulty": "NORMAL", "isPrimary": true, @@ -8322,8 +7802,7 @@ { "chartID": "a76670ac26f5c672194bd55852e32eb89e35c924", "data": { - "inGameID": 1087, - "isHot": false + "inGameID": 1087 }, "difficulty": "EXPERT", "isPrimary": true, @@ -8338,8 +7817,7 @@ { "chartID": "fc0991f841ea0dbc38c91f97ff7d9aa5d19ecac3", "data": { - "inGameID": 1087, - "isHot": false + "inGameID": 1087 }, "difficulty": "HARD", "isPrimary": true, @@ -8354,8 +7832,7 @@ { "chartID": "e70b506dde61b0f5583886744b5cff665a91911f", "data": { - "inGameID": 1087, - "isHot": false + "inGameID": 1087 }, "difficulty": "NORMAL", "isPrimary": true, @@ -8370,8 +7847,7 @@ { "chartID": "60ae3a1f915a20e9609dfc0e16b082e71ca1e790", "data": { - "inGameID": 2013, - "isHot": false + "inGameID": 2013 }, "difficulty": "EXPERT", "isPrimary": true, @@ -8386,8 +7862,7 @@ { "chartID": "40721516a26c3c1a8c55c68fb9fa09b61fa3944d", "data": { - "inGameID": 2013, - "isHot": false + "inGameID": 2013 }, "difficulty": "HARD", "isPrimary": true, @@ -8402,8 +7877,7 @@ { "chartID": "388fab0bfeeb2f1c72c9ed1a5dcaeff8ac53d148", "data": { - "inGameID": 2013, - "isHot": false + "inGameID": 2013 }, "difficulty": "NORMAL", "isPrimary": true, @@ -8418,8 +7892,7 @@ { "chartID": "74955890cfcb7139726661d73c2e98092acd9a80", "data": { - "inGameID": 1231, - "isHot": false + "inGameID": 1231 }, "difficulty": "EXPERT", "isPrimary": true, @@ -8434,8 +7907,7 @@ { "chartID": "906cf3dea1c7c4d520cd0d537a0fccfe0577a51b", "data": { - "inGameID": 1231, - "isHot": false + "inGameID": 1231 }, "difficulty": "HARD", "isPrimary": true, @@ -8450,8 +7922,7 @@ { "chartID": "a481e1c66ba4c062075a277a8e860afbc38d8ffb", "data": { - "inGameID": 1231, - "isHot": false + "inGameID": 1231 }, "difficulty": "NORMAL", "isPrimary": true, @@ -8466,8 +7937,7 @@ { "chartID": "d17d3a1dd26427398d19f84f7a261dc597ace5f0", "data": { - "inGameID": 2014, - "isHot": false + "inGameID": 2014 }, "difficulty": "EXPERT", "isPrimary": true, @@ -8482,8 +7952,7 @@ { "chartID": "91432c085d2f126b2fe3c88b2663d3996931c249", "data": { - "inGameID": 2014, - "isHot": false + "inGameID": 2014 }, "difficulty": "HARD", "isPrimary": true, @@ -8498,8 +7967,7 @@ { "chartID": "812076123775439369cb1b73b49ec506e16d551e", "data": { - "inGameID": 2014, - "isHot": false + "inGameID": 2014 }, "difficulty": "NORMAL", "isPrimary": true, @@ -8514,8 +7982,7 @@ { "chartID": "0c1d86a7cb0c85b0232b367b4e391dfe49b0d182", "data": { - "inGameID": 2016, - "isHot": false + "inGameID": 2016 }, "difficulty": "EXPERT", "isPrimary": true, @@ -8530,8 +7997,7 @@ { "chartID": "9358b506494a135d41a7270ee66d6cdcc518cde9", "data": { - "inGameID": 2016, - "isHot": false + "inGameID": 2016 }, "difficulty": "HARD", "isPrimary": true, @@ -8546,8 +8012,7 @@ { "chartID": "458792e244c1bc47f037dfa53263a84c983a812c", "data": { - "inGameID": 2016, - "isHot": false + "inGameID": 2016 }, "difficulty": "NORMAL", "isPrimary": true, @@ -8562,8 +8027,7 @@ { "chartID": "1e0e01ebf528def7efc292db803b1159dad05f3e", "data": { - "inGameID": 2015, - "isHot": false + "inGameID": 2015 }, "difficulty": "EXPERT", "isPrimary": true, @@ -8578,8 +8042,7 @@ { "chartID": "604036332c3f6c7edfdbd81dad5d74009b3bbec7", "data": { - "inGameID": 2015, - "isHot": false + "inGameID": 2015 }, "difficulty": "HARD", "isPrimary": true, @@ -8594,8 +8057,7 @@ { "chartID": "6be9a20be6786a3e23ba69622a6ba36942c5cc49", "data": { - "inGameID": 2015, - "isHot": false + "inGameID": 2015 }, "difficulty": "NORMAL", "isPrimary": true, @@ -8610,8 +8072,7 @@ { "chartID": "b1ae4ad92ca2e1ed6e02b869dbdac3967b278b8e", "data": { - "inGameID": 2017, - "isHot": false + "inGameID": 2017 }, "difficulty": "EXPERT", "isPrimary": true, @@ -8626,8 +8087,7 @@ { "chartID": "adb1a19560e8e942b0e31250a340b3a5c5560073", "data": { - "inGameID": 2017, - "isHot": false + "inGameID": 2017 }, "difficulty": "HARD", "isPrimary": true, @@ -8642,8 +8102,7 @@ { "chartID": "90aaf9ec95bd3c447e4b83982c5a42c7a70166f0", "data": { - "inGameID": 2017, - "isHot": false + "inGameID": 2017 }, "difficulty": "NORMAL", "isPrimary": true, @@ -8658,8 +8117,7 @@ { "chartID": "ea6daae6baca92a71ba133323c0056d203bf4c64", "data": { - "inGameID": 1255, - "isHot": false + "inGameID": 1255 }, "difficulty": "EXPERT", "isPrimary": true, @@ -8674,8 +8132,7 @@ { "chartID": "b426c38c2aeffa4dc51b12c4fcfec20c52bedf07", "data": { - "inGameID": 1255, - "isHot": false + "inGameID": 1255 }, "difficulty": "HARD", "isPrimary": true, @@ -8690,8 +8147,7 @@ { "chartID": "64bccb40d4b44746e56a487d7c389edbf72248b9", "data": { - "inGameID": 1255, - "isHot": false + "inGameID": 1255 }, "difficulty": "NORMAL", "isPrimary": true, @@ -8706,8 +8162,7 @@ { "chartID": "f24c14e1a2d1118dff180f47dbe224ceb869a125", "data": { - "inGameID": 1254, - "isHot": false + "inGameID": 1254 }, "difficulty": "EXPERT", "isPrimary": true, @@ -8722,8 +8177,7 @@ { "chartID": "1c1ded134ad4ca607437810a1f0722d4f3ff6aed", "data": { - "inGameID": 1254, - "isHot": false + "inGameID": 1254 }, "difficulty": "HARD", "isPrimary": true, @@ -8738,8 +8192,7 @@ { "chartID": "7220031e07b670c9badaa7bd7ff49238c0e6fd4c", "data": { - "inGameID": 1254, - "isHot": false + "inGameID": 1254 }, "difficulty": "NORMAL", "isPrimary": true, @@ -8754,8 +8207,7 @@ { "chartID": "b447f4cfa371baf1c371ceb03c03036aea4731a4", "data": { - "inGameID": 1206, - "isHot": false + "inGameID": 1206 }, "difficulty": "EXPERT", "isPrimary": true, @@ -8770,8 +8222,7 @@ { "chartID": "474297167dfb59aaf518361824a692cb0f5599e8", "data": { - "inGameID": 1206, - "isHot": false + "inGameID": 1206 }, "difficulty": "HARD", "isPrimary": true, @@ -8786,8 +8237,7 @@ { "chartID": "77bd5791d25f3dac0d17e3370c8a133fe3659a8e", "data": { - "inGameID": 1206, - "isHot": false + "inGameID": 1206 }, "difficulty": "NORMAL", "isPrimary": true, @@ -8802,8 +8252,7 @@ { "chartID": "391164fcaf4e12d50d2b445d53a3d5805dde7180", "data": { - "inGameID": 1238, - "isHot": false + "inGameID": 1238 }, "difficulty": "EXPERT", "isPrimary": true, @@ -8818,8 +8267,7 @@ { "chartID": "ecee79396257c13a5fc1865d0a02ad508663f85e", "data": { - "inGameID": 1238, - "isHot": false + "inGameID": 1238 }, "difficulty": "HARD", "isPrimary": true, @@ -8834,8 +8282,7 @@ { "chartID": "88089e08d18f14b58cc41dfadda67f70fec7e9de", "data": { - "inGameID": 1238, - "isHot": false + "inGameID": 1238 }, "difficulty": "NORMAL", "isPrimary": true, @@ -8850,8 +8297,7 @@ { "chartID": "16b37bb221ffebc6d27d35ce1bcb236d6ff92fdb", "data": { - "inGameID": 1248, - "isHot": false + "inGameID": 1248 }, "difficulty": "EXPERT", "isPrimary": true, @@ -8866,8 +8312,7 @@ { "chartID": "1344a1577f3d5b0470590781e0397067a84b8d06", "data": { - "inGameID": 1248, - "isHot": false + "inGameID": 1248 }, "difficulty": "HARD", "isPrimary": true, @@ -8882,8 +8327,7 @@ { "chartID": "91263c6df69f5a40ec22ca4d8a461336016db40b", "data": { - "inGameID": 1248, - "isHot": false + "inGameID": 1248 }, "difficulty": "NORMAL", "isPrimary": true, @@ -8898,8 +8342,7 @@ { "chartID": "99b92f5ccc110242495e86f3f7990dc9237f5018", "data": { - "inGameID": 1247, - "isHot": false + "inGameID": 1247 }, "difficulty": "EXPERT", "isPrimary": true, @@ -8914,8 +8357,7 @@ { "chartID": "18606b072178ffeac2f7ccb21cfdf3846c560463", "data": { - "inGameID": 1247, - "isHot": false + "inGameID": 1247 }, "difficulty": "HARD", "isPrimary": true, @@ -8930,8 +8372,7 @@ { "chartID": "ea27abc14ad3f04bd03735cb74e96043a37d598b", "data": { - "inGameID": 1247, - "isHot": false + "inGameID": 1247 }, "difficulty": "NORMAL", "isPrimary": true, @@ -8946,8 +8387,7 @@ { "chartID": "25cb654ac2a6351b7e3fed9472998aaaee679b82", "data": { - "inGameID": 1249, - "isHot": false + "inGameID": 1249 }, "difficulty": "EXPERT", "isPrimary": true, @@ -8962,8 +8402,7 @@ { "chartID": "f882c7be059b678f088b0752f4f8583d2a02400e", "data": { - "inGameID": 1249, - "isHot": false + "inGameID": 1249 }, "difficulty": "HARD", "isPrimary": true, @@ -8978,8 +8417,7 @@ { "chartID": "b217277c992ef4e35ccd1df891e9eec049db9be6", "data": { - "inGameID": 1249, - "isHot": false + "inGameID": 1249 }, "difficulty": "NORMAL", "isPrimary": true, @@ -8994,8 +8432,7 @@ { "chartID": "348a538d0156cdb5a14adb70212a5f3f7e08e85f", "data": { - "inGameID": 1251, - "isHot": false + "inGameID": 1251 }, "difficulty": "EXPERT", "isPrimary": true, @@ -9010,8 +8447,7 @@ { "chartID": "4602e8de93a32aac67d61d77c4332d6d662286b5", "data": { - "inGameID": 1251, - "isHot": false + "inGameID": 1251 }, "difficulty": "HARD", "isPrimary": true, @@ -9026,8 +8462,7 @@ { "chartID": "f2de4cb1928897d45b76d788ea9f3258e11219ae", "data": { - "inGameID": 1251, - "isHot": false + "inGameID": 1251 }, "difficulty": "INFERNO", "isPrimary": true, @@ -9042,8 +8477,7 @@ { "chartID": "dceb6fdf775272840d17e2cb57aefa8a878e33ef", "data": { - "inGameID": 1251, - "isHot": false + "inGameID": 1251 }, "difficulty": "NORMAL", "isPrimary": true, @@ -9058,8 +8492,7 @@ { "chartID": "616d650d9cec10dfc542092b6dc90a09f5b39660", "data": { - "inGameID": 1250, - "isHot": false + "inGameID": 1250 }, "difficulty": "EXPERT", "isPrimary": true, @@ -9074,8 +8507,7 @@ { "chartID": "2a081e3d11397d509fb36f439eb84ca7517550ce", "data": { - "inGameID": 1250, - "isHot": false + "inGameID": 1250 }, "difficulty": "HARD", "isPrimary": true, @@ -9090,8 +8522,7 @@ { "chartID": "18cc1dcdd62281c34368fc9e3dc0b0db5272d267", "data": { - "inGameID": 1250, - "isHot": false + "inGameID": 1250 }, "difficulty": "INFERNO", "isPrimary": true, @@ -9106,8 +8537,7 @@ { "chartID": "d13b8102c39b40e639c58833a814cd8fbe2ebd22", "data": { - "inGameID": 1250, - "isHot": false + "inGameID": 1250 }, "difficulty": "NORMAL", "isPrimary": true, @@ -9122,8 +8552,7 @@ { "chartID": "047525d0aecaed15aed1dc128fde176a376b7988", "data": { - "inGameID": 1276, - "isHot": false + "inGameID": 1276 }, "difficulty": "EXPERT", "isPrimary": true, @@ -9138,8 +8567,7 @@ { "chartID": "179b327279ce9a428d9641a894ae59a8412a9343", "data": { - "inGameID": 1276, - "isHot": false + "inGameID": 1276 }, "difficulty": "HARD", "isPrimary": true, @@ -9154,8 +8582,7 @@ { "chartID": "c0b1549b0d6adb253dbccfcb1c13fb503cb1dd1c", "data": { - "inGameID": 1276, - "isHot": false + "inGameID": 1276 }, "difficulty": "NORMAL", "isPrimary": true, @@ -9170,8 +8597,7 @@ { "chartID": "3db19ad712cff9c6520c5d22f388438e5d92a395", "data": { - "inGameID": 1031, - "isHot": false + "inGameID": 1031 }, "difficulty": "EXPERT", "isPrimary": true, @@ -9186,8 +8612,7 @@ { "chartID": "1098851d8a6036b28c35198b5be469d023882bd0", "data": { - "inGameID": 1031, - "isHot": false + "inGameID": 1031 }, "difficulty": "HARD", "isPrimary": true, @@ -9202,8 +8627,7 @@ { "chartID": "948813b771d5c3f74684e1d5cf4636d8ae0a574d", "data": { - "inGameID": 1031, - "isHot": false + "inGameID": 1031 }, "difficulty": "NORMAL", "isPrimary": true, @@ -9218,8 +8642,7 @@ { "chartID": "44a4dfa9c278beecdfa5fcbab2d881b24554d1ea", "data": { - "inGameID": 1246, - "isHot": false + "inGameID": 1246 }, "difficulty": "EXPERT", "isPrimary": true, @@ -9234,8 +8657,7 @@ { "chartID": "20f1dcd89b579481dd3fe09d3faf8c7270f5982f", "data": { - "inGameID": 1246, - "isHot": false + "inGameID": 1246 }, "difficulty": "HARD", "isPrimary": true, @@ -9250,8 +8672,7 @@ { "chartID": "849522f150c8122e323178af896f600b74a4eebf", "data": { - "inGameID": 1246, - "isHot": false + "inGameID": 1246 }, "difficulty": "NORMAL", "isPrimary": true, @@ -9266,8 +8687,7 @@ { "chartID": "28dc978093f7432c1dc7f57018f194e85afa2e79", "data": { - "inGameID": 1245, - "isHot": false + "inGameID": 1245 }, "difficulty": "EXPERT", "isPrimary": true, @@ -9282,8 +8702,7 @@ { "chartID": "c3e9868567e58bf225c9cea66388452674383d12", "data": { - "inGameID": 1245, - "isHot": false + "inGameID": 1245 }, "difficulty": "HARD", "isPrimary": true, @@ -9298,8 +8717,7 @@ { "chartID": "08575b4d8cfc3c937c9acb6ac7b0fb00a28d45e5", "data": { - "inGameID": 1245, - "isHot": false + "inGameID": 1245 }, "difficulty": "NORMAL", "isPrimary": true, @@ -9314,8 +8732,7 @@ { "chartID": "f465c7bb56bdd2c6567f34837c07fce5dc12482d", "data": { - "inGameID": 1244, - "isHot": false + "inGameID": 1244 }, "difficulty": "EXPERT", "isPrimary": true, @@ -9330,8 +8747,7 @@ { "chartID": "79ac5dbfc002e9feea05c5e474ff18fc7e5c0948", "data": { - "inGameID": 1244, - "isHot": false + "inGameID": 1244 }, "difficulty": "HARD", "isPrimary": true, @@ -9346,8 +8762,7 @@ { "chartID": "351f56deb4f18798c2df01230ffdb2c20e0c0968", "data": { - "inGameID": 1244, - "isHot": false + "inGameID": 1244 }, "difficulty": "NORMAL", "isPrimary": true, @@ -9362,8 +8777,7 @@ { "chartID": "7db764d5e54382f9da706f0799104ba4dbad390f", "data": { - "inGameID": 1237, - "isHot": false + "inGameID": 1237 }, "difficulty": "EXPERT", "isPrimary": true, @@ -9378,8 +8792,7 @@ { "chartID": "a69a45a6f6615a4253af982a4f43fa432d99a006", "data": { - "inGameID": 1237, - "isHot": false + "inGameID": 1237 }, "difficulty": "HARD", "isPrimary": true, @@ -9394,8 +8807,7 @@ { "chartID": "64c9e6fc72c16cf50161cbf96ffacbc73e60d554", "data": { - "inGameID": 1237, - "isHot": false + "inGameID": 1237 }, "difficulty": "NORMAL", "isPrimary": true, @@ -9410,8 +8822,7 @@ { "chartID": "6a63bde8e086a8dd7c82fdc422ae58bb960b0553", "data": { - "inGameID": 1236, - "isHot": false + "inGameID": 1236 }, "difficulty": "EXPERT", "isPrimary": true, @@ -9426,8 +8837,7 @@ { "chartID": "75c1b9047fade0ec653bd7b63518445d70063d4b", "data": { - "inGameID": 1236, - "isHot": false + "inGameID": 1236 }, "difficulty": "HARD", "isPrimary": true, @@ -9442,8 +8852,7 @@ { "chartID": "e3ae740e69948e17c8eaa08dcf5cc3f72f8972d7", "data": { - "inGameID": 1236, - "isHot": false + "inGameID": 1236 }, "difficulty": "NORMAL", "isPrimary": true, @@ -9458,8 +8867,7 @@ { "chartID": "b5d13bfde2ea8d95a58d640bcbb22885c26742b2", "data": { - "inGameID": 1279, - "isHot": false + "inGameID": 1279 }, "difficulty": "EXPERT", "isPrimary": true, @@ -9474,8 +8882,7 @@ { "chartID": "780235fbbeeaf50cc8375701bee9847e7b769603", "data": { - "inGameID": 1279, - "isHot": false + "inGameID": 1279 }, "difficulty": "HARD", "isPrimary": true, @@ -9490,8 +8897,7 @@ { "chartID": "06e92f36c19802fa2720f3ae3f9f3eb8d94cf070", "data": { - "inGameID": 1279, - "isHot": false + "inGameID": 1279 }, "difficulty": "NORMAL", "isPrimary": true, @@ -9506,8 +8912,7 @@ { "chartID": "552e522baefb5aecdb5d1d12fe90150db374267c", "data": { - "inGameID": 1278, - "isHot": false + "inGameID": 1278 }, "difficulty": "EXPERT", "isPrimary": true, @@ -9522,8 +8927,7 @@ { "chartID": "ff4c7fa4c0f734fa88a14259c5a3357477818247", "data": { - "inGameID": 1278, - "isHot": false + "inGameID": 1278 }, "difficulty": "HARD", "isPrimary": true, @@ -9538,8 +8942,7 @@ { "chartID": "1508414d9ab95e75509a33d850590b9f1efeb36b", "data": { - "inGameID": 1278, - "isHot": false + "inGameID": 1278 }, "difficulty": "NORMAL", "isPrimary": true, @@ -9554,8 +8957,7 @@ { "chartID": "4cd7a5d1c72060bd2b0da22baf7e9acdc14df318", "data": { - "inGameID": 1102, - "isHot": false + "inGameID": 1102 }, "difficulty": "EXPERT", "isPrimary": true, @@ -9570,8 +8972,7 @@ { "chartID": "73ed5f88d75e0bf2a4f44ee711132d5f29ee8e87", "data": { - "inGameID": 1102, - "isHot": false + "inGameID": 1102 }, "difficulty": "HARD", "isPrimary": true, @@ -9586,8 +8987,7 @@ { "chartID": "357e3c48938aec3b02a22898c538fdd955275054", "data": { - "inGameID": 1102, - "isHot": false + "inGameID": 1102 }, "difficulty": "NORMAL", "isPrimary": true, @@ -9602,8 +9002,7 @@ { "chartID": "aa9345b42e2f2940a21b3f7e16afd2053479351f", "data": { - "inGameID": 1116, - "isHot": false + "inGameID": 1116 }, "difficulty": "EXPERT", "isPrimary": true, @@ -9618,8 +9017,7 @@ { "chartID": "4dd596abd2fb0de29d61590873a161185ce7c75b", "data": { - "inGameID": 1116, - "isHot": false + "inGameID": 1116 }, "difficulty": "HARD", "isPrimary": true, @@ -9634,8 +9032,7 @@ { "chartID": "7808ac0bcda6b67d798705565809c071e85f00b6", "data": { - "inGameID": 1116, - "isHot": false + "inGameID": 1116 }, "difficulty": "NORMAL", "isPrimary": true, @@ -9650,8 +9047,7 @@ { "chartID": "7eb3693e73e20d3f8afbd764e9eb5f46dbca5b8e", "data": { - "inGameID": 1258, - "isHot": false + "inGameID": 1258 }, "difficulty": "EXPERT", "isPrimary": true, @@ -9666,8 +9062,7 @@ { "chartID": "1d7371fa9347c7867bdc845c71f5a8379ba661c5", "data": { - "inGameID": 1258, - "isHot": false + "inGameID": 1258 }, "difficulty": "HARD", "isPrimary": true, @@ -9682,8 +9077,7 @@ { "chartID": "2967cceea8480551c3b4f7d805af96574f331a64", "data": { - "inGameID": 1258, - "isHot": false + "inGameID": 1258 }, "difficulty": "NORMAL", "isPrimary": true, @@ -9698,8 +9092,7 @@ { "chartID": "945c579e04b47cacff964f70f444bfa975579062", "data": { - "inGameID": 1259, - "isHot": false + "inGameID": 1259 }, "difficulty": "EXPERT", "isPrimary": true, @@ -9714,8 +9107,7 @@ { "chartID": "26541ae78521ccd52a59cd4e084f05df72526bdb", "data": { - "inGameID": 1259, - "isHot": false + "inGameID": 1259 }, "difficulty": "HARD", "isPrimary": true, @@ -9730,8 +9122,7 @@ { "chartID": "4885197f183d3df8be0d7ee3e9f18d417cc55402", "data": { - "inGameID": 1259, - "isHot": false + "inGameID": 1259 }, "difficulty": "NORMAL", "isPrimary": true, @@ -9746,8 +9137,7 @@ { "chartID": "f175f8326fcb283f89987fd48667b6193ac05556", "data": { - "inGameID": 1261, - "isHot": false + "inGameID": 1261 }, "difficulty": "EXPERT", "isPrimary": true, @@ -9762,8 +9152,7 @@ { "chartID": "eaff93c63d7cf3aacf539759145d242407ec13f8", "data": { - "inGameID": 1261, - "isHot": false + "inGameID": 1261 }, "difficulty": "HARD", "isPrimary": true, @@ -9778,8 +9167,7 @@ { "chartID": "061cb26faec9da66614c875952cd687b66b0ded4", "data": { - "inGameID": 1261, - "isHot": false + "inGameID": 1261 }, "difficulty": "NORMAL", "isPrimary": true, @@ -9794,8 +9182,7 @@ { "chartID": "a0e668bf2b9acac1836b1c4e9bcc073b0e1dfc60", "data": { - "inGameID": 1263, - "isHot": false + "inGameID": 1263 }, "difficulty": "EXPERT", "isPrimary": true, @@ -9810,8 +9197,7 @@ { "chartID": "384321d3ea3823fef08d4d345e72ca820ba1e0b2", "data": { - "inGameID": 1263, - "isHot": false + "inGameID": 1263 }, "difficulty": "HARD", "isPrimary": true, @@ -9826,8 +9212,7 @@ { "chartID": "275729acc7a38ad28f2f27e4217c1feeeef8e968", "data": { - "inGameID": 1263, - "isHot": false + "inGameID": 1263 }, "difficulty": "NORMAL", "isPrimary": true, @@ -9842,8 +9227,7 @@ { "chartID": "1221c6ee6df615857aeba5fb54e5a49abccc1997", "data": { - "inGameID": 1262, - "isHot": false + "inGameID": 1262 }, "difficulty": "EXPERT", "isPrimary": true, @@ -9858,8 +9242,7 @@ { "chartID": "fcc97bfe380adc852e551a782064ba542b9d460f", "data": { - "inGameID": 1262, - "isHot": false + "inGameID": 1262 }, "difficulty": "HARD", "isPrimary": true, @@ -9874,8 +9257,7 @@ { "chartID": "b2aaf52377b145c629616b528d8cb26af7b4b79f", "data": { - "inGameID": 1262, - "isHot": false + "inGameID": 1262 }, "difficulty": "NORMAL", "isPrimary": true, @@ -9890,8 +9272,7 @@ { "chartID": "1fe99e223c1c06be8642918910558349ffdd4b81", "data": { - "inGameID": 1260, - "isHot": false + "inGameID": 1260 }, "difficulty": "EXPERT", "isPrimary": true, @@ -9906,8 +9287,7 @@ { "chartID": "327fc850ba62b005dd22059a2611a7076d8132f9", "data": { - "inGameID": 1260, - "isHot": false + "inGameID": 1260 }, "difficulty": "HARD", "isPrimary": true, @@ -9922,8 +9302,7 @@ { "chartID": "ec18e62b0981a6c7f31ee0d47f5736cdcc7fd3ad", "data": { - "inGameID": 1260, - "isHot": false + "inGameID": 1260 }, "difficulty": "NORMAL", "isPrimary": true, @@ -9938,8 +9317,7 @@ { "chartID": "8c34a1c22241c3f4ed9b3b7ed7700ae26dc9ebc0", "data": { - "inGameID": 1232, - "isHot": false + "inGameID": 1232 }, "difficulty": "EXPERT", "isPrimary": true, @@ -9954,8 +9332,7 @@ { "chartID": "1bad76e35657226f192729a12006fed8ed291b80", "data": { - "inGameID": 1232, - "isHot": false + "inGameID": 1232 }, "difficulty": "HARD", "isPrimary": true, @@ -9970,8 +9347,7 @@ { "chartID": "7da5779205f828a107c8777faccfcf07790e77f1", "data": { - "inGameID": 1232, - "isHot": false + "inGameID": 1232 }, "difficulty": "NORMAL", "isPrimary": true, @@ -9986,8 +9362,7 @@ { "chartID": "cadb8f61de9933ff8d715563d993e84eeac480ab", "data": { - "inGameID": 1242, - "isHot": false + "inGameID": 1242 }, "difficulty": "EXPERT", "isPrimary": true, @@ -10002,8 +9377,7 @@ { "chartID": "b20ba95ab135b7f2cbe2e4d06a13b117bf802bcd", "data": { - "inGameID": 1242, - "isHot": false + "inGameID": 1242 }, "difficulty": "HARD", "isPrimary": true, @@ -10018,8 +9392,7 @@ { "chartID": "04fa4764af2006824810bbe4135ca767905c945e", "data": { - "inGameID": 1242, - "isHot": false + "inGameID": 1242 }, "difficulty": "NORMAL", "isPrimary": true, @@ -10034,8 +9407,7 @@ { "chartID": "173a9975b805608de03c363e86033012fae666a2", "data": { - "inGameID": 1243, - "isHot": false + "inGameID": 1243 }, "difficulty": "EXPERT", "isPrimary": true, @@ -10050,8 +9422,7 @@ { "chartID": "153ec4801d52b1ed5bded18a31885facc938bd2f", "data": { - "inGameID": 1243, - "isHot": false + "inGameID": 1243 }, "difficulty": "HARD", "isPrimary": true, @@ -10066,8 +9437,7 @@ { "chartID": "a4c15422a6732f31ea0f3fa1d9ba339064eb5e81", "data": { - "inGameID": 1243, - "isHot": false + "inGameID": 1243 }, "difficulty": "NORMAL", "isPrimary": true, @@ -10082,8 +9452,7 @@ { "chartID": "787c70eb4446514d60f2c6e21e936980bac3967a", "data": { - "inGameID": 1092, - "isHot": false + "inGameID": 1092 }, "difficulty": "EXPERT", "isPrimary": true, @@ -10098,8 +9467,7 @@ { "chartID": "cb49a6647e6680c1d0fb2305f92d528c58505329", "data": { - "inGameID": 1092, - "isHot": false + "inGameID": 1092 }, "difficulty": "HARD", "isPrimary": true, @@ -10114,8 +9482,7 @@ { "chartID": "940c5fb0ea3a6d2804c3693dd1abe18dc8818c8f", "data": { - "inGameID": 1092, - "isHot": false + "inGameID": 1092 }, "difficulty": "NORMAL", "isPrimary": true, @@ -10130,8 +9497,7 @@ { "chartID": "acff536ed2f5e3c8237b105b244807fce906eba9", "data": { - "inGameID": 1114, - "isHot": false + "inGameID": 1114 }, "difficulty": "EXPERT", "isPrimary": true, @@ -10146,8 +9512,7 @@ { "chartID": "548080cc2e28d12551a2eec6de8474615aaf39bf", "data": { - "inGameID": 1114, - "isHot": false + "inGameID": 1114 }, "difficulty": "HARD", "isPrimary": true, @@ -10162,8 +9527,7 @@ { "chartID": "f4f43f668b0773b67e139a5ba4e60cea6c620ab7", "data": { - "inGameID": 1114, - "isHot": false + "inGameID": 1114 }, "difficulty": "NORMAL", "isPrimary": true, @@ -10178,8 +9542,7 @@ { "chartID": "da8f6925bdbf1bfd33d208fbf49b83b0fcff060d", "data": { - "inGameID": 1275, - "isHot": false + "inGameID": 1275 }, "difficulty": "EXPERT", "isPrimary": true, @@ -10194,8 +9557,7 @@ { "chartID": "c244922d56e13a065009a13a3c51361152adf110", "data": { - "inGameID": 1275, - "isHot": false + "inGameID": 1275 }, "difficulty": "HARD", "isPrimary": true, @@ -10210,8 +9572,7 @@ { "chartID": "f48c41383102d3e9be9eb0c121681ccde9313126", "data": { - "inGameID": 1275, - "isHot": false + "inGameID": 1275 }, "difficulty": "NORMAL", "isPrimary": true, @@ -10226,8 +9587,7 @@ { "chartID": "8f9616c07f6f3bb5d51982425976ced44528ab51", "data": { - "inGameID": 1230, - "isHot": false + "inGameID": 1230 }, "difficulty": "EXPERT", "isPrimary": true, @@ -10242,8 +9602,7 @@ { "chartID": "180c8425a3e2526ff2677df090bfbd782d2004eb", "data": { - "inGameID": 1230, - "isHot": false + "inGameID": 1230 }, "difficulty": "HARD", "isPrimary": true, @@ -10258,8 +9617,7 @@ { "chartID": "75f10b72aaa8a036d55e0dffa5f098a4d40b2532", "data": { - "inGameID": 1230, - "isHot": false + "inGameID": 1230 }, "difficulty": "NORMAL", "isPrimary": true, @@ -10274,8 +9632,7 @@ { "chartID": "01643692858db731379b9408ea367eb114fd4402", "data": { - "inGameID": 1274, - "isHot": false + "inGameID": 1274 }, "difficulty": "EXPERT", "isPrimary": true, @@ -10290,8 +9647,7 @@ { "chartID": "0dfbef673a038611b17bcb51c9c5567cb17ec646", "data": { - "inGameID": 1274, - "isHot": false + "inGameID": 1274 }, "difficulty": "HARD", "isPrimary": true, @@ -10306,8 +9662,7 @@ { "chartID": "25e7431847cd48808bab6a932f3a538e2485cec4", "data": { - "inGameID": 1274, - "isHot": false + "inGameID": 1274 }, "difficulty": "NORMAL", "isPrimary": true, @@ -10322,8 +9677,7 @@ { "chartID": "df431a35b0530b84fd28e153da15117778f3d5eb", "data": { - "inGameID": 1227, - "isHot": false + "inGameID": 1227 }, "difficulty": "EXPERT", "isPrimary": true, @@ -10338,8 +9692,7 @@ { "chartID": "159c95cae967066cc1cc6f569763c3fb3dbae73a", "data": { - "inGameID": 1227, - "isHot": false + "inGameID": 1227 }, "difficulty": "HARD", "isPrimary": true, @@ -10354,8 +9707,7 @@ { "chartID": "8c9918431dd413e454a2a84e00e4a21668ca5edf", "data": { - "inGameID": 1227, - "isHot": false + "inGameID": 1227 }, "difficulty": "NORMAL", "isPrimary": true, @@ -10370,8 +9722,7 @@ { "chartID": "1921164f3c6946f78674e6ca3efd5edcee2fab7d", "data": { - "inGameID": 1226, - "isHot": false + "inGameID": 1226 }, "difficulty": "EXPERT", "isPrimary": true, @@ -10386,8 +9737,7 @@ { "chartID": "ecd7a9ab1e2d8c644d10e05d21da13ef274391a4", "data": { - "inGameID": 1226, - "isHot": false + "inGameID": 1226 }, "difficulty": "HARD", "isPrimary": true, @@ -10402,8 +9752,7 @@ { "chartID": "ba0348bcdec134cc669ad874f569ec1d0a0f6501", "data": { - "inGameID": 1226, - "isHot": false + "inGameID": 1226 }, "difficulty": "NORMAL", "isPrimary": true, @@ -10418,8 +9767,7 @@ { "chartID": "4cccad68bf62d77cea3b39e959c6ad7814cf8bfd", "data": { - "inGameID": 1228, - "isHot": false + "inGameID": 1228 }, "difficulty": "EXPERT", "isPrimary": true, @@ -10434,8 +9782,7 @@ { "chartID": "f78356eaaa61c583a6b0e83efa183e696f1dd4d8", "data": { - "inGameID": 1228, - "isHot": false + "inGameID": 1228 }, "difficulty": "HARD", "isPrimary": true, @@ -10450,8 +9797,7 @@ { "chartID": "ba4b02cd19c360b2ade84df44784d582cdf5396c", "data": { - "inGameID": 1228, - "isHot": false + "inGameID": 1228 }, "difficulty": "NORMAL", "isPrimary": true, @@ -10466,8 +9812,7 @@ { "chartID": "9ab340be8c321f6794c912ff0f598d70bf0a35c6", "data": { - "inGameID": 1229, - "isHot": false + "inGameID": 1229 }, "difficulty": "EXPERT", "isPrimary": true, @@ -10482,8 +9827,7 @@ { "chartID": "e4ec24a469daa680129a7b08b193b113bbc15879", "data": { - "inGameID": 1229, - "isHot": false + "inGameID": 1229 }, "difficulty": "HARD", "isPrimary": true, @@ -10498,8 +9842,7 @@ { "chartID": "4dd4017524d4c309e7bc9983e5d1dbde6611a66b", "data": { - "inGameID": 1229, - "isHot": false + "inGameID": 1229 }, "difficulty": "NORMAL", "isPrimary": true, @@ -10514,8 +9857,7 @@ { "chartID": "5becd0c8da68b07d3f277f6542c2ccbc7e129ddb", "data": { - "inGameID": 1272, - "isHot": false + "inGameID": 1272 }, "difficulty": "EXPERT", "isPrimary": true, @@ -10530,8 +9872,7 @@ { "chartID": "8ac11469f14fd23f122d45366381baa64f608343", "data": { - "inGameID": 1272, - "isHot": false + "inGameID": 1272 }, "difficulty": "HARD", "isPrimary": true, @@ -10546,8 +9887,7 @@ { "chartID": "b99dc10b2c757e96a4f7c24d7000209f8c3411e0", "data": { - "inGameID": 1272, - "isHot": false + "inGameID": 1272 }, "difficulty": "NORMAL", "isPrimary": true, @@ -10562,8 +9902,7 @@ { "chartID": "036bf25a907234cc8c6ff57552a0fd2577d22b21", "data": { - "inGameID": 1221, - "isHot": false + "inGameID": 1221 }, "difficulty": "EXPERT", "isPrimary": true, @@ -10578,8 +9917,7 @@ { "chartID": "c469756b7e2604ae8d320007171803cff10df0b9", "data": { - "inGameID": 1221, - "isHot": false + "inGameID": 1221 }, "difficulty": "HARD", "isPrimary": true, @@ -10594,8 +9932,7 @@ { "chartID": "3bfc0d8d7d96d1e59a2d6a5303c33dff37a259dc", "data": { - "inGameID": 1221, - "isHot": false + "inGameID": 1221 }, "difficulty": "NORMAL", "isPrimary": true, @@ -10610,8 +9947,7 @@ { "chartID": "09c7ca16840eab26947347734a879326309428e8", "data": { - "inGameID": 1222, - "isHot": false + "inGameID": 1222 }, "difficulty": "EXPERT", "isPrimary": true, @@ -10626,8 +9962,7 @@ { "chartID": "1d5006d1f12553858337b6da22e1243fa35489ea", "data": { - "inGameID": 1222, - "isHot": false + "inGameID": 1222 }, "difficulty": "HARD", "isPrimary": true, @@ -10642,8 +9977,7 @@ { "chartID": "ff1ef9321c1609f2b1967c16a184ceffc8a833db", "data": { - "inGameID": 1222, - "isHot": false + "inGameID": 1222 }, "difficulty": "NORMAL", "isPrimary": true, @@ -10658,8 +9992,7 @@ { "chartID": "90b2da895c59bcb303f45900c851fded160884f7", "data": { - "inGameID": 1021, - "isHot": false + "inGameID": 1021 }, "difficulty": "EXPERT", "isPrimary": true, @@ -10674,8 +10007,7 @@ { "chartID": "5b4a7103a1a8aecdc98d5ffc99296b6db70e003a", "data": { - "inGameID": 1021, - "isHot": false + "inGameID": 1021 }, "difficulty": "HARD", "isPrimary": true, @@ -10690,8 +10022,7 @@ { "chartID": "0c95871a39080ea0542b1cfad2d7552b54a55a06", "data": { - "inGameID": 1021, - "isHot": false + "inGameID": 1021 }, "difficulty": "NORMAL", "isPrimary": true, @@ -10706,8 +10037,7 @@ { "chartID": "1be567588537b06d4eca00f1adcdb52bedc34930", "data": { - "inGameID": 1203, - "isHot": false + "inGameID": 1203 }, "difficulty": "EXPERT", "isPrimary": true, @@ -10722,8 +10052,7 @@ { "chartID": "37a2f055bce1fdffffbfd0e9ab91f55647161620", "data": { - "inGameID": 1203, - "isHot": false + "inGameID": 1203 }, "difficulty": "HARD", "isPrimary": true, @@ -10738,8 +10067,7 @@ { "chartID": "ab0dbb27a7cf9fd1f50dc49409cd2f16960290d1", "data": { - "inGameID": 1203, - "isHot": false + "inGameID": 1203 }, "difficulty": "NORMAL", "isPrimary": true, @@ -10754,8 +10082,7 @@ { "chartID": "a147fad11c58a40fb8e5995480ac64044993f7cc", "data": { - "inGameID": 1273, - "isHot": false + "inGameID": 1273 }, "difficulty": "EXPERT", "isPrimary": true, @@ -10770,8 +10097,7 @@ { "chartID": "1a2f87924c90ee6a954d5369f455f58274b9905c", "data": { - "inGameID": 1273, - "isHot": false + "inGameID": 1273 }, "difficulty": "HARD", "isPrimary": true, @@ -10786,8 +10112,7 @@ { "chartID": "8e3e25975c85bf28e329b2f28f6906ad99ec96f6", "data": { - "inGameID": 1273, - "isHot": false + "inGameID": 1273 }, "difficulty": "NORMAL", "isPrimary": true, @@ -10802,8 +10127,7 @@ { "chartID": "a453d94796824964ac05ebdd3917ba9a4b4d53ad", "data": { - "inGameID": 1270, - "isHot": false + "inGameID": 1270 }, "difficulty": "EXPERT", "isPrimary": true, @@ -10818,8 +10142,7 @@ { "chartID": "c4bc2b1e16b9e3e80830f249b82bd03485a577d2", "data": { - "inGameID": 1270, - "isHot": false + "inGameID": 1270 }, "difficulty": "HARD", "isPrimary": true, @@ -10834,8 +10157,7 @@ { "chartID": "1bf49fa39b78a9fa9c19a3781e32bd45cef8b91e", "data": { - "inGameID": 1270, - "isHot": false + "inGameID": 1270 }, "difficulty": "NORMAL", "isPrimary": true, @@ -10850,8 +10172,7 @@ { "chartID": "a42c72df9b31ca6e047cb617eaf093e3f08a3fe4", "data": { - "inGameID": 1269, - "isHot": false + "inGameID": 1269 }, "difficulty": "EXPERT", "isPrimary": true, @@ -10866,8 +10187,7 @@ { "chartID": "4531c9728a4567e5d5924be8358e10a63479551a", "data": { - "inGameID": 1269, - "isHot": false + "inGameID": 1269 }, "difficulty": "HARD", "isPrimary": true, @@ -10882,8 +10202,7 @@ { "chartID": "32a39c29524b8af83484f1bbbf280f2824043f8a", "data": { - "inGameID": 1269, - "isHot": false + "inGameID": 1269 }, "difficulty": "NORMAL", "isPrimary": true, @@ -10898,8 +10217,7 @@ { "chartID": "94e3f5aed40b60a652830491dc9658b55104b75f", "data": { - "inGameID": 1215, - "isHot": false + "inGameID": 1215 }, "difficulty": "EXPERT", "isPrimary": true, @@ -10914,8 +10232,7 @@ { "chartID": "650f9235c56304f806a339b620a32f3edf3ca989", "data": { - "inGameID": 1215, - "isHot": false + "inGameID": 1215 }, "difficulty": "HARD", "isPrimary": true, @@ -10930,8 +10247,7 @@ { "chartID": "a02f009ed031a72ba2b17a141d818ecfb4549513", "data": { - "inGameID": 1215, - "isHot": false + "inGameID": 1215 }, "difficulty": "NORMAL", "isPrimary": true, @@ -10946,8 +10262,7 @@ { "chartID": "cef0e3b74795d547777869fe261cd7b3f81ed9f8", "data": { - "inGameID": 1216, - "isHot": false + "inGameID": 1216 }, "difficulty": "EXPERT", "isPrimary": true, @@ -10962,8 +10277,7 @@ { "chartID": "2791ffb8fcf709bd14d1fc00e00b1b15ba0d28a5", "data": { - "inGameID": 1216, - "isHot": false + "inGameID": 1216 }, "difficulty": "HARD", "isPrimary": true, @@ -10978,8 +10292,7 @@ { "chartID": "2feccaa0168e093c928b9733ae4b6d5e65d74590", "data": { - "inGameID": 1216, - "isHot": false + "inGameID": 1216 }, "difficulty": "NORMAL", "isPrimary": true, @@ -10994,8 +10307,7 @@ { "chartID": "21bac95fc424dc9726e3d9c3c1a39271d0cf1aa3", "data": { - "inGameID": 1218, - "isHot": false + "inGameID": 1218 }, "difficulty": "EXPERT", "isPrimary": true, @@ -11010,8 +10322,7 @@ { "chartID": "5e28c134d856de26029a43de2fefa7fffbf39bf2", "data": { - "inGameID": 1218, - "isHot": false + "inGameID": 1218 }, "difficulty": "HARD", "isPrimary": true, @@ -11026,8 +10337,7 @@ { "chartID": "9efb5f659d0cecf8477a9352900d1f1c97ac6077", "data": { - "inGameID": 1218, - "isHot": false + "inGameID": 1218 }, "difficulty": "NORMAL", "isPrimary": true, @@ -11042,8 +10352,7 @@ { "chartID": "ec87f547ab1edd87dfa7958cd37421939c406d6e", "data": { - "inGameID": 1214, - "isHot": false + "inGameID": 1214 }, "difficulty": "EXPERT", "isPrimary": true, @@ -11058,8 +10367,7 @@ { "chartID": "1f9516624c5fbcca434875d9fb13f6f6f65c8988", "data": { - "inGameID": 1214, - "isHot": false + "inGameID": 1214 }, "difficulty": "HARD", "isPrimary": true, @@ -11074,8 +10382,7 @@ { "chartID": "2c22a7ed570356181c0dac6169eac683bca01c88", "data": { - "inGameID": 1214, - "isHot": false + "inGameID": 1214 }, "difficulty": "NORMAL", "isPrimary": true, @@ -11090,8 +10397,7 @@ { "chartID": "f5d46df70736919e02ef73598239ec2af380aebe", "data": { - "inGameID": 1267, - "isHot": false + "inGameID": 1267 }, "difficulty": "EXPERT", "isPrimary": true, @@ -11106,8 +10412,7 @@ { "chartID": "9b0c99432d58a2baf18b76220d14c7d89a859d56", "data": { - "inGameID": 1267, - "isHot": false + "inGameID": 1267 }, "difficulty": "HARD", "isPrimary": true, @@ -11122,8 +10427,7 @@ { "chartID": "5b563802a532dfc4eee634e9c6dfef45c4897ce9", "data": { - "inGameID": 1267, - "isHot": false + "inGameID": 1267 }, "difficulty": "NORMAL", "isPrimary": true, @@ -11138,8 +10442,7 @@ { "chartID": "23548a0f64f0d36022205ed092368977ad679570", "data": { - "inGameID": 1217, - "isHot": false + "inGameID": 1217 }, "difficulty": "EXPERT", "isPrimary": true, @@ -11154,8 +10457,7 @@ { "chartID": "7e17bd4f56b6847b89d9cc9c60973d7131ddb506", "data": { - "inGameID": 1217, - "isHot": false + "inGameID": 1217 }, "difficulty": "HARD", "isPrimary": true, @@ -11170,8 +10472,7 @@ { "chartID": "e31a39b674378de1a4efb28cff633b07edd74a9d", "data": { - "inGameID": 1217, - "isHot": false + "inGameID": 1217 }, "difficulty": "NORMAL", "isPrimary": true, @@ -11186,8 +10487,7 @@ { "chartID": "cb5e379017c8c8479feae1a6cf81e9e6c0ad4390", "data": { - "inGameID": 1013, - "isHot": false + "inGameID": 1013 }, "difficulty": "EXPERT", "isPrimary": true, @@ -11202,8 +10502,7 @@ { "chartID": "a7578a2458fd7265078615f8f5a554b6aaac49e0", "data": { - "inGameID": 1013, - "isHot": false + "inGameID": 1013 }, "difficulty": "HARD", "isPrimary": true, @@ -11218,8 +10517,7 @@ { "chartID": "e4708521b364ff8705613966d3697fe1770b4467", "data": { - "inGameID": 1013, - "isHot": false + "inGameID": 1013 }, "difficulty": "NORMAL", "isPrimary": true, @@ -11234,8 +10532,7 @@ { "chartID": "a9d6744816717c8d9db5ab831619811a8de43353", "data": { - "inGameID": 1210, - "isHot": false + "inGameID": 1210 }, "difficulty": "EXPERT", "isPrimary": true, @@ -11250,8 +10547,7 @@ { "chartID": "3e229ce57a4c390056ce58cb33271b7dd5a668b0", "data": { - "inGameID": 1210, - "isHot": false + "inGameID": 1210 }, "difficulty": "HARD", "isPrimary": true, @@ -11266,8 +10562,7 @@ { "chartID": "9b205a823ff6466d92a34470d128678c2ed52ee5", "data": { - "inGameID": 1210, - "isHot": false + "inGameID": 1210 }, "difficulty": "NORMAL", "isPrimary": true, @@ -11282,8 +10577,7 @@ { "chartID": "bf8912caea4971b8b4ef173ed0ce29928b8b60f6", "data": { - "inGameID": 1113, - "isHot": false + "inGameID": 1113 }, "difficulty": "EXPERT", "isPrimary": true, @@ -11298,8 +10592,7 @@ { "chartID": "500487e2456367251d8e82bfdf9f6f3f567aba0f", "data": { - "inGameID": 1113, - "isHot": false + "inGameID": 1113 }, "difficulty": "HARD", "isPrimary": true, @@ -11314,8 +10607,7 @@ { "chartID": "c862146ce4797bcad008875d6c2b38929fce83dd", "data": { - "inGameID": 1113, - "isHot": false + "inGameID": 1113 }, "difficulty": "NORMAL", "isPrimary": true, @@ -11330,8 +10622,7 @@ { "chartID": "48778afe1ab80657128bb2708efd1fd4b7daa047", "data": { - "inGameID": 1208, - "isHot": false + "inGameID": 1208 }, "difficulty": "EXPERT", "isPrimary": true, @@ -11346,8 +10637,7 @@ { "chartID": "19da135760406f193a7273b79890987d4af58860", "data": { - "inGameID": 1208, - "isHot": false + "inGameID": 1208 }, "difficulty": "HARD", "isPrimary": true, @@ -11362,8 +10652,7 @@ { "chartID": "83446c3e7227c2c24da4f0050878f8ac3f29aedc", "data": { - "inGameID": 1208, - "isHot": false + "inGameID": 1208 }, "difficulty": "NORMAL", "isPrimary": true, @@ -11378,8 +10667,7 @@ { "chartID": "c38f4ae61ef076579e70702d147f3cfb75d0fda4", "data": { - "inGameID": 1211, - "isHot": false + "inGameID": 1211 }, "difficulty": "EXPERT", "isPrimary": true, @@ -11394,8 +10682,7 @@ { "chartID": "12388e54532c0f73edfc15c1482d657585af2bb6", "data": { - "inGameID": 1211, - "isHot": false + "inGameID": 1211 }, "difficulty": "HARD", "isPrimary": true, @@ -11410,8 +10697,7 @@ { "chartID": "9ae4bb5bf93d6b2e3df25ca6f1c13c3bac50805b", "data": { - "inGameID": 1211, - "isHot": false + "inGameID": 1211 }, "difficulty": "NORMAL", "isPrimary": true, @@ -11426,8 +10712,7 @@ { "chartID": "e2d7129299b8fa5499d2d2a10a15f8df366619e6", "data": { - "inGameID": 1086, - "isHot": false + "inGameID": 1086 }, "difficulty": "EXPERT", "isPrimary": true, @@ -11442,8 +10727,7 @@ { "chartID": "f8f3da0d9004b31e23ed8a25662093b5b2fb577b", "data": { - "inGameID": 1086, - "isHot": false + "inGameID": 1086 }, "difficulty": "HARD", "isPrimary": true, @@ -11458,8 +10742,7 @@ { "chartID": "6026d9d903820632220b7aa83f3ff53ddaa14172", "data": { - "inGameID": 1086, - "isHot": false + "inGameID": 1086 }, "difficulty": "NORMAL", "isPrimary": true, @@ -11474,8 +10757,7 @@ { "chartID": "5a7bacf43d6d9568bd2d245b48f79c643a8c32c5", "data": { - "inGameID": 1265, - "isHot": false + "inGameID": 1265 }, "difficulty": "EXPERT", "isPrimary": true, @@ -11490,8 +10772,7 @@ { "chartID": "742f07ff2f352fa12435b54c97e779a7ee126982", "data": { - "inGameID": 1265, - "isHot": false + "inGameID": 1265 }, "difficulty": "HARD", "isPrimary": true, @@ -11506,8 +10787,7 @@ { "chartID": "adfe4a826633602f142c45638d9eccea52799e3c", "data": { - "inGameID": 1265, - "isHot": false + "inGameID": 1265 }, "difficulty": "NORMAL", "isPrimary": true, @@ -11522,8 +10802,7 @@ { "chartID": "06e481ebe6d02a439a5f66751a7c036df757cfa4", "data": { - "inGameID": 1115, - "isHot": false + "inGameID": 1115 }, "difficulty": "EXPERT", "isPrimary": true, @@ -11538,8 +10817,7 @@ { "chartID": "cbd3fabe827326019a8a6c82fa10b8a77a29f0c0", "data": { - "inGameID": 1115, - "isHot": false + "inGameID": 1115 }, "difficulty": "HARD", "isPrimary": true, @@ -11554,8 +10832,7 @@ { "chartID": "eb94007877945dfc35c50b6e5d15e05dcd1aa06a", "data": { - "inGameID": 1115, - "isHot": false + "inGameID": 1115 }, "difficulty": "NORMAL", "isPrimary": true, @@ -11570,8 +10847,7 @@ { "chartID": "1ee6d9a0850de630f3331b873d6aed9efda6eee2", "data": { - "inGameID": 1009, - "isHot": false + "inGameID": 1009 }, "difficulty": "EXPERT", "isPrimary": true, @@ -11586,8 +10862,7 @@ { "chartID": "18a3d6283f4a950f0e37fb5d77e09e69cb92bf43", "data": { - "inGameID": 1009, - "isHot": false + "inGameID": 1009 }, "difficulty": "HARD", "isPrimary": true, @@ -11602,8 +10877,7 @@ { "chartID": "fbfa01ce34f94df5f46d478ad0581e487dda9afc", "data": { - "inGameID": 1009, - "isHot": false + "inGameID": 1009 }, "difficulty": "NORMAL", "isPrimary": true, @@ -11618,8 +10892,7 @@ { "chartID": "c49d2f72721a238d4a082a7b39c180a9efb79298", "data": { - "inGameID": 1213, - "isHot": false + "inGameID": 1213 }, "difficulty": "EXPERT", "isPrimary": true, @@ -11634,8 +10907,7 @@ { "chartID": "d11f63b8dd91baa9e976e025b11aee0bd6351aeb", "data": { - "inGameID": 1213, - "isHot": false + "inGameID": 1213 }, "difficulty": "HARD", "isPrimary": true, @@ -11650,8 +10922,7 @@ { "chartID": "8ab8933bacbe14d9eea902ce8da3438e241c9849", "data": { - "inGameID": 1213, - "isHot": false + "inGameID": 1213 }, "difficulty": "NORMAL", "isPrimary": true, @@ -11666,8 +10937,7 @@ { "chartID": "57e5214b50117aa6d14b2b33aeb28952ef414142", "data": { - "inGameID": 1212, - "isHot": false + "inGameID": 1212 }, "difficulty": "EXPERT", "isPrimary": true, @@ -11682,8 +10952,7 @@ { "chartID": "7f03e9de924bda322692158ce986f518c0a41cbc", "data": { - "inGameID": 1212, - "isHot": false + "inGameID": 1212 }, "difficulty": "HARD", "isPrimary": true, @@ -11698,8 +10967,7 @@ { "chartID": "f3b3433ef458a5e7f32b6f262f7da0d6bdb7cec4", "data": { - "inGameID": 1212, - "isHot": false + "inGameID": 1212 }, "difficulty": "NORMAL", "isPrimary": true, @@ -11714,8 +10982,7 @@ { "chartID": "890c86e4245f32a14da777027cdfab7a6e12aaca", "data": { - "inGameID": 1207, - "isHot": false + "inGameID": 1207 }, "difficulty": "EXPERT", "isPrimary": true, @@ -11730,8 +10997,7 @@ { "chartID": "895d0c9e5ec408f56cbe5cda89e871217b6b2d81", "data": { - "inGameID": 1207, - "isHot": false + "inGameID": 1207 }, "difficulty": "HARD", "isPrimary": true, @@ -11746,8 +11012,7 @@ { "chartID": "025bf9478ff1e0b0b4e298460a930e496617e8fc", "data": { - "inGameID": 1207, - "isHot": false + "inGameID": 1207 }, "difficulty": "NORMAL", "isPrimary": true, @@ -11762,8 +11027,7 @@ { "chartID": "07262be12fc4b00aab156525f11eaef4c119c55d", "data": { - "inGameID": 1268, - "isHot": false + "inGameID": 1268 }, "difficulty": "EXPERT", "isPrimary": true, @@ -11778,8 +11042,7 @@ { "chartID": "2b55f11319f1f2f93a3a3db369add5d2c60ba03b", "data": { - "inGameID": 1268, - "isHot": false + "inGameID": 1268 }, "difficulty": "HARD", "isPrimary": true, @@ -11794,8 +11057,7 @@ { "chartID": "951c9da9bfd513b283d044020a2b0e686e94ca15", "data": { - "inGameID": 1268, - "isHot": false + "inGameID": 1268 }, "difficulty": "NORMAL", "isPrimary": true, @@ -11810,8 +11072,7 @@ { "chartID": "4a4e69f5318d73218da675c9d6e27328f6a50cb6", "data": { - "inGameID": 1085, - "isHot": false + "inGameID": 1085 }, "difficulty": "EXPERT", "isPrimary": true, @@ -11826,8 +11087,7 @@ { "chartID": "2a9461d55d4529d39b877cfb1f7bdff3c8f70759", "data": { - "inGameID": 1085, - "isHot": false + "inGameID": 1085 }, "difficulty": "HARD", "isPrimary": true, @@ -11842,8 +11102,7 @@ { "chartID": "486b4780877b6536187d6ebbf8d55105049b6da3", "data": { - "inGameID": 1085, - "isHot": false + "inGameID": 1085 }, "difficulty": "NORMAL", "isPrimary": true, @@ -11858,8 +11117,7 @@ { "chartID": "4d323e5d777c3d0561e842de8db004abc26c33b8", "data": { - "inGameID": 1128, - "isHot": false + "inGameID": 1128 }, "difficulty": "EXPERT", "isPrimary": true, @@ -11874,8 +11132,7 @@ { "chartID": "21ad590fce9701718c51882c79e4c409fc143e3e", "data": { - "inGameID": 1128, - "isHot": false + "inGameID": 1128 }, "difficulty": "HARD", "isPrimary": true, @@ -11890,8 +11147,7 @@ { "chartID": "49937f7213064ae89503dbfc79d4db4c34fb9567", "data": { - "inGameID": 1128, - "isHot": false + "inGameID": 1128 }, "difficulty": "NORMAL", "isPrimary": true, @@ -11906,8 +11162,7 @@ { "chartID": "662b2f7ca9e5ec7e5efc366509fe9a115725f714", "data": { - "inGameID": 1117, - "isHot": false + "inGameID": 1117 }, "difficulty": "EXPERT", "isPrimary": true, @@ -11922,8 +11177,7 @@ { "chartID": "f532235e2834e658a6fc5e3f511d26b41449a6a9", "data": { - "inGameID": 1117, - "isHot": false + "inGameID": 1117 }, "difficulty": "HARD", "isPrimary": true, @@ -11938,8 +11192,7 @@ { "chartID": "ac0b8f70c82958298cbf4a5924c5cc9e2fd930ae", "data": { - "inGameID": 1117, - "isHot": false + "inGameID": 1117 }, "difficulty": "NORMAL", "isPrimary": true, @@ -11954,8 +11207,7 @@ { "chartID": "9ae8a4eded8c08685039de1dd34366ad480240ed", "data": { - "inGameID": 1045, - "isHot": false + "inGameID": 1045 }, "difficulty": "EXPERT", "isPrimary": true, @@ -11970,8 +11222,7 @@ { "chartID": "a36da23a745dafd6482e1cab4c7e61d99d2ad45f", "data": { - "inGameID": 1045, - "isHot": false + "inGameID": 1045 }, "difficulty": "HARD", "isPrimary": true, @@ -11986,8 +11237,7 @@ { "chartID": "84da85ee76164fb7cfdfd456643048c0082255dd", "data": { - "inGameID": 1045, - "isHot": false + "inGameID": 1045 }, "difficulty": "NORMAL", "isPrimary": true, @@ -12002,8 +11252,7 @@ { "chartID": "e9063bb11e575783f6170ed5a61e54eb88bd29a0", "data": { - "inGameID": 1126, - "isHot": false + "inGameID": 1126 }, "difficulty": "EXPERT", "isPrimary": true, @@ -12018,8 +11267,7 @@ { "chartID": "c17bf7b15c3b6a97f418da8bc6468cd8921a93b1", "data": { - "inGameID": 1126, - "isHot": false + "inGameID": 1126 }, "difficulty": "HARD", "isPrimary": true, @@ -12034,8 +11282,7 @@ { "chartID": "33bef42d73c5563671fedc5915cb1590177f9647", "data": { - "inGameID": 1126, - "isHot": false + "inGameID": 1126 }, "difficulty": "NORMAL", "isPrimary": true, @@ -12050,8 +11297,7 @@ { "chartID": "986db3b2d7b59248690185da4edf67cf27f5c2f0", "data": { - "inGameID": 1050, - "isHot": false + "inGameID": 1050 }, "difficulty": "EXPERT", "isPrimary": true, @@ -12066,8 +11312,7 @@ { "chartID": "2944da7db046c747f36c9fba99ff3f399c2a461f", "data": { - "inGameID": 1050, - "isHot": false + "inGameID": 1050 }, "difficulty": "HARD", "isPrimary": true, @@ -12082,8 +11327,7 @@ { "chartID": "a7f6e0d5d612201d3b06f0f17684bae6a0413c1a", "data": { - "inGameID": 1050, - "isHot": false + "inGameID": 1050 }, "difficulty": "NORMAL", "isPrimary": true, @@ -12098,8 +11342,7 @@ { "chartID": "07f9ff2dae9106c1bbc49b519c427df73ff257f2", "data": { - "inGameID": 1047, - "isHot": false + "inGameID": 1047 }, "difficulty": "EXPERT", "isPrimary": true, @@ -12114,8 +11357,7 @@ { "chartID": "55cc6636f3e2e4b5ecf0a9c37d52acbcd19c321f", "data": { - "inGameID": 1047, - "isHot": false + "inGameID": 1047 }, "difficulty": "HARD", "isPrimary": true, @@ -12130,8 +11372,7 @@ { "chartID": "0dbeea666b07cf00886d7e9fb85de9a6a4e72499", "data": { - "inGameID": 1047, - "isHot": false + "inGameID": 1047 }, "difficulty": "NORMAL", "isPrimary": true, @@ -12146,8 +11387,7 @@ { "chartID": "a32572e4e561a20364dbaba014db18f7d4a9e051", "data": { - "inGameID": 1123, - "isHot": false + "inGameID": 1123 }, "difficulty": "EXPERT", "isPrimary": true, @@ -12162,8 +11402,7 @@ { "chartID": "437271a0ad3e15833540081e2dd3eefa6a37417f", "data": { - "inGameID": 1123, - "isHot": false + "inGameID": 1123 }, "difficulty": "HARD", "isPrimary": true, @@ -12178,8 +11417,7 @@ { "chartID": "76d7ce1c77dd8ea56b7ae6acadfd04f9f7d12627", "data": { - "inGameID": 1123, - "isHot": false + "inGameID": 1123 }, "difficulty": "NORMAL", "isPrimary": true, @@ -12194,8 +11432,7 @@ { "chartID": "1003942a47ced62b19abc46b66c1ac91b520f07a", "data": { - "inGameID": 1061, - "isHot": false + "inGameID": 1061 }, "difficulty": "EXPERT", "isPrimary": true, @@ -12210,8 +11447,7 @@ { "chartID": "f0f641cbf45fecd9c0eb14c96e1d55e85b2030ea", "data": { - "inGameID": 1061, - "isHot": false + "inGameID": 1061 }, "difficulty": "HARD", "isPrimary": true, @@ -12226,8 +11462,7 @@ { "chartID": "b2b0131ccb9ed11f50ef77f3e560ebd73de9c2f5", "data": { - "inGameID": 1061, - "isHot": false + "inGameID": 1061 }, "difficulty": "NORMAL", "isPrimary": true, @@ -12242,8 +11477,7 @@ { "chartID": "0ff3c0a6caa7d096134a9a51d59e81201e7c428f", "data": { - "inGameID": 1030, - "isHot": false + "inGameID": 1030 }, "difficulty": "EXPERT", "isPrimary": true, @@ -12258,8 +11492,7 @@ { "chartID": "c6a43db8b11edc277304197c960b8daa111ee61e", "data": { - "inGameID": 1030, - "isHot": false + "inGameID": 1030 }, "difficulty": "HARD", "isPrimary": true, @@ -12274,8 +11507,7 @@ { "chartID": "728ca07c74022533328ba33cf86979d1033f4515", "data": { - "inGameID": 1030, - "isHot": false + "inGameID": 1030 }, "difficulty": "NORMAL", "isPrimary": true, @@ -12290,8 +11522,7 @@ { "chartID": "89f84dec852f151723b4847fb0e56d29d5a048e0", "data": { - "inGameID": 1111, - "isHot": false + "inGameID": 1111 }, "difficulty": "EXPERT", "isPrimary": true, @@ -12306,8 +11537,7 @@ { "chartID": "23e3e228448fa7c5a2e99617ae2c72e3f0dacd83", "data": { - "inGameID": 1111, - "isHot": false + "inGameID": 1111 }, "difficulty": "HARD", "isPrimary": true, @@ -12322,8 +11552,7 @@ { "chartID": "ab67068e4c1991e6db5d7f30df00796c38e374db", "data": { - "inGameID": 1111, - "isHot": false + "inGameID": 1111 }, "difficulty": "NORMAL", "isPrimary": true, @@ -12338,8 +11567,7 @@ { "chartID": "29b04e59f86377f67636b9055c1f731531d382d8", "data": { - "inGameID": 1042, - "isHot": false + "inGameID": 1042 }, "difficulty": "EXPERT", "isPrimary": true, @@ -12354,8 +11582,7 @@ { "chartID": "b750ad9be1e07dd0f472783d8eb0ef4cc7e6ff8c", "data": { - "inGameID": 1042, - "isHot": false + "inGameID": 1042 }, "difficulty": "HARD", "isPrimary": true, @@ -12370,8 +11597,7 @@ { "chartID": "2fa3855a73295e0f57b0d5011abc5c9cf26b5de1", "data": { - "inGameID": 1042, - "isHot": false + "inGameID": 1042 }, "difficulty": "NORMAL", "isPrimary": true, @@ -12386,8 +11612,7 @@ { "chartID": "7583661e4fe3e86d54f687728907e756a74d164b", "data": { - "inGameID": 1122, - "isHot": false + "inGameID": 1122 }, "difficulty": "EXPERT", "isPrimary": true, @@ -12402,8 +11627,7 @@ { "chartID": "4810ea4791e5bd5a06026f137bfdcc1257869896", "data": { - "inGameID": 1122, - "isHot": false + "inGameID": 1122 }, "difficulty": "HARD", "isPrimary": true, @@ -12418,8 +11642,7 @@ { "chartID": "28bc993a7560f957a4323bd3e55bb082ec6d3bfd", "data": { - "inGameID": 1122, - "isHot": false + "inGameID": 1122 }, "difficulty": "NORMAL", "isPrimary": true, @@ -12434,8 +11657,7 @@ { "chartID": "9eac93df6587cd20b9bd915a50899499d9b92f54", "data": { - "inGameID": 1127, - "isHot": false + "inGameID": 1127 }, "difficulty": "EXPERT", "isPrimary": true, @@ -12450,8 +11672,7 @@ { "chartID": "7f83a9a93a3b71bbb0020ec3f2cdbd129b0cf607", "data": { - "inGameID": 1127, - "isHot": false + "inGameID": 1127 }, "difficulty": "HARD", "isPrimary": true, @@ -12466,8 +11687,7 @@ { "chartID": "32b2387862ce89fb9ae68e6ccce453275fb86431", "data": { - "inGameID": 1127, - "isHot": false + "inGameID": 1127 }, "difficulty": "NORMAL", "isPrimary": true, @@ -12482,8 +11702,7 @@ { "chartID": "6a727671fa57953833f80e9f51aa6e4f4784c47a", "data": { - "inGameID": 1004, - "isHot": false + "inGameID": 1004 }, "difficulty": "EXPERT", "isPrimary": true, @@ -12498,8 +11717,7 @@ { "chartID": "bc9f49ab2f3fc40ee4a2238a5b40868ee6af44ee", "data": { - "inGameID": 1004, - "isHot": false + "inGameID": 1004 }, "difficulty": "HARD", "isPrimary": true, @@ -12514,8 +11732,7 @@ { "chartID": "8c37a28a65e74e8f64a6089f494133cf39ec1366", "data": { - "inGameID": 1004, - "isHot": false + "inGameID": 1004 }, "difficulty": "NORMAL", "isPrimary": true, @@ -12530,8 +11747,7 @@ { "chartID": "381f88439197f6abc64b0326de6aa35f6cdc9696", "data": { - "inGameID": 1121, - "isHot": false + "inGameID": 1121 }, "difficulty": "EXPERT", "isPrimary": true, @@ -12546,8 +11762,7 @@ { "chartID": "5386c839b9ae94e1d944b19b07e7f1fb7f4e5886", "data": { - "inGameID": 1121, - "isHot": false + "inGameID": 1121 }, "difficulty": "HARD", "isPrimary": true, @@ -12562,8 +11777,7 @@ { "chartID": "35322fc104749b51d1d68a562dd1da38a05f11ea", "data": { - "inGameID": 1121, - "isHot": false + "inGameID": 1121 }, "difficulty": "NORMAL", "isPrimary": true, @@ -12578,8 +11792,7 @@ { "chartID": "7122d328534392fd82e061f2d64d44d1fc49f0bd", "data": { - "inGameID": 1018, - "isHot": false + "inGameID": 1018 }, "difficulty": "EXPERT", "isPrimary": true, @@ -12594,8 +11807,7 @@ { "chartID": "c144750505cdc87017f557d67260b425b5216e95", "data": { - "inGameID": 1018, - "isHot": false + "inGameID": 1018 }, "difficulty": "HARD", "isPrimary": true, @@ -12610,8 +11822,7 @@ { "chartID": "146cec363bd9594b613542b41c62c7f296752aad", "data": { - "inGameID": 1018, - "isHot": false + "inGameID": 1018 }, "difficulty": "NORMAL", "isPrimary": true, @@ -12626,8 +11837,7 @@ { "chartID": "43180a5be63db51105692110fb13865195edfadd", "data": { - "inGameID": 1091, - "isHot": false + "inGameID": 1091 }, "difficulty": "EXPERT", "isPrimary": true, @@ -12642,8 +11852,7 @@ { "chartID": "ed19dda597c3c33d518f8b58acb7fd63f98ba91d", "data": { - "inGameID": 1091, - "isHot": false + "inGameID": 1091 }, "difficulty": "HARD", "isPrimary": true, @@ -12658,8 +11867,7 @@ { "chartID": "d02323906f18bed11dcab165a9ae9f26fb26dd4e", "data": { - "inGameID": 1091, - "isHot": false + "inGameID": 1091 }, "difficulty": "NORMAL", "isPrimary": true, @@ -12674,8 +11882,7 @@ { "chartID": "376e31de9099cc47a065529f0797eab4c8105b75", "data": { - "inGameID": 1110, - "isHot": false + "inGameID": 1110 }, "difficulty": "EXPERT", "isPrimary": true, @@ -12690,8 +11897,7 @@ { "chartID": "32d4927d321846b00ba07d6c43a7d4083572df5c", "data": { - "inGameID": 1110, - "isHot": false + "inGameID": 1110 }, "difficulty": "HARD", "isPrimary": true, @@ -12706,8 +11912,7 @@ { "chartID": "e0a8d246e0a5c01759006656366d2e83be98c701", "data": { - "inGameID": 1110, - "isHot": false + "inGameID": 1110 }, "difficulty": "NORMAL", "isPrimary": true, @@ -12722,8 +11927,7 @@ { "chartID": "e2c97014faa18ba369db7a54c89b8743fdef2e46", "data": { - "inGameID": 1078, - "isHot": false + "inGameID": 1078 }, "difficulty": "EXPERT", "isPrimary": true, @@ -12738,8 +11942,7 @@ { "chartID": "10b46081ca645e5d52d77ab0dc4e6008adbe48ce", "data": { - "inGameID": 1078, - "isHot": false + "inGameID": 1078 }, "difficulty": "HARD", "isPrimary": true, @@ -12754,8 +11957,7 @@ { "chartID": "274f23dc580cd92bc3b92fca54a51a196f0a2678", "data": { - "inGameID": 1078, - "isHot": false + "inGameID": 1078 }, "difficulty": "NORMAL", "isPrimary": true, @@ -12770,8 +11972,7 @@ { "chartID": "853c5ab1f957f5e22910f3ebe9395cfbca14ccb8", "data": { - "inGameID": 1109, - "isHot": false + "inGameID": 1109 }, "difficulty": "EXPERT", "isPrimary": true, @@ -12786,8 +11987,7 @@ { "chartID": "7acbeae5c10918d2b10eff1e98f256bc6408f51e", "data": { - "inGameID": 1109, - "isHot": false + "inGameID": 1109 }, "difficulty": "HARD", "isPrimary": true, @@ -12802,8 +12002,7 @@ { "chartID": "7c2eb28b605c2c7a4d34af84784652fd6012ac08", "data": { - "inGameID": 1109, - "isHot": false + "inGameID": 1109 }, "difficulty": "NORMAL", "isPrimary": true, @@ -12818,8 +12017,7 @@ { "chartID": "f62a6f8704a2b2db2034fa586dbaff41a18ec919", "data": { - "inGameID": 1063, - "isHot": false + "inGameID": 1063 }, "difficulty": "EXPERT", "isPrimary": true, @@ -12834,8 +12032,7 @@ { "chartID": "7d13f3d4b79835adf3608c9ac1de113ded631a32", "data": { - "inGameID": 1063, - "isHot": false + "inGameID": 1063 }, "difficulty": "HARD", "isPrimary": true, @@ -12850,8 +12047,7 @@ { "chartID": "dddba0584131f714ab3cdf35e304915d216046a3", "data": { - "inGameID": 1063, - "isHot": false + "inGameID": 1063 }, "difficulty": "NORMAL", "isPrimary": true, @@ -12866,8 +12062,7 @@ { "chartID": "4c36648296e841e435b74ad803f9d846ae46a458", "data": { - "inGameID": 1098, - "isHot": false + "inGameID": 1098 }, "difficulty": "EXPERT", "isPrimary": true, @@ -12882,8 +12077,7 @@ { "chartID": "093df0437c5643b6634ada68e7ab97b534a8713d", "data": { - "inGameID": 1098, - "isHot": false + "inGameID": 1098 }, "difficulty": "HARD", "isPrimary": true, @@ -12898,8 +12092,7 @@ { "chartID": "99eb6a22ee31cbf5d6733a2629b70343888e1dea", "data": { - "inGameID": 1098, - "isHot": false + "inGameID": 1098 }, "difficulty": "NORMAL", "isPrimary": true, @@ -12914,8 +12107,7 @@ { "chartID": "f0d1a689683b0722fce1309c6972193c5d794c48", "data": { - "inGameID": 1097, - "isHot": false + "inGameID": 1097 }, "difficulty": "EXPERT", "isPrimary": true, @@ -12930,8 +12122,7 @@ { "chartID": "a1ede570cd91659bda4ac110127165678c76ec6f", "data": { - "inGameID": 1097, - "isHot": false + "inGameID": 1097 }, "difficulty": "HARD", "isPrimary": true, @@ -12946,8 +12137,7 @@ { "chartID": "7b9930a160ebe46e9d3f0274a50eafd212948c86", "data": { - "inGameID": 1097, - "isHot": false + "inGameID": 1097 }, "difficulty": "NORMAL", "isPrimary": true, @@ -12962,8 +12152,7 @@ { "chartID": "e966f82864a03e01b01c06936d3d6ce5313e70ca", "data": { - "inGameID": 1118, - "isHot": false + "inGameID": 1118 }, "difficulty": "EXPERT", "isPrimary": true, @@ -12978,8 +12167,7 @@ { "chartID": "045bab91fd1ad7102274648c83ed4b2d7af369b2", "data": { - "inGameID": 1118, - "isHot": false + "inGameID": 1118 }, "difficulty": "HARD", "isPrimary": true, @@ -12994,8 +12182,7 @@ { "chartID": "c011100204652c99382a2a9ba8a9181100c3b390", "data": { - "inGameID": 1118, - "isHot": false + "inGameID": 1118 }, "difficulty": "NORMAL", "isPrimary": true, @@ -13010,8 +12197,7 @@ { "chartID": "8301bba3d6fe93d8bc550f3d8470ab0b6bfa09a0", "data": { - "inGameID": 1052, - "isHot": false + "inGameID": 1052 }, "difficulty": "EXPERT", "isPrimary": true, @@ -13026,8 +12212,7 @@ { "chartID": "7b69b6ea6017f4f0fa99216e78f046381941c3e0", "data": { - "inGameID": 1052, - "isHot": false + "inGameID": 1052 }, "difficulty": "HARD", "isPrimary": true, @@ -13042,8 +12227,7 @@ { "chartID": "de1ef060ae5f570764943267afd9d76979d62bab", "data": { - "inGameID": 1052, - "isHot": false + "inGameID": 1052 }, "difficulty": "NORMAL", "isPrimary": true, @@ -13058,8 +12242,7 @@ { "chartID": "97842e7ef6bdc36b128922bdc1b21766f43b2b8e", "data": { - "inGameID": 1107, - "isHot": false + "inGameID": 1107 }, "difficulty": "EXPERT", "isPrimary": true, @@ -13074,8 +12257,7 @@ { "chartID": "4aa3b0fb5800d9249f934bb6bd07d92d5425c74d", "data": { - "inGameID": 1107, - "isHot": false + "inGameID": 1107 }, "difficulty": "HARD", "isPrimary": true, @@ -13090,8 +12272,7 @@ { "chartID": "4964efd887bd9f085e1d1a45f9a2060625cb98b1", "data": { - "inGameID": 1107, - "isHot": false + "inGameID": 1107 }, "difficulty": "NORMAL", "isPrimary": true, @@ -13106,8 +12287,7 @@ { "chartID": "4f6b901d2d9e9061777caecc7af8a07c38e356b1", "data": { - "inGameID": 1108, - "isHot": false + "inGameID": 1108 }, "difficulty": "EXPERT", "isPrimary": true, @@ -13122,8 +12302,7 @@ { "chartID": "24742e84eed4ee8c1b785e63bf6a475ae4e02fe4", "data": { - "inGameID": 1108, - "isHot": false + "inGameID": 1108 }, "difficulty": "HARD", "isPrimary": true, @@ -13138,8 +12317,7 @@ { "chartID": "5e3e5998af085ded3183f36d6b4e6b99c4e8feb5", "data": { - "inGameID": 1108, - "isHot": false + "inGameID": 1108 }, "difficulty": "NORMAL", "isPrimary": true, @@ -13154,8 +12332,7 @@ { "chartID": "c5b3c1093708ed7e3fd9dcc533784b54d63dad72", "data": { - "inGameID": 1001, - "isHot": false + "inGameID": 1001 }, "difficulty": "EXPERT", "isPrimary": true, @@ -13170,8 +12347,7 @@ { "chartID": "56de6b1f156bbd7afc878f6a5aa34d5ba9a150b4", "data": { - "inGameID": 1001, - "isHot": false + "inGameID": 1001 }, "difficulty": "HARD", "isPrimary": true, @@ -13186,8 +12362,7 @@ { "chartID": "e2036701fd95b63c67198c28d420f944a4951555", "data": { - "inGameID": 1001, - "isHot": false + "inGameID": 1001 }, "difficulty": "NORMAL", "isPrimary": true, @@ -13202,8 +12377,7 @@ { "chartID": "392cf6c7284bf076fdb8ee60ad53d34afacd8bd2", "data": { - "inGameID": 1125, - "isHot": false + "inGameID": 1125 }, "difficulty": "EXPERT", "isPrimary": true, @@ -13218,8 +12392,7 @@ { "chartID": "094b0da08bca3bca387be4dc3e828d84f7e00e55", "data": { - "inGameID": 1125, - "isHot": false + "inGameID": 1125 }, "difficulty": "HARD", "isPrimary": true, @@ -13234,8 +12407,7 @@ { "chartID": "8ab2503345593e0e348362fef6f7b4c78b2774e9", "data": { - "inGameID": 1125, - "isHot": false + "inGameID": 1125 }, "difficulty": "NORMAL", "isPrimary": true, @@ -13250,8 +12422,7 @@ { "chartID": "3f5470e2390238f4ec3c8fc0ab34031cb9d08a6b", "data": { - "inGameID": 1002, - "isHot": false + "inGameID": 1002 }, "difficulty": "EXPERT", "isPrimary": true, @@ -13266,8 +12437,7 @@ { "chartID": "11a6f13359b5cee2c7cf27d7a203eccabb22c97b", "data": { - "inGameID": 1002, - "isHot": false + "inGameID": 1002 }, "difficulty": "HARD", "isPrimary": true, @@ -13282,8 +12452,7 @@ { "chartID": "5d552f9698eefa3eaa91b96d14396a0df201ca9e", "data": { - "inGameID": 1002, - "isHot": false + "inGameID": 1002 }, "difficulty": "NORMAL", "isPrimary": true, @@ -13298,8 +12467,7 @@ { "chartID": "5f0fd93fd217a842795d2015636db05364ca69bb", "data": { - "inGameID": 1124, - "isHot": false + "inGameID": 1124 }, "difficulty": "EXPERT", "isPrimary": true, @@ -13314,8 +12482,7 @@ { "chartID": "6921cde0b4eb171e5918710f157d89e419333ae7", "data": { - "inGameID": 1124, - "isHot": false + "inGameID": 1124 }, "difficulty": "HARD", "isPrimary": true, @@ -13330,8 +12497,7 @@ { "chartID": "e76ed0d059fad8fb23d3da477b0bb62cc726708d", "data": { - "inGameID": 1124, - "isHot": false + "inGameID": 1124 }, "difficulty": "NORMAL", "isPrimary": true, @@ -13346,8 +12512,7 @@ { "chartID": "33e16a12788e504ddc51dd8bac33f2d6dad13440", "data": { - "inGameID": 1119, - "isHot": false + "inGameID": 1119 }, "difficulty": "EXPERT", "isPrimary": true, @@ -13362,8 +12527,7 @@ { "chartID": "817f2fc3b6afe3f8038e05bf2d3257a130e88674", "data": { - "inGameID": 1119, - "isHot": false + "inGameID": 1119 }, "difficulty": "HARD", "isPrimary": true, @@ -13378,8 +12542,7 @@ { "chartID": "deaa25b3e5eb72b4ff2f235405e5275f9303ba32", "data": { - "inGameID": 1119, - "isHot": false + "inGameID": 1119 }, "difficulty": "NORMAL", "isPrimary": true, @@ -13394,8 +12557,7 @@ { "chartID": "949dc355917815438af9c0dd396c364994c6f456", "data": { - "inGameID": 1037, - "isHot": false + "inGameID": 1037 }, "difficulty": "EXPERT", "isPrimary": true, @@ -13410,8 +12572,7 @@ { "chartID": "67db2a8f58040d43f985a87dec20020a0908249b", "data": { - "inGameID": 1037, - "isHot": false + "inGameID": 1037 }, "difficulty": "HARD", "isPrimary": true, @@ -13426,8 +12587,7 @@ { "chartID": "35cee5213510d60f2a1d6f14f594e9022e82c008", "data": { - "inGameID": 1037, - "isHot": false + "inGameID": 1037 }, "difficulty": "NORMAL", "isPrimary": true, @@ -13442,8 +12602,7 @@ { "chartID": "a61d93783d325f88fdc3b1f1d24cd62b50c38d50", "data": { - "inGameID": 1083, - "isHot": false + "inGameID": 1083 }, "difficulty": "EXPERT", "isPrimary": true, @@ -13458,8 +12617,7 @@ { "chartID": "0d7aadd83a1f6487356ae1404023465c302719b0", "data": { - "inGameID": 1083, - "isHot": false + "inGameID": 1083 }, "difficulty": "HARD", "isPrimary": true, @@ -13474,8 +12632,7 @@ { "chartID": "896829b7ade26f6cb782d734edf65957237a542b", "data": { - "inGameID": 1083, - "isHot": false + "inGameID": 1083 }, "difficulty": "NORMAL", "isPrimary": true, @@ -13490,8 +12647,7 @@ { "chartID": "8ee2ff0d3b63e2ac98bb6a1d3603ceae89c8ab29", "data": { - "inGameID": 1015, - "isHot": false + "inGameID": 1015 }, "difficulty": "EXPERT", "isPrimary": true, @@ -13506,8 +12662,7 @@ { "chartID": "f31d2b1d95df6d164d1aea155e76e3988a3c1fd8", "data": { - "inGameID": 1015, - "isHot": false + "inGameID": 1015 }, "difficulty": "HARD", "isPrimary": true, @@ -13522,8 +12677,7 @@ { "chartID": "725ea2bd43d8a4c73b1c6eea83ca15c5fe44a1bc", "data": { - "inGameID": 1015, - "isHot": false + "inGameID": 1015 }, "difficulty": "NORMAL", "isPrimary": true, @@ -13538,8 +12692,7 @@ { "chartID": "34823ace6b33e76151a7fdd7049bc35cb07ea6b8", "data": { - "inGameID": 1016, - "isHot": false + "inGameID": 1016 }, "difficulty": "EXPERT", "isPrimary": true, @@ -13554,8 +12707,7 @@ { "chartID": "5295c4db16b444f4f509d2452dc96ee3a891c471", "data": { - "inGameID": 1016, - "isHot": false + "inGameID": 1016 }, "difficulty": "HARD", "isPrimary": true, @@ -13570,8 +12722,7 @@ { "chartID": "004b36832e5de88ab6d071f22cfd2081abf72665", "data": { - "inGameID": 1016, - "isHot": false + "inGameID": 1016 }, "difficulty": "NORMAL", "isPrimary": true, @@ -13586,8 +12737,7 @@ { "chartID": "227a6ce6dbe94ef4792a566e9eb719bc5209cb21", "data": { - "inGameID": 1084, - "isHot": false + "inGameID": 1084 }, "difficulty": "EXPERT", "isPrimary": true, @@ -13602,8 +12752,7 @@ { "chartID": "99386b0297fd0718c032d9d727400a2b2f092e13", "data": { - "inGameID": 1084, - "isHot": false + "inGameID": 1084 }, "difficulty": "HARD", "isPrimary": true, @@ -13618,8 +12767,7 @@ { "chartID": "3864e5229fe3b5e1c877a0e92d231bc19874aba6", "data": { - "inGameID": 1084, - "isHot": false + "inGameID": 1084 }, "difficulty": "NORMAL", "isPrimary": true, @@ -13634,8 +12782,7 @@ { "chartID": "5af5993a9beea1c56411d1caa732f624eddb289b", "data": { - "inGameID": 1064, - "isHot": false + "inGameID": 1064 }, "difficulty": "EXPERT", "isPrimary": true, @@ -13650,8 +12797,7 @@ { "chartID": "fff08b50522f11ed09138adac2395594dfcb8c11", "data": { - "inGameID": 1064, - "isHot": false + "inGameID": 1064 }, "difficulty": "HARD", "isPrimary": true, @@ -13666,8 +12812,7 @@ { "chartID": "455ace1e8cd6bc7f8d7adfc35ab3c507d88743f6", "data": { - "inGameID": 1064, - "isHot": false + "inGameID": 1064 }, "difficulty": "NORMAL", "isPrimary": true, @@ -13682,8 +12827,7 @@ { "chartID": "883b315ea71b553c2fe227acee7e1220e041b02b", "data": { - "inGameID": 1062, - "isHot": false + "inGameID": 1062 }, "difficulty": "EXPERT", "isPrimary": true, @@ -13698,8 +12842,7 @@ { "chartID": "b76237d9954e6e199873b17ce1fdc386b04af838", "data": { - "inGameID": 1062, - "isHot": false + "inGameID": 1062 }, "difficulty": "HARD", "isPrimary": true, @@ -13714,8 +12857,7 @@ { "chartID": "ca2682d2c842d435ed309075d1e4b39ee38dc8e8", "data": { - "inGameID": 1062, - "isHot": false + "inGameID": 1062 }, "difficulty": "NORMAL", "isPrimary": true, @@ -13730,8 +12872,7 @@ { "chartID": "4c9b875152d3a96871a80d75291678b5cf89d1af", "data": { - "inGameID": 1065, - "isHot": false + "inGameID": 1065 }, "difficulty": "EXPERT", "isPrimary": true, @@ -13746,8 +12887,7 @@ { "chartID": "0689753af0737d2d8ebdd077de4a0ee7fab9ec8b", "data": { - "inGameID": 1065, - "isHot": false + "inGameID": 1065 }, "difficulty": "HARD", "isPrimary": true, @@ -13762,8 +12902,7 @@ { "chartID": "07a4741eba10f84abe76cdd794cf13da2f16977c", "data": { - "inGameID": 1065, - "isHot": false + "inGameID": 1065 }, "difficulty": "NORMAL", "isPrimary": true, @@ -13778,8 +12917,7 @@ { "chartID": "513ac19700e123b453be8cc36656eedeb462ba88", "data": { - "inGameID": 1077, - "isHot": false + "inGameID": 1077 }, "difficulty": "EXPERT", "isPrimary": true, @@ -13794,8 +12932,7 @@ { "chartID": "d7fcd6057cded1ab82d3913e6993c7425fa76ecf", "data": { - "inGameID": 1077, - "isHot": false + "inGameID": 1077 }, "difficulty": "HARD", "isPrimary": true, @@ -13810,8 +12947,7 @@ { "chartID": "d898f278aeb2ebded6e5788982e1ba5374294ba9", "data": { - "inGameID": 1077, - "isHot": false + "inGameID": 1077 }, "difficulty": "NORMAL", "isPrimary": true, @@ -13826,8 +12962,7 @@ { "chartID": "ed8b8023e941050393928c63b5bd63a723e4a606", "data": { - "inGameID": 1080, - "isHot": false + "inGameID": 1080 }, "difficulty": "EXPERT", "isPrimary": true, @@ -13842,8 +12977,7 @@ { "chartID": "d351cbb00879f85f698c7e62b6930d67ac771c4c", "data": { - "inGameID": 1080, - "isHot": false + "inGameID": 1080 }, "difficulty": "HARD", "isPrimary": true, @@ -13858,8 +12992,7 @@ { "chartID": "6cf61191f3f3c8b2f9e97bca1b5a521c84e04d6c", "data": { - "inGameID": 1080, - "isHot": false + "inGameID": 1080 }, "difficulty": "NORMAL", "isPrimary": true, @@ -13874,8 +13007,7 @@ { "chartID": "6584c86e76aae3444c720a6bc048a37f9ff80919", "data": { - "inGameID": 1082, - "isHot": false + "inGameID": 1082 }, "difficulty": "EXPERT", "isPrimary": true, @@ -13890,8 +13022,7 @@ { "chartID": "e54ad2521dd59ce623a3b9fcdd29d335de63f33b", "data": { - "inGameID": 1082, - "isHot": false + "inGameID": 1082 }, "difficulty": "HARD", "isPrimary": true, @@ -13906,8 +13037,7 @@ { "chartID": "6c662f12efad048b33622dbe927acb9ff5fb4d50", "data": { - "inGameID": 1082, - "isHot": false + "inGameID": 1082 }, "difficulty": "NORMAL", "isPrimary": true, @@ -13922,8 +13052,7 @@ { "chartID": "64e86f8b6bbbe973614dba93bcbc6aaaafac441e", "data": { - "inGameID": 1093, - "isHot": false + "inGameID": 1093 }, "difficulty": "EXPERT", "isPrimary": true, @@ -13938,8 +13067,7 @@ { "chartID": "5066651294e01310a18011383d9ca2aa9c00bcaf", "data": { - "inGameID": 1093, - "isHot": false + "inGameID": 1093 }, "difficulty": "HARD", "isPrimary": true, @@ -13954,8 +13082,7 @@ { "chartID": "311bf5791166651bbfdab329fa9a752cc7937437", "data": { - "inGameID": 1093, - "isHot": false + "inGameID": 1093 }, "difficulty": "NORMAL", "isPrimary": true, @@ -13970,8 +13097,7 @@ { "chartID": "1d2db3747bc26b5d743f7b0d1aace607696be677", "data": { - "inGameID": 1026, - "isHot": false + "inGameID": 1026 }, "difficulty": "EXPERT", "isPrimary": true, @@ -13986,8 +13112,7 @@ { "chartID": "5b5f7df150365f9a7d997713d6a39ea56965324d", "data": { - "inGameID": 1026, - "isHot": false + "inGameID": 1026 }, "difficulty": "HARD", "isPrimary": true, @@ -14002,8 +13127,7 @@ { "chartID": "47cd1e33c1ee9f867359d51fd42421d60652bbd3", "data": { - "inGameID": 1026, - "isHot": false + "inGameID": 1026 }, "difficulty": "NORMAL", "isPrimary": true, @@ -14018,8 +13142,7 @@ { "chartID": "776c827b5c09181212eed27adc43ea2db4cdfca4", "data": { - "inGameID": 1068, - "isHot": false + "inGameID": 1068 }, "difficulty": "EXPERT", "isPrimary": true, @@ -14034,8 +13157,7 @@ { "chartID": "ad29e70aa8b571f699f164861708f67f956c4372", "data": { - "inGameID": 1068, - "isHot": false + "inGameID": 1068 }, "difficulty": "HARD", "isPrimary": true, @@ -14050,8 +13172,7 @@ { "chartID": "87b62324a4b98e4f61ad5fa0f36091b503bbe02b", "data": { - "inGameID": 1068, - "isHot": false + "inGameID": 1068 }, "difficulty": "NORMAL", "isPrimary": true, @@ -14066,8 +13187,7 @@ { "chartID": "b9fe1ce307fed9514eafbe0743d6a690e88dcf86", "data": { - "inGameID": 1044, - "isHot": false + "inGameID": 1044 }, "difficulty": "EXPERT", "isPrimary": true, @@ -14082,8 +13202,7 @@ { "chartID": "619357cc9048f57300d1552063f3260e4fda7b8d", "data": { - "inGameID": 1044, - "isHot": false + "inGameID": 1044 }, "difficulty": "HARD", "isPrimary": true, @@ -14098,8 +13217,7 @@ { "chartID": "f64b58371413ec340c71fc7fb7276f4011e18a67", "data": { - "inGameID": 1044, - "isHot": false + "inGameID": 1044 }, "difficulty": "INFERNO", "isPrimary": true, @@ -14114,8 +13232,7 @@ { "chartID": "2ecb255b6e691a60dbfe818aaae536932e1a96c6", "data": { - "inGameID": 1044, - "isHot": false + "inGameID": 1044 }, "difficulty": "NORMAL", "isPrimary": true, @@ -14130,8 +13247,7 @@ { "chartID": "0cb968f2fa831b905e1f3a6839c39df29a8895d5", "data": { - "inGameID": 1043, - "isHot": false + "inGameID": 1043 }, "difficulty": "EXPERT", "isPrimary": true, @@ -14146,8 +13262,7 @@ { "chartID": "8958ff665a014153feed289f4ef81f3a828e0c48", "data": { - "inGameID": 1043, - "isHot": false + "inGameID": 1043 }, "difficulty": "HARD", "isPrimary": true, @@ -14162,8 +13277,7 @@ { "chartID": "a3aef696604d2bc8e480ce6e779c24f191c079cb", "data": { - "inGameID": 1043, - "isHot": false + "inGameID": 1043 }, "difficulty": "NORMAL", "isPrimary": true, @@ -14178,8 +13292,7 @@ { "chartID": "8d14088c3fe279a31a198f4c349cf85ebca6cca0", "data": { - "inGameID": 1104, - "isHot": false + "inGameID": 1104 }, "difficulty": "EXPERT", "isPrimary": true, @@ -14194,8 +13307,7 @@ { "chartID": "682831ce2a9c87407d4768c8b52a7908de6ed539", "data": { - "inGameID": 1104, - "isHot": false + "inGameID": 1104 }, "difficulty": "HARD", "isPrimary": true, @@ -14210,8 +13322,7 @@ { "chartID": "163f88a21761eb8ca8d130baa11c8e8959fc9e43", "data": { - "inGameID": 1104, - "isHot": false + "inGameID": 1104 }, "difficulty": "NORMAL", "isPrimary": true, @@ -14226,8 +13337,7 @@ { "chartID": "5152e875865ddce840a669e93a5bd135a6c7a257", "data": { - "inGameID": 1105, - "isHot": false + "inGameID": 1105 }, "difficulty": "EXPERT", "isPrimary": true, @@ -14242,8 +13352,7 @@ { "chartID": "0ab7fff6330ce793c780b31221a3deab48ab690d", "data": { - "inGameID": 1105, - "isHot": false + "inGameID": 1105 }, "difficulty": "HARD", "isPrimary": true, @@ -14258,8 +13367,7 @@ { "chartID": "bb12f97e462971858fd9960c020c31d1bf15d27e", "data": { - "inGameID": 1105, - "isHot": true + "inGameID": 1105 }, "difficulty": "INFERNO", "isPrimary": true, @@ -14274,8 +13382,7 @@ { "chartID": "6997c63907fd1f49cf5b24992fe5b356d72d9270", "data": { - "inGameID": 1105, - "isHot": false + "inGameID": 1105 }, "difficulty": "NORMAL", "isPrimary": true, @@ -14290,8 +13397,7 @@ { "chartID": "21d0ed871fe9729423b0b323e7716ea7a91d95b2", "data": { - "inGameID": 1081, - "isHot": false + "inGameID": 1081 }, "difficulty": "EXPERT", "isPrimary": true, @@ -14306,8 +13412,7 @@ { "chartID": "0063baba7ab794652e1fc47846499b80201fb5f5", "data": { - "inGameID": 1081, - "isHot": false + "inGameID": 1081 }, "difficulty": "HARD", "isPrimary": true, @@ -14322,8 +13427,7 @@ { "chartID": "f8fa970c568a93dc464443c548a820e794c4b961", "data": { - "inGameID": 1081, - "isHot": false + "inGameID": 1081 }, "difficulty": "NORMAL", "isPrimary": true, @@ -14338,8 +13442,7 @@ { "chartID": "79fae2392f12f5d9cc98bfbff34ffdfa9d4cfed7", "data": { - "inGameID": 1079, - "isHot": false + "inGameID": 1079 }, "difficulty": "EXPERT", "isPrimary": true, @@ -14354,8 +13457,7 @@ { "chartID": "193a2e27b9625d98135063599e05397e6f84fe58", "data": { - "inGameID": 1079, - "isHot": false + "inGameID": 1079 }, "difficulty": "HARD", "isPrimary": true, @@ -14370,8 +13472,7 @@ { "chartID": "8c3fc70d2b279388987ef0cc0025f21fb1a79015", "data": { - "inGameID": 1079, - "isHot": false + "inGameID": 1079 }, "difficulty": "NORMAL", "isPrimary": true, @@ -14386,8 +13487,7 @@ { "chartID": "78d6bdf8586658efdc1dc95089d9ba5bad8f18ec", "data": { - "inGameID": 1101, - "isHot": false + "inGameID": 1101 }, "difficulty": "EXPERT", "isPrimary": true, @@ -14402,8 +13502,7 @@ { "chartID": "a34d8bb97508686ad806943815e4a861514eb835", "data": { - "inGameID": 1101, - "isHot": false + "inGameID": 1101 }, "difficulty": "HARD", "isPrimary": true, @@ -14418,8 +13517,7 @@ { "chartID": "a5e1b20848e094203b47a688846bddeb38f27cdc", "data": { - "inGameID": 1101, - "isHot": false + "inGameID": 1101 }, "difficulty": "NORMAL", "isPrimary": true, @@ -14434,8 +13532,7 @@ { "chartID": "f2dacd5b8a6fce823a649d3f3c27297f42d7ddff", "data": { - "inGameID": 1100, - "isHot": false + "inGameID": 1100 }, "difficulty": "EXPERT", "isPrimary": true, @@ -14450,8 +13547,7 @@ { "chartID": "764151319720479492b402b07b96a213bd81ed0c", "data": { - "inGameID": 1100, - "isHot": false + "inGameID": 1100 }, "difficulty": "HARD", "isPrimary": true, @@ -14466,8 +13562,7 @@ { "chartID": "986dca2b4d0ac9710a979da727177997ba58e1b9", "data": { - "inGameID": 1100, - "isHot": false + "inGameID": 1100 }, "difficulty": "NORMAL", "isPrimary": true, @@ -14482,8 +13577,7 @@ { "chartID": "ffbb157bd8bc877f5bf434f98a327dc86d6c2b96", "data": { - "inGameID": 1099, - "isHot": false + "inGameID": 1099 }, "difficulty": "EXPERT", "isPrimary": true, @@ -14498,8 +13592,7 @@ { "chartID": "ea34a8a4fc6f38351216c7eeb7c7b762266c646a", "data": { - "inGameID": 1099, - "isHot": false + "inGameID": 1099 }, "difficulty": "HARD", "isPrimary": true, @@ -14514,8 +13607,7 @@ { "chartID": "9a9446bb194d8b5395ebc2546efde684ded1f0cf", "data": { - "inGameID": 1099, - "isHot": false + "inGameID": 1099 }, "difficulty": "NORMAL", "isPrimary": true, @@ -14530,8 +13622,7 @@ { "chartID": "1c41613b7375e77ee14ecfde13eb35ffcc70e193", "data": { - "inGameID": 1095, - "isHot": false + "inGameID": 1095 }, "difficulty": "EXPERT", "isPrimary": true, @@ -14546,8 +13637,7 @@ { "chartID": "08f07f4907e483ab775c74f6c512b9d4410be6d5", "data": { - "inGameID": 1095, - "isHot": false + "inGameID": 1095 }, "difficulty": "HARD", "isPrimary": true, @@ -14562,8 +13652,7 @@ { "chartID": "18c07f57d500314012300185eb65d7e6646e01cf", "data": { - "inGameID": 1095, - "isHot": false + "inGameID": 1095 }, "difficulty": "NORMAL", "isPrimary": true, @@ -14578,8 +13667,7 @@ { "chartID": "fa3402c43af5aa356fa2eb93d071315d2be7c94e", "data": { - "inGameID": 1094, - "isHot": false + "inGameID": 1094 }, "difficulty": "EXPERT", "isPrimary": true, @@ -14594,8 +13682,7 @@ { "chartID": "3ab620db5b9376327cbcb2aa4f98c8efdbae6e1e", "data": { - "inGameID": 1094, - "isHot": false + "inGameID": 1094 }, "difficulty": "HARD", "isPrimary": true, @@ -14610,8 +13697,7 @@ { "chartID": "a41dcf1d448636dc68cebabfeb45a7ec3b2b0b08", "data": { - "inGameID": 1094, - "isHot": false + "inGameID": 1094 }, "difficulty": "NORMAL", "isPrimary": true, @@ -14626,8 +13712,7 @@ { "chartID": "c2dfce8f19df60dd48130797cdfb1efc12a5fdc3", "data": { - "inGameID": 1090, - "isHot": false + "inGameID": 1090 }, "difficulty": "EXPERT", "isPrimary": true, @@ -14642,8 +13727,7 @@ { "chartID": "0147eed173bb341dc7fe26c7bc3375e21461a5fd", "data": { - "inGameID": 1090, - "isHot": false + "inGameID": 1090 }, "difficulty": "HARD", "isPrimary": true, @@ -14658,8 +13742,7 @@ { "chartID": "69ef262126ad20c0cd10e7b1b6be572140a517e2", "data": { - "inGameID": 1090, - "isHot": false + "inGameID": 1090 }, "difficulty": "NORMAL", "isPrimary": true, @@ -14674,8 +13757,7 @@ { "chartID": "6f188bc3a17dc6b038bb359efbf2e0a21d9f3dd2", "data": { - "inGameID": 1089, - "isHot": false + "inGameID": 1089 }, "difficulty": "EXPERT", "isPrimary": true, @@ -14690,8 +13772,7 @@ { "chartID": "b44dfecd43e6b34deb78cbe7fb3964909bd46f70", "data": { - "inGameID": 1089, - "isHot": false + "inGameID": 1089 }, "difficulty": "HARD", "isPrimary": true, @@ -14706,8 +13787,7 @@ { "chartID": "b426da20e3e516a08a440102b0455f48abfe94c9", "data": { - "inGameID": 1089, - "isHot": false + "inGameID": 1089 }, "difficulty": "NORMAL", "isPrimary": true, @@ -14722,8 +13802,7 @@ { "chartID": "17b887427f3b084ba23af65bc8ea3fd8d66f4c73", "data": { - "inGameID": 1088, - "isHot": false + "inGameID": 1088 }, "difficulty": "EXPERT", "isPrimary": true, @@ -14738,8 +13817,7 @@ { "chartID": "8eaf9994bb5c4d16971959810f8fc923b074cc47", "data": { - "inGameID": 1088, - "isHot": false + "inGameID": 1088 }, "difficulty": "HARD", "isPrimary": true, @@ -14754,8 +13832,7 @@ { "chartID": "cb50ce556cb797747ecc2520d89083f8857d1a55", "data": { - "inGameID": 1088, - "isHot": false + "inGameID": 1088 }, "difficulty": "NORMAL", "isPrimary": true, @@ -14770,8 +13847,7 @@ { "chartID": "b167537aa28298d4eaefd9c1c7c6cf9ac674f1e9", "data": { - "inGameID": 1076, - "isHot": false + "inGameID": 1076 }, "difficulty": "EXPERT", "isPrimary": true, @@ -14786,8 +13862,7 @@ { "chartID": "c297e79d753cd1a06eeac0f6056485fe570b2fec", "data": { - "inGameID": 1076, - "isHot": false + "inGameID": 1076 }, "difficulty": "HARD", "isPrimary": true, @@ -14802,8 +13877,7 @@ { "chartID": "cb1876b3023d09ea548252b8152e0c1992f990a4", "data": { - "inGameID": 1076, - "isHot": false + "inGameID": 1076 }, "difficulty": "INFERNO", "isPrimary": true, @@ -14818,8 +13892,7 @@ { "chartID": "283178e1b6b1b28ec6284fb9a834d368656cef97", "data": { - "inGameID": 1076, - "isHot": false + "inGameID": 1076 }, "difficulty": "NORMAL", "isPrimary": true, @@ -14834,8 +13907,7 @@ { "chartID": "21c836ef1534d114714657b38a172c468ff1623e", "data": { - "inGameID": 1073, - "isHot": false + "inGameID": 1073 }, "difficulty": "EXPERT", "isPrimary": true, @@ -14850,8 +13922,7 @@ { "chartID": "1237580f72c61008687a0227a69206b2d0a84416", "data": { - "inGameID": 1073, - "isHot": false + "inGameID": 1073 }, "difficulty": "HARD", "isPrimary": true, @@ -14866,8 +13937,7 @@ { "chartID": "fff32cb05972681bc2ff98fa594b9b30041718aa", "data": { - "inGameID": 1073, - "isHot": false + "inGameID": 1073 }, "difficulty": "NORMAL", "isPrimary": true, @@ -14882,8 +13952,7 @@ { "chartID": "dd2165fdd824052226be03bbe0e96802645d8690", "data": { - "inGameID": 1072, - "isHot": false + "inGameID": 1072 }, "difficulty": "EXPERT", "isPrimary": true, @@ -14898,8 +13967,7 @@ { "chartID": "60010115efd866099450145a316698502240d144", "data": { - "inGameID": 1072, - "isHot": false + "inGameID": 1072 }, "difficulty": "HARD", "isPrimary": true, @@ -14914,8 +13982,7 @@ { "chartID": "e04b3a2f830cacda64d27a866611ee592a4c1fdf", "data": { - "inGameID": 1072, - "isHot": false + "inGameID": 1072 }, "difficulty": "NORMAL", "isPrimary": true, @@ -14930,8 +13997,7 @@ { "chartID": "0a8b9aa1310b19313ea8ce51333515c92f2dd23c", "data": { - "inGameID": 1071, - "isHot": false + "inGameID": 1071 }, "difficulty": "EXPERT", "isPrimary": true, @@ -14946,8 +14012,7 @@ { "chartID": "ab7aa3ed3c788d22293ca81f6cd496d49ad18c33", "data": { - "inGameID": 1071, - "isHot": false + "inGameID": 1071 }, "difficulty": "HARD", "isPrimary": true, @@ -14962,8 +14027,7 @@ { "chartID": "a0f2aa944046b6b6d71602c12e1853b2496e7819", "data": { - "inGameID": 1071, - "isHot": false + "inGameID": 1071 }, "difficulty": "NORMAL", "isPrimary": true, @@ -14978,8 +14042,7 @@ { "chartID": "4fd12807ec34c6ed729f982578127927266fb765", "data": { - "inGameID": 1070, - "isHot": false + "inGameID": 1070 }, "difficulty": "EXPERT", "isPrimary": true, @@ -14994,8 +14057,7 @@ { "chartID": "0d6e75afd925982354a9e85b895003e8c69b6e16", "data": { - "inGameID": 1070, - "isHot": false + "inGameID": 1070 }, "difficulty": "HARD", "isPrimary": true, @@ -15010,8 +14072,7 @@ { "chartID": "039d8fb2316247cab896cae3e0588b6f23c81a7f", "data": { - "inGameID": 1070, - "isHot": false + "inGameID": 1070 }, "difficulty": "NORMAL", "isPrimary": true, @@ -15026,8 +14087,7 @@ { "chartID": "ddaa9e4d1c81f6b4cf90a0c92abf4af6c1ff85ea", "data": { - "inGameID": 1069, - "isHot": false + "inGameID": 1069 }, "difficulty": "EXPERT", "isPrimary": true, @@ -15042,8 +14102,7 @@ { "chartID": "0fdfcda56e70298c207746fa7c0ac1a93fbe1a3d", "data": { - "inGameID": 1069, - "isHot": false + "inGameID": 1069 }, "difficulty": "HARD", "isPrimary": true, @@ -15058,8 +14117,7 @@ { "chartID": "13f4da427b8a85429b626f27f06ce130356df355", "data": { - "inGameID": 1069, - "isHot": false + "inGameID": 1069 }, "difficulty": "NORMAL", "isPrimary": true, @@ -15074,8 +14132,7 @@ { "chartID": "d9211356e5397909876965fc01c80e469accc8fb", "data": { - "inGameID": 1060, - "isHot": false + "inGameID": 1060 }, "difficulty": "EXPERT", "isPrimary": true, @@ -15090,8 +14147,7 @@ { "chartID": "49daee0a1388dd6549e324d2425cb2b698aabd62", "data": { - "inGameID": 1060, - "isHot": false + "inGameID": 1060 }, "difficulty": "HARD", "isPrimary": true, @@ -15106,8 +14162,7 @@ { "chartID": "b941f5eb0cfd578b65bcc1be4477d4807105de44", "data": { - "inGameID": 1060, - "isHot": false + "inGameID": 1060 }, "difficulty": "NORMAL", "isPrimary": true, @@ -15122,8 +14177,7 @@ { "chartID": "34b285a65f03bf55de2238e179f782d3ec77f3b0", "data": { - "inGameID": 1059, - "isHot": false + "inGameID": 1059 }, "difficulty": "EXPERT", "isPrimary": true, @@ -15138,8 +14192,7 @@ { "chartID": "58c3c1eed4987425bf658232008acc4f80fccc80", "data": { - "inGameID": 1059, - "isHot": false + "inGameID": 1059 }, "difficulty": "HARD", "isPrimary": true, @@ -15154,8 +14207,7 @@ { "chartID": "cf3762ecbfbb0c9e29afb824ab311527f641340b", "data": { - "inGameID": 1059, - "isHot": false + "inGameID": 1059 }, "difficulty": "NORMAL", "isPrimary": true, @@ -15170,8 +14222,7 @@ { "chartID": "800d0ea01e8ed064147799e6bf5f797e6ee324eb", "data": { - "inGameID": 1058, - "isHot": false + "inGameID": 1058 }, "difficulty": "EXPERT", "isPrimary": true, @@ -15186,8 +14237,7 @@ { "chartID": "8f257b556c62030ecdef6b85939e82036a81ffee", "data": { - "inGameID": 1058, - "isHot": false + "inGameID": 1058 }, "difficulty": "HARD", "isPrimary": true, @@ -15202,8 +14252,7 @@ { "chartID": "3a599276f65552f2c3f0a73c70a017ae9c325fcf", "data": { - "inGameID": 1058, - "isHot": false + "inGameID": 1058 }, "difficulty": "NORMAL", "isPrimary": true, @@ -15218,8 +14267,7 @@ { "chartID": "034364f13b2fba6bcd2772aa62043e103cb3b4e1", "data": { - "inGameID": 1057, - "isHot": false + "inGameID": 1057 }, "difficulty": "EXPERT", "isPrimary": true, @@ -15234,8 +14282,7 @@ { "chartID": "82e400e7aec6572f05dcf1fcbe95f943fdfc5447", "data": { - "inGameID": 1057, - "isHot": false + "inGameID": 1057 }, "difficulty": "HARD", "isPrimary": true, @@ -15250,8 +14297,7 @@ { "chartID": "ff9749552433c83e5e1fc797816d7ca3a36df975", "data": { - "inGameID": 1057, - "isHot": true + "inGameID": 1057 }, "difficulty": "INFERNO", "isPrimary": true, @@ -15266,8 +14312,7 @@ { "chartID": "f0e567d2fd2140bd1bc3b6f4927078e00d045208", "data": { - "inGameID": 1057, - "isHot": false + "inGameID": 1057 }, "difficulty": "NORMAL", "isPrimary": true, @@ -15282,8 +14327,7 @@ { "chartID": "95dd4e3bdbcfc8b9815e175a4a8f09f2b9d3e7e0", "data": { - "inGameID": 1056, - "isHot": false + "inGameID": 1056 }, "difficulty": "EXPERT", "isPrimary": true, @@ -15298,8 +14342,7 @@ { "chartID": "57c7c81d8b4b04d755fceb947e326075535a99c1", "data": { - "inGameID": 1056, - "isHot": false + "inGameID": 1056 }, "difficulty": "HARD", "isPrimary": true, @@ -15314,8 +14357,7 @@ { "chartID": "fabee15e6254702592ea44a808e7fc0bccf3cafb", "data": { - "inGameID": 1056, - "isHot": false + "inGameID": 1056 }, "difficulty": "INFERNO", "isPrimary": true, @@ -15330,8 +14372,7 @@ { "chartID": "f0af84ebcccfc00c49f44a1e2cf89b24f7ba5480", "data": { - "inGameID": 1056, - "isHot": false + "inGameID": 1056 }, "difficulty": "NORMAL", "isPrimary": true, @@ -15346,8 +14387,7 @@ { "chartID": "b2187eae90cc805e0c212764b8805f9055b19601", "data": { - "inGameID": 1055, - "isHot": false + "inGameID": 1055 }, "difficulty": "EXPERT", "isPrimary": true, @@ -15362,8 +14402,7 @@ { "chartID": "13c3e5af9a45554b26bdd014867b2b910b580707", "data": { - "inGameID": 1055, - "isHot": false + "inGameID": 1055 }, "difficulty": "HARD", "isPrimary": true, @@ -15378,8 +14417,7 @@ { "chartID": "3e8c4c285fc25658a2c065485c83c2644e340855", "data": { - "inGameID": 1055, - "isHot": false + "inGameID": 1055 }, "difficulty": "NORMAL", "isPrimary": true, @@ -15394,8 +14432,7 @@ { "chartID": "5b95ce106604aca6ea5955dffae3d5351b7ad8e1", "data": { - "inGameID": 1054, - "isHot": false + "inGameID": 1054 }, "difficulty": "EXPERT", "isPrimary": true, @@ -15410,8 +14447,7 @@ { "chartID": "c42edda0ff252e11b7c6fd25d2eb3bfcdb3019d1", "data": { - "inGameID": 1054, - "isHot": false + "inGameID": 1054 }, "difficulty": "HARD", "isPrimary": true, @@ -15426,8 +14462,7 @@ { "chartID": "be7c71307b3d7e7c51e596e99a60ce9561fe386a", "data": { - "inGameID": 1054, - "isHot": false + "inGameID": 1054 }, "difficulty": "NORMAL", "isPrimary": true, @@ -15442,8 +14477,7 @@ { "chartID": "3f91e2f03056a94766ff79338f0470cbbe7a19b4", "data": { - "inGameID": 1051, - "isHot": false + "inGameID": 1051 }, "difficulty": "EXPERT", "isPrimary": true, @@ -15458,8 +14492,7 @@ { "chartID": "21065bbe8cb18175fe62581444b43785784a505b", "data": { - "inGameID": 1051, - "isHot": false + "inGameID": 1051 }, "difficulty": "HARD", "isPrimary": true, @@ -15474,8 +14507,7 @@ { "chartID": "80560ed15be1b1f3e4f14df5d2257586d5b66291", "data": { - "inGameID": 1051, - "isHot": false + "inGameID": 1051 }, "difficulty": "NORMAL", "isPrimary": true, @@ -15490,8 +14522,7 @@ { "chartID": "093411120df1473f552315b38ddaf3a7bb5ec30a", "data": { - "inGameID": 1041, - "isHot": false + "inGameID": 1041 }, "difficulty": "EXPERT", "isPrimary": true, @@ -15506,8 +14537,7 @@ { "chartID": "59628a6228fa3b076148f35ea53ec2200dcd72d3", "data": { - "inGameID": 1041, - "isHot": false + "inGameID": 1041 }, "difficulty": "HARD", "isPrimary": true, @@ -15522,8 +14552,7 @@ { "chartID": "23ed3ce238ba704afc2e316c71d3fa9a76cfa50f", "data": { - "inGameID": 1041, - "isHot": false + "inGameID": 1041 }, "difficulty": "NORMAL", "isPrimary": true, @@ -15538,8 +14567,7 @@ { "chartID": "35afc8eec0dd9344513418897d6122bbd8c0a18e", "data": { - "inGameID": 1036, - "isHot": false + "inGameID": 1036 }, "difficulty": "EXPERT", "isPrimary": true, @@ -15554,8 +14582,7 @@ { "chartID": "d883e38d41391ef8acb8807256d6bad70f178604", "data": { - "inGameID": 1036, - "isHot": false + "inGameID": 1036 }, "difficulty": "HARD", "isPrimary": true, @@ -15570,8 +14597,7 @@ { "chartID": "f3ae128e1d6120fe47eebc61dbe09acc5c5f489d", "data": { - "inGameID": 1036, - "isHot": false + "inGameID": 1036 }, "difficulty": "NORMAL", "isPrimary": true, @@ -15586,8 +14612,7 @@ { "chartID": "ed94906367f479f462a07c34f5f8bf65378c0692", "data": { - "inGameID": 1035, - "isHot": false + "inGameID": 1035 }, "difficulty": "EXPERT", "isPrimary": true, @@ -15602,8 +14627,7 @@ { "chartID": "84cfdcbe570b1fc75a898ee45c84d249e1f825dd", "data": { - "inGameID": 1035, - "isHot": false + "inGameID": 1035 }, "difficulty": "HARD", "isPrimary": true, @@ -15618,8 +14642,7 @@ { "chartID": "7c147fe7c6f726a40e3c3e10739b1848f907b015", "data": { - "inGameID": 1035, - "isHot": false + "inGameID": 1035 }, "difficulty": "NORMAL", "isPrimary": true, @@ -15634,8 +14657,7 @@ { "chartID": "7f6d2c89c45e03d1d08e02625c98707d150d8918", "data": { - "inGameID": 1027, - "isHot": false + "inGameID": 1027 }, "difficulty": "EXPERT", "isPrimary": true, @@ -15650,8 +14672,7 @@ { "chartID": "0e5cc24ae0e1d2126d08c858b8a15cd248aa5753", "data": { - "inGameID": 1027, - "isHot": false + "inGameID": 1027 }, "difficulty": "HARD", "isPrimary": true, @@ -15666,8 +14687,7 @@ { "chartID": "3a7a61ae75bebf6f5cd6230155e7ad8357c2b9d6", "data": { - "inGameID": 1027, - "isHot": false + "inGameID": 1027 }, "difficulty": "NORMAL", "isPrimary": true, @@ -15682,8 +14702,7 @@ { "chartID": "b20cd741ebbf7fdc1f42351d685aab4e6ab81579", "data": { - "inGameID": 1017, - "isHot": false + "inGameID": 1017 }, "difficulty": "EXPERT", "isPrimary": true, @@ -15698,8 +14717,7 @@ { "chartID": "a0fc351b173fcc75b6acd037303c08aef2137638", "data": { - "inGameID": 1017, - "isHot": false + "inGameID": 1017 }, "difficulty": "HARD", "isPrimary": true, @@ -15714,8 +14732,7 @@ { "chartID": "7cd73660d0819ce87997339c7b5fdb46923da576", "data": { - "inGameID": 1017, - "isHot": false + "inGameID": 1017 }, "difficulty": "NORMAL", "isPrimary": true, @@ -15730,8 +14747,7 @@ { "chartID": "021215a9ee9103c313ae44b4b72fd66c91322ab6", "data": { - "inGameID": 1014, - "isHot": false + "inGameID": 1014 }, "difficulty": "EXPERT", "isPrimary": true, @@ -15746,8 +14762,7 @@ { "chartID": "3cccba407e921839cb21fa8adddbe856323c976b", "data": { - "inGameID": 1014, - "isHot": false + "inGameID": 1014 }, "difficulty": "HARD", "isPrimary": true, @@ -15762,8 +14777,7 @@ { "chartID": "94cfc3e36ce569a48c6fe9144560cce3945a2f37", "data": { - "inGameID": 1014, - "isHot": false + "inGameID": 1014 }, "difficulty": "NORMAL", "isPrimary": true, @@ -15778,8 +14792,7 @@ { "chartID": "ced29dec076c16ee215c8ea83bb35b039890844d", "data": { - "inGameID": 1011, - "isHot": false + "inGameID": 1011 }, "difficulty": "EXPERT", "isPrimary": true, @@ -15794,8 +14807,7 @@ { "chartID": "c5d34d1aef7adb4f311465a4f724bb45b3c43283", "data": { - "inGameID": 1011, - "isHot": false + "inGameID": 1011 }, "difficulty": "HARD", "isPrimary": true, @@ -15810,8 +14822,7 @@ { "chartID": "5ce63719e97ebdf8174d559db7e9edc28ba7398f", "data": { - "inGameID": 1011, - "isHot": false + "inGameID": 1011 }, "difficulty": "NORMAL", "isPrimary": true, @@ -15826,8 +14837,7 @@ { "chartID": "d129f7734e5cbdbc5ad7eb6a6ce7b21ecda86419", "data": { - "inGameID": 1010, - "isHot": false + "inGameID": 1010 }, "difficulty": "EXPERT", "isPrimary": true, @@ -15842,8 +14852,7 @@ { "chartID": "37f46c34d28b82aaff8a748692164351a11c663d", "data": { - "inGameID": 1010, - "isHot": false + "inGameID": 1010 }, "difficulty": "HARD", "isPrimary": true, @@ -15858,8 +14867,7 @@ { "chartID": "fb4938564cb5c23457498624ccb71b0d088cd4ce", "data": { - "inGameID": 1010, - "isHot": false + "inGameID": 1010 }, "difficulty": "NORMAL", "isPrimary": true, @@ -15874,8 +14882,7 @@ { "chartID": "f5ada2944edfecffd222f890939066cab4748d7e", "data": { - "inGameID": 1006, - "isHot": false + "inGameID": 1006 }, "difficulty": "EXPERT", "isPrimary": true, @@ -15890,8 +14897,7 @@ { "chartID": "378560487a083a6a45ebda475a2d46fe8a6677a8", "data": { - "inGameID": 1006, - "isHot": false + "inGameID": 1006 }, "difficulty": "HARD", "isPrimary": true, @@ -15906,8 +14912,7 @@ { "chartID": "5031adc1bd6a87d3075bda03467683e9ea37f2ea", "data": { - "inGameID": 1006, - "isHot": false + "inGameID": 1006 }, "difficulty": "NORMAL", "isPrimary": true, @@ -15922,8 +14927,7 @@ { "chartID": "f802ce5824ae6338986b9c67a17fce272e215ca8", "data": { - "inGameID": 32, - "isHot": false + "inGameID": 32 }, "difficulty": "EXPERT", "isPrimary": true, @@ -15938,8 +14942,7 @@ { "chartID": "5ae8ab37ea21844a22238775e06babafea3ff434", "data": { - "inGameID": 32, - "isHot": false + "inGameID": 32 }, "difficulty": "HARD", "isPrimary": true, @@ -15954,8 +14957,7 @@ { "chartID": "30f1d93f536859fd0deec0ec6b0149e9677851a6", "data": { - "inGameID": 32, - "isHot": false + "inGameID": 32 }, "difficulty": "INFERNO", "isPrimary": true, @@ -15970,8 +14972,7 @@ { "chartID": "8ccbc35d4df925a7c4ddd755a52b1f0abfbc16f3", "data": { - "inGameID": 32, - "isHot": false + "inGameID": 32 }, "difficulty": "NORMAL", "isPrimary": true, @@ -15986,8 +14987,7 @@ { "chartID": "2000cec98bf02dcd66acd9f715026327655eb285", "data": { - "inGameID": 31, - "isHot": false + "inGameID": 31 }, "difficulty": "EXPERT", "isPrimary": true, @@ -16002,8 +15002,7 @@ { "chartID": "52fb8ce5c35fde1a85657d76946e68d439d72c3f", "data": { - "inGameID": 31, - "isHot": false + "inGameID": 31 }, "difficulty": "HARD", "isPrimary": true, @@ -16018,8 +15017,7 @@ { "chartID": "13ddb48534a988a52bc9da87b26a69c7a056e90b", "data": { - "inGameID": 31, - "isHot": false + "inGameID": 31 }, "difficulty": "NORMAL", "isPrimary": true, @@ -16034,8 +15032,7 @@ { "chartID": "b9cf0b8ef4b7fdc32750d2f4be605bf645a2f7ca", "data": { - "inGameID": 30, - "isHot": false + "inGameID": 30 }, "difficulty": "EXPERT", "isPrimary": true, @@ -16050,8 +15047,7 @@ { "chartID": "3d96ecd503ce464ae9a94dc38341febb11840d7e", "data": { - "inGameID": 30, - "isHot": false + "inGameID": 30 }, "difficulty": "HARD", "isPrimary": true, @@ -16066,8 +15062,7 @@ { "chartID": "dec357d002a179e30b3b9c0f0ad4c5917f790884", "data": { - "inGameID": 30, - "isHot": false + "inGameID": 30 }, "difficulty": "NORMAL", "isPrimary": true, @@ -16082,8 +15077,7 @@ { "chartID": "0bb02a18b6694edfa1cc7e5bed50e3d99283be71", "data": { - "inGameID": 27, - "isHot": false + "inGameID": 27 }, "difficulty": "EXPERT", "isPrimary": true, @@ -16098,8 +15092,7 @@ { "chartID": "99c2ef3ba2335b2cca1982e2aaea3e80bde0b80b", "data": { - "inGameID": 27, - "isHot": false + "inGameID": 27 }, "difficulty": "HARD", "isPrimary": true, @@ -16114,8 +15107,7 @@ { "chartID": "aa2a769e6453bda69ad9de1b3ad220aca363686a", "data": { - "inGameID": 27, - "isHot": false + "inGameID": 27 }, "difficulty": "NORMAL", "isPrimary": true, @@ -16130,8 +15122,7 @@ { "chartID": "e87065b604d2c5ea4f1c335770552942db222433", "data": { - "inGameID": 25, - "isHot": false + "inGameID": 25 }, "difficulty": "EXPERT", "isPrimary": true, @@ -16146,8 +15137,7 @@ { "chartID": "3f514dc5c2216a1994b4af98c71d36d8f15d1f1f", "data": { - "inGameID": 25, - "isHot": false + "inGameID": 25 }, "difficulty": "HARD", "isPrimary": true, @@ -16162,8 +15152,7 @@ { "chartID": "610966334f5739c994b70e3c5be7b1c6ffaa2d93", "data": { - "inGameID": 25, - "isHot": false + "inGameID": 25 }, "difficulty": "NORMAL", "isPrimary": true, @@ -16178,8 +15167,7 @@ { "chartID": "e5f3ab45ced1f4cb8ba0f3141dbca62b4ecf4db3", "data": { - "inGameID": 24, - "isHot": false + "inGameID": 24 }, "difficulty": "EXPERT", "isPrimary": true, @@ -16194,8 +15182,7 @@ { "chartID": "5ce1b0728ed02db1075286c671d15caf709209cd", "data": { - "inGameID": 24, - "isHot": false + "inGameID": 24 }, "difficulty": "HARD", "isPrimary": true, @@ -16210,8 +15197,7 @@ { "chartID": "8d3eb92715ed9c02dcbb6ea2a98344498744a2c8", "data": { - "inGameID": 24, - "isHot": false + "inGameID": 24 }, "difficulty": "NORMAL", "isPrimary": true, @@ -16226,8 +15212,7 @@ { "chartID": "e218bc839c4608a1f6263d606b92f7c8e2b05a73", "data": { - "inGameID": 23, - "isHot": false + "inGameID": 23 }, "difficulty": "EXPERT", "isPrimary": true, @@ -16242,8 +15227,7 @@ { "chartID": "3c2d8675c44daf7506224a3794217fd4c10faeb5", "data": { - "inGameID": 23, - "isHot": false + "inGameID": 23 }, "difficulty": "HARD", "isPrimary": true, @@ -16258,8 +15242,7 @@ { "chartID": "cdba4d3d0606fad68643f27bc631d48c371e7849", "data": { - "inGameID": 23, - "isHot": false + "inGameID": 23 }, "difficulty": "NORMAL", "isPrimary": true, @@ -16274,8 +15257,7 @@ { "chartID": "9fab1caea6a6dbcacc0a71e9febe7133ab458f38", "data": { - "inGameID": 21, - "isHot": false + "inGameID": 21 }, "difficulty": "EXPERT", "isPrimary": true, @@ -16290,8 +15272,7 @@ { "chartID": "4bf4bd97f49276c5fd836b88b7478661b4bc77dd", "data": { - "inGameID": 21, - "isHot": false + "inGameID": 21 }, "difficulty": "HARD", "isPrimary": true, @@ -16306,8 +15287,7 @@ { "chartID": "76b71ceb2b938c10e19bcfc2001fc83134db388e", "data": { - "inGameID": 21, - "isHot": false + "inGameID": 21 }, "difficulty": "NORMAL", "isPrimary": true, @@ -16322,8 +15302,7 @@ { "chartID": "0edcc3b7d1662ad67cb49a38a509ce05e89290c1", "data": { - "inGameID": 20, - "isHot": false + "inGameID": 20 }, "difficulty": "EXPERT", "isPrimary": true, @@ -16338,8 +15317,7 @@ { "chartID": "c4c2560f3a6f16a72a391e29dae0a172c6b965be", "data": { - "inGameID": 20, - "isHot": false + "inGameID": 20 }, "difficulty": "HARD", "isPrimary": true, @@ -16354,8 +15332,7 @@ { "chartID": "18f265f9e2c79965e7a5ebcc6371420de63993b9", "data": { - "inGameID": 20, - "isHot": false + "inGameID": 20 }, "difficulty": "NORMAL", "isPrimary": true, @@ -16370,8 +15347,7 @@ { "chartID": "4323466334bd4f80daf674ccb174fe8815f4d2be", "data": { - "inGameID": 9, - "isHot": false + "inGameID": 9 }, "difficulty": "EXPERT", "isPrimary": true, @@ -16386,8 +15362,7 @@ { "chartID": "cf31db26bb5bc6a022a155641bb82adaff01d26f", "data": { - "inGameID": 9, - "isHot": false + "inGameID": 9 }, "difficulty": "HARD", "isPrimary": true, @@ -16402,8 +15377,7 @@ { "chartID": "510613910d774deea3479b153e0593c3c81a2b2d", "data": { - "inGameID": 9, - "isHot": false + "inGameID": 9 }, "difficulty": "NORMAL", "isPrimary": true, @@ -16418,8 +15392,7 @@ { "chartID": "fdd4452046ec225b404e22b8435d0e769f29934c", "data": { - "inGameID": 7, - "isHot": false + "inGameID": 7 }, "difficulty": "EXPERT", "isPrimary": true, @@ -16434,8 +15407,7 @@ { "chartID": "6406d0b28fa8dfe3f23390abf5e029b4fc2b7fcf", "data": { - "inGameID": 7, - "isHot": false + "inGameID": 7 }, "difficulty": "HARD", "isPrimary": true, @@ -16450,8 +15422,7 @@ { "chartID": "2ce9bd269e2ad280d91f2ce9ae79b30ffb32e936", "data": { - "inGameID": 7, - "isHot": false + "inGameID": 7 }, "difficulty": "NORMAL", "isPrimary": true, @@ -16466,8 +15437,7 @@ { "chartID": "43ec1d0c29645dcc0f688dcca05d2d883a8d6988", "data": { - "inGameID": 6, - "isHot": false + "inGameID": 6 }, "difficulty": "EXPERT", "isPrimary": true, @@ -16482,8 +15452,7 @@ { "chartID": "eef9cc3280bde3522181d0a0b734eceb18a3fca2", "data": { - "inGameID": 6, - "isHot": false + "inGameID": 6 }, "difficulty": "HARD", "isPrimary": true, @@ -16498,8 +15467,7 @@ { "chartID": "150eaba46f2d626fec40c0b6486dcecc52e1da6b", "data": { - "inGameID": 6, - "isHot": false + "inGameID": 6 }, "difficulty": "NORMAL", "isPrimary": true, @@ -16514,8 +15482,7 @@ { "chartID": "6bbde6c03ccd5e5950b40f0fbea46c2af6b45c41", "data": { - "inGameID": 5, - "isHot": false + "inGameID": 5 }, "difficulty": "EXPERT", "isPrimary": true, @@ -16530,8 +15497,7 @@ { "chartID": "aab98f5925cb8cb585d5ff40c338e1cd960ff78b", "data": { - "inGameID": 5, - "isHot": false + "inGameID": 5 }, "difficulty": "HARD", "isPrimary": true, @@ -16546,8 +15512,7 @@ { "chartID": "7fd463bb3e5cb0266f9dee1c2d4c384d681ce785", "data": { - "inGameID": 5, - "isHot": false + "inGameID": 5 }, "difficulty": "NORMAL", "isPrimary": true, @@ -16562,8 +15527,7 @@ { "chartID": "f3929e890a414e94ac4a9b7a1ccf71ae13b82cdb", "data": { - "inGameID": 4, - "isHot": false + "inGameID": 4 }, "difficulty": "EXPERT", "isPrimary": true, @@ -16578,8 +15542,7 @@ { "chartID": "0b5611f67140aaebffe137255c7b737f940df134", "data": { - "inGameID": 4, - "isHot": false + "inGameID": 4 }, "difficulty": "HARD", "isPrimary": true, @@ -16594,8 +15557,7 @@ { "chartID": "b08894b09d9c792d2950ba25f54712573d9a2402", "data": { - "inGameID": 4, - "isHot": false + "inGameID": 4 }, "difficulty": "NORMAL", "isPrimary": true, @@ -16610,8 +15572,7 @@ { "chartID": "9fc3003a3924a5c9c4018e94365a8fddb95d3407", "data": { - "inGameID": 3, - "isHot": false + "inGameID": 3 }, "difficulty": "EXPERT", "isPrimary": true, @@ -16626,8 +15587,7 @@ { "chartID": "116a0f44d5c00047a0280d1709b65a8dd0120ab1", "data": { - "inGameID": 3, - "isHot": false + "inGameID": 3 }, "difficulty": "HARD", "isPrimary": true, @@ -16642,8 +15602,7 @@ { "chartID": "3cc33cac69e6b21321fae3b73970c4d0422b3e93", "data": { - "inGameID": 3, - "isHot": false + "inGameID": 3 }, "difficulty": "NORMAL", "isPrimary": true, @@ -16658,8 +15617,7 @@ { "chartID": "77edf990ef8e7e3280459cad2d459df5b7b7c034", "data": { - "inGameID": 3056, - "isHot": true + "inGameID": 3056 }, "difficulty": "EXPERT", "isPrimary": true, @@ -16674,8 +15632,7 @@ { "chartID": "e4d13130b92d1e7c8a6f6bed4970d7f8667e19aa", "data": { - "inGameID": 3056, - "isHot": true + "inGameID": 3056 }, "difficulty": "HARD", "isPrimary": true, @@ -16690,8 +15647,7 @@ { "chartID": "55c6bb6dbfe3571fbf19adfacce57c3aeaa1c7a4", "data": { - "inGameID": 3056, - "isHot": true + "inGameID": 3056 }, "difficulty": "NORMAL", "isPrimary": true, @@ -16706,8 +15662,7 @@ { "chartID": "1de2f7d2b3b11e9a77c9694a88c6a4b5d7ea68e1", "data": { - "inGameID": 3055, - "isHot": true + "inGameID": 3055 }, "difficulty": "EXPERT", "isPrimary": true, @@ -16722,8 +15677,7 @@ { "chartID": "46d05a10c25829abe5af400dfb3581762171b08b", "data": { - "inGameID": 3055, - "isHot": true + "inGameID": 3055 }, "difficulty": "HARD", "isPrimary": true, @@ -16738,8 +15692,7 @@ { "chartID": "851aa89816d2ef3a7a9ffb9518429970df73299e", "data": { - "inGameID": 3055, - "isHot": true + "inGameID": 3055 }, "difficulty": "NORMAL", "isPrimary": true, @@ -16754,8 +15707,7 @@ { "chartID": "6e9563006e087c39da9148a43733181403e7a59e", "data": { - "inGameID": 3049, - "isHot": true + "inGameID": 3049 }, "difficulty": "EXPERT", "isPrimary": true, @@ -16770,8 +15722,7 @@ { "chartID": "cecc3acc951afd92dd46f3d9c9e6d9d43b1abd33", "data": { - "inGameID": 3049, - "isHot": true + "inGameID": 3049 }, "difficulty": "HARD", "isPrimary": true, @@ -16786,8 +15737,7 @@ { "chartID": "9b9e955f4ee55e12c30146da526aebd0f890ccfc", "data": { - "inGameID": 3049, - "isHot": true + "inGameID": 3049 }, "difficulty": "NORMAL", "isPrimary": true, @@ -16802,8 +15752,7 @@ { "chartID": "502ab5f1c1a5647aa6539f5e25862f5f6e28eb60", "data": { - "inGameID": 3048, - "isHot": true + "inGameID": 3048 }, "difficulty": "EXPERT", "isPrimary": true, @@ -16818,8 +15767,7 @@ { "chartID": "b693625992ae937272984d96ada6966fd55419c0", "data": { - "inGameID": 3048, - "isHot": true + "inGameID": 3048 }, "difficulty": "HARD", "isPrimary": true, @@ -16834,8 +15782,7 @@ { "chartID": "ab2837bcf61022204c034b222184e4bede46b5d2", "data": { - "inGameID": 3048, - "isHot": true + "inGameID": 3048 }, "difficulty": "NORMAL", "isPrimary": true, @@ -16850,8 +15797,7 @@ { "chartID": "290ca37ff14eb6d840e24e579cad33ab2476df49", "data": { - "inGameID": 3050, - "isHot": true + "inGameID": 3050 }, "difficulty": "EXPERT", "isPrimary": true, @@ -16866,8 +15812,7 @@ { "chartID": "629b18ed41270f44bd8c20d51f378e23f9be836a", "data": { - "inGameID": 3050, - "isHot": true + "inGameID": 3050 }, "difficulty": "HARD", "isPrimary": true, @@ -16882,8 +15827,7 @@ { "chartID": "385d60dcfde335a831672d5a2768dddf2c687899", "data": { - "inGameID": 3050, - "isHot": true + "inGameID": 3050 }, "difficulty": "NORMAL", "isPrimary": true, @@ -16898,8 +15842,7 @@ { "chartID": "6df01a0b4b12dfd490b6773de9f127bad0b70a8f", "data": { - "inGameID": 3047, - "isHot": true + "inGameID": 3047 }, "difficulty": "EXPERT", "isPrimary": true, @@ -16914,8 +15857,7 @@ { "chartID": "1a3d9c2ef04d645e65411d2482e0790eed94fd18", "data": { - "inGameID": 3047, - "isHot": true + "inGameID": 3047 }, "difficulty": "HARD", "isPrimary": true, @@ -16930,8 +15872,7 @@ { "chartID": "60b50db4aac2185da5be2958a2d06d455438b2bf", "data": { - "inGameID": 3047, - "isHot": true + "inGameID": 3047 }, "difficulty": "INFERNO", "isPrimary": true, @@ -16946,8 +15887,7 @@ { "chartID": "99a9418b2656f664aed6374731aac60a625ec891", "data": { - "inGameID": 3047, - "isHot": true + "inGameID": 3047 }, "difficulty": "NORMAL", "isPrimary": true, @@ -16962,8 +15902,7 @@ { "chartID": "646deb78aced40cae47a8844feead5fc2504532c", "data": { - "inGameID": 3046, - "isHot": true + "inGameID": 3046 }, "difficulty": "EXPERT", "isPrimary": true, @@ -16978,8 +15917,7 @@ { "chartID": "356ca41312750ffd7d5572505b339de0119457e4", "data": { - "inGameID": 3046, - "isHot": true + "inGameID": 3046 }, "difficulty": "HARD", "isPrimary": true, @@ -16994,8 +15932,7 @@ { "chartID": "7e122f2fce0b362808b8614c48438ff3ab7cd256", "data": { - "inGameID": 3046, - "isHot": true + "inGameID": 3046 }, "difficulty": "INFERNO", "isPrimary": true, @@ -17010,8 +15947,7 @@ { "chartID": "a3a3d55693f2ceb25296dae8563ed086e7636ab4", "data": { - "inGameID": 3046, - "isHot": true + "inGameID": 3046 }, "difficulty": "NORMAL", "isPrimary": true, @@ -17026,8 +15962,7 @@ { "chartID": "4c7eb4525c496743d038ea74e538871560920cb1", "data": { - "inGameID": 3044, - "isHot": true + "inGameID": 3044 }, "difficulty": "EXPERT", "isPrimary": true, @@ -17042,8 +15977,7 @@ { "chartID": "a33cb31903cb4348da34f27675d609c6ce8bb90b", "data": { - "inGameID": 3044, - "isHot": true + "inGameID": 3044 }, "difficulty": "HARD", "isPrimary": true, @@ -17058,8 +15992,7 @@ { "chartID": "2af6942f94f9f3ebc43e2e2312db0bfe44d2303d", "data": { - "inGameID": 3044, - "isHot": true + "inGameID": 3044 }, "difficulty": "INFERNO", "isPrimary": true, @@ -17074,8 +16007,7 @@ { "chartID": "d2340de1b9b6e5e3c1ace41dde588ea316811943", "data": { - "inGameID": 3044, - "isHot": true + "inGameID": 3044 }, "difficulty": "NORMAL", "isPrimary": true, @@ -17090,8 +16022,7 @@ { "chartID": "eda02d064b2f67f37648c971eadec3a05f026107", "data": { - "inGameID": 3045, - "isHot": true + "inGameID": 3045 }, "difficulty": "EXPERT", "isPrimary": true, @@ -17106,8 +16037,7 @@ { "chartID": "bf8da4215fdcbeb68c34ee186c770251dbab1bf3", "data": { - "inGameID": 3045, - "isHot": true + "inGameID": 3045 }, "difficulty": "HARD", "isPrimary": true, @@ -17122,8 +16052,7 @@ { "chartID": "7e0cbfbb24bff0b8a61a5d131a6699d9f9b0fb4e", "data": { - "inGameID": 3045, - "isHot": true + "inGameID": 3045 }, "difficulty": "INFERNO", "isPrimary": true, @@ -17138,8 +16067,7 @@ { "chartID": "57d4197ba25853a3fad5841294b78c5253a0cfeb", "data": { - "inGameID": 3045, - "isHot": true + "inGameID": 3045 }, "difficulty": "NORMAL", "isPrimary": true, @@ -17154,8 +16082,7 @@ { "chartID": "be9aa7d0d5289e4d3ceec959572921c75fcf71e7", "data": { - "inGameID": 3057, - "isHot": true + "inGameID": 3057 }, "difficulty": "EXPERT", "isPrimary": true, @@ -17170,8 +16097,7 @@ { "chartID": "b596170daf333e4686250c8edeaffca010ebe2be", "data": { - "inGameID": 3057, - "isHot": true + "inGameID": 3057 }, "difficulty": "HARD", "isPrimary": true, @@ -17186,8 +16112,7 @@ { "chartID": "d7e1af40ad8a4916646a7da373f70db1f131d360", "data": { - "inGameID": 3057, - "isHot": true + "inGameID": 3057 }, "difficulty": "NORMAL", "isPrimary": true, @@ -17202,8 +16127,7 @@ { "chartID": "291f80dfe879ee987ed0dc67d6f3cfd162ae886d", "data": { - "inGameID": 3004, - "isHot": true + "inGameID": 3004 }, "difficulty": "EXPERT", "isPrimary": true, @@ -17218,8 +16142,7 @@ { "chartID": "113a129e636f37c5f07910364e22365b830e8e16", "data": { - "inGameID": 3004, - "isHot": true + "inGameID": 3004 }, "difficulty": "HARD", "isPrimary": true, @@ -17234,8 +16157,7 @@ { "chartID": "5e4276b7bf2dfc506e25f770a8507ed0b325365b", "data": { - "inGameID": 3004, - "isHot": true + "inGameID": 3004 }, "difficulty": "NORMAL", "isPrimary": true, @@ -17250,8 +16172,7 @@ { "chartID": "0feac3faafe9f28d9e300eacf49c4bbafe38c71d", "data": { - "inGameID": 3059, - "isHot": true + "inGameID": 3059 }, "difficulty": "EXPERT", "isPrimary": true, @@ -17266,8 +16187,7 @@ { "chartID": "45b63520d74aa78ec4a5435a324230bfb2cb3a3f", "data": { - "inGameID": 3059, - "isHot": true + "inGameID": 3059 }, "difficulty": "HARD", "isPrimary": true, @@ -17282,8 +16202,7 @@ { "chartID": "0e0f0ed3eb307ab829d4938777d42ca3711c82f5", "data": { - "inGameID": 3059, - "isHot": true + "inGameID": 3059 }, "difficulty": "NORMAL", "isPrimary": true, @@ -17298,8 +16217,7 @@ { "chartID": "5443c455fc0088c2f274cd718016bf0aa3fab697", "data": { - "inGameID": 3058, - "isHot": true + "inGameID": 3058 }, "difficulty": "EXPERT", "isPrimary": true, @@ -17314,8 +16232,7 @@ { "chartID": "c6e2513a32200f34871478d4d0739291c5f852cd", "data": { - "inGameID": 3058, - "isHot": true + "inGameID": 3058 }, "difficulty": "HARD", "isPrimary": true, @@ -17330,8 +16247,7 @@ { "chartID": "60517ead875ef3d3a42c600ef78a4c0841a633e5", "data": { - "inGameID": 3058, - "isHot": true + "inGameID": 3058 }, "difficulty": "INFERNO", "isPrimary": true, @@ -17346,8 +16262,7 @@ { "chartID": "47c66e40c4a2b8393f805a403990c3245d084d83", "data": { - "inGameID": 3058, - "isHot": true + "inGameID": 3058 }, "difficulty": "NORMAL", "isPrimary": true, @@ -17362,8 +16277,7 @@ { "chartID": "3852b7f8ff4a867945ecd9e8f59937773d90abb8", "data": { - "inGameID": 3052, - "isHot": true + "inGameID": 3052 }, "difficulty": "EXPERT", "isPrimary": true, @@ -17378,8 +16292,7 @@ { "chartID": "118d77623466820b381da2948d5510c1910bea0d", "data": { - "inGameID": 3052, - "isHot": true + "inGameID": 3052 }, "difficulty": "HARD", "isPrimary": true, @@ -17394,8 +16307,7 @@ { "chartID": "5ef7432e1db4886a8ca9fd7d86ccd03a5971a80e", "data": { - "inGameID": 3052, - "isHot": true + "inGameID": 3052 }, "difficulty": "NORMAL", "isPrimary": true, @@ -17410,8 +16322,7 @@ { "chartID": "48c2bc4a90dd065c18ac5d452db22c0f93ae683b", "data": { - "inGameID": 3053, - "isHot": true + "inGameID": 3053 }, "difficulty": "EXPERT", "isPrimary": true, @@ -17426,8 +16337,7 @@ { "chartID": "ea97b97bdc04b2b2d6ef2f9cd129de20ec367803", "data": { - "inGameID": 3053, - "isHot": true + "inGameID": 3053 }, "difficulty": "HARD", "isPrimary": true, @@ -17442,8 +16352,7 @@ { "chartID": "976c7c80d25469b297fe2b1d59fcb230aca0df00", "data": { - "inGameID": 3053, - "isHot": true + "inGameID": 3053 }, "difficulty": "NORMAL", "isPrimary": true, @@ -17458,8 +16367,7 @@ { "chartID": "ab4b2a207ac72eac3ce647d16b427efbd881a594", "data": { - "inGameID": 3062, - "isHot": true + "inGameID": 3062 }, "difficulty": "EXPERT", "isPrimary": true, @@ -17474,8 +16382,7 @@ { "chartID": "528a75e88bddc383ef19a29d49d8cf3e8fa5188f", "data": { - "inGameID": 3062, - "isHot": true + "inGameID": 3062 }, "difficulty": "HARD", "isPrimary": true, @@ -17490,8 +16397,7 @@ { "chartID": "927f1f618b579b61c148ea6423f34a5962d3fb22", "data": { - "inGameID": 3062, - "isHot": true + "inGameID": 3062 }, "difficulty": "INFERNO", "isPrimary": true, @@ -17506,8 +16412,7 @@ { "chartID": "d1065af7b78c84ba47916e96c77fccc97ac0886b", "data": { - "inGameID": 3062, - "isHot": true + "inGameID": 3062 }, "difficulty": "NORMAL", "isPrimary": true, @@ -17522,8 +16427,7 @@ { "chartID": "4436d67c6ae38b0f60a96e61d816f7031db88a49", "data": { - "inGameID": 3061, - "isHot": true + "inGameID": 3061 }, "difficulty": "EXPERT", "isPrimary": true, @@ -17538,8 +16442,7 @@ { "chartID": "7df212ecb160596c7d3209946bc7bf8b67e3cc6d", "data": { - "inGameID": 3061, - "isHot": true + "inGameID": 3061 }, "difficulty": "HARD", "isPrimary": true, @@ -17554,8 +16457,7 @@ { "chartID": "323c33efa066e336cb28bc3ce7094b3b853a8c6d", "data": { - "inGameID": 3061, - "isHot": true + "inGameID": 3061 }, "difficulty": "NORMAL", "isPrimary": true, @@ -17570,8 +16472,7 @@ { "chartID": "b1de003d456dbf7a601fd1143de35a194b1d53eb", "data": { - "inGameID": 3060, - "isHot": true + "inGameID": 3060 }, "difficulty": "EXPERT", "isPrimary": true, @@ -17586,8 +16487,7 @@ { "chartID": "15682a99ad0ec28412813d9cb078e6fd7f6740a0", "data": { - "inGameID": 3060, - "isHot": true + "inGameID": 3060 }, "difficulty": "HARD", "isPrimary": true, @@ -17602,8 +16502,7 @@ { "chartID": "659723c0620f7ab5776ce3a1a4f4a635663fc16f", "data": { - "inGameID": 3060, - "isHot": true + "inGameID": 3060 }, "difficulty": "NORMAL", "isPrimary": true, @@ -17618,8 +16517,7 @@ { "chartID": "d426b4fa4943a88f4d5005fd2cdb9b62e88571b0", "data": { - "inGameID": 3032, - "isHot": true + "inGameID": 3032 }, "difficulty": "EXPERT", "isPrimary": true, @@ -17634,8 +16532,7 @@ { "chartID": "c7cf13f37d081006ec24605e218e802facb5f482", "data": { - "inGameID": 3032, - "isHot": true + "inGameID": 3032 }, "difficulty": "HARD", "isPrimary": true, @@ -17650,8 +16547,7 @@ { "chartID": "fadd19ba78af4aa9512ad7efc0dae98806aebbbc", "data": { - "inGameID": 3032, - "isHot": true + "inGameID": 3032 }, "difficulty": "NORMAL", "isPrimary": true, @@ -17666,8 +16562,7 @@ { "chartID": "42d0ef5281b0bda16a3c6dd563023f78de8863b0", "data": { - "inGameID": 3063, - "isHot": true + "inGameID": 3063 }, "difficulty": "EXPERT", "isPrimary": true, @@ -17682,8 +16577,7 @@ { "chartID": "6f4cc4b5041e7a85b49f32fa28c2d19214808931", "data": { - "inGameID": 3063, - "isHot": true + "inGameID": 3063 }, "difficulty": "HARD", "isPrimary": true, @@ -17698,8 +16592,7 @@ { "chartID": "a4be453461796c883e7916cc0e5b86d49ae09bb4", "data": { - "inGameID": 3063, - "isHot": true + "inGameID": 3063 }, "difficulty": "NORMAL", "isPrimary": true, @@ -17714,8 +16607,7 @@ { "chartID": "363da6e30739d82d2c4472fa7dbb82c1348f247d", "data": { - "inGameID": 3077, - "isHot": true + "inGameID": 3077 }, "difficulty": "EXPERT", "isPrimary": true, @@ -17730,8 +16622,7 @@ { "chartID": "47118e566fe0e2c2461b584e92ce0b2df04bbeff", "data": { - "inGameID": 3077, - "isHot": true + "inGameID": 3077 }, "difficulty": "HARD", "isPrimary": true, @@ -17746,8 +16637,7 @@ { "chartID": "9cb463c776df78fc66a7229d8e8f016c9e737316", "data": { - "inGameID": 3077, - "isHot": true + "inGameID": 3077 }, "difficulty": "NORMAL", "isPrimary": true, @@ -17762,8 +16652,7 @@ { "chartID": "38e8a592126e173267cadba23eb7454ce7f70420", "data": { - "inGameID": 3085, - "isHot": true + "inGameID": 3085 }, "difficulty": "EXPERT", "isPrimary": true, @@ -17778,8 +16667,7 @@ { "chartID": "f9d25143b0e7312bce14fdadc7ca700917516dc3", "data": { - "inGameID": 3085, - "isHot": true + "inGameID": 3085 }, "difficulty": "HARD", "isPrimary": true, @@ -17794,8 +16682,7 @@ { "chartID": "05feb6826ce5cc10bca66af9040d7cf8d07674ff", "data": { - "inGameID": 3085, - "isHot": true + "inGameID": 3085 }, "difficulty": "NORMAL", "isPrimary": true, @@ -17810,8 +16697,7 @@ { "chartID": "f5005553a7ff656de76b74e6cbc616ea3b699b07", "data": { - "inGameID": 3079, - "isHot": true + "inGameID": 3079 }, "difficulty": "EXPERT", "isPrimary": true, @@ -17826,8 +16712,7 @@ { "chartID": "b9e8f638d040c02405868193b3bcfdb5be183b41", "data": { - "inGameID": 3079, - "isHot": true + "inGameID": 3079 }, "difficulty": "HARD", "isPrimary": true, @@ -17842,8 +16727,7 @@ { "chartID": "d8752b2091563a578efdab9f7eb53b772c4888ed", "data": { - "inGameID": 3079, - "isHot": true + "inGameID": 3079 }, "difficulty": "NORMAL", "isPrimary": true, @@ -17858,8 +16742,7 @@ { "chartID": "d79e55ea180e9e22afe4809c2d017ba3daf1d36d", "data": { - "inGameID": 3080, - "isHot": true + "inGameID": 3080 }, "difficulty": "EXPERT", "isPrimary": true, @@ -17874,8 +16757,7 @@ { "chartID": "a86868788a2c8fba6b3efc70c18c514d039d7673", "data": { - "inGameID": 3080, - "isHot": true + "inGameID": 3080 }, "difficulty": "HARD", "isPrimary": true, @@ -17890,8 +16772,7 @@ { "chartID": "da23fafab9fff4d46491dbf9ff261b5fd2c178c1", "data": { - "inGameID": 3080, - "isHot": true + "inGameID": 3080 }, "difficulty": "NORMAL", "isPrimary": true, @@ -17906,8 +16787,7 @@ { "chartID": "5d60ef53fd1b68b3c2db82ae41af934102a39402", "data": { - "inGameID": 3090, - "isHot": true + "inGameID": 3090 }, "difficulty": "EXPERT", "isPrimary": true, @@ -17922,8 +16802,7 @@ { "chartID": "8511000e812ef4652d9c7259fa77d62b0bbfbc6b", "data": { - "inGameID": 3090, - "isHot": true + "inGameID": 3090 }, "difficulty": "HARD", "isPrimary": true, @@ -17938,8 +16817,7 @@ { "chartID": "482b970d8f9e90b27dfb5f3cad730d74594bb2af", "data": { - "inGameID": 3090, - "isHot": true + "inGameID": 3090 }, "difficulty": "NORMAL", "isPrimary": true, @@ -17954,8 +16832,7 @@ { "chartID": "c21c6e57d252331352b2f7c7b2592e9a7b57e4fe", "data": { - "inGameID": 3074, - "isHot": true + "inGameID": 3074 }, "difficulty": "EXPERT", "isPrimary": true, @@ -17970,8 +16847,7 @@ { "chartID": "2286abc5b49dc3a915c2e49d7181bb3b449b6f4a", "data": { - "inGameID": 3074, - "isHot": true + "inGameID": 3074 }, "difficulty": "HARD", "isPrimary": true, @@ -17986,8 +16862,7 @@ { "chartID": "09756e176996e5c25d249f1b68b651e2a9fc950b", "data": { - "inGameID": 3074, - "isHot": true + "inGameID": 3074 }, "difficulty": "NORMAL", "isPrimary": true, @@ -18002,8 +16877,7 @@ { "chartID": "719f626756b01ed7df70f921b5668fa0e888c39d", "data": { - "inGameID": 3081, - "isHot": true + "inGameID": 3081 }, "difficulty": "EXPERT", "isPrimary": true, @@ -18018,8 +16892,7 @@ { "chartID": "d11f8739a5f39ce86567106438081b29d9b86448", "data": { - "inGameID": 3081, - "isHot": true + "inGameID": 3081 }, "difficulty": "HARD", "isPrimary": true, @@ -18034,8 +16907,7 @@ { "chartID": "9b7e251f6f558b8a9b80d6cf5666650aba215d24", "data": { - "inGameID": 3081, - "isHot": true + "inGameID": 3081 }, "difficulty": "NORMAL", "isPrimary": true, @@ -18050,8 +16922,7 @@ { "chartID": "241da787ce73db3b8b4353c41577fb5b1e6819d7", "data": { - "inGameID": 3084, - "isHot": true + "inGameID": 3084 }, "difficulty": "EXPERT", "isPrimary": true, @@ -18066,8 +16937,7 @@ { "chartID": "5f8ec1c17ccf6ac5b061346bbb422f2c30312f27", "data": { - "inGameID": 3084, - "isHot": true + "inGameID": 3084 }, "difficulty": "HARD", "isPrimary": true, @@ -18082,8 +16952,7 @@ { "chartID": "0402dc369ea3c886443df46d8db7325a95be0484", "data": { - "inGameID": 3084, - "isHot": true + "inGameID": 3084 }, "difficulty": "NORMAL", "isPrimary": true, @@ -18098,8 +16967,7 @@ { "chartID": "3ff4a14ee6ffa01a2b62de225623bef5765306e8", "data": { - "inGameID": 3083, - "isHot": true + "inGameID": 3083 }, "difficulty": "EXPERT", "isPrimary": true, @@ -18114,8 +16982,7 @@ { "chartID": "3782ebcbcc788e59806a676137e1bdc64c910b2f", "data": { - "inGameID": 3083, - "isHot": true + "inGameID": 3083 }, "difficulty": "HARD", "isPrimary": true, @@ -18130,8 +16997,7 @@ { "chartID": "4450b915df5e4e527a43c3db251b48a94fa21f56", "data": { - "inGameID": 3083, - "isHot": true + "inGameID": 3083 }, "difficulty": "NORMAL", "isPrimary": true, @@ -18146,8 +17012,7 @@ { "chartID": "60d753dc31044b7bec8661f5d2e3f8bb6387ab3e", "data": { - "inGameID": 3092, - "isHot": true + "inGameID": 3092 }, "difficulty": "EXPERT", "isPrimary": true, @@ -18162,8 +17027,7 @@ { "chartID": "924bf7355a9bf81598c07e9ae8d3c5f6eb061435", "data": { - "inGameID": 3092, - "isHot": true + "inGameID": 3092 }, "difficulty": "HARD", "isPrimary": true, @@ -18178,8 +17042,7 @@ { "chartID": "341e96fbe7c3028fceeea36dc72d21f5cb3bc62f", "data": { - "inGameID": 3092, - "isHot": true + "inGameID": 3092 }, "difficulty": "NORMAL", "isPrimary": true, @@ -18194,8 +17057,7 @@ { "chartID": "7fda1a54ae03ae9705e38842d9a85322652ea177", "data": { - "inGameID": 3078, - "isHot": true + "inGameID": 3078 }, "difficulty": "EXPERT", "isPrimary": true, @@ -18210,8 +17072,7 @@ { "chartID": "dca4bc9529243d4352f2ddac2a45da566134ef9a", "data": { - "inGameID": 3078, - "isHot": true + "inGameID": 3078 }, "difficulty": "HARD", "isPrimary": true, @@ -18226,8 +17087,7 @@ { "chartID": "30f4834016613a89f9e945dc556f0d1da56cd397", "data": { - "inGameID": 3078, - "isHot": true + "inGameID": 3078 }, "difficulty": "NORMAL", "isPrimary": true, @@ -18242,8 +17102,7 @@ { "chartID": "e7b68a451812991541a86a6f5835dff5c99e5fcf", "data": { - "inGameID": 3071, - "isHot": true + "inGameID": 3071 }, "difficulty": "EXPERT", "isPrimary": true, @@ -18258,8 +17117,7 @@ { "chartID": "fddbeff70f793709ae9b1b1788b75b38d2bc7903", "data": { - "inGameID": 3071, - "isHot": true + "inGameID": 3071 }, "difficulty": "HARD", "isPrimary": true, @@ -18274,8 +17132,7 @@ { "chartID": "5d587427093541ac8b4e84548c66c5d5829081c4", "data": { - "inGameID": 3071, - "isHot": true + "inGameID": 3071 }, "difficulty": "NORMAL", "isPrimary": true, @@ -18290,8 +17147,7 @@ { "chartID": "cb8611211732e2ec38e375c83077777d21bd9eaa", "data": { - "inGameID": 3087, - "isHot": true + "inGameID": 3087 }, "difficulty": "EXPERT", "isPrimary": true, @@ -18306,8 +17162,7 @@ { "chartID": "af37d0cd4c6a4ff13270474b031717122e71483b", "data": { - "inGameID": 3087, - "isHot": true + "inGameID": 3087 }, "difficulty": "HARD", "isPrimary": true, @@ -18322,8 +17177,7 @@ { "chartID": "50a07142dba8fa538e657e58951c170e36928f0a", "data": { - "inGameID": 3087, - "isHot": true + "inGameID": 3087 }, "difficulty": "NORMAL", "isPrimary": true, @@ -18338,8 +17192,7 @@ { "chartID": "8cba0745a7a404383d20a7dff47ce2b0e1e39f43", "data": { - "inGameID": 3094, - "isHot": true + "inGameID": 3094 }, "difficulty": "EXPERT", "isPrimary": true, @@ -18354,8 +17207,7 @@ { "chartID": "10a28fa8c848c17b906722da381b53a9d8080f9d", "data": { - "inGameID": 3094, - "isHot": true + "inGameID": 3094 }, "difficulty": "HARD", "isPrimary": true, @@ -18370,8 +17222,7 @@ { "chartID": "b866e8d4fcd0bd533a20eafad6d4dbe39e4cca70", "data": { - "inGameID": 3094, - "isHot": true + "inGameID": 3094 }, "difficulty": "NORMAL", "isPrimary": true, @@ -18386,8 +17237,7 @@ { "chartID": "0889f7f0deefe1b81dc164a4e0e738675a127684", "data": { - "inGameID": 3082, - "isHot": true + "inGameID": 3082 }, "difficulty": "EXPERT", "isPrimary": true, @@ -18402,8 +17252,7 @@ { "chartID": "32b70c0a08d1dcc9ff684be8cd9470bc3cdc970b", "data": { - "inGameID": 3082, - "isHot": true + "inGameID": 3082 }, "difficulty": "HARD", "isPrimary": true, @@ -18418,8 +17267,7 @@ { "chartID": "60775b20c9a3bb87f8d8e829b4c1a31056b4d2fb", "data": { - "inGameID": 3082, - "isHot": true + "inGameID": 3082 }, "difficulty": "NORMAL", "isPrimary": true, @@ -18434,8 +17282,7 @@ { "chartID": "dc97f9bae908d2da726f7d001564e11ab8bd013c", "data": { - "inGameID": 3073, - "isHot": true + "inGameID": 3073 }, "difficulty": "EXPERT", "isPrimary": true, @@ -18450,8 +17297,7 @@ { "chartID": "4258843393fd015e1ef848e9716707e816b19892", "data": { - "inGameID": 3073, - "isHot": true + "inGameID": 3073 }, "difficulty": "HARD", "isPrimary": true, @@ -18466,8 +17312,7 @@ { "chartID": "2f0c9044e6ad70e2dd870d5da8ded982ad6d4fdc", "data": { - "inGameID": 3073, - "isHot": true + "inGameID": 3073 }, "difficulty": "NORMAL", "isPrimary": true, @@ -18482,8 +17327,7 @@ { "chartID": "511759fd3a2d353eca8d72c7b0e2df2c7597ea63", "data": { - "inGameID": 3093, - "isHot": true + "inGameID": 3093 }, "difficulty": "EXPERT", "isPrimary": true, @@ -18498,8 +17342,7 @@ { "chartID": "36a63eb35575c7a336f628eaef8751f03c3e20eb", "data": { - "inGameID": 3093, - "isHot": true + "inGameID": 3093 }, "difficulty": "HARD", "isPrimary": true, @@ -18514,8 +17357,7 @@ { "chartID": "030d9622d2c58cf9a13d6cad691c5d99e2c0737f", "data": { - "inGameID": 3093, - "isHot": true + "inGameID": 3093 }, "difficulty": "NORMAL", "isPrimary": true, @@ -18530,8 +17372,7 @@ { "chartID": "82d9e819f034529a89391c04d26b2652c1f04359", "data": { - "inGameID": 3091, - "isHot": true + "inGameID": 3091 }, "difficulty": "EXPERT", "isPrimary": true, @@ -18546,8 +17387,7 @@ { "chartID": "ccf75e1ea88cc808cb17ce86619d3db99ed4f516", "data": { - "inGameID": 3091, - "isHot": true + "inGameID": 3091 }, "difficulty": "HARD", "isPrimary": true, @@ -18562,8 +17402,7 @@ { "chartID": "410903f05a123f2a7801633538494a545cac8696", "data": { - "inGameID": 3091, - "isHot": true + "inGameID": 3091 }, "difficulty": "NORMAL", "isPrimary": true, @@ -18578,8 +17417,7 @@ { "chartID": "2fe208470cb6c5773365e4420f6aa3cb5b66dfb7", "data": { - "inGameID": 3089, - "isHot": true + "inGameID": 3089 }, "difficulty": "EXPERT", "isPrimary": true, @@ -18594,8 +17432,7 @@ { "chartID": "2ec5bdfd1aff53b751eb4f10a990363d19636851", "data": { - "inGameID": 3089, - "isHot": true + "inGameID": 3089 }, "difficulty": "HARD", "isPrimary": true, @@ -18610,8 +17447,7 @@ { "chartID": "7a73ab08b784c09c11ab3d8767174175de198012", "data": { - "inGameID": 3089, - "isHot": true + "inGameID": 3089 }, "difficulty": "INFERNO", "isPrimary": true, @@ -18626,8 +17462,7 @@ { "chartID": "e0f562558a6e4d6897acccff176f905c5520fe95", "data": { - "inGameID": 3089, - "isHot": true + "inGameID": 3089 }, "difficulty": "NORMAL", "isPrimary": true, @@ -18642,8 +17477,7 @@ { "chartID": "fbfb1243a7a0d1641003a2d3b75aa126c064c025", "data": { - "inGameID": 3075, - "isHot": true + "inGameID": 3075 }, "difficulty": "EXPERT", "isPrimary": true, @@ -18658,8 +17492,7 @@ { "chartID": "7530f882a54ead55c5d5a1b0feec5aedafd9035a", "data": { - "inGameID": 3075, - "isHot": true + "inGameID": 3075 }, "difficulty": "HARD", "isPrimary": true, @@ -18674,8 +17507,7 @@ { "chartID": "aa0a434567884ba178e70517d397fda4df6af19a", "data": { - "inGameID": 3075, - "isHot": true + "inGameID": 3075 }, "difficulty": "NORMAL", "isPrimary": true, @@ -18690,8 +17522,7 @@ { "chartID": "75d914ec5965629f868efe8ad8f476485a32e0d2", "data": { - "inGameID": 3072, - "isHot": true + "inGameID": 3072 }, "difficulty": "EXPERT", "isPrimary": true, @@ -18706,8 +17537,7 @@ { "chartID": "93c9b03bc6491a9bcb48d79b0d581fc4ebb4b63d", "data": { - "inGameID": 3072, - "isHot": true + "inGameID": 3072 }, "difficulty": "HARD", "isPrimary": true, @@ -18722,8 +17552,7 @@ { "chartID": "27b082efa5a70224107a644378d7a78fa087fe29", "data": { - "inGameID": 3072, - "isHot": true + "inGameID": 3072 }, "difficulty": "NORMAL", "isPrimary": true, @@ -18738,8 +17567,7 @@ { "chartID": "543354b25ed9e1b53ed76ea475191cf7de2da632", "data": { - "inGameID": 3076, - "isHot": true + "inGameID": 3076 }, "difficulty": "EXPERT", "isPrimary": true, @@ -18754,8 +17582,7 @@ { "chartID": "62514112ba26ef783f03d48a6dc2662935f4383b", "data": { - "inGameID": 3076, - "isHot": true + "inGameID": 3076 }, "difficulty": "HARD", "isPrimary": true, @@ -18770,8 +17597,7 @@ { "chartID": "290c5edd1e688b3095c2436a0f1b6e6ba2f02c0b", "data": { - "inGameID": 3076, - "isHot": true + "inGameID": 3076 }, "difficulty": "NORMAL", "isPrimary": true, @@ -18786,8 +17612,7 @@ { "chartID": "0454ab9d5cec995ef360c7b03a9c826ab828980e", "data": { - "inGameID": 3086, - "isHot": true + "inGameID": 3086 }, "difficulty": "EXPERT", "isPrimary": true, @@ -18802,8 +17627,7 @@ { "chartID": "fd080c628560b0ee7c325e900e086e22a752ce2e", "data": { - "inGameID": 3086, - "isHot": true + "inGameID": 3086 }, "difficulty": "HARD", "isPrimary": true, @@ -18818,8 +17642,7 @@ { "chartID": "bccba4e5f93838f409d900c4a10e575f01affe9e", "data": { - "inGameID": 3086, - "isHot": true + "inGameID": 3086 }, "difficulty": "NORMAL", "isPrimary": true, @@ -18834,8 +17657,7 @@ { "chartID": "82cc43ab4392bd6e0757161933867e92aa102a7a", "data": { - "inGameID": 3088, - "isHot": true + "inGameID": 3088 }, "difficulty": "EXPERT", "isPrimary": true, @@ -18850,8 +17672,7 @@ { "chartID": "7566c4881666e442370f42ae99200bd7378ef6ea", "data": { - "inGameID": 3088, - "isHot": true + "inGameID": 3088 }, "difficulty": "HARD", "isPrimary": true, @@ -18866,8 +17687,7 @@ { "chartID": "d7fafe75542b97760beb4768cbdd5aa48f68e5b3", "data": { - "inGameID": 3088, - "isHot": true + "inGameID": 3088 }, "difficulty": "NORMAL", "isPrimary": true, @@ -18882,8 +17702,7 @@ { "chartID": "c2adf46304a309c6e053c6d61f3d66f29dc217e4", "data": { - "inGameID": 3064, - "isHot": true + "inGameID": 3064 }, "difficulty": "EXPERT", "isPrimary": true, @@ -18898,8 +17717,7 @@ { "chartID": "093bd0ca335ba9fc27ca48dc835d7626261e1000", "data": { - "inGameID": 3064, - "isHot": true + "inGameID": 3064 }, "difficulty": "HARD", "isPrimary": true, @@ -18914,8 +17732,7 @@ { "chartID": "882a3dde537454c1e1165362cef5a50d98ce4f47", "data": { - "inGameID": 3064, - "isHot": true + "inGameID": 3064 }, "difficulty": "INFERNO", "isPrimary": true, @@ -18930,8 +17747,7 @@ { "chartID": "1d8bfeff73d759ea1904b148b0330da3eae160f0", "data": { - "inGameID": 3064, - "isHot": true + "inGameID": 3064 }, "difficulty": "NORMAL", "isPrimary": true, @@ -18946,8 +17762,7 @@ { "chartID": "868f78102a362797d63438923729dbc11ee03bef", "data": { - "inGameID": 8, - "isHot": false + "inGameID": 8 }, "difficulty": "EXPERT", "isPrimary": true, @@ -18962,8 +17777,7 @@ { "chartID": "1fd3feeb65f64abd9a4bf890b961a929eab11810", "data": { - "inGameID": 8, - "isHot": false + "inGameID": 8 }, "difficulty": "HARD", "isPrimary": true, @@ -18978,8 +17792,7 @@ { "chartID": "f034acb88499d4fdfc7d23385595d18772444a30", "data": { - "inGameID": 8, - "isHot": false + "inGameID": 8 }, "difficulty": "NORMAL", "isPrimary": true, @@ -18994,8 +17807,7 @@ { "chartID": "fadcc74255acc02fa9c1600cead7c2b6ca012af8", "data": { - "inGameID": 10, - "isHot": false + "inGameID": 10 }, "difficulty": "EXPERT", "isPrimary": true, @@ -19010,8 +17822,7 @@ { "chartID": "5d4213009e5fa2494152f72d54cd27cdad5a7349", "data": { - "inGameID": 10, - "isHot": false + "inGameID": 10 }, "difficulty": "HARD", "isPrimary": true, @@ -19026,8 +17837,7 @@ { "chartID": "7b976dce230f2b81e6ac71c54c7fd6ef8f4b10ea", "data": { - "inGameID": 10, - "isHot": false + "inGameID": 10 }, "difficulty": "NORMAL", "isPrimary": true, @@ -19042,8 +17852,7 @@ { "chartID": "80b5f6c4b217922ac300df7b1b1183fdbdc20595", "data": { - "inGameID": 1003, - "isHot": false + "inGameID": 1003 }, "difficulty": "EXPERT", "isPrimary": true, @@ -19058,8 +17867,7 @@ { "chartID": "aa233b5bf280cc7dbf38b294a8d3f8aab65e3c0d", "data": { - "inGameID": 1003, - "isHot": false + "inGameID": 1003 }, "difficulty": "HARD", "isPrimary": true, @@ -19074,8 +17882,7 @@ { "chartID": "4f36d26d3af756ab4ca4570b5dcb91fdc7d1ad1c", "data": { - "inGameID": 1003, - "isHot": false + "inGameID": 1003 }, "difficulty": "NORMAL", "isPrimary": true, @@ -19090,8 +17897,7 @@ { "chartID": "8fac12efb6eb06f8b4485a49632c9a4b83898b3e", "data": { - "inGameID": 1005, - "isHot": false + "inGameID": 1005 }, "difficulty": "EXPERT", "isPrimary": true, @@ -19106,8 +17912,7 @@ { "chartID": "825c7873b5917c63f72d72d3548edc76fafe7f71", "data": { - "inGameID": 1005, - "isHot": false + "inGameID": 1005 }, "difficulty": "HARD", "isPrimary": true, @@ -19122,8 +17927,7 @@ { "chartID": "7fc5362b9006c84bbec0b59e574f60d69a10fb8a", "data": { - "inGameID": 1005, - "isHot": false + "inGameID": 1005 }, "difficulty": "NORMAL", "isPrimary": true, @@ -19138,8 +17942,7 @@ { "chartID": "a970d612a692aa54db79f113e5a3ae9f86e568fe", "data": { - "inGameID": 1049, - "isHot": false + "inGameID": 1049 }, "difficulty": "EXPERT", "isPrimary": true, @@ -19154,8 +17957,7 @@ { "chartID": "3040bc2f74c5cf660a25b9c37102a68e95eae487", "data": { - "inGameID": 1049, - "isHot": false + "inGameID": 1049 }, "difficulty": "HARD", "isPrimary": true, @@ -19170,8 +17972,7 @@ { "chartID": "8f8755c79431572ef8c342cfcf066ac4d183d00d", "data": { - "inGameID": 1049, - "isHot": false + "inGameID": 1049 }, "difficulty": "NORMAL", "isPrimary": true, diff --git a/database-seeds/collections/songs-gitadora.json b/database-seeds/collections/songs-gitadora.json index 0803aa716..e6cf8bef8 100644 --- a/database-seeds/collections/songs-gitadora.json +++ b/database-seeds/collections/songs-gitadora.json @@ -2,9 +2,7 @@ { "altTitles": [], "artist": "ELIZABETH DOBBS", - "data": { - "isHot": true - }, + "data": {}, "id": 0, "searchTerms": [ "I THINK ABOUT Y" @@ -14,9 +12,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 5, "searchTerms": [ "HAPPY MAN" @@ -26,9 +22,7 @@ { "altTitles": [], "artist": "HIDEYUKI ONO", - "data": { - "isHot": true - }, + "data": {}, "id": 7, "searchTerms": [ "SKA SKA NO1" @@ -38,9 +32,7 @@ { "altTitles": [], "artist": "TOSHIO SAKURAI", - "data": { - "isHot": true - }, + "data": {}, "id": 11, "searchTerms": [ "CUTIE PIE" @@ -50,9 +42,7 @@ { "altTitles": [], "artist": "NAOKI MAEDA", - "data": { - "isHot": true - }, + "data": {}, "id": 12, "searchTerms": [ "HYPNOTICA" @@ -62,9 +52,7 @@ { "altTitles": [], "artist": "JIMMY WECKL", - "data": { - "isHot": false - }, + "data": {}, "id": 15, "searchTerms": [ "ACROSS THE NIGH" @@ -74,9 +62,7 @@ { "altTitles": [], "artist": "SWEET LITTLE 30", - "data": { - "isHot": true - }, + "data": {}, "id": 16, "searchTerms": [ "HEAVEN IS A 57 " @@ -86,9 +72,7 @@ { "altTitles": [], "artist": "THOMAS HOWARD L", - "data": { - "isHot": false - }, + "data": {}, "id": 19, "searchTerms": [ "DEPEND ON ME" @@ -98,9 +82,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": false - }, + "data": {}, "id": 21, "searchTerms": [ "JET WORLD" @@ -110,9 +92,7 @@ { "altTitles": [], "artist": "LOVE MACHINEGUN", - "data": { - "isHot": true - }, + "data": {}, "id": 101, "searchTerms": [ "MIDNIGHT SPECIA" @@ -122,9 +102,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 102, "searchTerms": [ "LOUD" @@ -134,9 +112,7 @@ { "altTitles": [], "artist": "THOMAS HOWARD L", - "data": { - "isHot": true - }, + "data": {}, "id": 103, "searchTerms": [ "BREAK OUT" @@ -146,9 +122,7 @@ { "altTitles": [], "artist": "THOMAS HOWARD L", - "data": { - "isHot": false - }, + "data": {}, "id": 105, "searchTerms": [ "STOP SPINNING M" @@ -158,9 +132,7 @@ { "altTitles": [], "artist": "TOSHIO SAKURAI", - "data": { - "isHot": false - }, + "data": {}, "id": 110, "searchTerms": [ "COSMIC COWGIRL" @@ -170,9 +142,7 @@ { "altTitles": [], "artist": "HANDSOME JET", - "data": { - "isHot": false - }, + "data": {}, "id": 111, "searchTerms": [ "PPR" @@ -182,9 +152,7 @@ { "altTitles": [], "artist": "HIDEYUKI ONO", - "data": { - "isHot": true - }, + "data": {}, "id": 112, "searchTerms": [ "CLASSIC PARTY" @@ -194,9 +162,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": false - }, + "data": {}, "id": 114, "searchTerms": [ "PRIMAL SOUL" @@ -206,9 +172,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 120, "searchTerms": [ "AI NO SHIRUSHI" @@ -218,9 +182,7 @@ { "altTitles": [], "artist": "MONAURAL HEADS", - "data": { - "isHot": false - }, + "data": {}, "id": 129, "searchTerms": [ "SAY WHAT YOU ME" @@ -230,9 +192,7 @@ { "altTitles": [], "artist": "JIMMY WECKL", - "data": { - "isHot": false - }, + "data": {}, "id": 133, "searchTerms": [ "SEA ANEMONES" @@ -242,9 +202,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": false - }, + "data": {}, "id": 207, "searchTerms": [ "FIRE" @@ -254,9 +212,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 208, "searchTerms": [ "LUCKY STAFF" @@ -266,9 +222,7 @@ { "altTitles": [], "artist": "MELODIE SEXTON", - "data": { - "isHot": false - }, + "data": {}, "id": 209, "searchTerms": [ "MAGIC MUSIC MAG" @@ -278,9 +232,7 @@ { "altTitles": [], "artist": "KELLY COSMO", - "data": { - "isHot": true - }, + "data": {}, "id": 300, "searchTerms": [ "IM GONNA GET YO" @@ -290,9 +242,7 @@ { "altTitles": [], "artist": "AARON G", - "data": { - "isHot": true - }, + "data": {}, "id": 302, "searchTerms": [ "GIANT SLUG" @@ -302,9 +252,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 305, "searchTerms": [ "DAY DREAM" @@ -314,9 +262,7 @@ { "altTitles": [], "artist": "ROBBIE DANZIE", - "data": { - "isHot": false - }, + "data": {}, "id": 307, "searchTerms": [ "RIGHT ON TIME" @@ -326,9 +272,7 @@ { "altTitles": [], "artist": "PAULA TERRY AND", - "data": { - "isHot": true - }, + "data": {}, "id": 308, "searchTerms": [ "CARNIVAL DAY" @@ -338,9 +282,7 @@ { "altTitles": [], "artist": "MOTOAKI FURUKAW", - "data": { - "isHot": true - }, + "data": {}, "id": 312, "searchTerms": [ "CAPTAIN'S VOYAG" @@ -350,9 +292,7 @@ { "altTitles": [], "artist": "HIDEYUKI ONO", - "data": { - "isHot": false - }, + "data": {}, "id": 318, "searchTerms": [ "CLASSIC PARTY 2" @@ -362,9 +302,7 @@ { "altTitles": [], "artist": "HIROFUMI SASAKI", - "data": { - "isHot": false - }, + "data": {}, "id": 403, "searchTerms": [ "THE LEAST 100SE" @@ -374,9 +312,7 @@ { "altTitles": [], "artist": "HIDEYUKI ONO", - "data": { - "isHot": false - }, + "data": {}, "id": 404, "searchTerms": [ "CLASSIC PARTY 3" @@ -386,9 +322,7 @@ { "altTitles": [], "artist": "ANETTAI MAJI-SK", - "data": { - "isHot": true - }, + "data": {}, "id": 405, "searchTerms": [ "CASSANDRA" @@ -398,9 +332,7 @@ { "altTitles": [], "artist": "KEVIN VECCHIONE", - "data": { - "isHot": true - }, + "data": {}, "id": 406, "searchTerms": [ "FIRE IN THE DAR" @@ -410,9 +342,7 @@ { "altTitles": [], "artist": "JIMMY WECKL", - "data": { - "isHot": true - }, + "data": {}, "id": 407, "searchTerms": [ "THREE WORMS" @@ -422,9 +352,7 @@ { "altTitles": [], "artist": "STEPHEN MCKNIGH", - "data": { - "isHot": true - }, + "data": {}, "id": 409, "searchTerms": [ "TIGER TOO" @@ -434,9 +362,7 @@ { "altTitles": [], "artist": "DES-ROW FEAT.KE", - "data": { - "isHot": true - }, + "data": {}, "id": 412, "searchTerms": [ "VOIDDD" @@ -446,9 +372,7 @@ { "altTitles": [], "artist": "MAKI", - "data": { - "isHot": true - }, + "data": {}, "id": 413, "searchTerms": [ "ARIGATONE." @@ -458,9 +382,7 @@ { "altTitles": [], "artist": "THOMAS HOWARD L", - "data": { - "isHot": true - }, + "data": {}, "id": 415, "searchTerms": [ "DEPEND ON ME LO" @@ -470,9 +392,7 @@ { "altTitles": [], "artist": "SHORTCUTS", - "data": { - "isHot": true - }, + "data": {}, "id": 500, "searchTerms": [ "SUNFLOWER GIRL" @@ -482,9 +402,7 @@ { "altTitles": [], "artist": "BERIMBAU '66", - "data": { - "isHot": false - }, + "data": {}, "id": 501, "searchTerms": [ "BRAZILIAN ANTHE" @@ -494,9 +412,7 @@ { "altTitles": [], "artist": "KEVIN VECCHIONE", - "data": { - "isHot": false - }, + "data": {}, "id": 502, "searchTerms": [ "PLASTIC IMITATI" @@ -506,9 +422,7 @@ { "altTitles": [], "artist": "RAJ RAMAYYA", - "data": { - "isHot": false - }, + "data": {}, "id": 503, "searchTerms": [ "BOBBY SUE AND S" @@ -518,9 +432,7 @@ { "altTitles": [], "artist": "HIROFUMI SASAKI", - "data": { - "isHot": true - }, + "data": {}, "id": 504, "searchTerms": [ "KODOMONO RAKUGA" @@ -530,9 +442,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 505, "searchTerms": [ "MIDNIGHT SUN" @@ -542,9 +452,7 @@ { "altTitles": [], "artist": "THOMAS HOWARD L", - "data": { - "isHot": false - }, + "data": {}, "id": 507, "searchTerms": [ "STOP THIS TRAIN" @@ -554,9 +462,7 @@ { "altTitles": [], "artist": "YOSHIHIKO KOEZU", - "data": { - "isHot": false - }, + "data": {}, "id": 510, "searchTerms": [ "YELLOW PANIC TI" @@ -566,9 +472,7 @@ { "altTitles": [], "artist": "MOTOAKI FURUKAW", - "data": { - "isHot": false - }, + "data": {}, "id": 512, "searchTerms": [ "FEEL THE EARTH" @@ -578,9 +482,7 @@ { "altTitles": [], "artist": "SWEET LITTLE 30", - "data": { - "isHot": true - }, + "data": {}, "id": 513, "searchTerms": [ "FIREBALL" @@ -590,9 +492,7 @@ { "altTitles": [], "artist": "SUZUKI AI", - "data": { - "isHot": false - }, + "data": {}, "id": 514, "searchTerms": [ "SEIRON" @@ -602,9 +502,7 @@ { "altTitles": [], "artist": "MASAHIKO ARIMAC", - "data": { - "isHot": true - }, + "data": {}, "id": 515, "searchTerms": [ "BLIND" @@ -614,9 +512,7 @@ { "altTitles": [], "artist": "HANDSOME JET PR", - "data": { - "isHot": true - }, + "data": {}, "id": 516, "searchTerms": [ "KIMINO TONARINI" @@ -626,9 +522,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 517, "searchTerms": [ "TENTAIKANSOKU" @@ -638,9 +532,7 @@ { "altTitles": [], "artist": "MIYUKI KUNITAKE", - "data": { - "isHot": true - }, + "data": {}, "id": 527, "searchTerms": [ "MISS YOU" @@ -650,9 +542,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 528, "searchTerms": [ "RIFF RIFF PARAD" @@ -662,9 +552,7 @@ { "altTitles": [], "artist": "MOTOAKI FURUKAW", - "data": { - "isHot": true - }, + "data": {}, "id": 531, "searchTerms": [ "SOME HARD REACT" @@ -674,9 +562,7 @@ { "altTitles": [], "artist": "HIDEYUKI ONO", - "data": { - "isHot": false - }, + "data": {}, "id": 532, "searchTerms": [ "CLASSIC PARTY T" @@ -686,9 +572,7 @@ { "altTitles": [], "artist": "NM", - "data": { - "isHot": true - }, + "data": {}, "id": 537, "searchTerms": [ "HYPNOTHEQUE" @@ -698,9 +582,7 @@ { "altTitles": [], "artist": "PAULA TERRY", - "data": { - "isHot": false - }, + "data": {}, "id": 538, "searchTerms": [ "EMAIL ME" @@ -710,9 +592,7 @@ { "altTitles": [], "artist": "JIMMY WECKL", - "data": { - "isHot": true - }, + "data": {}, "id": 539, "searchTerms": [ "HERRING ROE" @@ -722,9 +602,7 @@ { "altTitles": [], "artist": "TOMOSUKE FEAT. ", - "data": { - "isHot": false - }, + "data": {}, "id": 600, "searchTerms": [ "JET COASTER GIR" @@ -734,9 +612,7 @@ { "altTitles": [], "artist": "MAKI", - "data": { - "isHot": false - }, + "data": {}, "id": 601, "searchTerms": [ "REBIRTH" @@ -746,9 +622,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 602, "searchTerms": [ "MODEL DD02" @@ -758,9 +632,7 @@ { "altTitles": [], "artist": "MIYUKI KUNITAKE", - "data": { - "isHot": false - }, + "data": {}, "id": 603, "searchTerms": [ "DESTINY LOVERS" @@ -770,9 +642,7 @@ { "altTitles": [], "artist": "ASMAT AND EMI", - "data": { - "isHot": false - }, + "data": {}, "id": 604, "searchTerms": [ "O JIYA" @@ -782,9 +652,7 @@ { "altTitles": [], "artist": "NOBUMITSU IRIO ", - "data": { - "isHot": false - }, + "data": {}, "id": 606, "searchTerms": [ "MOONLIGHT WALKI" @@ -794,9 +662,7 @@ { "altTitles": [], "artist": "MOTOAKI FURUKAW", - "data": { - "isHot": true - }, + "data": {}, "id": 607, "searchTerms": [ "SMILE FOR YOU" @@ -806,9 +672,7 @@ { "altTitles": [], "artist": "JYUNKO TERASHIM", - "data": { - "isHot": true - }, + "data": {}, "id": 608, "searchTerms": [ "SUTEKINA AMEAGA" @@ -818,9 +682,7 @@ { "altTitles": [], "artist": "ANETTAI MAJI-SK", - "data": { - "isHot": true - }, + "data": {}, "id": 609, "searchTerms": [ "SUIMAAZU" @@ -830,9 +692,7 @@ { "altTitles": [], "artist": "HIDEYUKI ONO", - "data": { - "isHot": false - }, + "data": {}, "id": 610, "searchTerms": [ "ONE PHRASE BLUE" @@ -842,9 +702,7 @@ { "altTitles": [], "artist": "KOZO NAKAMURA", - "data": { - "isHot": true - }, + "data": {}, "id": 612, "searchTerms": [ "WILD RIDE " @@ -854,9 +712,7 @@ { "altTitles": [], "artist": "THOMAS HOWARD L", - "data": { - "isHot": true - }, + "data": {}, "id": 613, "searchTerms": [ "ROCKIN' PARADIS" @@ -866,9 +722,7 @@ { "altTitles": [], "artist": "HANDSOME JET PR", - "data": { - "isHot": false - }, + "data": {}, "id": 614, "searchTerms": [ "DARE" @@ -878,9 +732,7 @@ { "altTitles": [], "artist": "TAKASHI URATA A", - "data": { - "isHot": true - }, + "data": {}, "id": 615, "searchTerms": [ "GETAWAY" @@ -890,9 +742,7 @@ { "altTitles": [], "artist": "ASAKI", - "data": { - "isHot": false - }, + "data": {}, "id": 617, "searchTerms": [ "SANAGI" @@ -902,9 +752,7 @@ { "altTitles": [], "artist": "KEVIN VECCHIONE", - "data": { - "isHot": true - }, + "data": {}, "id": 618, "searchTerms": [ "UNDER CONTROL" @@ -914,9 +762,7 @@ { "altTitles": [], "artist": "HIROFUMI SASAKI", - "data": { - "isHot": true - }, + "data": {}, "id": 619, "searchTerms": [ "CONCERTINO IN B" @@ -926,9 +772,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": false - }, + "data": {}, "id": 621, "searchTerms": [ "RIFF RIFF ORBIT" @@ -938,9 +782,7 @@ { "altTitles": [], "artist": "AKINO LEE", - "data": { - "isHot": true - }, + "data": {}, "id": 622, "searchTerms": [ "DEPARTURE" @@ -950,9 +792,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 624, "searchTerms": [ "ROCKET DIVE" @@ -962,9 +802,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 626, "searchTerms": [ "INNOCENT WORLD" @@ -974,9 +812,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 628, "searchTerms": [ "JETTO NINJIN" @@ -986,9 +822,7 @@ { "altTitles": [], "artist": "LIU FENG", - "data": { - "isHot": false - }, + "data": {}, "id": 700, "searchTerms": [ "MEI LI DE JIA X" @@ -998,9 +832,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 703, "searchTerms": [ "MODEL DD03" @@ -1010,9 +842,7 @@ { "altTitles": [], "artist": "TAEKO", - "data": { - "isHot": false - }, + "data": {}, "id": 704, "searchTerms": [ "KISS ME GOODBYE" @@ -1022,9 +852,7 @@ { "altTitles": [], "artist": "JIMMY WECKL", - "data": { - "isHot": true - }, + "data": {}, "id": 705, "searchTerms": [ "KEIKO MY LOVE" @@ -1034,9 +862,7 @@ { "altTitles": [], "artist": "ASAKI", - "data": { - "isHot": false - }, + "data": {}, "id": 706, "searchTerms": [ "TSUMINAGARA TO " @@ -1046,9 +872,7 @@ { "altTitles": [], "artist": "GLANCER", - "data": { - "isHot": true - }, + "data": {}, "id": 708, "searchTerms": [ "TO THE IST" @@ -1058,9 +882,7 @@ { "altTitles": [], "artist": "YU TOKIWA", - "data": { - "isHot": false - }, + "data": {}, "id": 709, "searchTerms": [ "CHOCOLATE PHILO" @@ -1070,9 +892,7 @@ { "altTitles": [], "artist": "PARALLEL FLOATE", - "data": { - "isHot": false - }, + "data": {}, "id": 710, "searchTerms": [ "INFINITE" @@ -1082,9 +902,7 @@ { "altTitles": [], "artist": "MOKKY DE YAH YA", - "data": { - "isHot": true - }, + "data": {}, "id": 713, "searchTerms": [ "CACHACA" @@ -1094,9 +912,7 @@ { "altTitles": [], "artist": "MOTOAKI FURUKAW", - "data": { - "isHot": true - }, + "data": {}, "id": 716, "searchTerms": [ "THE OCEAN AND Y" @@ -1106,9 +922,7 @@ { "altTitles": [], "artist": "ANETTAI MAJI-SK", - "data": { - "isHot": true - }, + "data": {}, "id": 717, "searchTerms": [ "MIKENEKO ROKKU" @@ -1118,9 +932,7 @@ { "altTitles": [], "artist": "SUZUKI AI", - "data": { - "isHot": true - }, + "data": {}, "id": 719, "searchTerms": [ "SOTTO" @@ -1130,9 +942,7 @@ { "altTitles": [], "artist": "DES-ROW", - "data": { - "isHot": true - }, + "data": {}, "id": 721, "searchTerms": [ "TOO LATE TWO" @@ -1142,9 +952,7 @@ { "altTitles": [], "artist": "BEFORU", - "data": { - "isHot": false - }, + "data": {}, "id": 722, "searchTerms": [ "BREAK DOWN" @@ -1154,9 +962,7 @@ { "altTitles": [], "artist": "STEPHEN MCKNIGH", - "data": { - "isHot": true - }, + "data": {}, "id": 724, "searchTerms": [ "HEAVEN INSIDE" @@ -1166,9 +972,7 @@ { "altTitles": [], "artist": "THOMAS HOWARD L", - "data": { - "isHot": true - }, + "data": {}, "id": 725, "searchTerms": [ "SUZY AND THE TI" @@ -1178,9 +982,7 @@ { "altTitles": [], "artist": "VIVI FROM IYIYI", - "data": { - "isHot": false - }, + "data": {}, "id": 726, "searchTerms": [ "SWEET ILLUSION" @@ -1190,9 +992,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 728, "searchTerms": [ "MIND YOUR STEP" @@ -1202,9 +1002,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 731, "searchTerms": [ "HITONI YASASIKU" @@ -1214,9 +1012,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 734, "searchTerms": [ "ROMANSU" @@ -1226,9 +1022,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 735, "searchTerms": [ "HOME GIRL" @@ -1238,9 +1032,7 @@ { "altTitles": [], "artist": "ORANGENOISE SHO", - "data": { - "isHot": false - }, + "data": {}, "id": 738, "searchTerms": [ "HOMESICK PT 2 3" @@ -1250,9 +1042,7 @@ { "altTitles": [], "artist": "MIYUKI KUNITAKE", - "data": { - "isHot": true - }, + "data": {}, "id": 750, "searchTerms": [ "SUTAANO KOIBITO" @@ -1262,9 +1052,7 @@ { "altTitles": [], "artist": "HIROFUMI SASAKI", - "data": { - "isHot": true - }, + "data": {}, "id": 752, "searchTerms": [ "TAMAYURA" @@ -1274,9 +1062,7 @@ { "altTitles": [], "artist": "HANDSOME JET PR", - "data": { - "isHot": false - }, + "data": {}, "id": 753, "searchTerms": [ "WASUREMONO" @@ -1286,9 +1072,7 @@ { "altTitles": [], "artist": "RIYU KOSAKA", - "data": { - "isHot": false - }, + "data": {}, "id": 755, "searchTerms": [ "BEGIN" @@ -1298,9 +1082,7 @@ { "altTitles": [], "artist": "WILMA DE OLIVEI", - "data": { - "isHot": true - }, + "data": {}, "id": 800, "searchTerms": [ "TIERRA BUENA" @@ -1310,9 +1092,7 @@ { "altTitles": [], "artist": "MIYUKI KUNITAKE", - "data": { - "isHot": false - }, + "data": {}, "id": 801, "searchTerms": [ "NAMIDA NO REGRE" @@ -1322,9 +1102,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 802, "searchTerms": [ "MODEL DD04" @@ -1334,9 +1112,7 @@ { "altTitles": [], "artist": "ASAKI", - "data": { - "isHot": true - }, + "data": {}, "id": 803, "searchTerms": [ "GEKKOUCHOU" @@ -1346,9 +1122,7 @@ { "altTitles": [], "artist": "CHI-CHAN", - "data": { - "isHot": false - }, + "data": {}, "id": 804, "searchTerms": [ "HANANO UTA" @@ -1358,9 +1132,7 @@ { "altTitles": [], "artist": "JIMMY WECKL", - "data": { - "isHot": true - }, + "data": {}, "id": 805, "searchTerms": [ "MANGEKYO" @@ -1370,9 +1142,7 @@ { "altTitles": [], "artist": "JYUNKO TERASHIM", - "data": { - "isHot": true - }, + "data": {}, "id": 807, "searchTerms": [ "UTOPIA" @@ -1382,9 +1152,7 @@ { "altTitles": [], "artist": "ANNA VIESTE", - "data": { - "isHot": true - }, + "data": {}, "id": 808, "searchTerms": [ "COUNTRY DAY" @@ -1394,9 +1162,7 @@ { "altTitles": [], "artist": "THOMAS' FAMILY ", - "data": { - "isHot": true - }, + "data": {}, "id": 809, "searchTerms": [ "SPIP" @@ -1406,9 +1172,7 @@ { "altTitles": [], "artist": "TRICK TRAP", - "data": { - "isHot": false - }, + "data": {}, "id": 810, "searchTerms": [ "BLACK HORIZON" @@ -1418,9 +1182,7 @@ { "altTitles": [], "artist": "EEL", - "data": { - "isHot": false - }, + "data": {}, "id": 811, "searchTerms": [ "777" @@ -1430,9 +1192,7 @@ { "altTitles": [], "artist": "MOTOAKI FURUKAW", - "data": { - "isHot": false - }, + "data": {}, "id": 815, "searchTerms": [ "GET READY" @@ -1442,9 +1202,7 @@ { "altTitles": [], "artist": "EIICHIRO TARUKI", - "data": { - "isHot": true - }, + "data": {}, "id": 817, "searchTerms": [ "IM A LOSER" @@ -1454,9 +1212,7 @@ { "altTitles": [], "artist": "BEFORU", - "data": { - "isHot": true - }, + "data": {}, "id": 820, "searchTerms": [ "CHI KA RA" @@ -1466,9 +1222,7 @@ { "altTitles": [], "artist": "YOSHIHIKO KOEZU", - "data": { - "isHot": true - }, + "data": {}, "id": 822, "searchTerms": [ "DREAMS IN THE N" @@ -1478,9 +1232,7 @@ { "altTitles": [], "artist": "SERENA", - "data": { - "isHot": true - }, + "data": {}, "id": 823, "searchTerms": [ "TWINKLE STAR" @@ -1490,9 +1242,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 827, "searchTerms": [ "SHOW BUSINESS" @@ -1502,9 +1252,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 828, "searchTerms": [ "DIAMONDS" @@ -1514,9 +1262,7 @@ { "altTitles": [], "artist": "DES-ROW UNITED", - "data": { - "isHot": false - }, + "data": {}, "id": 836, "searchTerms": [ "DAIKENKAI" @@ -1526,9 +1272,7 @@ { "altTitles": [], "artist": "ANETTAI MAJI-SK", - "data": { - "isHot": false - }, + "data": {}, "id": 837, "searchTerms": [ "RINGO TO HACHIM" @@ -1538,9 +1282,7 @@ { "altTitles": [], "artist": "THE INFECTION", - "data": { - "isHot": true - }, + "data": {}, "id": 839, "searchTerms": [ "MAD BLAST" @@ -1550,9 +1292,7 @@ { "altTitles": [], "artist": "KEVIN VECCHIONE", - "data": { - "isHot": true - }, + "data": {}, "id": 900, "searchTerms": [ "RPMRED" @@ -1562,9 +1302,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 902, "searchTerms": [ "MODEL DD05" @@ -1574,9 +1312,7 @@ { "altTitles": [], "artist": "ASAKI", - "data": { - "isHot": true - }, + "data": {}, "id": 904, "searchTerms": [ "KONOKONONANATSU" @@ -1586,9 +1322,7 @@ { "altTitles": [], "artist": "ASAKI", - "data": { - "isHot": true - }, + "data": {}, "id": 905, "searchTerms": [ "AGNUS DEI" @@ -1598,9 +1332,7 @@ { "altTitles": [], "artist": "JIMMY WECKL", - "data": { - "isHot": true - }, + "data": {}, "id": 906, "searchTerms": [ "JOKER" @@ -1610,9 +1342,7 @@ { "altTitles": [], "artist": "JIMMY WECKL", - "data": { - "isHot": true - }, + "data": {}, "id": 907, "searchTerms": [ "COCKPIT" @@ -1622,9 +1352,7 @@ { "altTitles": [], "artist": "THOMAS HOWARD L", - "data": { - "isHot": false - }, + "data": {}, "id": 908, "searchTerms": [ "LIBRA" @@ -1634,9 +1362,7 @@ { "altTitles": [], "artist": "ORANGE SPECIAL ", - "data": { - "isHot": false - }, + "data": {}, "id": 910, "searchTerms": [ "KAGONOTORI" @@ -1646,9 +1372,7 @@ { "altTitles": [], "artist": "U.KI", - "data": { - "isHot": true - }, + "data": {}, "id": 911, "searchTerms": [ "MINT CANDY CITR" @@ -1658,9 +1382,7 @@ { "altTitles": [], "artist": "HANDSOME JET WI", - "data": { - "isHot": true - }, + "data": {}, "id": 912, "searchTerms": [ "SHIKARAREBIYORI" @@ -1670,9 +1392,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": false - }, + "data": {}, "id": 913, "searchTerms": [ "RISE" @@ -1682,9 +1402,7 @@ { "altTitles": [], "artist": "SUZUKI AI", - "data": { - "isHot": true - }, + "data": {}, "id": 914, "searchTerms": [ "SOUHAKU" @@ -1694,9 +1412,7 @@ { "altTitles": [], "artist": "PINK CAPSULE", - "data": { - "isHot": false - }, + "data": {}, "id": 915, "searchTerms": [ "HERIKOPUTA" @@ -1706,9 +1422,7 @@ { "altTitles": [], "artist": "RIYU FROM BEFOR", - "data": { - "isHot": true - }, + "data": {}, "id": 916, "searchTerms": [ "HIMAWARI" @@ -1718,9 +1432,7 @@ { "altTitles": [], "artist": "DES-ROW FEAT.SH", - "data": { - "isHot": true - }, + "data": {}, "id": 917, "searchTerms": [ "FUNKY SONIC WOR" @@ -1730,9 +1442,7 @@ { "altTitles": [], "artist": "HIROFUMI SASAKI", - "data": { - "isHot": true - }, + "data": {}, "id": 920, "searchTerms": [ "TIMEPIECE PHASE" @@ -1742,9 +1452,7 @@ { "altTitles": [], "artist": "ORANGE LOUNGE", - "data": { - "isHot": false - }, + "data": {}, "id": 926, "searchTerms": [ "POT POURRI D MA" @@ -1754,9 +1462,7 @@ { "altTitles": [], "artist": "HANDSOME JET PR", - "data": { - "isHot": true - }, + "data": {}, "id": 927, "searchTerms": [ "HANDSOME JET L " @@ -1766,9 +1472,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 929, "searchTerms": [ "TAISETSUNA MONO" @@ -1778,9 +1482,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 934, "searchTerms": [ "UKIFUNE" @@ -1790,9 +1492,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 936, "searchTerms": [ "YAKENOGAHARA" @@ -1802,9 +1502,7 @@ { "altTitles": [], "artist": "BRASS TRICKS", - "data": { - "isHot": true - }, + "data": {}, "id": 939, "searchTerms": [ "GET IT ALL" @@ -1814,9 +1512,7 @@ { "altTitles": [], "artist": "GOOD-COOL FT. S", - "data": { - "isHot": false - }, + "data": {}, "id": 940, "searchTerms": [ "SADAME" @@ -1826,9 +1522,7 @@ { "altTitles": [], "artist": "HEDEL BENDEL", - "data": { - "isHot": false - }, + "data": {}, "id": 951, "searchTerms": [ "BARIBARI BUGI" @@ -1838,9 +1532,7 @@ { "altTitles": [], "artist": "NENE", - "data": { - "isHot": true - }, + "data": {}, "id": 953, "searchTerms": [ "MUNAGOTO NO UMI" @@ -1850,9 +1542,7 @@ { "altTitles": [], "artist": "ASAKI", - "data": { - "isHot": true - }, + "data": {}, "id": 954, "searchTerms": [ "NEJI NO HITO" @@ -1862,9 +1552,7 @@ { "altTitles": [], "artist": "KOZO NAKAMURA", - "data": { - "isHot": true - }, + "data": {}, "id": 956, "searchTerms": [ "AITHON" @@ -1874,9 +1562,7 @@ { "altTitles": [], "artist": "MOTOAKI FURUKAW", - "data": { - "isHot": true - }, + "data": {}, "id": 958, "searchTerms": [ "A SHOOTING STAR" @@ -1886,9 +1572,7 @@ { "altTitles": [], "artist": "YU TOKIWA", - "data": { - "isHot": false - }, + "data": {}, "id": 960, "searchTerms": [ "PEPAMINTO HA WA" @@ -1898,9 +1582,7 @@ { "altTitles": [], "artist": "MANNY MENDEZ", - "data": { - "isHot": false - }, + "data": {}, "id": 961, "searchTerms": [ "DANCE THE NIGHT" @@ -1910,9 +1592,7 @@ { "altTitles": [], "artist": "THOMAS HOWARD L", - "data": { - "isHot": true - }, + "data": {}, "id": 963, "searchTerms": [ "WALL STREET DOW" @@ -1922,9 +1602,7 @@ { "altTitles": [], "artist": "SHORTCUTS", - "data": { - "isHot": false - }, + "data": {}, "id": 964, "searchTerms": [ "MARIGOLD" @@ -1934,9 +1612,7 @@ { "altTitles": [], "artist": "ASMAT", - "data": { - "isHot": true - }, + "data": {}, "id": 1000, "searchTerms": [ "YARA TUM KAHAN" @@ -1946,9 +1622,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 1003, "searchTerms": [ "MODEL DD06" @@ -1958,9 +1632,7 @@ { "altTitles": [], "artist": "ONINOKOGASHOUDA", - "data": { - "isHot": false - }, + "data": {}, "id": 1004, "searchTerms": [ "ONIHIME" @@ -1970,9 +1642,7 @@ { "altTitles": [], "artist": "DES-ROW FEAT.DE", - "data": { - "isHot": true - }, + "data": {}, "id": 1005, "searchTerms": [ "TAIL SPIN" @@ -1982,9 +1652,7 @@ { "altTitles": [], "artist": "JIMMY WECKL", - "data": { - "isHot": true - }, + "data": {}, "id": 1006, "searchTerms": [ "ORBITAL VELOCIT" @@ -1994,9 +1662,7 @@ { "altTitles": [], "artist": "KUMIKO", - "data": { - "isHot": true - }, + "data": {}, "id": 1007, "searchTerms": [ "PASSION" @@ -2006,9 +1672,7 @@ { "altTitles": [], "artist": "KOZO NAKAMURA", - "data": { - "isHot": true - }, + "data": {}, "id": 1008, "searchTerms": [ "DRAGON BLADE" @@ -2018,9 +1682,7 @@ { "altTitles": [], "artist": "MAKI", - "data": { - "isHot": true - }, + "data": {}, "id": 1009, "searchTerms": [ "REAL" @@ -2030,9 +1692,7 @@ { "altTitles": [], "artist": "TOMOSUKE FEAT. ", - "data": { - "isHot": true - }, + "data": {}, "id": 1010, "searchTerms": [ "MEIKYOSISUI" @@ -2042,9 +1702,7 @@ { "altTitles": [], "artist": "SERENA", - "data": { - "isHot": true - }, + "data": {}, "id": 1011, "searchTerms": [ "REACHING FOR TH" @@ -2054,9 +1712,7 @@ { "altTitles": [], "artist": "PINK CAPSULE", - "data": { - "isHot": true - }, + "data": {}, "id": 1014, "searchTerms": [ "KOTATSU TO MIKA" @@ -2066,9 +1722,7 @@ { "altTitles": [], "artist": "HANDSOME JET PR", - "data": { - "isHot": true - }, + "data": {}, "id": 1015, "searchTerms": [ "FUTARI HA RABUR" @@ -2078,9 +1732,7 @@ { "altTitles": [], "artist": "TERRA", - "data": { - "isHot": true - }, + "data": {}, "id": 1016, "searchTerms": [ "WE ARE" @@ -2090,9 +1742,7 @@ { "altTitles": [], "artist": "RIYUANDNORIA", - "data": { - "isHot": true - }, + "data": {}, "id": 1017, "searchTerms": [ "SHINING" @@ -2102,9 +1752,7 @@ { "altTitles": [], "artist": "THOMAS HOWARD L", - "data": { - "isHot": true - }, + "data": {}, "id": 1018, "searchTerms": [ "DEDICATION" @@ -2114,9 +1762,7 @@ { "altTitles": [], "artist": "YOSHIHIKO KOEZU", - "data": { - "isHot": true - }, + "data": {}, "id": 1019, "searchTerms": [ "PRISM" @@ -2126,9 +1772,7 @@ { "altTitles": [], "artist": "HIROYUKI SHIBAT", - "data": { - "isHot": false - }, + "data": {}, "id": 1023, "searchTerms": [ "DREAM AGAIN" @@ -2138,9 +1782,7 @@ { "altTitles": [], "artist": "ASAKI", - "data": { - "isHot": false - }, + "data": {}, "id": 1027, "searchTerms": [ "AKAISUZU" @@ -2150,9 +1792,7 @@ { "altTitles": [], "artist": "BRENDA VAUGHN", - "data": { - "isHot": true - }, + "data": {}, "id": 1028, "searchTerms": [ "LET ME BELIEVE" @@ -2162,9 +1802,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 1034, "searchTerms": [ "SEISHUN KYOUSOU" @@ -2174,9 +1812,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 1037, "searchTerms": [ "MONSTER TREE" @@ -2186,9 +1822,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 1038, "searchTerms": [ "SOBAKASU" @@ -2198,9 +1832,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 1040, "searchTerms": [ "LUVLYMERRYGOROU" @@ -2210,9 +1842,7 @@ { "altTitles": [], "artist": "BRENDA VAUGHN", - "data": { - "isHot": false - }, + "data": {}, "id": 1100, "searchTerms": [ "NO MORE CRYING" @@ -2222,9 +1852,7 @@ { "altTitles": [], "artist": "BRAD HOLMES", - "data": { - "isHot": false - }, + "data": {}, "id": 1102, "searchTerms": [ "AFTER A HARD DA" @@ -2234,9 +1862,7 @@ { "altTitles": [], "artist": "MORINO KUMAKO", - "data": { - "isHot": true - }, + "data": {}, "id": 1103, "searchTerms": [ "TALATTA DANCE" @@ -2246,9 +1872,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 1104, "searchTerms": [ "FAIRY TALES" @@ -2258,9 +1882,7 @@ { "altTitles": [], "artist": "YOKO ARAMAKI", - "data": { - "isHot": false - }, + "data": {}, "id": 1105, "searchTerms": [ "SANDOGASA PONTA" @@ -2270,9 +1892,7 @@ { "altTitles": [], "artist": "TAEKO", - "data": { - "isHot": false - }, + "data": {}, "id": 1107, "searchTerms": [ "DOKIDOKI" @@ -2282,9 +1902,7 @@ { "altTitles": [], "artist": "JIMMY WECKL", - "data": { - "isHot": true - }, + "data": {}, "id": 1108, "searchTerms": [ "WONDERFUL WORKE" @@ -2294,9 +1912,7 @@ { "altTitles": [], "artist": "KOZO NAKAMURA", - "data": { - "isHot": true - }, + "data": {}, "id": 1109, "searchTerms": [ "DESERT ROSE" @@ -2306,9 +1922,7 @@ { "altTitles": [], "artist": "TOMOKO MIWA", - "data": { - "isHot": true - }, + "data": {}, "id": 1110, "searchTerms": [ "SAY" @@ -2318,9 +1932,7 @@ { "altTitles": [], "artist": "COLORS", - "data": { - "isHot": false - }, + "data": {}, "id": 1111, "searchTerms": [ "GOING UP" @@ -2330,9 +1942,7 @@ { "altTitles": [], "artist": "ARK OF THE COVE", - "data": { - "isHot": true - }, + "data": {}, "id": 1112, "searchTerms": [ "REBIRTH OF LOVE" @@ -2342,9 +1952,7 @@ { "altTitles": [], "artist": "DORMIR", - "data": { - "isHot": true - }, + "data": {}, "id": 1113, "searchTerms": [ "NYANDAFUL GO GO" @@ -2354,9 +1962,7 @@ { "altTitles": [], "artist": "PARALLEL FLOATE", - "data": { - "isHot": true - }, + "data": {}, "id": 1114, "searchTerms": [ "FLOW" @@ -2366,9 +1972,7 @@ { "altTitles": [], "artist": "HANDSOME JET PR", - "data": { - "isHot": true - }, + "data": {}, "id": 1115, "searchTerms": [ "AISYUU NO KORIG" @@ -2378,9 +1982,7 @@ { "altTitles": [], "artist": "PINK CAPSULE", - "data": { - "isHot": true - }, + "data": {}, "id": 1116, "searchTerms": [ "LONELY GIRL" @@ -2390,9 +1992,7 @@ { "altTitles": [], "artist": "POO", - "data": { - "isHot": true - }, + "data": {}, "id": 1117, "searchTerms": [ "MUSHROOM BOY" @@ -2402,9 +2002,7 @@ { "altTitles": [], "artist": "KAZUMA ENDO AND", - "data": { - "isHot": false - }, + "data": {}, "id": 1118, "searchTerms": [ "YOU CANT DO IT " @@ -2414,9 +2012,7 @@ { "altTitles": [], "artist": "CHICO", - "data": { - "isHot": true - }, + "data": {}, "id": 1119, "searchTerms": [ "PLASTIC UMBRELL" @@ -2426,9 +2022,7 @@ { "altTitles": [], "artist": "TRICK TRAP", - "data": { - "isHot": true - }, + "data": {}, "id": 1120, "searchTerms": [ "WHITE TORNADO" @@ -2438,9 +2032,7 @@ { "altTitles": [], "artist": "MELI MELO", - "data": { - "isHot": true - }, + "data": {}, "id": 1122, "searchTerms": [ "LOOKS" @@ -2450,9 +2042,7 @@ { "altTitles": [], "artist": "HIDEYUKI ONO", - "data": { - "isHot": true - }, + "data": {}, "id": 1123, "searchTerms": [ "ANCIENT BREEZE" @@ -2462,9 +2052,7 @@ { "altTitles": [], "artist": "HARUYUKI TAKANO", - "data": { - "isHot": true - }, + "data": {}, "id": 1124, "searchTerms": [ "HEAVENS COCKTAI" @@ -2474,9 +2062,7 @@ { "altTitles": [], "artist": "ANETTAI MAJI-SK", - "data": { - "isHot": true - }, + "data": {}, "id": 1125, "searchTerms": [ "MOUSOUGAKUEN IN" @@ -2486,9 +2072,7 @@ { "altTitles": [], "artist": "DES-ROW FEAT.SH", - "data": { - "isHot": false - }, + "data": {}, "id": 1126, "searchTerms": [ "ENDLESS CRUISIN" @@ -2498,9 +2082,7 @@ { "altTitles": [], "artist": "ASAKO TOKI", - "data": { - "isHot": false - }, + "data": {}, "id": 1127, "searchTerms": [ "LITTLE PRAYER" @@ -2510,9 +2092,7 @@ { "altTitles": [], "artist": "TERRA", - "data": { - "isHot": false - }, + "data": {}, "id": 1129, "searchTerms": [ "ESCAPE TO THE S" @@ -2522,9 +2102,7 @@ { "altTitles": [], "artist": "P-BOMBERS", - "data": { - "isHot": true - }, + "data": {}, "id": 1130, "searchTerms": [ "MUJOU NO HOSHI" @@ -2534,9 +2112,7 @@ { "altTitles": [], "artist": "WANNYAN PANICS", - "data": { - "isHot": true - }, + "data": {}, "id": 1131, "searchTerms": [ "DIE ZAUBERFLOTE" @@ -2546,9 +2122,7 @@ { "altTitles": [], "artist": "MOTOAKI FURUKAW", - "data": { - "isHot": true - }, + "data": {}, "id": 1133, "searchTerms": [ "STREET RUNNER" @@ -2558,9 +2132,7 @@ { "altTitles": [], "artist": "HOLSTEIN", - "data": { - "isHot": false - }, + "data": {}, "id": 1139, "searchTerms": [ "GENTLY THE RAIN" @@ -2570,9 +2142,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 1147, "searchTerms": [ "FRIENDS" @@ -2582,9 +2152,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 1201, "searchTerms": [ "MODEL DD07" @@ -2594,9 +2162,7 @@ { "altTitles": [], "artist": "MORINO KUMAKO", - "data": { - "isHot": false - }, + "data": {}, "id": 1203, "searchTerms": [ "MAGIC WORDS" @@ -2606,9 +2172,7 @@ { "altTitles": [], "artist": "TWINKLE BERRY", - "data": { - "isHot": false - }, + "data": {}, "id": 1204, "searchTerms": [ "SAISOKUTOUHIKOU" @@ -2618,9 +2182,7 @@ { "altTitles": [], "artist": "YOSHIHIKO KOEZU", - "data": { - "isHot": false - }, + "data": {}, "id": 1206, "searchTerms": [ "GREEN LIME" @@ -2630,9 +2192,7 @@ { "altTitles": [], "artist": "KOZO NAKAMURA", - "data": { - "isHot": true - }, + "data": {}, "id": 1207, "searchTerms": [ "ATALANTE" @@ -2642,9 +2202,7 @@ { "altTitles": [], "artist": "ANNA VIESTE", - "data": { - "isHot": false - }, + "data": {}, "id": 1208, "searchTerms": [ "SPELLBOUND" @@ -2654,9 +2212,7 @@ { "altTitles": [], "artist": "JJ-ROAD", - "data": { - "isHot": true - }, + "data": {}, "id": 1210, "searchTerms": [ "JJ ROAD" @@ -2666,9 +2222,7 @@ { "altTitles": [], "artist": "MAKI", - "data": { - "isHot": true - }, + "data": {}, "id": 1211, "searchTerms": [ "MORATORIAMU" @@ -2678,9 +2232,7 @@ { "altTitles": [], "artist": "VOX", - "data": { - "isHot": false - }, + "data": {}, "id": 1213, "searchTerms": [ "OVER THERE" @@ -2690,9 +2242,7 @@ { "altTitles": [], "artist": "MARIA EVA WITH ", - "data": { - "isHot": true - }, + "data": {}, "id": 1215, "searchTerms": [ "TAKE MY HAND" @@ -2702,9 +2252,7 @@ { "altTitles": [], "artist": "TOMOSUKE", - "data": { - "isHot": true - }, + "data": {}, "id": 1216, "searchTerms": [ "TIZONA D ELCID" @@ -2714,9 +2262,7 @@ { "altTitles": [], "artist": "DJ YOSHITAKA FE", - "data": { - "isHot": false - }, + "data": {}, "id": 1217, "searchTerms": [ "CAPTIVATE" @@ -2726,9 +2272,7 @@ { "altTitles": [], "artist": "TERRA", - "data": { - "isHot": true - }, + "data": {}, "id": 1218, "searchTerms": [ "GLIDE" @@ -2738,9 +2282,7 @@ { "altTitles": [], "artist": "ITABASHI-GANG", - "data": { - "isHot": true - }, + "data": {}, "id": 1222, "searchTerms": [ "SHIPPO NO ROCK" @@ -2750,9 +2292,7 @@ { "altTitles": [], "artist": "STAR LIMITED CO", - "data": { - "isHot": false - }, + "data": {}, "id": 1223, "searchTerms": [ "HONGKONG" @@ -2762,9 +2302,7 @@ { "altTitles": [], "artist": "TWINKLE BERRY", - "data": { - "isHot": true - }, + "data": {}, "id": 1226, "searchTerms": [ "MAHOU NO TARUTO" @@ -2774,9 +2312,7 @@ { "altTitles": [], "artist": "ASAKI", - "data": { - "isHot": true - }, + "data": {}, "id": 1227, "searchTerms": [ "HOTARU" @@ -2786,9 +2322,7 @@ { "altTitles": [], "artist": "HIGHWAY61", - "data": { - "isHot": false - }, + "data": {}, "id": 1233, "searchTerms": [ "SING A WELL" @@ -2798,9 +2332,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 1235, "searchTerms": [ "REWRITE" @@ -2810,9 +2342,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 1239, "searchTerms": [ "TSUBASA" @@ -2822,9 +2352,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": false - }, + "data": {}, "id": 1241, "searchTerms": [ "HARU NO UTA" @@ -2834,9 +2362,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 1244, "searchTerms": [ "AI NO TAMENI" @@ -2846,9 +2372,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 1300, "searchTerms": [ "MODEL FT2" @@ -2858,9 +2382,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 1302, "searchTerms": [ "MODEL FT2 MIRAC" @@ -2870,9 +2392,7 @@ { "altTitles": [], "artist": "ASAKI", - "data": { - "isHot": true - }, + "data": {}, "id": 1304, "searchTerms": [ "KITONITUGU" @@ -2882,9 +2402,7 @@ { "altTitles": [], "artist": "SIS BOND CHIT", - "data": { - "isHot": false - }, + "data": {}, "id": 1305, "searchTerms": [ "RURURU" @@ -2894,9 +2412,7 @@ { "altTitles": [], "artist": "ROTTEN BLOTCH", - "data": { - "isHot": false - }, + "data": {}, "id": 1306, "searchTerms": [ "MICRO FIN" @@ -2906,9 +2422,7 @@ { "altTitles": [], "artist": "ANETTAI MAJI-SK", - "data": { - "isHot": true - }, + "data": {}, "id": 1307, "searchTerms": [ "SITIFUKUJIN" @@ -2918,9 +2432,7 @@ { "altTitles": [], "artist": "JIMMY WECKL", - "data": { - "isHot": true - }, + "data": {}, "id": 1308, "searchTerms": [ "MIRAGE RESIDENC" @@ -2930,9 +2442,7 @@ { "altTitles": [], "artist": "KOZO NAKAMURA", - "data": { - "isHot": true - }, + "data": {}, "id": 1309, "searchTerms": [ "RING" @@ -2942,9 +2452,7 @@ { "altTitles": [], "artist": "TRICK TRAP", - "data": { - "isHot": true - }, + "data": {}, "id": 1310, "searchTerms": [ "PURPLE STORM" @@ -2954,9 +2462,7 @@ { "altTitles": [], "artist": "TAG", - "data": { - "isHot": false - }, + "data": {}, "id": 1313, "searchTerms": [ "EL DORADO" @@ -2966,9 +2472,7 @@ { "altTitles": [], "artist": "JIN SENBONMATSU", - "data": { - "isHot": false - }, + "data": {}, "id": 1314, "searchTerms": [ "AXIS" @@ -2978,9 +2482,7 @@ { "altTitles": [], "artist": "HANDSOME JET", - "data": { - "isHot": true - }, + "data": {}, "id": 1316, "searchTerms": [ "GUITAR DRIVE" @@ -2990,9 +2492,7 @@ { "altTitles": [], "artist": "TERRA", - "data": { - "isHot": true - }, + "data": {}, "id": 1317, "searchTerms": [ "ZENITH" @@ -3002,9 +2502,7 @@ { "altTitles": [], "artist": "RIYU KOSAKA", - "data": { - "isHot": false - }, + "data": {}, "id": 1318, "searchTerms": [ "YAMATONADESIKO" @@ -3014,9 +2512,7 @@ { "altTitles": [], "artist": "DES-ROW UNITED", - "data": { - "isHot": true - }, + "data": {}, "id": 1319, "searchTerms": [ "SAMURAI" @@ -3026,9 +2522,7 @@ { "altTitles": [], "artist": "DORMIR", - "data": { - "isHot": false - }, + "data": {}, "id": 1321, "searchTerms": [ "ARKHE" @@ -3038,9 +2532,7 @@ { "altTitles": [], "artist": "COLORS FEAT.LUC", - "data": { - "isHot": true - }, + "data": {}, "id": 1322, "searchTerms": [ "FOREVER FREE" @@ -3050,9 +2542,7 @@ { "altTitles": [], "artist": "YOSHIKUN TO HOS", - "data": { - "isHot": true - }, + "data": {}, "id": 1323, "searchTerms": [ "DAY'S" @@ -3062,9 +2552,7 @@ { "altTitles": [], "artist": "TATSH+RAYZY", - "data": { - "isHot": true - }, + "data": {}, "id": 1324, "searchTerms": [ "VENUS" @@ -3074,9 +2562,7 @@ { "altTitles": [], "artist": "THE PANTHERS", - "data": { - "isHot": true - }, + "data": {}, "id": 1325, "searchTerms": [ "MODORANAI KOI" @@ -3086,9 +2572,7 @@ { "altTitles": [], "artist": "GYRAGYRA MEGANE", - "data": { - "isHot": false - }, + "data": {}, "id": 1326, "searchTerms": [ "RYORAN HITCHART" @@ -3098,9 +2582,7 @@ { "altTitles": [], "artist": "VIVI FROM IYIYI", - "data": { - "isHot": true - }, + "data": {}, "id": 1329, "searchTerms": [ "KOI" @@ -3110,9 +2592,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 1339, "searchTerms": [ "GLAMOROUS SKY" @@ -3122,9 +2602,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": false - }, + "data": {}, "id": 1340, "searchTerms": [ "ZENRYOKU SHONEN" @@ -3134,9 +2612,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 1345, "searchTerms": [ "KARUMA" @@ -3146,9 +2622,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": false - }, + "data": {}, "id": 1400, "searchTerms": [ "MODEL DD08" @@ -3158,9 +2632,7 @@ { "altTitles": [], "artist": "ASMAT", - "data": { - "isHot": true - }, + "data": {}, "id": 1401, "searchTerms": [ "GORI GORI" @@ -3170,9 +2642,7 @@ { "altTitles": [], "artist": "MAO", - "data": { - "isHot": false - }, + "data": {}, "id": 1403, "searchTerms": [ "HOW DO YOU FEEL" @@ -3182,9 +2652,7 @@ { "altTitles": [], "artist": "ASAKI", - "data": { - "isHot": true - }, + "data": {}, "id": 1405, "searchTerms": [ "KYOKUTO SHIKI" @@ -3194,9 +2662,7 @@ { "altTitles": [], "artist": "ROTTEN BLOTCH", - "data": { - "isHot": true - }, + "data": {}, "id": 1406, "searchTerms": [ "DEADMANS BED" @@ -3206,9 +2672,7 @@ { "altTitles": [], "artist": "SIS BOND CHIT", - "data": { - "isHot": true - }, + "data": {}, "id": 1407, "searchTerms": [ "VERTIGO" @@ -3218,9 +2682,7 @@ { "altTitles": [], "artist": "JIMMY WECKL", - "data": { - "isHot": true - }, + "data": {}, "id": 1408, "searchTerms": [ "ZIGZAG LIFE" @@ -3230,9 +2692,7 @@ { "altTitles": [], "artist": "NATSUKI", - "data": { - "isHot": true - }, + "data": {}, "id": 1409, "searchTerms": [ "SWIMMING IN LOV" @@ -3242,9 +2702,7 @@ { "altTitles": [], "artist": "KOZO NAKAMURA", - "data": { - "isHot": true - }, + "data": {}, "id": 1410, "searchTerms": [ "SLANG" @@ -3254,9 +2712,7 @@ { "altTitles": [], "artist": "THOMAS HOWARD L", - "data": { - "isHot": true - }, + "data": {}, "id": 1411, "searchTerms": [ "CHARISMATIC" @@ -3266,9 +2722,7 @@ { "altTitles": [], "artist": "TERRA", - "data": { - "isHot": true - }, + "data": {}, "id": 1414, "searchTerms": [ "REVOLUTION" @@ -3278,9 +2732,7 @@ { "altTitles": [], "artist": "TAG", - "data": { - "isHot": true - }, + "data": {}, "id": 1416, "searchTerms": [ "PRIME LIGHT" @@ -3290,9 +2742,7 @@ { "altTitles": [], "artist": "COLORS", - "data": { - "isHot": true - }, + "data": {}, "id": 1418, "searchTerms": [ "R1" @@ -3302,9 +2752,7 @@ { "altTitles": [], "artist": "KO-SAKU", - "data": { - "isHot": true - }, + "data": {}, "id": 1420, "searchTerms": [ "FIRST DATE" @@ -3314,9 +2762,7 @@ { "altTitles": [], "artist": "NINA LEE KAMINS", - "data": { - "isHot": true - }, + "data": {}, "id": 1421, "searchTerms": [ "RAINING SUNSHIN" @@ -3326,9 +2772,7 @@ { "altTitles": [], "artist": "96", - "data": { - "isHot": true - }, + "data": {}, "id": 1422, "searchTerms": [ "ICHIMOUDAJIN" @@ -3338,9 +2782,7 @@ { "altTitles": [], "artist": "JIN SENBONMATSU", - "data": { - "isHot": true - }, + "data": {}, "id": 1424, "searchTerms": [ "JAKE IN THE BOX" @@ -3350,9 +2792,7 @@ { "altTitles": [], "artist": "KUMIKO HIRATA", - "data": { - "isHot": true - }, + "data": {}, "id": 1425, "searchTerms": [ "MASCARADA" @@ -3362,9 +2802,7 @@ { "altTitles": [], "artist": "TWINKLE BERRY", - "data": { - "isHot": true - }, + "data": {}, "id": 1426, "searchTerms": [ "NINKIMONO NANDE" @@ -3374,9 +2812,7 @@ { "altTitles": [], "artist": "MOTOAKI FURUKAW", - "data": { - "isHot": false - }, + "data": {}, "id": 1427, "searchTerms": [ "TRUE LOVE AND V" @@ -3386,9 +2822,7 @@ { "altTitles": [], "artist": "MEGUMI TATSUMI", - "data": { - "isHot": false - }, + "data": {}, "id": 1428, "searchTerms": [ "KOIHAOKUBYOU" @@ -3398,9 +2832,7 @@ { "altTitles": [], "artist": "KANAKO HOSHINO", - "data": { - "isHot": false - }, + "data": {}, "id": 1429, "searchTerms": [ "TAIYO" @@ -3410,9 +2842,7 @@ { "altTitles": [], "artist": "GOOD-COOL FT. A", - "data": { - "isHot": true - }, + "data": {}, "id": 1430, "searchTerms": [ "5-10" @@ -3422,9 +2852,7 @@ { "altTitles": [], "artist": "BEFORU", - "data": { - "isHot": false - }, + "data": {}, "id": 1431, "searchTerms": [ "STRIKE PARTY" @@ -3434,9 +2862,7 @@ { "altTitles": [], "artist": "ORANGENOISE SHO", - "data": { - "isHot": false - }, + "data": {}, "id": 1432, "searchTerms": [ "THE MESSENGER" @@ -3446,9 +2872,7 @@ { "altTitles": [], "artist": "YU_TOKIWA.DJW M", - "data": { - "isHot": false - }, + "data": {}, "id": 1433, "searchTerms": [ "MURMUR TWINS" @@ -3458,9 +2882,7 @@ { "altTitles": [], "artist": "ANTHEM", - "data": { - "isHot": false - }, + "data": {}, "id": 1435, "searchTerms": [ "IMMORTAL BIND" @@ -3470,9 +2892,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": false - }, + "data": {}, "id": 1441, "searchTerms": [ "GARANA" @@ -3482,9 +2902,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 1445, "searchTerms": [ "ENRAI" @@ -3494,9 +2912,7 @@ { "altTitles": [], "artist": "MOTOAKI FURUKAW", - "data": { - "isHot": true - }, + "data": {}, "id": 1460, "searchTerms": [ "TABIDACHI" @@ -3506,9 +2922,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": false - }, + "data": {}, "id": 1461, "searchTerms": [ "MIDNIGHT SUN (L" @@ -3518,9 +2932,7 @@ { "altTitles": [], "artist": "P-BOMBERS", - "data": { - "isHot": true - }, + "data": {}, "id": 1462, "searchTerms": [ "MUGON NO MACHI" @@ -3530,9 +2942,7 @@ { "altTitles": [], "artist": "YOKO ARAMAKI", - "data": { - "isHot": true - }, + "data": {}, "id": 1500, "searchTerms": [ "POWER GAME" @@ -3542,9 +2952,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 1501, "searchTerms": [ "ELECTRIC LADY" @@ -3554,9 +2962,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 1502, "searchTerms": [ "BLUE FOREST" @@ -3566,9 +2972,7 @@ { "altTitles": [], "artist": "ROTTEN BLOTCH", - "data": { - "isHot": true - }, + "data": {}, "id": 1503, "searchTerms": [ "ATOMS" @@ -3578,9 +2982,7 @@ { "altTitles": [], "artist": "SIS BOND CHIT", - "data": { - "isHot": true - }, + "data": {}, "id": 1504, "searchTerms": [ "MANNEQUIN" @@ -3590,9 +2992,7 @@ { "altTitles": [], "artist": "ASAKI", - "data": { - "isHot": true - }, + "data": {}, "id": 1505, "searchTerms": [ "RYU HYO NO SARI" @@ -3602,9 +3002,7 @@ { "altTitles": [], "artist": "ASAKI", - "data": { - "isHot": true - }, + "data": {}, "id": 1506, "searchTerms": [ "A DOGMA" @@ -3614,9 +3012,7 @@ { "altTitles": [], "artist": "JIMMY WECKL", - "data": { - "isHot": true - }, + "data": {}, "id": 1507, "searchTerms": [ "TENGU" @@ -3626,9 +3022,7 @@ { "altTitles": [], "artist": "HIDEYUKI ONO", - "data": { - "isHot": true - }, + "data": {}, "id": 1508, "searchTerms": [ "MUDAI" @@ -3638,9 +3032,7 @@ { "altTitles": [], "artist": "YUKA SAITO", - "data": { - "isHot": true - }, + "data": {}, "id": 1509, "searchTerms": [ "TERPSICHORE" @@ -3650,9 +3042,7 @@ { "altTitles": [], "artist": "TERRA FEAT.UCHU", - "data": { - "isHot": true - }, + "data": {}, "id": 1512, "searchTerms": [ "KYOKA-SUIGETSU-" @@ -3662,9 +3052,7 @@ { "altTitles": [], "artist": "DES-ROW UNITED ", - "data": { - "isHot": true - }, + "data": {}, "id": 1513, "searchTerms": [ "FUSIGIDANIPPON" @@ -3674,9 +3062,7 @@ { "altTitles": [], "artist": "COLORS", - "data": { - "isHot": true - }, + "data": {}, "id": 1516, "searchTerms": [ "HIKOKI" @@ -3686,9 +3072,7 @@ { "altTitles": [], "artist": "SUZAKU VS. TAG", - "data": { - "isHot": false - }, + "data": {}, "id": 1517, "searchTerms": [ "VANESSA" @@ -3698,9 +3082,7 @@ { "altTitles": [], "artist": "TAISHO", - "data": { - "isHot": true - }, + "data": {}, "id": 1518, "searchTerms": [ "OPUS LIFE" @@ -3710,9 +3092,7 @@ { "altTitles": [], "artist": "KI KI", - "data": { - "isHot": false - }, + "data": {}, "id": 1519, "searchTerms": [ "COLORFUL PASTEL" @@ -3722,9 +3102,7 @@ { "altTitles": [], "artist": "JIN SENBONMATSU", - "data": { - "isHot": true - }, + "data": {}, "id": 1520, "searchTerms": [ "ROCK TO INFINIT" @@ -3734,9 +3112,7 @@ { "altTitles": [], "artist": "TAG", - "data": { - "isHot": true - }, + "data": {}, "id": 1521, "searchTerms": [ "PIECE OF HISTOR" @@ -3746,9 +3122,7 @@ { "altTitles": [], "artist": "L.E.D.-G VS. GU", - "data": { - "isHot": true - }, + "data": {}, "id": 1522, "searchTerms": [ "LAST SCENE" @@ -3758,9 +3132,7 @@ { "altTitles": [], "artist": "96", - "data": { - "isHot": true - }, + "data": {}, "id": 1524, "searchTerms": [ "FORCE INTERVAL " @@ -3770,9 +3142,7 @@ { "altTitles": [], "artist": "INO", - "data": { - "isHot": true - }, + "data": {}, "id": 1525, "searchTerms": [ "HITORI ASOBI" @@ -3782,9 +3152,7 @@ { "altTitles": [], "artist": "MEGUMI TATSUMI ", - "data": { - "isHot": false - }, + "data": {}, "id": 1526, "searchTerms": [ "GOING MY WAY" @@ -3794,9 +3162,7 @@ { "altTitles": [], "artist": "GOOD-COOL FEAT.", - "data": { - "isHot": false - }, + "data": {}, "id": 1528, "searchTerms": [ "TANBO NO TA" @@ -3806,9 +3172,7 @@ { "altTitles": [], "artist": "BENIIROLITMUS", - "data": { - "isHot": true - }, + "data": {}, "id": 1530, "searchTerms": [ "RINTOSITESAKUHA" @@ -3818,9 +3182,7 @@ { "altTitles": [], "artist": "96", - "data": { - "isHot": false - }, + "data": {}, "id": 1533, "searchTerms": [ "CHIMERA" @@ -3830,9 +3192,7 @@ { "altTitles": [], "artist": "AS I LAY DYING", - "data": { - "isHot": false - }, + "data": {}, "id": 1534, "searchTerms": [ "THE SOUND OF TR" @@ -3842,9 +3202,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 1540, "searchTerms": [ "SHANGRILA" @@ -3854,9 +3212,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 1542, "searchTerms": [ "SOSEI NO AKUERI" @@ -3866,9 +3222,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 1545, "searchTerms": [ "AFTER DARK" @@ -3878,9 +3232,7 @@ { "altTitles": [], "artist": "RYDER", - "data": { - "isHot": false - }, + "data": {}, "id": 1547, "searchTerms": [ "IN CONTROL" @@ -3890,9 +3242,7 @@ { "altTitles": [], "artist": "JIN SENBONMATSU", - "data": { - "isHot": true - }, + "data": {}, "id": 1548, "searchTerms": [ "DYNAMIS" @@ -3902,9 +3252,7 @@ { "altTitles": [], "artist": "ASAKI", - "data": { - "isHot": true - }, + "data": {}, "id": 1549, "searchTerms": [ "FOR THE FINAL" @@ -3914,9 +3262,7 @@ { "altTitles": [], "artist": "THOMAS HOWARD L", - "data": { - "isHot": true - }, + "data": {}, "id": 1550, "searchTerms": [ "NEXT STEP" @@ -3926,9 +3272,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": false - }, + "data": {}, "id": 1600, "searchTerms": [ "JUNGLE" @@ -3938,9 +3282,7 @@ { "altTitles": [], "artist": "ASAKI", - "data": { - "isHot": true - }, + "data": {}, "id": 1603, "searchTerms": [ "SONNE" @@ -3950,9 +3292,7 @@ { "altTitles": [], "artist": "NELO", - "data": { - "isHot": true - }, + "data": {}, "id": 1605, "searchTerms": [ "NIL" @@ -3962,9 +3302,7 @@ { "altTitles": [], "artist": "SIS BOND CHIT", - "data": { - "isHot": true - }, + "data": {}, "id": 1606, "searchTerms": [ "SIREN" @@ -3974,9 +3312,7 @@ { "altTitles": [], "artist": "KOZO NAKAMURA", - "data": { - "isHot": true - }, + "data": {}, "id": 1608, "searchTerms": [ "RED" @@ -3986,9 +3322,7 @@ { "altTitles": [], "artist": "HIDEYUKI ONO FE", - "data": { - "isHot": true - }, + "data": {}, "id": 1609, "searchTerms": [ "HIGHWAY STAR" @@ -3998,9 +3332,7 @@ { "altTitles": [], "artist": "NEKOMATA-MASTER", - "data": { - "isHot": false - }, + "data": {}, "id": 1610, "searchTerms": [ "DRIVEN SHOOTER" @@ -4010,9 +3342,7 @@ { "altTitles": [], "artist": "YOSHIHIKO KOEZU", - "data": { - "isHot": true - }, + "data": {}, "id": 1611, "searchTerms": [ "GARASU NO KOBUN" @@ -4022,9 +3352,7 @@ { "altTitles": [], "artist": "98", - "data": { - "isHot": false - }, + "data": {}, "id": 1612, "searchTerms": [ "FUJINUNRYUDEN" @@ -4034,9 +3362,7 @@ { "altTitles": [], "artist": "TRICK TRAP +", - "data": { - "isHot": true - }, + "data": {}, "id": 1613, "searchTerms": [ "ENCORE CONQUEST" @@ -4046,9 +3372,7 @@ { "altTitles": [], "artist": "YAMATOGUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 1614, "searchTerms": [ "JONETSU FUN FUN" @@ -4058,9 +3382,7 @@ { "altTitles": [], "artist": "MIGHTY PUPPET", - "data": { - "isHot": true - }, + "data": {}, "id": 1615, "searchTerms": [ "HUMMING RABBIT" @@ -4070,9 +3392,7 @@ { "altTitles": [], "artist": "TERRA", - "data": { - "isHot": true - }, + "data": {}, "id": 1616, "searchTerms": [ "CATHARSIS GARDE" @@ -4082,9 +3402,7 @@ { "altTitles": [], "artist": "TOMOSUKE FEAT. ", - "data": { - "isHot": false - }, + "data": {}, "id": 1618, "searchTerms": [ "WALK WITH YOU" @@ -4094,9 +3412,7 @@ { "altTitles": [], "artist": "IRI", - "data": { - "isHot": false - }, + "data": {}, "id": 1619, "searchTerms": [ "1/N" @@ -4106,9 +3422,7 @@ { "altTitles": [], "artist": "TAG", - "data": { - "isHot": false - }, + "data": {}, "id": 1620, "searchTerms": [ "CHRONOS" @@ -4118,9 +3432,7 @@ { "altTitles": [], "artist": "96", - "data": { - "isHot": false - }, + "data": {}, "id": 1621, "searchTerms": [ "DEVOLUTION OF T" @@ -4130,9 +3442,7 @@ { "altTitles": [], "artist": "MINORU NIIHARA ", - "data": { - "isHot": true - }, + "data": {}, "id": 1622, "searchTerms": [ "THE ASCENSION" @@ -4142,9 +3452,7 @@ { "altTitles": [], "artist": "RR BAND", - "data": { - "isHot": true - }, + "data": {}, "id": 1623, "searchTerms": [ "SHE'S THE BUG" @@ -4154,9 +3462,7 @@ { "altTitles": [], "artist": "SIS BOND CHIT", - "data": { - "isHot": true - }, + "data": {}, "id": 1625, "searchTerms": [ "FOUR-LEAF" @@ -4166,9 +3472,7 @@ { "altTitles": [], "artist": "TENGACHAYAKO", - "data": { - "isHot": false - }, + "data": {}, "id": 1626, "searchTerms": [ "KONAMONYA NINJY" @@ -4178,9 +3482,7 @@ { "altTitles": [], "artist": "YASUSHI ASADA", - "data": { - "isHot": false - }, + "data": {}, "id": 1627, "searchTerms": [ "VAMPIRE KILLER" @@ -4190,9 +3492,7 @@ { "altTitles": [], "artist": "MAO", - "data": { - "isHot": true - }, + "data": {}, "id": 1628, "searchTerms": [ "I WANNA KISS YO" @@ -4202,9 +3502,7 @@ { "altTitles": [], "artist": "MEGUMI TATSUMI ", - "data": { - "isHot": false - }, + "data": {}, "id": 1629, "searchTerms": [ "IJIWARUNAANATA" @@ -4214,9 +3512,7 @@ { "altTitles": [], "artist": "GOOD-COOL", - "data": { - "isHot": false - }, + "data": {}, "id": 1630, "searchTerms": [ "WALNUTS" @@ -4226,9 +3522,7 @@ { "altTitles": [], "artist": "HEMI-YOU", - "data": { - "isHot": false - }, + "data": {}, "id": 1632, "searchTerms": [ "WATER FRAME" @@ -4238,9 +3532,7 @@ { "altTitles": [], "artist": "ITO KENJI", - "data": { - "isHot": false - }, + "data": {}, "id": 1635, "searchTerms": [ "OVER THE LIMIT" @@ -4250,9 +3542,7 @@ { "altTitles": [], "artist": "JIMMY WECKL", - "data": { - "isHot": true - }, + "data": {}, "id": 1638, "searchTerms": [ "ICICLES" @@ -4262,9 +3552,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": false - }, + "data": {}, "id": 1639, "searchTerms": [ "BLUE BIRD" @@ -4274,9 +3562,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 1648, "searchTerms": [ "KISEKI" @@ -4286,9 +3572,7 @@ { "altTitles": [], "artist": "DRAGONFORCE", - "data": { - "isHot": false - }, + "data": {}, "id": 1649, "searchTerms": [ "THROUGH THE FIR" @@ -4298,9 +3582,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 1650, "searchTerms": [ "SKY" @@ -4310,9 +3592,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 1700, "searchTerms": [ "HYPER JET LAND" @@ -4322,9 +3602,7 @@ { "altTitles": [], "artist": "96", - "data": { - "isHot": false - }, + "data": {}, "id": 1701, "searchTerms": [ "KAISER PHOENIX" @@ -4334,9 +3612,7 @@ { "altTitles": [], "artist": "TRICK TRAP", - "data": { - "isHot": true - }, + "data": {}, "id": 1702, "searchTerms": [ "BLUE PLANET" @@ -4346,9 +3622,7 @@ { "altTitles": [], "artist": "ROTTEN BLOTCH", - "data": { - "isHot": true - }, + "data": {}, "id": 1703, "searchTerms": [ "PIRANHA" @@ -4358,9 +3632,7 @@ { "altTitles": [], "artist": "ASAKI", - "data": { - "isHot": true - }, + "data": {}, "id": 1704, "searchTerms": [ "TENTEI OTOKONOK" @@ -4370,9 +3642,7 @@ { "altTitles": [], "artist": "NOBUO UEMATSU T", - "data": { - "isHot": false - }, + "data": {}, "id": 1705, "searchTerms": [ "EINHERJAR" @@ -4382,9 +3652,7 @@ { "altTitles": [], "artist": "96", - "data": { - "isHot": true - }, + "data": {}, "id": 1706, "searchTerms": [ "X TREME GRADE" @@ -4394,9 +3662,7 @@ { "altTitles": [], "artist": "LUCA", - "data": { - "isHot": true - }, + "data": {}, "id": 1707, "searchTerms": [ "ON TOP OF THE W" @@ -4406,9 +3672,7 @@ { "altTitles": [], "artist": "PINK TURBO", - "data": { - "isHot": false - }, + "data": {}, "id": 1708, "searchTerms": [ "KISS ME" @@ -4418,9 +3682,7 @@ { "altTitles": [], "artist": "KANAKO HOSHINO", - "data": { - "isHot": true - }, + "data": {}, "id": 1709, "searchTerms": [ "GENSOKA" @@ -4430,9 +3692,7 @@ { "altTitles": [], "artist": "TAG", - "data": { - "isHot": true - }, + "data": {}, "id": 1710, "searchTerms": [ "BEFORE DAYBREAK" @@ -4442,9 +3702,7 @@ { "altTitles": [], "artist": "96", - "data": { - "isHot": true - }, + "data": {}, "id": 1711, "searchTerms": [ "CALAMITY PHOENI" @@ -4454,9 +3712,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 1712, "searchTerms": [ "MODEL DD09" @@ -4466,9 +3722,7 @@ { "altTitles": [], "artist": "HIROYUKI SHIBAT", - "data": { - "isHot": true - }, + "data": {}, "id": 1713, "searchTerms": [ "IMITATION TOUCH" @@ -4478,9 +3732,7 @@ { "altTitles": [], "artist": "THOMAS HOWARD L", - "data": { - "isHot": true - }, + "data": {}, "id": 1714, "searchTerms": [ "EGOCENTRICITY" @@ -4490,9 +3742,7 @@ { "altTitles": [], "artist": "SANA", - "data": { - "isHot": false - }, + "data": {}, "id": 1715, "searchTerms": [ "HOSHIFURI" @@ -4502,9 +3752,7 @@ { "altTitles": [], "artist": "BLACK CAPSULE", - "data": { - "isHot": true - }, + "data": {}, "id": 1716, "searchTerms": [ "CLEAN CLEAN" @@ -4514,9 +3762,7 @@ { "altTitles": [], "artist": "PON", - "data": { - "isHot": true - }, + "data": {}, "id": 1717, "searchTerms": [ "SAYONARA BOKUJI" @@ -4526,9 +3772,7 @@ { "altTitles": [], "artist": "80APES", - "data": { - "isHot": true - }, + "data": {}, "id": 1718, "searchTerms": [ "INVINCIBLE" @@ -4538,9 +3782,7 @@ { "altTitles": [], "artist": "JURI", - "data": { - "isHot": false - }, + "data": {}, "id": 1719, "searchTerms": [ "BLUE BIRD" @@ -4550,9 +3792,7 @@ { "altTitles": [], "artist": "KOZO NAKAMURA", - "data": { - "isHot": true - }, + "data": {}, "id": 1720, "searchTerms": [ "DEEP FOREST" @@ -4562,9 +3802,7 @@ { "altTitles": [], "artist": "AIKO OI", - "data": { - "isHot": true - }, + "data": {}, "id": 1721, "searchTerms": [ "LIMITLESS POSSI" @@ -4574,9 +3812,7 @@ { "altTitles": [], "artist": "HIDEYUKI ONO", - "data": { - "isHot": true - }, + "data": {}, "id": 1722, "searchTerms": [ "MIKENEKO JIVE" @@ -4586,9 +3822,7 @@ { "altTitles": [], "artist": "NEKOMATA-MASTER", - "data": { - "isHot": true - }, + "data": {}, "id": 1723, "searchTerms": [ "CRACK" @@ -4598,9 +3832,7 @@ { "altTitles": [], "artist": "SOTA FUJIMORI F", - "data": { - "isHot": false - }, + "data": {}, "id": 1724, "searchTerms": [ "YOU'VE GOT 2 GE" @@ -4610,9 +3842,7 @@ { "altTitles": [], "artist": "GEKIDAN RECORD ", - "data": { - "isHot": true - }, + "data": {}, "id": 1725, "searchTerms": [ "GUREN NO HONOU" @@ -4622,9 +3852,7 @@ { "altTitles": [], "artist": "MAO", - "data": { - "isHot": true - }, + "data": {}, "id": 1726, "searchTerms": [ "HIKARI" @@ -4634,9 +3862,7 @@ { "altTitles": [], "artist": "QUIXOTIK MEETS ", - "data": { - "isHot": true - }, + "data": {}, "id": 1727, "searchTerms": [ "ASCETIC" @@ -4646,9 +3872,7 @@ { "altTitles": [], "artist": "TIME CAPSULE LA", - "data": { - "isHot": false - }, + "data": {}, "id": 1728, "searchTerms": [ "PHOTON" @@ -4658,9 +3882,7 @@ { "altTitles": [], "artist": "MOTOAKI FURUKAW", - "data": { - "isHot": true - }, + "data": {}, "id": 1729, "searchTerms": [ "SKY RUNNER" @@ -4670,9 +3892,7 @@ { "altTitles": [], "artist": "ATSUKI", - "data": { - "isHot": true - }, + "data": {}, "id": 1730, "searchTerms": [ "LOVE CARNIVAL" @@ -4682,9 +3902,7 @@ { "altTitles": [], "artist": "MEGUMI TATSUMI ", - "data": { - "isHot": false - }, + "data": {}, "id": 1731, "searchTerms": [ "HUNTER" @@ -4694,9 +3912,7 @@ { "altTitles": [], "artist": "BENJAMIN FRANKL", - "data": { - "isHot": true - }, + "data": {}, "id": 1732, "searchTerms": [ "I WANT IT ALL" @@ -4706,9 +3922,7 @@ { "altTitles": [], "artist": "MAC NOBUKA", - "data": { - "isHot": false - }, + "data": {}, "id": 1733, "searchTerms": [ "KEEP UR DREAMS" @@ -4718,9 +3932,7 @@ { "altTitles": [], "artist": "STIL", - "data": { - "isHot": false - }, + "data": {}, "id": 1734, "searchTerms": [ "STAY AWAY" @@ -4730,9 +3942,7 @@ { "altTitles": [], "artist": "ITO KENJI", - "data": { - "isHot": true - }, + "data": {}, "id": 1735, "searchTerms": [ "SHAKE AND SHOUT" @@ -4742,9 +3952,7 @@ { "altTitles": [], "artist": "RYDER", - "data": { - "isHot": false - }, + "data": {}, "id": 1737, "searchTerms": [ "IMI" @@ -4754,9 +3962,7 @@ { "altTitles": [], "artist": "GOOD-COOL FT. S", - "data": { - "isHot": false - }, + "data": {}, "id": 1738, "searchTerms": [ "AKOGARE NO BODY" @@ -4766,9 +3972,7 @@ { "altTitles": [], "artist": "TAKAO NAGATANI", - "data": { - "isHot": false - }, + "data": {}, "id": 1739, "searchTerms": [ "CONFESSION" @@ -4778,9 +3982,7 @@ { "altTitles": [], "artist": "DAIHEI", - "data": { - "isHot": false - }, + "data": {}, "id": 1740, "searchTerms": [ "TAIYO NO HANA" @@ -4790,9 +3992,7 @@ { "altTitles": [], "artist": "YASUSHI ASADA", - "data": { - "isHot": false - }, + "data": {}, "id": 1741, "searchTerms": [ "EXCAVATION DAMA" @@ -4802,9 +4002,7 @@ { "altTitles": [], "artist": "YASUHIRO ABE", - "data": { - "isHot": false - }, + "data": {}, "id": 1742, "searchTerms": [ "BELIEVING" @@ -4814,9 +4012,7 @@ { "altTitles": [], "artist": "YASUHIRO ABE", - "data": { - "isHot": false - }, + "data": {}, "id": 1743, "searchTerms": [ "WHITE WINGS" @@ -4826,9 +4022,7 @@ { "altTitles": [], "artist": "YOSUKE ONISHI", - "data": { - "isHot": false - }, + "data": {}, "id": 1744, "searchTerms": [ "EAU ROUGE" @@ -4838,9 +4032,7 @@ { "altTitles": [], "artist": "TAG FEAT. 96", - "data": { - "isHot": false - }, + "data": {}, "id": 1745, "searchTerms": [ "10,000,000,000" @@ -4850,9 +4042,7 @@ { "altTitles": [], "artist": "TEEJAYZ,INC.", - "data": { - "isHot": false - }, + "data": {}, "id": 1746, "searchTerms": [ "NO WAY FOR ONE " @@ -4862,9 +4052,7 @@ { "altTitles": [], "artist": "HOSHIKAWA NOBOR", - "data": { - "isHot": true - }, + "data": {}, "id": 1747, "searchTerms": [ "CROQUETTE" @@ -4874,9 +4062,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": false - }, + "data": {}, "id": 1752, "searchTerms": [ "USO" @@ -4886,9 +4072,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 1753, "searchTerms": [ "STAIRWAY GENERA" @@ -4898,9 +4082,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 1755, "searchTerms": [ "TRICKSTER" @@ -4910,9 +4092,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": false - }, + "data": {}, "id": 1756, "searchTerms": [ "SORAIRODAYS" @@ -4922,9 +4102,7 @@ { "altTitles": [], "artist": "HIROMIXXX", - "data": { - "isHot": false - }, + "data": {}, "id": 1800, "searchTerms": [ "I CAN BE" @@ -4934,9 +4112,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 1801, "searchTerms": [ "BLUE MOON" @@ -4946,9 +4122,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": false - }, + "data": {}, "id": 1802, "searchTerms": [ "CHINESE SNOWY D" @@ -4958,9 +4132,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 1803, "searchTerms": [ "FIFTH GIG" @@ -4970,9 +4142,7 @@ { "altTitles": [], "artist": "2B-WAVES", - "data": { - "isHot": false - }, + "data": {}, "id": 1804, "searchTerms": [ "IMPALSE RESPONS" @@ -4982,9 +4152,7 @@ { "altTitles": [], "artist": "96", - "data": { - "isHot": true - }, + "data": {}, "id": 1805, "searchTerms": [ "SIX DIMENSION" @@ -4994,9 +4162,7 @@ { "altTitles": [], "artist": "MELODYOUT", - "data": { - "isHot": true - }, + "data": {}, "id": 1806, "searchTerms": [ "DAWN" @@ -5006,9 +4172,7 @@ { "altTitles": [], "artist": "96", - "data": { - "isHot": true - }, + "data": {}, "id": 1807, "searchTerms": [ "HYAKKIYAKO" @@ -5018,9 +4182,7 @@ { "altTitles": [], "artist": "YOSHIHIKO KOEZU", - "data": { - "isHot": true - }, + "data": {}, "id": 1808, "searchTerms": [ "PINK BIRD" @@ -5030,9 +4192,7 @@ { "altTitles": [], "artist": "THOMAS HOWARD L", - "data": { - "isHot": true - }, + "data": {}, "id": 1809, "searchTerms": [ "ADRENALINE" @@ -5042,9 +4202,7 @@ { "altTitles": [], "artist": "TWINKLE BERRY", - "data": { - "isHot": true - }, + "data": {}, "id": 1810, "searchTerms": [ "DIAMOND ROMANCE" @@ -5054,9 +4212,7 @@ { "altTitles": [], "artist": "98", - "data": { - "isHot": true - }, + "data": {}, "id": 1811, "searchTerms": [ "GENSORIJINKI" @@ -5066,9 +4222,7 @@ { "altTitles": [], "artist": "AIMEE BLACKSCHL", - "data": { - "isHot": true - }, + "data": {}, "id": 1812, "searchTerms": [ "CHANCE" @@ -5078,9 +4232,7 @@ { "altTitles": [], "artist": "CAPTAIN METAL", - "data": { - "isHot": true - }, + "data": {}, "id": 1813, "searchTerms": [ "GYUNYUTOKKYUBIN" @@ -5090,9 +4242,7 @@ { "altTitles": [], "artist": "TAG", - "data": { - "isHot": true - }, + "data": {}, "id": 1814, "searchTerms": [ "EXCELSIOR DIVE" @@ -5102,9 +4252,7 @@ { "altTitles": [], "artist": "QRISPY JOYEUSE ", - "data": { - "isHot": true - }, + "data": {}, "id": 1815, "searchTerms": [ "REALIZE" @@ -5114,9 +4262,7 @@ { "altTitles": [], "artist": "W AKINO", - "data": { - "isHot": true - }, + "data": {}, "id": 1816, "searchTerms": [ "GLOOM" @@ -5126,9 +4272,7 @@ { "altTitles": [], "artist": "WORLD SEQUENCE", - "data": { - "isHot": true - }, + "data": {}, "id": 1817, "searchTerms": [ "FU RAI" @@ -5138,9 +4282,7 @@ { "altTitles": [], "artist": "SEIYA-MURAI FEA", - "data": { - "isHot": true - }, + "data": {}, "id": 1818, "searchTerms": [ "SPRING PAIN" @@ -5150,9 +4292,7 @@ { "altTitles": [], "artist": "PINK TURBO", - "data": { - "isHot": false - }, + "data": {}, "id": 1819, "searchTerms": [ "THE YUKI" @@ -5162,9 +4302,7 @@ { "altTitles": [], "artist": "COLORS", - "data": { - "isHot": true - }, + "data": {}, "id": 1820, "searchTerms": [ "NO WAY" @@ -5174,9 +4312,7 @@ { "altTitles": [], "artist": "PON", - "data": { - "isHot": true - }, + "data": {}, "id": 1821, "searchTerms": [ "NAKIMUSHI NO GA" @@ -5186,9 +4322,7 @@ { "altTitles": [], "artist": "QRISPY JOYBOX F", - "data": { - "isHot": true - }, + "data": {}, "id": 1822, "searchTerms": [ "SAYONARA NAMIDA" @@ -5198,9 +4332,7 @@ { "altTitles": [], "artist": "TRICK TRAP", - "data": { - "isHot": true - }, + "data": {}, "id": 1823, "searchTerms": [ "BROWN BLIZZARD" @@ -5210,9 +4342,7 @@ { "altTitles": [], "artist": "TOMOSUKE FEAT. ", - "data": { - "isHot": true - }, + "data": {}, "id": 1824, "searchTerms": [ "COSMIC AGENDA" @@ -5222,9 +4352,7 @@ { "altTitles": [], "artist": "SOTA FUJIMORI", - "data": { - "isHot": false - }, + "data": {}, "id": 1825, "searchTerms": [ "BANGIN BREAKS" @@ -5234,9 +4362,7 @@ { "altTitles": [], "artist": "TIME CAPSULE LA", - "data": { - "isHot": true - }, + "data": {}, "id": 1826, "searchTerms": [ "LEPTON" @@ -5246,9 +4372,7 @@ { "altTitles": [], "artist": "AIKO OI", - "data": { - "isHot": true - }, + "data": {}, "id": 1827, "searchTerms": [ "COME BACK ALIVE" @@ -5258,9 +4382,7 @@ { "altTitles": [], "artist": "SAKAMOTO EIZO A", - "data": { - "isHot": true - }, + "data": {}, "id": 1828, "searchTerms": [ "MAEGAMI" @@ -5270,9 +4392,7 @@ { "altTitles": [], "artist": "YASUHIRO ABE", - "data": { - "isHot": false - }, + "data": {}, "id": 1829, "searchTerms": [ "MURASAKI NO TSU" @@ -5282,9 +4402,7 @@ { "altTitles": [], "artist": "ATSUKI", - "data": { - "isHot": true - }, + "data": {}, "id": 1830, "searchTerms": [ "BIG WAVE" @@ -5294,9 +4412,7 @@ { "altTitles": [], "artist": "DEAR BREEZE STU", - "data": { - "isHot": false - }, + "data": {}, "id": 1831, "searchTerms": [ "ILLUMINATI" @@ -5306,9 +4422,7 @@ { "altTitles": [], "artist": "MEGUMI TATSUMI ", - "data": { - "isHot": false - }, + "data": {}, "id": 1832, "searchTerms": [ "VICTORY" @@ -5318,9 +4432,7 @@ { "altTitles": [], "artist": "YASUSHI ASADA", - "data": { - "isHot": true - }, + "data": {}, "id": 1833, "searchTerms": [ "ADVERSE CRITICI" @@ -5330,9 +4442,7 @@ { "altTitles": [], "artist": "TOM-HACK FEAT.N", - "data": { - "isHot": false - }, + "data": {}, "id": 1834, "searchTerms": [ "X-PLAN" @@ -5342,9 +4452,7 @@ { "altTitles": [], "artist": "RYDER", - "data": { - "isHot": false - }, + "data": {}, "id": 1835, "searchTerms": [ "DROP" @@ -5354,9 +4462,7 @@ { "altTitles": [], "artist": "TAKAO NAGATANI", - "data": { - "isHot": false - }, + "data": {}, "id": 1836, "searchTerms": [ "LOVE ROX" @@ -5366,9 +4472,7 @@ { "altTitles": [], "artist": "DAIHEI", - "data": { - "isHot": true - }, + "data": {}, "id": 1837, "searchTerms": [ "IBARA NO MICHI" @@ -5378,9 +4482,7 @@ { "altTitles": [], "artist": "SHINICHI KOBAYA", - "data": { - "isHot": false - }, + "data": {}, "id": 1838, "searchTerms": [ "GAME YORI AI WO" @@ -5390,9 +4492,7 @@ { "altTitles": [], "artist": "RYU", - "data": { - "isHot": true - }, + "data": {}, "id": 1839, "searchTerms": [ "RIGHT ON TIME R" @@ -5402,9 +4502,7 @@ { "altTitles": [], "artist": "SOTA FUJIMORI F", - "data": { - "isHot": true - }, + "data": {}, "id": 1840, "searchTerms": [ "MEIKYOSHISUI ST" @@ -5414,9 +4512,7 @@ { "altTitles": [], "artist": "HIDEYUKI ONO FE", - "data": { - "isHot": false - }, + "data": {}, "id": 1841, "searchTerms": [ "YUMENITSUITE TY" @@ -5426,9 +4522,7 @@ { "altTitles": [], "artist": "HIDEYUKI ONO FE", - "data": { - "isHot": false - }, + "data": {}, "id": 1842, "searchTerms": [ "YUMENITSUITE TY" @@ -5438,9 +4532,7 @@ { "altTitles": [], "artist": "KOZO NAKAMURA", - "data": { - "isHot": false - }, + "data": {}, "id": 1843, "searchTerms": [ "JAILBREAK" @@ -5450,9 +4542,7 @@ { "altTitles": [], "artist": "GOOD-COOL FT. S", - "data": { - "isHot": false - }, + "data": {}, "id": 1844, "searchTerms": [ "AROUND 40" @@ -5462,9 +4552,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 1845, "searchTerms": [ "JOYFUL" @@ -5474,9 +4562,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 1846, "searchTerms": [ "KIMINO SIRANAI " @@ -5486,9 +4572,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 1847, "searchTerms": [ "VENUS AND GESUS" @@ -5498,9 +4582,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 1848, "searchTerms": [ "OKURU KOTOBA" @@ -5510,9 +4592,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 1850, "searchTerms": [ "CHANGE" @@ -5522,9 +4602,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 1851, "searchTerms": [ "HIT IN THE USA" @@ -5534,9 +4612,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 1853, "searchTerms": [ "GOLD" @@ -5546,9 +4622,7 @@ { "altTitles": [], "artist": "GALNERYUS", - "data": { - "isHot": false - }, + "data": {}, "id": 1855, "searchTerms": [ "DESTINY" @@ -5558,9 +4632,7 @@ { "altTitles": [], "artist": "THE UNIQUE STAR", - "data": { - "isHot": false - }, + "data": {}, "id": 1856, "searchTerms": [ "BATAFLY KYOSOKY" @@ -5570,9 +4642,7 @@ { "altTitles": [], "artist": "KARIYUSHI58", - "data": { - "isHot": false - }, + "data": {}, "id": 1863, "searchTerms": [ "ANMA" @@ -5582,9 +4652,7 @@ { "altTitles": [], "artist": "GAGAGASP", - "data": { - "isHot": false - }, + "data": {}, "id": 1864, "searchTerms": [ "SOTSUGYO" @@ -5594,9 +4662,7 @@ { "altTitles": [], "artist": "CELICA AND ERIK", - "data": { - "isHot": false - }, + "data": {}, "id": 1865, "searchTerms": [ "TAKARAMONO" @@ -5606,9 +4672,7 @@ { "altTitles": [], "artist": "TERRA", - "data": { - "isHot": true - }, + "data": {}, "id": 1866, "searchTerms": [ "SACRED OATH" @@ -5618,9 +4682,7 @@ { "altTitles": [], "artist": "96", - "data": { - "isHot": true - }, + "data": {}, "id": 1867, "searchTerms": [ "AREA 51" @@ -5630,9 +4692,7 @@ { "altTitles": [], "artist": "MURAMASAKUORIA", - "data": { - "isHot": true - }, + "data": {}, "id": 1868, "searchTerms": [ "KUROKAMI MIDARE" @@ -5642,9 +4702,7 @@ { "altTitles": [], "artist": "PON", - "data": { - "isHot": false - }, + "data": {}, "id": 1869, "searchTerms": [ "YUSEI OVER DOS" @@ -5654,9 +4712,7 @@ { "altTitles": [], "artist": "THE GAZETTE", - "data": { - "isHot": false - }, + "data": {}, "id": 1870, "searchTerms": [ "BEFORE I DECAY" @@ -5666,9 +4722,7 @@ { "altTitles": [], "artist": "ASAKI", - "data": { - "isHot": true - }, + "data": {}, "id": 1871, "searchTerms": [ "YUKISUGITE ATON" @@ -5678,9 +4732,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 1872, "searchTerms": [ "SPIRAL WIND" @@ -5690,9 +4742,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": false - }, + "data": {}, "id": 1873, "searchTerms": [ "FIFTH GIG TYPE " @@ -5702,9 +4752,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 1900, "searchTerms": [ "SNOWY INDIA" @@ -5714,9 +4762,7 @@ { "altTitles": [], "artist": "THOMAS HOWARD L", - "data": { - "isHot": true - }, + "data": {}, "id": 1901, "searchTerms": [ "POWER" @@ -5726,9 +4772,7 @@ { "altTitles": [], "artist": "96", - "data": { - "isHot": true - }, + "data": {}, "id": 1902, "searchTerms": [ "SCREW DRIVER" @@ -5738,9 +4782,7 @@ { "altTitles": [], "artist": "2B-WAVES", - "data": { - "isHot": true - }, + "data": {}, "id": 1903, "searchTerms": [ "ULTRAMARINE AND" @@ -5750,9 +4792,7 @@ { "altTitles": [], "artist": "NANA", - "data": { - "isHot": true - }, + "data": {}, "id": 1904, "searchTerms": [ "HEART JACK" @@ -5762,9 +4802,7 @@ { "altTitles": [], "artist": "YOSHIHIKO KOEZU", - "data": { - "isHot": true - }, + "data": {}, "id": 1905, "searchTerms": [ "TIME CAPSULE" @@ -5774,9 +4812,7 @@ { "altTitles": [], "artist": "KORS K FEAT.SUN", - "data": { - "isHot": false - }, + "data": {}, "id": 1906, "searchTerms": [ "RUSH" @@ -5786,9 +4822,7 @@ { "altTitles": [], "artist": "ASAKI", - "data": { - "isHot": true - }, + "data": {}, "id": 1907, "searchTerms": [ "" @@ -5798,9 +4832,7 @@ { "altTitles": [], "artist": "SHOGO", - "data": { - "isHot": false - }, + "data": {}, "id": 1908, "searchTerms": [ "RESTART" @@ -5810,9 +4842,7 @@ { "altTitles": [], "artist": "DOUBLE IMPACT", - "data": { - "isHot": true - }, + "data": {}, "id": 1909, "searchTerms": [ "DOUBLE IMPACT" @@ -5822,9 +4852,7 @@ { "altTitles": [], "artist": "WORLD SEQUENCE", - "data": { - "isHot": false - }, + "data": {}, "id": 1910, "searchTerms": [ "PLAYING OF TWIN" @@ -5834,9 +4862,7 @@ { "altTitles": [], "artist": "PON", - "data": { - "isHot": true - }, + "data": {}, "id": 1911, "searchTerms": [ "YAMIKURA" @@ -5846,9 +4872,7 @@ { "altTitles": [], "artist": "A-TAN", - "data": { - "isHot": true - }, + "data": {}, "id": 1912, "searchTerms": [ "UTANOTSUBASA" @@ -5858,9 +4882,7 @@ { "altTitles": [], "artist": "QRISPY JOYBOX F", - "data": { - "isHot": false - }, + "data": {}, "id": 1913, "searchTerms": [ "SHOUT" @@ -5870,9 +4892,7 @@ { "altTitles": [], "artist": "KATANA SOUNDS V", - "data": { - "isHot": true - }, + "data": {}, "id": 1914, "searchTerms": [ "CHAIN REACTION " @@ -5882,9 +4902,7 @@ { "altTitles": [], "artist": "BEACH SANDALS", - "data": { - "isHot": true - }, + "data": {}, "id": 1915, "searchTerms": [ "NATSU KOI MONSI" @@ -5894,9 +4912,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 1916, "searchTerms": [ "MODEL DD10" @@ -5906,9 +4922,7 @@ { "altTitles": [], "artist": "MEGUMI TATSUMI ", - "data": { - "isHot": false - }, + "data": {}, "id": 1917, "searchTerms": [ "SUMMER HOLIDAY" @@ -5918,9 +4932,7 @@ { "altTitles": [], "artist": "96", - "data": { - "isHot": false - }, + "data": {}, "id": 1918, "searchTerms": [ "PREDATOR'S CRYP" @@ -5930,9 +4942,7 @@ { "altTitles": [], "artist": "96", - "data": { - "isHot": false - }, + "data": {}, "id": 1919, "searchTerms": [ "PREDATOR'S CRYP" @@ -5942,9 +4952,7 @@ { "altTitles": [], "artist": "DORMIR", - "data": { - "isHot": true - }, + "data": {}, "id": 1920, "searchTerms": [ "HOSHIYUME" @@ -5954,9 +4962,7 @@ { "altTitles": [], "artist": "VOX", - "data": { - "isHot": true - }, + "data": {}, "id": 1921, "searchTerms": [ "OVERVIEWS" @@ -5966,9 +4972,7 @@ { "altTitles": [], "artist": "TIME CAPSULE LA", - "data": { - "isHot": true - }, + "data": {}, "id": 1922, "searchTerms": [ "GRAVITON" @@ -5978,9 +4982,7 @@ { "altTitles": [], "artist": "SOTA FUJIMORI", - "data": { - "isHot": true - }, + "data": {}, "id": 1923, "searchTerms": [ "GIVE ME MORE" @@ -5990,9 +4992,7 @@ { "altTitles": [], "artist": "YOSHIHIKO KOEZU", - "data": { - "isHot": true - }, + "data": {}, "id": 1924, "searchTerms": [ "ORANGE FLOWER G" @@ -6002,9 +5002,7 @@ { "altTitles": [], "artist": "GEKIDAN RECORD ", - "data": { - "isHot": true - }, + "data": {}, "id": 1925, "searchTerms": [ "KOUSHAKUFUJIN N" @@ -6014,9 +5012,7 @@ { "altTitles": [], "artist": "AIKO OI", - "data": { - "isHot": true - }, + "data": {}, "id": 1926, "searchTerms": [ "GENESIS CREATIO" @@ -6026,9 +5022,7 @@ { "altTitles": [], "artist": "GOOD-COOL FT. S", - "data": { - "isHot": false - }, + "data": {}, "id": 1927, "searchTerms": [ "GYAKUNANSARETAN" @@ -6038,9 +5032,7 @@ { "altTitles": [], "artist": "JIN SENBONMATSU", - "data": { - "isHot": true - }, + "data": {}, "id": 1928, "searchTerms": [ "XENON" @@ -6050,9 +5042,7 @@ { "altTitles": [], "artist": "PINK TURBO", - "data": { - "isHot": false - }, + "data": {}, "id": 1929, "searchTerms": [ "SERIAL NUMBER" @@ -6062,9 +5052,7 @@ { "altTitles": [], "artist": "GOOD-COOL", - "data": { - "isHot": false - }, + "data": {}, "id": 1930, "searchTerms": [ "EASTERN LARIAT" @@ -6074,9 +5062,7 @@ { "altTitles": [], "artist": "TOM-HACK FEAT.N", - "data": { - "isHot": false - }, + "data": {}, "id": 1931, "searchTerms": [ "DRAGONTAIL BUTT" @@ -6086,9 +5072,7 @@ { "altTitles": [], "artist": "TAKAO NAGATANI", - "data": { - "isHot": false - }, + "data": {}, "id": 1932, "searchTerms": [ "LOVE WAR" @@ -6098,9 +5082,7 @@ { "altTitles": [], "artist": "MEGUMI TATSUMI ", - "data": { - "isHot": false - }, + "data": {}, "id": 1933, "searchTerms": [ "TSUBOMI" @@ -6110,9 +5092,7 @@ { "altTitles": [], "artist": "TAKAO NAGATANI", - "data": { - "isHot": false - }, + "data": {}, "id": 1934, "searchTerms": [ "SPECTRUM" @@ -6122,9 +5102,7 @@ { "altTitles": [], "artist": "MILLLL", - "data": { - "isHot": false - }, + "data": {}, "id": 1935, "searchTerms": [ "" @@ -6134,9 +5112,7 @@ { "altTitles": [], "artist": "YOSUKE ONISHI", - "data": { - "isHot": true - }, + "data": {}, "id": 1936, "searchTerms": [ "RAIDILLON" @@ -6146,9 +5122,7 @@ { "altTitles": [], "artist": "DEAR BREEZE STU", - "data": { - "isHot": true - }, + "data": {}, "id": 1937, "searchTerms": [ "GONG" @@ -6158,9 +5132,7 @@ { "altTitles": [], "artist": "MOTOI SAKURABA", - "data": { - "isHot": false - }, + "data": {}, "id": 1938, "searchTerms": [ "HARD DISTANCE" @@ -6170,9 +5142,7 @@ { "altTitles": [], "artist": "TLION69", - "data": { - "isHot": false - }, + "data": {}, "id": 1939, "searchTerms": [ "ONLY ONE" @@ -6182,9 +5152,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 1940, "searchTerms": [ "NATSUMATSURI" @@ -6194,9 +5162,7 @@ { "altTitles": [], "artist": "GALNERYUS", - "data": { - "isHot": false - }, + "data": {}, "id": 1942, "searchTerms": [ "NEW LEGEND" @@ -6206,9 +5172,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 1943, "searchTerms": [ "RUNWAY BEAT" @@ -6218,9 +5182,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": false - }, + "data": {}, "id": 1944, "searchTerms": [ "MIMITABU 2GOU" @@ -6230,9 +5192,7 @@ { "altTitles": [], "artist": "DRAGON GUARDIAN", - "data": { - "isHot": false - }, + "data": {}, "id": 1945, "searchTerms": [ "ANKOKU BUTOUKAI" @@ -6242,9 +5202,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 1949, "searchTerms": [ "FLYING GET" @@ -6254,9 +5212,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": false - }, + "data": {}, "id": 1950, "searchTerms": [ "WARATTETAINDA" @@ -6266,9 +5222,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 1951, "searchTerms": [ "LISTEN TO THE S" @@ -6278,9 +5232,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 1952, "searchTerms": [ "ETERNAL BLAZE" @@ -6290,9 +5242,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 1953, "searchTerms": [ "SAMURAI HEART" @@ -6302,9 +5252,7 @@ { "altTitles": [], "artist": "TATSH FEAT. REN", - "data": { - "isHot": false - }, + "data": {}, "id": 1956, "searchTerms": [ "RYUUSEI JUMP" @@ -6314,9 +5262,7 @@ { "altTitles": [], "artist": "ANOTHER INFINIT", - "data": { - "isHot": true - }, + "data": {}, "id": 1957, "searchTerms": [ "800NM" @@ -6326,9 +5272,7 @@ { "altTitles": [], "artist": "KENJI SUZUKI", - "data": { - "isHot": true - }, + "data": {}, "id": 1958, "searchTerms": [ "MOON OF MUSE" @@ -6338,9 +5282,7 @@ { "altTitles": [], "artist": "ALLY AND DIAZ F", - "data": { - "isHot": true - }, + "data": {}, "id": 1959, "searchTerms": [ "FREEKY TECHNIQU" @@ -6350,9 +5292,7 @@ { "altTitles": [], "artist": "SHOGO", - "data": { - "isHot": true - }, + "data": {}, "id": 1960, "searchTerms": [ "REPRISE" @@ -6362,9 +5302,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 1961, "searchTerms": [ "SNOW GOOSE GFDM" @@ -6374,9 +5312,7 @@ { "altTitles": [], "artist": "DJ YOSHITAKA FE", - "data": { - "isHot": false - }, + "data": {}, "id": 1962, "searchTerms": [ "FLOWER -TLION69" @@ -6386,9 +5322,7 @@ { "altTitles": [], "artist": "RYU", - "data": { - "isHot": false - }, + "data": {}, "id": 1963, "searchTerms": [ "IM SO HAPPY (RO" @@ -6398,9 +5332,7 @@ { "altTitles": [], "artist": "S-C-U WITH OJ", - "data": { - "isHot": false - }, + "data": {}, "id": 1964, "searchTerms": [ "CONCON INAREMIX" @@ -6410,9 +5342,7 @@ { "altTitles": [], "artist": "SEIYA-MURAI FEA", - "data": { - "isHot": false - }, + "data": {}, "id": 1965, "searchTerms": [ "SUMIDAGAWA KARE" @@ -6422,9 +5352,7 @@ { "altTitles": [], "artist": "PON", - "data": { - "isHot": true - }, + "data": {}, "id": 1966, "searchTerms": [ "FRIENDSHIP" @@ -6434,9 +5362,7 @@ { "altTitles": [], "artist": "96", - "data": { - "isHot": true - }, + "data": {}, "id": 1967, "searchTerms": [ "DEVIL FISH DUMP" @@ -6446,9 +5372,7 @@ { "altTitles": [], "artist": "YOSHIHIKO KOEZU", - "data": { - "isHot": true - }, + "data": {}, "id": 1968, "searchTerms": [ "STARLIGHT PARAD" @@ -6458,9 +5382,7 @@ { "altTitles": [], "artist": "YOSHIHIKO KOEZU", - "data": { - "isHot": true - }, + "data": {}, "id": 1969, "searchTerms": [ "PLUM" @@ -6470,9 +5392,7 @@ { "altTitles": [], "artist": "TAG", - "data": { - "isHot": true - }, + "data": {}, "id": 1970, "searchTerms": [ "RIOT OF COLOR " @@ -6482,9 +5402,7 @@ { "altTitles": [], "artist": "DNM MORIAGETAI", - "data": { - "isHot": true - }, + "data": {}, "id": 1972, "searchTerms": [ "GITA DORA JUBEA" @@ -6494,9 +5412,7 @@ { "altTitles": [], "artist": "2B-WAVES", - "data": { - "isHot": true - }, + "data": {}, "id": 1974, "searchTerms": [ "RENSEN RYOURAN" @@ -6506,9 +5422,7 @@ { "altTitles": [], "artist": "PON", - "data": { - "isHot": false - }, + "data": {}, "id": 1975, "searchTerms": [ "SCARLET BLAZE" @@ -6518,9 +5432,7 @@ { "altTitles": [], "artist": "TAG FEAT. MUTSU", - "data": { - "isHot": true - }, + "data": {}, "id": 1976, "searchTerms": [ "COSMIC HURRICAN" @@ -6530,9 +5442,7 @@ { "altTitles": [], "artist": "QRISPY JOYBOX", - "data": { - "isHot": true - }, + "data": {}, "id": 1977, "searchTerms": [ "SNOW PRISM (GFD" @@ -6542,9 +5452,7 @@ { "altTitles": [], "artist": "MICHAN", - "data": { - "isHot": false - }, + "data": {}, "id": 1980, "searchTerms": [ "SPACE DRIVER" @@ -6554,9 +5462,7 @@ { "altTitles": [], "artist": "RISK JUNK", - "data": { - "isHot": false - }, + "data": {}, "id": 1981, "searchTerms": [ "QUAVER GITADORA" @@ -6566,9 +5472,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": false - }, + "data": {}, "id": 1982, "searchTerms": [ "POLARIS" @@ -6578,9 +5482,7 @@ { "altTitles": [], "artist": "96", - "data": { - "isHot": true - }, + "data": {}, "id": 1983, "searchTerms": [ "GIGA BREAK" @@ -6590,9 +5492,7 @@ { "altTitles": [], "artist": "DES-SANA+WPT9", - "data": { - "isHot": false - }, + "data": {}, "id": 1984, "searchTerms": [ "QUILT" @@ -6602,9 +5502,7 @@ { "altTitles": [], "artist": "YOKO ARAMAKI", - "data": { - "isHot": true - }, + "data": {}, "id": 1985, "searchTerms": [ "SANDOGASA PONTA" @@ -6614,9 +5512,7 @@ { "altTitles": [], "artist": "GYRAGYRA GANTAI", - "data": { - "isHot": true - }, + "data": {}, "id": 1986, "searchTerms": [ "JISEITEMPERATE " @@ -6626,9 +5522,7 @@ { "altTitles": [], "artist": "96 VS. MUTSUHIK", - "data": { - "isHot": false - }, + "data": {}, "id": 1987, "searchTerms": [ "DRAGON KILLER" @@ -6638,9 +5532,7 @@ { "altTitles": [], "artist": "GYRAGYRA MEGANE", - "data": { - "isHot": true - }, + "data": {}, "id": 1988, "searchTerms": [ "POP MUSIC THEOR" @@ -6650,9 +5542,7 @@ { "altTitles": [], "artist": "MEGUMI TATSUMI ", - "data": { - "isHot": false - }, + "data": {}, "id": 2000, "searchTerms": [ "KIKEN-NA KAJITS" @@ -6662,9 +5552,7 @@ { "altTitles": [], "artist": "YOSHIMI KUDO BA", - "data": { - "isHot": false - }, + "data": {}, "id": 2001, "searchTerms": [ "CRIMSON GATE" @@ -6674,9 +5562,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 2002, "searchTerms": [ "MODEL FT3" @@ -6686,9 +5572,7 @@ { "altTitles": [], "artist": "APACHE WITH T_D", - "data": { - "isHot": true - }, + "data": {}, "id": 2003, "searchTerms": [ "020 ROULETTE" @@ -6698,9 +5582,7 @@ { "altTitles": [], "artist": "KORS K FEAT.SUN", - "data": { - "isHot": false - }, + "data": {}, "id": 2004, "searchTerms": [ "SPEEDERS" @@ -6710,9 +5592,7 @@ { "altTitles": [], "artist": "STRAND", - "data": { - "isHot": false - }, + "data": {}, "id": 2005, "searchTerms": [ "S. LAUNCHER" @@ -6722,9 +5602,7 @@ { "altTitles": [], "artist": "TATSH FEAT. REN", - "data": { - "isHot": true - }, + "data": {}, "id": 2006, "searchTerms": [ "LIKE LOVE" @@ -6734,9 +5612,7 @@ { "altTitles": [], "artist": "DOUBLE IMPACT", - "data": { - "isHot": false - }, + "data": {}, "id": 2007, "searchTerms": [ "OVERHEAT TYPE G" @@ -6746,9 +5622,7 @@ { "altTitles": [], "artist": "RYU", - "data": { - "isHot": true - }, + "data": {}, "id": 2008, "searchTerms": [ "RUN RUN" @@ -6758,9 +5632,7 @@ { "altTitles": [], "artist": "HIDEYUKI ONO 96", - "data": { - "isHot": true - }, + "data": {}, "id": 2009, "searchTerms": [ "SOLA GITADORA V" @@ -6770,9 +5642,7 @@ { "altTitles": [], "artist": "KOHTA", - "data": { - "isHot": false - }, + "data": {}, "id": 2010, "searchTerms": [ "AWAKEN VER.G" @@ -6782,9 +5652,7 @@ { "altTitles": [], "artist": "TRICK TRAP", - "data": { - "isHot": true - }, + "data": {}, "id": 2011, "searchTerms": [ "RED HAZE" @@ -6794,9 +5662,7 @@ { "altTitles": [], "artist": "SYOHEI KUBOTA", - "data": { - "isHot": false - }, + "data": {}, "id": 2012, "searchTerms": [ "VOICE" @@ -6806,9 +5672,7 @@ { "altTitles": [], "artist": "ITOKEN VS. 96", - "data": { - "isHot": false - }, + "data": {}, "id": 2013, "searchTerms": [ "SCREAMING YOUR " @@ -6818,9 +5682,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": false - }, + "data": {}, "id": 2014, "searchTerms": [ "ROCKET MAN" @@ -6830,9 +5692,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 2015, "searchTerms": [ "GENROKU HANAFUB" @@ -6842,9 +5702,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 2016, "searchTerms": [ "BLUE BOOTS" @@ -6854,9 +5712,7 @@ { "altTitles": [], "artist": "KUMIKO ISHIZAKA", - "data": { - "isHot": true - }, + "data": {}, "id": 2017, "searchTerms": [ "DIGITAL GIRL" @@ -6866,9 +5722,7 @@ { "altTitles": [], "artist": "2B-WAVES", - "data": { - "isHot": true - }, + "data": {}, "id": 2018, "searchTerms": [ "BOKURA NO TRIP " @@ -6878,9 +5732,7 @@ { "altTitles": [], "artist": "NIKE FEATURING ", - "data": { - "isHot": true - }, + "data": {}, "id": 2019, "searchTerms": [ "RETURN OF THE T" @@ -6890,9 +5742,7 @@ { "altTitles": [], "artist": "ASAKI", - "data": { - "isHot": true - }, + "data": {}, "id": 2020, "searchTerms": [ "MEMENTO MORI -I" @@ -6902,9 +5752,7 @@ { "altTitles": [], "artist": "AKHUTA", - "data": { - "isHot": true - }, + "data": {}, "id": 2021, "searchTerms": [ "NOLI ME TANGERE" @@ -6914,9 +5762,7 @@ { "altTitles": [], "artist": "YAMATOGUMI-", - "data": { - "isHot": false - }, + "data": {}, "id": 2022, "searchTerms": [ "MOGITATE ANGEL" @@ -6926,9 +5772,7 @@ { "altTitles": [], "artist": "TAG", - "data": { - "isHot": true - }, + "data": {}, "id": 2023, "searchTerms": [ "FLY WITH ME" @@ -6938,9 +5782,7 @@ { "altTitles": [], "artist": "96", - "data": { - "isHot": true - }, + "data": {}, "id": 2024, "searchTerms": [ "SPRING BAZOOKA" @@ -6950,9 +5792,7 @@ { "altTitles": [], "artist": "AKHUTA", - "data": { - "isHot": true - }, + "data": {}, "id": 2025, "searchTerms": [ "ARENA SEXARBORI" @@ -6962,9 +5802,7 @@ { "altTitles": [], "artist": "YURIE SUZUKI", - "data": { - "isHot": true - }, + "data": {}, "id": 2026, "searchTerms": [ "KIMI TO ONAZI K" @@ -6974,9 +5812,7 @@ { "altTitles": [], "artist": "PON", - "data": { - "isHot": true - }, + "data": {}, "id": 2027, "searchTerms": [ "RAIKUN" @@ -6986,9 +5822,7 @@ { "altTitles": [], "artist": "SYOHEI KUBOTA", - "data": { - "isHot": true - }, + "data": {}, "id": 2028, "searchTerms": [ "BOKUTOSAYONARAN" @@ -6998,9 +5832,7 @@ { "altTitles": [], "artist": "SEIYA-MURAI FEA", - "data": { - "isHot": true - }, + "data": {}, "id": 2029, "searchTerms": [ "GARASUGOSHI BAI" @@ -7010,9 +5842,7 @@ { "altTitles": [], "artist": "URAMADONNA DA P", - "data": { - "isHot": false - }, + "data": {}, "id": 2030, "searchTerms": [ "HUREHURENELTUKE" @@ -7022,9 +5852,7 @@ { "altTitles": [], "artist": "SOTA FUJIMORI", - "data": { - "isHot": true - }, + "data": {}, "id": 2031, "searchTerms": [ "METALLIC" @@ -7034,9 +5862,7 @@ { "altTitles": [], "artist": "NECOMATA MODIFY", - "data": { - "isHot": false - }, + "data": {}, "id": 2032, "searchTerms": [ "FAT SNAIL" @@ -7046,9 +5872,7 @@ { "altTitles": [], "artist": "MAJISKA", - "data": { - "isHot": true - }, + "data": {}, "id": 2033, "searchTerms": [ "MIKENEKO ROCK'N" @@ -7058,9 +5882,7 @@ { "altTitles": [], "artist": "GEKIDAN RECORD ", - "data": { - "isHot": true - }, + "data": {}, "id": 2034, "searchTerms": [ "KONRINZAI NO EL" @@ -7070,9 +5892,7 @@ { "altTitles": [], "artist": "HINATABI BITTER", - "data": { - "isHot": true - }, + "data": {}, "id": 2035, "searchTerms": [ "MEU MEU PETTANT" @@ -7082,9 +5902,7 @@ { "altTitles": [], "artist": "AIKO OI", - "data": { - "isHot": true - }, + "data": {}, "id": 2036, "searchTerms": [ "MOTHER TREE" @@ -7094,9 +5912,7 @@ { "altTitles": [], "artist": "TIME CAPSULE LA", - "data": { - "isHot": true - }, + "data": {}, "id": 2037, "searchTerms": [ "JASPER" @@ -7106,9 +5922,7 @@ { "altTitles": [], "artist": "ATSUKI", - "data": { - "isHot": false - }, + "data": {}, "id": 2038, "searchTerms": [ "SUMMER LADY" @@ -7118,9 +5932,7 @@ { "altTitles": [], "artist": "TLION69", - "data": { - "isHot": false - }, + "data": {}, "id": 2039, "searchTerms": [ "AMENOCHI HELLO" @@ -7130,9 +5942,7 @@ { "altTitles": [], "artist": "TLION69", - "data": { - "isHot": false - }, + "data": {}, "id": 2040, "searchTerms": [ "NO WHERE NOW HE" @@ -7142,9 +5952,7 @@ { "altTitles": [], "artist": "MILLLL", - "data": { - "isHot": false - }, + "data": {}, "id": 2041, "searchTerms": [ "ORE TO AI TO RO" @@ -7154,9 +5962,7 @@ { "altTitles": [], "artist": "SUGARLESS SUGAR", - "data": { - "isHot": false - }, + "data": {}, "id": 2042, "searchTerms": [ "GIVE US KISS!" @@ -7166,9 +5972,7 @@ { "altTitles": [], "artist": "TAKAO NAGATANI", - "data": { - "isHot": false - }, + "data": {}, "id": 2043, "searchTerms": [ "TRICK" @@ -7178,9 +5982,7 @@ { "altTitles": [], "artist": "TAKAO NAGATANI", - "data": { - "isHot": false - }, + "data": {}, "id": 2044, "searchTerms": [ "KOWARESOUNAMONO" @@ -7190,9 +5992,7 @@ { "altTitles": [], "artist": "TOM-HACK FEAT.N", - "data": { - "isHot": false - }, + "data": {}, "id": 2045, "searchTerms": [ "8 EIGHT" @@ -7202,9 +6002,7 @@ { "altTitles": [], "artist": "MOTOI SAKURABA", - "data": { - "isHot": true - }, + "data": {}, "id": 2046, "searchTerms": [ "CRAZY BLOOMS" @@ -7214,9 +6012,7 @@ { "altTitles": [], "artist": "YASUHIRO ABE FE", - "data": { - "isHot": false - }, + "data": {}, "id": 2047, "searchTerms": [ "DREAM KISS" @@ -7226,9 +6022,7 @@ { "altTitles": [], "artist": "YOSHIMI KUDO BA", - "data": { - "isHot": true - }, + "data": {}, "id": 2048, "searchTerms": [ "SENJYO NO TAKTS" @@ -7238,9 +6032,7 @@ { "altTitles": [], "artist": "SIN EX.KAGRRA,", - "data": { - "isHot": false - }, + "data": {}, "id": 2049, "searchTerms": [ "KUUSOU RENDEZ-V" @@ -7250,9 +6042,7 @@ { "altTitles": [], "artist": "KIRYU", - "data": { - "isHot": false - }, + "data": {}, "id": 2055, "searchTerms": [ "KYOSEI" @@ -7262,9 +6052,7 @@ { "altTitles": [], "artist": "JIN", - "data": { - "isHot": false - }, + "data": {}, "id": 2056, "searchTerms": [ "YOBANASHIDISAVE" @@ -7274,9 +6062,7 @@ { "altTitles": [], "artist": "X.Y.Z.TOA", - "data": { - "isHot": false - }, + "data": {}, "id": 2058, "searchTerms": [ "PATRIOT'S DREAM" @@ -7286,9 +6072,7 @@ { "altTitles": [], "artist": "PILOKALPIN", - "data": { - "isHot": false - }, + "data": {}, "id": 2063, "searchTerms": [ "ROCKSTAR TO MAH" @@ -7298,9 +6082,7 @@ { "altTitles": [], "artist": "MY FIRST STORY", - "data": { - "isHot": false - }, + "data": {}, "id": 2064, "searchTerms": [ "SAISHUUKAI STOR" @@ -7310,9 +6092,7 @@ { "altTitles": [], "artist": "MY FIRST STORY", - "data": { - "isHot": false - }, + "data": {}, "id": 2065, "searchTerms": [ "SECOND LIMIT" @@ -7322,9 +6102,7 @@ { "altTitles": [], "artist": "96", - "data": { - "isHot": true - }, + "data": {}, "id": 2071, "searchTerms": [ "SHINING WIZARD" @@ -7334,9 +6112,7 @@ { "altTitles": [], "artist": "NEKOMATA-MASTER", - "data": { - "isHot": true - }, + "data": {}, "id": 2072, "searchTerms": [ "NIGHTBIRD LOST " @@ -7346,9 +6122,7 @@ { "altTitles": [], "artist": "TRIUMVIRATE", - "data": { - "isHot": true - }, + "data": {}, "id": 2073, "searchTerms": [ "TRIPLE JOURNEY " @@ -7358,9 +6132,7 @@ { "altTitles": [], "artist": "NATSUIRO BIKINI", - "data": { - "isHot": true - }, + "data": {}, "id": 2074, "searchTerms": [ "NAGISANO KOAKUM" @@ -7370,9 +6142,7 @@ { "altTitles": [], "artist": "YOSHIHIKO KOEZU", - "data": { - "isHot": true - }, + "data": {}, "id": 2075, "searchTerms": [ "CASSIS" @@ -7382,9 +6152,7 @@ { "altTitles": [], "artist": "AKHUTA", - "data": { - "isHot": true - }, + "data": {}, "id": 2076, "searchTerms": [ "SHIGAN NO ZAREG" @@ -7394,9 +6162,7 @@ { "altTitles": [], "artist": "TAG FEAT. 96", - "data": { - "isHot": false - }, + "data": {}, "id": 2077, "searchTerms": [ "HEART BEAT FORM" @@ -7406,9 +6172,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": false - }, + "data": {}, "id": 2078, "searchTerms": [ "SPANISH SNOWY D" @@ -7418,9 +6182,7 @@ { "altTitles": [], "artist": "REDALICE FEAT. ", - "data": { - "isHot": true - }, + "data": {}, "id": 2079, "searchTerms": [ "BEAUTIFUL DREAM" @@ -7430,9 +6192,7 @@ { "altTitles": [], "artist": "RYU", - "data": { - "isHot": true - }, + "data": {}, "id": 2080, "searchTerms": [ "SAKURA SUNRISE " @@ -7442,9 +6202,7 @@ { "altTitles": [], "artist": "S-C-U WITH OJ", - "data": { - "isHot": true - }, + "data": {}, "id": 2081, "searchTerms": [ "HERON -GITADORO" @@ -7454,9 +6212,7 @@ { "altTitles": [], "artist": "BLACK CAT LABYR", - "data": { - "isHot": false - }, + "data": {}, "id": 2082, "searchTerms": [ "LINDWURM" @@ -7466,9 +6222,7 @@ { "altTitles": [], "artist": "PRIVATE BEMANI ", - "data": { - "isHot": true - }, + "data": {}, "id": 2083, "searchTerms": [ "ENDLESS CHAIN L" @@ -7478,9 +6232,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 2084, "searchTerms": [ "YASASHISANORIYU" @@ -7490,9 +6242,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 2085, "searchTerms": [ "MOURETUUCHUUKYO" @@ -7502,9 +6252,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 2089, "searchTerms": [ "KATARURHYTHM" @@ -7514,9 +6262,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 2091, "searchTerms": [ "FASHION MONSTER" @@ -7526,9 +6272,7 @@ { "altTitles": [], "artist": "LAST NOTE. FEAT", - "data": { - "isHot": false - }, + "data": {}, "id": 2093, "searchTerms": [ "SETUNATRIP" @@ -7538,9 +6282,7 @@ { "altTitles": [], "artist": "LAST NOTE.", - "data": { - "isHot": false - }, + "data": {}, "id": 2094, "searchTerms": [ "HOUKAGOSTRIDE" @@ -7550,9 +6292,7 @@ { "altTitles": [], "artist": "KAIRIKIBEAR", - "data": { - "isHot": false - }, + "data": {}, "id": 2095, "searchTerms": [ "MANEMANESAIKOTO" @@ -7562,9 +6302,7 @@ { "altTitles": [], "artist": "MELODYLIEN", - "data": { - "isHot": false - }, + "data": {}, "id": 2096, "searchTerms": [ "GEIGEKINOFORTE" @@ -7574,9 +6312,7 @@ { "altTitles": [], "artist": "CHOCOCHIPS", - "data": { - "isHot": true - }, + "data": {}, "id": 2097, "searchTerms": [ "LINK UP" @@ -7586,9 +6322,7 @@ { "altTitles": [], "artist": "MELODYLIEN", - "data": { - "isHot": true - }, + "data": {}, "id": 2098, "searchTerms": [ "SHINDOUDESIRE" @@ -7598,9 +6332,7 @@ { "altTitles": [], "artist": "HINATABI BITTER", - "data": { - "isHot": true - }, + "data": {}, "id": 2099, "searchTerms": [ "CHIKUWA PARFAIT" @@ -7610,9 +6342,7 @@ { "altTitles": [], "artist": "DJ TAKA MEETS D", - "data": { - "isHot": true - }, + "data": {}, "id": 2100, "searchTerms": [ "ELEMENTAL CREAT" @@ -7622,9 +6352,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 2101, "searchTerms": [ "RAKIRAKI (GITAD" @@ -7634,9 +6362,7 @@ { "altTitles": [], "artist": "TOMOSUKE SEIYA-", - "data": { - "isHot": true - }, + "data": {}, "id": 2102, "searchTerms": [ "SEITEN BON VOYA" @@ -7646,9 +6372,7 @@ { "altTitles": [], "artist": "MAX MAXIMIZER V", - "data": { - "isHot": true - }, + "data": {}, "id": 2103, "searchTerms": [ "STULTI" @@ -7658,9 +6382,7 @@ { "altTitles": [], "artist": "AKHUTA Y OJ", - "data": { - "isHot": false - }, + "data": {}, "id": 2104, "searchTerms": [ "NIJIIRO NO HANA" @@ -7670,9 +6392,7 @@ { "altTitles": [], "artist": "GREAT JAPAN MET", - "data": { - "isHot": true - }, + "data": {}, "id": 2105, "searchTerms": [ "HOW TO COOK DEL" @@ -7682,9 +6402,7 @@ { "altTitles": [], "artist": "PON+WAC", - "data": { - "isHot": true - }, + "data": {}, "id": 2106, "searchTerms": [ "GENESIS NOTE" @@ -7694,9 +6412,7 @@ { "altTitles": [], "artist": "TAG U1-ASAMI", - "data": { - "isHot": false - }, + "data": {}, "id": 2107, "searchTerms": [ "SYNERGY FOR ANG" @@ -7706,9 +6422,7 @@ { "altTitles": [], "artist": "SOTA WARU DES", - "data": { - "isHot": false - }, + "data": {}, "id": 2108, "searchTerms": [ "EMPATHETIC" @@ -7718,9 +6432,7 @@ { "altTitles": [], "artist": "NEKOMATA L.E.D.", - "data": { - "isHot": false - }, + "data": {}, "id": 2109, "searchTerms": [ "GAIA" @@ -7730,9 +6442,7 @@ { "altTitles": [], "artist": "SATANA", - "data": { - "isHot": false - }, + "data": {}, "id": 2110, "searchTerms": [ "MANDARA" @@ -7742,9 +6452,7 @@ { "altTitles": [], "artist": "OUKA", - "data": { - "isHot": false - }, + "data": {}, "id": 2111, "searchTerms": [ "DESTROY MARCH" @@ -7754,9 +6462,7 @@ { "altTitles": [], "artist": "KE-JI", - "data": { - "isHot": false - }, + "data": {}, "id": 2112, "searchTerms": [ "JOYEUSE" @@ -7766,9 +6472,7 @@ { "altTitles": [], "artist": "98", - "data": { - "isHot": true - }, + "data": {}, "id": 2113, "searchTerms": [ "BYAKKO TENSEI R" @@ -7778,9 +6482,7 @@ { "altTitles": [], "artist": "MEGUMI TATSUMI ", - "data": { - "isHot": true - }, + "data": {}, "id": 2114, "searchTerms": [ "NONFICTION WORL" @@ -7790,9 +6492,7 @@ { "altTitles": [], "artist": "GOOD-COOL FT. S", - "data": { - "isHot": false - }, + "data": {}, "id": 2115, "searchTerms": [ "BONBEESKIP" @@ -7802,9 +6502,7 @@ { "altTitles": [], "artist": "AKHUTA", - "data": { - "isHot": true - }, + "data": {}, "id": 2116, "searchTerms": [ "VENEFICUS VERTI" @@ -7814,9 +6512,7 @@ { "altTitles": [], "artist": "96", - "data": { - "isHot": true - }, + "data": {}, "id": 2117, "searchTerms": [ "HYDRA" @@ -7826,9 +6522,7 @@ { "altTitles": [], "artist": "SHINICHI KOBAYA", - "data": { - "isHot": true - }, + "data": {}, "id": 2118, "searchTerms": [ "HYPERSEVEN TYPE" @@ -7838,9 +6532,7 @@ { "altTitles": [], "artist": "AIKO OI", - "data": { - "isHot": true - }, + "data": {}, "id": 2119, "searchTerms": [ "LAST SONG" @@ -7850,9 +6542,7 @@ { "altTitles": [], "artist": "TAG", - "data": { - "isHot": true - }, + "data": {}, "id": 2120, "searchTerms": [ "ROSETTA STONE" @@ -7862,9 +6552,7 @@ { "altTitles": [], "artist": "DJ TOTTO", - "data": { - "isHot": false - }, + "data": {}, "id": 2121, "searchTerms": [ "MINARAITENSHI T" @@ -7874,9 +6562,7 @@ { "altTitles": [], "artist": "YURIE SUZUKI", - "data": { - "isHot": false - }, + "data": {}, "id": 2122, "searchTerms": [ "GOODBYE MY CRYB" @@ -7886,9 +6572,7 @@ { "altTitles": [], "artist": "YOSHIHIKO KOEZU", - "data": { - "isHot": false - }, + "data": {}, "id": 2123, "searchTerms": [ "GRAPES" @@ -7898,9 +6582,7 @@ { "altTitles": [], "artist": "CHIAMI OKADA", - "data": { - "isHot": false - }, + "data": {}, "id": 2124, "searchTerms": [ "FUYUIRO" @@ -7910,9 +6592,7 @@ { "altTitles": [], "artist": "ASAKI NO CRIM D", - "data": { - "isHot": false - }, + "data": {}, "id": 2125, "searchTerms": [ "SARU KANE GASSE" @@ -7922,9 +6602,7 @@ { "altTitles": [], "artist": "TAG", - "data": { - "isHot": true - }, + "data": {}, "id": 2126, "searchTerms": [ "SOLITUDE" @@ -7934,9 +6612,7 @@ { "altTitles": [], "artist": "NEKOMATA_MASTER", - "data": { - "isHot": true - }, + "data": {}, "id": 2127, "searchTerms": [ "NEKOZAMURAINOGY" @@ -7946,9 +6622,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": false - }, + "data": {}, "id": 2128, "searchTerms": [ "MIGHTY WIND" @@ -7958,9 +6632,7 @@ { "altTitles": [], "artist": "TAG FEAT. ERI", - "data": { - "isHot": true - }, + "data": {}, "id": 2129, "searchTerms": [ "REGENERATION" @@ -7970,9 +6642,7 @@ { "altTitles": [], "artist": "HINATABI BITTER", - "data": { - "isHot": true - }, + "data": {}, "id": 2130, "searchTerms": [ "CATHARSIS" @@ -7982,9 +6652,7 @@ { "altTitles": [], "artist": "AIKA YANAGIMOTO", - "data": { - "isHot": false - }, + "data": {}, "id": 2131, "searchTerms": [ "SHINING WINGS" @@ -7994,9 +6662,7 @@ { "altTitles": [], "artist": "JUNJOU DISCORD ", - "data": { - "isHot": true - }, + "data": {}, "id": 2132, "searchTerms": [ "SHIGUREINNSOMUN" @@ -8006,9 +6672,7 @@ { "altTitles": [], "artist": "KURISUJYOUNOSUK", - "data": { - "isHot": true - }, + "data": {}, "id": 2133, "searchTerms": [ "KYOUKIENBU" @@ -8018,9 +6682,7 @@ { "altTitles": [], "artist": "JUNJOU DISCORD ", - "data": { - "isHot": false - }, + "data": {}, "id": 2134, "searchTerms": [ "HANENAKISHOJYOU" @@ -8030,9 +6692,7 @@ { "altTitles": [], "artist": "YASUSHI ASADA N", - "data": { - "isHot": true - }, + "data": {}, "id": 2135, "searchTerms": [ "FACTOR OF ADHES" @@ -8042,9 +6702,7 @@ { "altTitles": [], "artist": "TIME CAPSULE LA", - "data": { - "isHot": true - }, + "data": {}, "id": 2136, "searchTerms": [ "OBSIDIAN" @@ -8054,9 +6712,7 @@ { "altTitles": [], "artist": "TAG", - "data": { - "isHot": false - }, + "data": {}, "id": 2137, "searchTerms": [ "ALSTROEMERIA" @@ -8066,9 +6722,7 @@ { "altTitles": [], "artist": "DJ YOSHITAKA FE", - "data": { - "isHot": true - }, + "data": {}, "id": 2138, "searchTerms": [ "EVANS" @@ -8078,9 +6732,7 @@ { "altTitles": [], "artist": "AKHUTA", - "data": { - "isHot": true - }, + "data": {}, "id": 2139, "searchTerms": [ "VIRGA GIGANTUM" @@ -8090,9 +6742,7 @@ { "altTitles": [], "artist": "IOSYS JK GIRLS ", - "data": { - "isHot": true - }, + "data": {}, "id": 2140, "searchTerms": [ "JK PARADISE" @@ -8102,9 +6752,7 @@ { "altTitles": [], "artist": "164", - "data": { - "isHot": false - }, + "data": {}, "id": 2141, "searchTerms": [ "AMANOJYAKU" @@ -8114,9 +6762,7 @@ { "altTitles": [], "artist": "COSMO ATTO BOUS", - "data": { - "isHot": false - }, + "data": {}, "id": 2142, "searchTerms": [ "IEDESHOUNENNTOM" @@ -8126,9 +6772,7 @@ { "altTitles": [], "artist": "TAG", - "data": { - "isHot": true - }, + "data": {}, "id": 2143, "searchTerms": [ "UNLIMITED FIRE" @@ -8138,9 +6782,7 @@ { "altTitles": [], "artist": "AKHUTA PHILHARM", - "data": { - "isHot": true - }, + "data": {}, "id": 2144, "searchTerms": [ "STELLA SINISTRA" @@ -8150,9 +6792,7 @@ { "altTitles": [], "artist": "96 WITH MECH-SH", - "data": { - "isHot": false - }, + "data": {}, "id": 2145, "searchTerms": [ "MIND GAME" @@ -8162,9 +6802,7 @@ { "altTitles": [], "artist": "TAG PON", - "data": { - "isHot": false - }, + "data": {}, "id": 2146, "searchTerms": [ "PUNISHER" @@ -8174,9 +6812,7 @@ { "altTitles": [], "artist": "HOMMARJU", - "data": { - "isHot": false - }, + "data": {}, "id": 2147, "searchTerms": [ "HYENA LIVE EDIT" @@ -8186,9 +6822,7 @@ { "altTitles": [], "artist": "VENUS FEAT. MUT", - "data": { - "isHot": false - }, + "data": {}, "id": 2148, "searchTerms": [ "SQUEEZE -GITADO" @@ -8198,9 +6832,7 @@ { "altTitles": [], "artist": "NEKOMATA_MASTER", - "data": { - "isHot": true - }, + "data": {}, "id": 2149, "searchTerms": [ "DEADBALL DE HOM" @@ -8210,9 +6842,7 @@ { "altTitles": [], "artist": "ASAKIDAIKANTOKU", - "data": { - "isHot": false - }, + "data": {}, "id": 2150, "searchTerms": [ "YAKYUUNOASOBIKA" @@ -8222,9 +6852,7 @@ { "altTitles": [], "artist": "DYNAMIC BASEBAL", - "data": { - "isHot": true - }, + "data": {}, "id": 2151, "searchTerms": [ "TODOROKE KOINO " @@ -8234,9 +6862,7 @@ { "altTitles": [], "artist": "DJ TAKA VS DJ T", - "data": { - "isHot": true - }, + "data": {}, "id": 2152, "searchTerms": [ "9 -GITADOROCK V" @@ -8246,9 +6872,7 @@ { "altTitles": [], "artist": "ASAKI NO CRIM D", - "data": { - "isHot": true - }, + "data": {}, "id": 2153, "searchTerms": [ "IKIMONO SHIKKAK" @@ -8258,9 +6882,7 @@ { "altTitles": [], "artist": "YU TOKIWA", - "data": { - "isHot": true - }, + "data": {}, "id": 2154, "searchTerms": [ "SHOUNENNRIPPLES" @@ -8270,9 +6892,7 @@ { "altTitles": [], "artist": "96", - "data": { - "isHot": true - }, + "data": {}, "id": 2155, "searchTerms": [ "RAGNAROK" @@ -8282,9 +6902,7 @@ { "altTitles": [], "artist": "MAMI", - "data": { - "isHot": false - }, + "data": {}, "id": 2156, "searchTerms": [ "JYOUSOUDISTOPIA" @@ -8294,9 +6912,7 @@ { "altTitles": [], "artist": "AIKO OI", - "data": { - "isHot": true - }, + "data": {}, "id": 2157, "searchTerms": [ "NEVER LOOK BACK" @@ -8306,9 +6922,7 @@ { "altTitles": [], "artist": "THE KNIGHT OF C", - "data": { - "isHot": true - }, + "data": {}, "id": 2158, "searchTerms": [ "AIWA HUSHICHOU " @@ -8318,9 +6932,7 @@ { "altTitles": [], "artist": "RYU INFINITE DE", - "data": { - "isHot": false - }, + "data": {}, "id": 2159, "searchTerms": [ "ENGRAVED MARK" @@ -8330,9 +6942,7 @@ { "altTitles": [], "artist": "GEKIDAN RECORD ", - "data": { - "isHot": true - }, + "data": {}, "id": 2160, "searchTerms": [ "KYOUEN NO HANA" @@ -8342,9 +6952,7 @@ { "altTitles": [], "artist": "SOTA FUJIMORI", - "data": { - "isHot": false - }, + "data": {}, "id": 2161, "searchTerms": [ "DON'T BREAK UP" @@ -8354,9 +6962,7 @@ { "altTitles": [], "artist": "MEGUMI TATSUMI ", - "data": { - "isHot": false - }, + "data": {}, "id": 2162, "searchTerms": [ "HITOTSUBUNONAMI" @@ -8366,9 +6972,7 @@ { "altTitles": [], "artist": "TENGACHAYAKO", - "data": { - "isHot": true - }, + "data": {}, "id": 2163, "searchTerms": [ "HARU MACHI BANA" @@ -8378,9 +6982,7 @@ { "altTitles": [], "artist": "HINATABI BITTER", - "data": { - "isHot": true - }, + "data": {}, "id": 2164, "searchTerms": [ "HAUNTED MAID LU" @@ -8390,9 +6992,7 @@ { "altTitles": [], "artist": "PON", - "data": { - "isHot": true - }, + "data": {}, "id": 2168, "searchTerms": [ "MIKAGAMI" @@ -8402,9 +7002,7 @@ { "altTitles": [], "artist": "JIKKI", - "data": { - "isHot": false - }, + "data": {}, "id": 2172, "searchTerms": [ "SHUGOSHIN" @@ -8414,9 +7012,7 @@ { "altTitles": [], "artist": "LAST NOTE.", - "data": { - "isHot": false - }, + "data": {}, "id": 2173, "searchTerms": [ "GENNSOUKEISEKAI" @@ -8426,9 +7022,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 2174, "searchTerms": [ "NATURE GITADORA" @@ -8438,9 +7032,7 @@ { "altTitles": [], "artist": "96", - "data": { - "isHot": false - }, + "data": {}, "id": 2175, "searchTerms": [ "DEATH BRINGER" @@ -8450,9 +7042,7 @@ { "altTitles": [], "artist": "YOSHIMI KUDO BA", - "data": { - "isHot": true - }, + "data": {}, "id": 2176, "searchTerms": [ "JUPITER GUNS NO" @@ -8462,9 +7052,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 2177, "searchTerms": [ "ZANKOKUNATENSHI" @@ -8474,9 +7062,7 @@ { "altTitles": [], "artist": "UTAGUMISETUGETU", - "data": { - "isHot": false - }, + "data": {}, "id": 2178, "searchTerms": [ "MAWARE SETSUGEK" @@ -8486,9 +7072,7 @@ { "altTitles": [], "artist": "SUZUMU", - "data": { - "isHot": false - }, + "data": {}, "id": 2179, "searchTerms": [ "KASYOKUSEI IDOL" @@ -8498,9 +7082,7 @@ { "altTitles": [], "artist": "GYRAGYRA MEGANE", - "data": { - "isHot": true - }, + "data": {}, "id": 2180, "searchTerms": [ "POP MUSIC RON" @@ -8510,9 +7092,7 @@ { "altTitles": [], "artist": "ASAKI", - "data": { - "isHot": true - }, + "data": {}, "id": 2181, "searchTerms": [ "UO HI NI NOBORI" @@ -8522,9 +7102,7 @@ { "altTitles": [], "artist": "HIDEYUKI ONO 96", - "data": { - "isHot": true - }, + "data": {}, "id": 2182, "searchTerms": [ "LEMON AND SALT" @@ -8534,9 +7112,7 @@ { "altTitles": [], "artist": "OJ ENSEMBLE", - "data": { - "isHot": true - }, + "data": {}, "id": 2183, "searchTerms": [ "CRYSTAL TOYBOX" @@ -8546,9 +7122,7 @@ { "altTitles": [], "artist": "DJ TAKA FEAT.GT", - "data": { - "isHot": true - }, + "data": {}, "id": 2184, "searchTerms": [ "RAGE AGAINST US" @@ -8558,9 +7132,7 @@ { "altTitles": [], "artist": "NECOMATA MODIFY", - "data": { - "isHot": true - }, + "data": {}, "id": 2185, "searchTerms": [ "SOUHAN OPPORTUN" @@ -8570,9 +7142,7 @@ { "altTitles": [], "artist": "PYLAMID", - "data": { - "isHot": true - }, + "data": {}, "id": 2186, "searchTerms": [ "CLEOPATRYSM" @@ -8582,9 +7152,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": false - }, + "data": {}, "id": 2187, "searchTerms": [ "MAMBO CARIBBEAN" @@ -8594,9 +7162,7 @@ { "altTitles": [], "artist": "COSMO ATTO BOUS", - "data": { - "isHot": false - }, + "data": {}, "id": 2188, "searchTerms": [ "BAMBOO SWORD GI" @@ -8606,9 +7172,7 @@ { "altTitles": [], "artist": "SOUND HOLIC VS.", - "data": { - "isHot": false - }, + "data": {}, "id": 2189, "searchTerms": [ "TOXIC VIBRATION" @@ -8618,9 +7182,7 @@ { "altTitles": [], "artist": "ICONOCLASM FEAT", - "data": { - "isHot": false - }, + "data": {}, "id": 2192, "searchTerms": [ "IDOLA" @@ -8630,9 +7192,7 @@ { "altTitles": [], "artist": "STRAND", - "data": { - "isHot": true - }, + "data": {}, "id": 2193, "searchTerms": [ "WAR EVASION" @@ -8642,9 +7202,7 @@ { "altTitles": [], "artist": "MOTOI SAKURABA", - "data": { - "isHot": true - }, + "data": {}, "id": 2194, "searchTerms": [ "QUARREL AND HAR" @@ -8654,9 +7212,7 @@ { "altTitles": [], "artist": "YURIE SUZUKI", - "data": { - "isHot": true - }, + "data": {}, "id": 2195, "searchTerms": [ "COLORS" @@ -8666,9 +7222,7 @@ { "altTitles": [], "artist": "AMDER WORLD FEA", - "data": { - "isHot": true - }, + "data": {}, "id": 2196, "searchTerms": [ "DAKARAKIMIZYANA" @@ -8678,9 +7232,7 @@ { "altTitles": [], "artist": "SHOUTENKAZOKU", - "data": { - "isHot": true - }, + "data": {}, "id": 2197, "searchTerms": [ "" @@ -8690,9 +7242,7 @@ { "altTitles": [], "artist": "QUFU-OH", - "data": { - "isHot": true - }, + "data": {}, "id": 2198, "searchTerms": [ "KHAMEN BREAK" @@ -8702,9 +7252,7 @@ { "altTitles": [], "artist": "AKHUTA", - "data": { - "isHot": false - }, + "data": {}, "id": 2199, "searchTerms": [ "HOSHI YADORU SO" @@ -8714,9 +7262,7 @@ { "altTitles": [], "artist": "DJ TOTTO", - "data": { - "isHot": true - }, + "data": {}, "id": 2200, "searchTerms": [ "DOUWA-KAIROU" @@ -8726,9 +7272,7 @@ { "altTitles": [], "artist": "AIKO OI", - "data": { - "isHot": true - }, + "data": {}, "id": 2201, "searchTerms": [ "PRAY TO THE EAR" @@ -8738,9 +7282,7 @@ { "altTitles": [], "artist": "YOSHIHIKO KOEZU", - "data": { - "isHot": true - }, + "data": {}, "id": 2202, "searchTerms": [ "CHERRY" @@ -8750,9 +7292,7 @@ { "altTitles": [], "artist": "HINATABI BITTER", - "data": { - "isHot": true - }, + "data": {}, "id": 2203, "searchTerms": [ "ALL ABOUT EVE !" @@ -8762,9 +7302,7 @@ { "altTitles": [], "artist": "HINATABI BITTER", - "data": { - "isHot": true - }, + "data": {}, "id": 2204, "searchTerms": [ "TOKAI SEIHUKU G" @@ -8774,9 +7312,7 @@ { "altTitles": [], "artist": "HINATABI BITTER", - "data": { - "isHot": true - }, + "data": {}, "id": 2205, "searchTerms": [ "KOI TO KINGCONG" @@ -8786,9 +7322,7 @@ { "altTitles": [], "artist": "HINATABI BITTER", - "data": { - "isHot": true - }, + "data": {}, "id": 2206, "searchTerms": [ "TOTTEMO TOTTEMO" @@ -8798,9 +7332,7 @@ { "altTitles": [], "artist": "HINATABI BITTER", - "data": { - "isHot": true - }, + "data": {}, "id": 2207, "searchTerms": [ "KOKUUTOKOUMYOUN" @@ -8810,9 +7342,7 @@ { "altTitles": [], "artist": "HINATABI BITTER", - "data": { - "isHot": true - }, + "data": {}, "id": 2208, "searchTerms": [ "HOROBINIITARUER" @@ -8822,9 +7352,7 @@ { "altTitles": [], "artist": "HINATABI BITTER", - "data": { - "isHot": true - }, + "data": {}, "id": 2209, "searchTerms": [ "HASHIRE MELON P" @@ -8834,9 +7362,7 @@ { "altTitles": [], "artist": "HINATABI BITTER", - "data": { - "isHot": true - }, + "data": {}, "id": 2210, "searchTerms": [ "RINTOSHITESAKUH" @@ -8846,9 +7372,7 @@ { "altTitles": [], "artist": "ATSUMI UEDA", - "data": { - "isHot": false - }, + "data": {}, "id": 2211, "searchTerms": [ "HATASHIJOU" @@ -8858,9 +7382,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": false - }, + "data": {}, "id": 2212, "searchTerms": [ "SUMMER '64" @@ -8870,9 +7392,7 @@ { "altTitles": [], "artist": "SOTA VS 96", - "data": { - "isHot": true - }, + "data": {}, "id": 2213, "searchTerms": [ "LIMIT LEVEL" @@ -8882,9 +7402,7 @@ { "altTitles": [], "artist": "JUNJOU DISCORD ", - "data": { - "isHot": true - }, + "data": {}, "id": 2214, "searchTerms": [ "KOYOIHURAKUTARU" @@ -8894,9 +7412,7 @@ { "altTitles": [], "artist": "HINATABI BITTER", - "data": { - "isHot": true - }, + "data": {}, "id": 2215, "searchTerms": [ "ONNKOCHIAHINNDE" @@ -8906,9 +7422,7 @@ { "altTitles": [], "artist": "CHINANAN", - "data": { - "isHot": true - }, + "data": {}, "id": 2216, "searchTerms": [ "ANATAGA OMOUYOR" @@ -8918,9 +7432,7 @@ { "altTitles": [], "artist": "96", - "data": { - "isHot": true - }, + "data": {}, "id": 2217, "searchTerms": [ "THE ULTIMATES -" @@ -8930,9 +7442,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 2218, "searchTerms": [ "THE ULTIMATES -" @@ -8942,9 +7452,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 2219, "searchTerms": [ "MODEL DD ULTIMA" @@ -8954,9 +7462,7 @@ { "altTitles": [], "artist": "GREAT JAPAN MET", - "data": { - "isHot": true - }, + "data": {}, "id": 2220, "searchTerms": [ "" @@ -8966,9 +7472,7 @@ { "altTitles": [], "artist": "ROTTEN BLOTCH", - "data": { - "isHot": true - }, + "data": {}, "id": 2221, "searchTerms": [ "LIFE" @@ -8978,9 +7482,7 @@ { "altTitles": [], "artist": "EARTHSHAKER", - "data": { - "isHot": false - }, + "data": {}, "id": 2222, "searchTerms": [ "YUUZUTSU NO SUS" @@ -8990,9 +7492,7 @@ { "altTitles": [], "artist": "TIME CAPSULE LA", - "data": { - "isHot": true - }, + "data": {}, "id": 2223, "searchTerms": [ "HELIODOR" @@ -9002,9 +7502,7 @@ { "altTitles": [], "artist": "AKHUTA", - "data": { - "isHot": true - }, + "data": {}, "id": 2224, "searchTerms": [ "INSANIA" @@ -9014,9 +7512,7 @@ { "altTitles": [], "artist": "98", - "data": { - "isHot": true - }, + "data": {}, "id": 2225, "searchTerms": [ "TENCHIDOU DENSE" @@ -9026,9 +7522,7 @@ { "altTitles": [], "artist": "TENKO", - "data": { - "isHot": true - }, + "data": {}, "id": 2226, "searchTerms": [ "KYUBIKOYAGYOU" @@ -9038,9 +7532,7 @@ { "altTitles": [], "artist": "96", - "data": { - "isHot": false - }, + "data": {}, "id": 2227, "searchTerms": [ "YUUMEI-IKYOU" @@ -9050,9 +7542,7 @@ { "altTitles": [], "artist": "HINATABI BITTER", - "data": { - "isHot": true - }, + "data": {}, "id": 2228, "searchTerms": [ "METSUBOU TENSHI" @@ -9062,9 +7552,7 @@ { "altTitles": [], "artist": "GEKIDAN RECORD ", - "data": { - "isHot": true - }, + "data": {}, "id": 2229, "searchTerms": [ "NAKED SCREAM" @@ -9074,9 +7562,7 @@ { "altTitles": [], "artist": "PON", - "data": { - "isHot": true - }, + "data": {}, "id": 2230, "searchTerms": [ "KIRA SHYAKUNETS" @@ -9086,9 +7572,7 @@ { "altTitles": [], "artist": "HINATABI BITTER", - "data": { - "isHot": true - }, + "data": {}, "id": 2231, "searchTerms": [ "OTOMERYORAN MAI" @@ -9098,9 +7582,7 @@ { "altTitles": [], "artist": "ATSUMI UEDA", - "data": { - "isHot": true - }, + "data": {}, "id": 2232, "searchTerms": [ "GAIKA NO SOU" @@ -9110,9 +7592,7 @@ { "altTitles": [], "artist": "TRICK TRAP", - "data": { - "isHot": true - }, + "data": {}, "id": 2233, "searchTerms": [ "SILVER STAR" @@ -9122,9 +7602,7 @@ { "altTitles": [], "artist": "MEGUMI TATSUMI ", - "data": { - "isHot": true - }, + "data": {}, "id": 2234, "searchTerms": [ "BLACK HOLE" @@ -9134,9 +7612,7 @@ { "altTitles": [], "artist": "GOOD-COOL", - "data": { - "isHot": true - }, + "data": {}, "id": 2235, "searchTerms": [ "STREET FOR STUD" @@ -9146,9 +7622,7 @@ { "altTitles": [], "artist": "THEATERR", - "data": { - "isHot": false - }, + "data": {}, "id": 2236, "searchTerms": [ "EVIL OGRE" @@ -9158,9 +7632,7 @@ { "altTitles": [], "artist": "HIMAWARI PUNCH", - "data": { - "isHot": true - }, + "data": {}, "id": 2237, "searchTerms": [ "METAMETA?HIMAWA" @@ -9170,9 +7642,7 @@ { "altTitles": [], "artist": "HIMAWARI PUNCH", - "data": { - "isHot": true - }, + "data": {}, "id": 2238, "searchTerms": [ "METAMETA HIMAWA" @@ -9182,9 +7652,7 @@ { "altTitles": [], "artist": "AYAKA OHTUKA", - "data": { - "isHot": false - }, + "data": {}, "id": 2239, "searchTerms": [ "KOINOMIRACLERES" @@ -9194,9 +7662,7 @@ { "altTitles": [], "artist": "TAG FROM PARTY ", - "data": { - "isHot": true - }, + "data": {}, "id": 2240, "searchTerms": [ "PARTY PEOPLE" @@ -9206,9 +7672,7 @@ { "altTitles": [], "artist": "COLORS", - "data": { - "isHot": true - }, + "data": {}, "id": 2241, "searchTerms": [ "FAIRY TALE" @@ -9218,9 +7682,7 @@ { "altTitles": [], "artist": "YAMATOGUMI-", - "data": { - "isHot": true - }, + "data": {}, "id": 2242, "searchTerms": [ "RARABAI AISYUU" @@ -9230,9 +7692,7 @@ { "altTitles": [], "artist": "96 VS. MUTSUHIK", - "data": { - "isHot": true - }, + "data": {}, "id": 2243, "searchTerms": [ "DEMON SLAYER" @@ -9242,9 +7702,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": false - }, + "data": {}, "id": 2244, "searchTerms": [ "SAYONARA HEAVEN" @@ -9254,9 +7712,7 @@ { "altTitles": [], "artist": "PILOKALPIN", - "data": { - "isHot": false - }, + "data": {}, "id": 2245, "searchTerms": [ "AOI TSUKI" @@ -9266,9 +7722,7 @@ { "altTitles": [], "artist": "PILOKALPIN", - "data": { - "isHot": false - }, + "data": {}, "id": 2246, "searchTerms": [ "HAKONIWANOSEKAI" @@ -9278,9 +7732,7 @@ { "altTitles": [], "artist": "JIN HASHIMOTO", - "data": { - "isHot": false - }, + "data": {}, "id": 2247, "searchTerms": [ "STAND PROUD" @@ -9290,9 +7742,7 @@ { "altTitles": [], "artist": "CZECHO NO REPUB", - "data": { - "isHot": false - }, + "data": {}, "id": 2248, "searchTerms": [ "FOR YOU" @@ -9302,9 +7752,7 @@ { "altTitles": [], "artist": "BABYMETAL", - "data": { - "isHot": false - }, + "data": {}, "id": 2249, "searchTerms": [ "MEGITSUNE" @@ -9314,9 +7762,7 @@ { "altTitles": [], "artist": "LAST NOTE.", - "data": { - "isHot": false - }, + "data": {}, "id": 2251, "searchTerms": [ "UTYOUTEN BIBATI" @@ -9326,9 +7772,7 @@ { "altTitles": [], "artist": "COSMO ATTO BOUS", - "data": { - "isHot": false - }, + "data": {}, "id": 2252, "searchTerms": [ "DYSTOPIA ROCK H" @@ -9338,9 +7782,7 @@ { "altTitles": [], "artist": "PAN", - "data": { - "isHot": false - }, + "data": {}, "id": 2253, "searchTerms": [ "TENGOKUMUSIC" @@ -9350,9 +7792,7 @@ { "altTitles": [], "artist": "HIMAWARI PUNCH", - "data": { - "isHot": true - }, + "data": {}, "id": 2254, "searchTerms": [ "SHINSHI GEIKIJO" @@ -9362,9 +7802,7 @@ { "altTitles": [], "artist": "POWER OF NATURE", - "data": { - "isHot": false - }, + "data": {}, "id": 2255, "searchTerms": [ "RUSSIAN CARAVAN" @@ -9374,9 +7812,7 @@ { "altTitles": [], "artist": "AKHUTA", - "data": { - "isHot": false - }, + "data": {}, "id": 2256, "searchTerms": [ "HOOZUKIMITAINIH" @@ -9386,9 +7822,7 @@ { "altTitles": [], "artist": "HIMAWARI PUNCH", - "data": { - "isHot": true - }, + "data": {}, "id": 2257, "searchTerms": [ "HAPPY! LUCKY! S" @@ -9398,9 +7832,7 @@ { "altTitles": [], "artist": "ASAKI", - "data": { - "isHot": true - }, + "data": {}, "id": 2258, "searchTerms": [ "MINAMO SHIZUKAN" @@ -9410,9 +7842,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 2259, "searchTerms": [ "HONOONODIARGOS" @@ -9422,9 +7852,7 @@ { "altTitles": [], "artist": "YOSHIHIKO KOEZU", - "data": { - "isHot": true - }, + "data": {}, "id": 2260, "searchTerms": [ "SAND BLOW" @@ -9434,9 +7862,7 @@ { "altTitles": [], "artist": "96 VS KURISUJYO", - "data": { - "isHot": true - }, + "data": {}, "id": 2261, "searchTerms": [ "KYOUKIMURAMASA" @@ -9446,9 +7872,7 @@ { "altTitles": [], "artist": "SOUND HOLIC FEA", - "data": { - "isHot": true - }, + "data": {}, "id": 2262, "searchTerms": [ "WITCH HUNT" @@ -9458,9 +7882,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": false - }, + "data": {}, "id": 2263, "searchTerms": [ "SKYSCRAPER" @@ -9470,9 +7892,7 @@ { "altTitles": [], "artist": "PON", - "data": { - "isHot": true - }, + "data": {}, "id": 2264, "searchTerms": [ "ATASHIWOMARUMAR" @@ -9482,9 +7902,7 @@ { "altTitles": [], "artist": "YOSHIMI KUDO BA", - "data": { - "isHot": true - }, + "data": {}, "id": 2265, "searchTerms": [ "SOUSOU NO EUROP" @@ -9494,9 +7912,7 @@ { "altTitles": [], "artist": "96 AND SOTA FT.", - "data": { - "isHot": false - }, + "data": {}, "id": 2266, "searchTerms": [ "IN THE BREEZE" @@ -9506,9 +7922,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 2267, "searchTerms": [ "NIJIIRO YUENCHI" @@ -9518,9 +7932,7 @@ { "altTitles": [], "artist": "RAKUEN NO SHUUJ", - "data": { - "isHot": false - }, + "data": {}, "id": 2268, "searchTerms": [ "BELLS" @@ -9530,9 +7942,7 @@ { "altTitles": [], "artist": "414", - "data": { - "isHot": true - }, + "data": {}, "id": 2269, "searchTerms": [ "DOUBLE THRASH" @@ -9542,9 +7952,7 @@ { "altTitles": [], "artist": "KEENO", - "data": { - "isHot": true - }, + "data": {}, "id": 2270, "searchTerms": [ "WOUND" @@ -9554,9 +7962,7 @@ { "altTitles": [], "artist": "NEKOMATA OJ FEA", - "data": { - "isHot": true - }, + "data": {}, "id": 2271, "searchTerms": [ "NATSUIRO DIARY " @@ -9566,9 +7972,7 @@ { "altTitles": [], "artist": "SHINICHI KOBAYA", - "data": { - "isHot": false - }, + "data": {}, "id": 2272, "searchTerms": [ "RINNETENSEI" @@ -9578,9 +7982,7 @@ { "altTitles": [], "artist": "HINATABI BITTER", - "data": { - "isHot": true - }, + "data": {}, "id": 2274, "searchTerms": [ "NEKO*NEKO" @@ -9590,9 +7992,7 @@ { "altTitles": [], "artist": "AKHUTA Y OJ", - "data": { - "isHot": false - }, + "data": {}, "id": 2275, "searchTerms": [ "EISENPLATTE" @@ -9602,9 +8002,7 @@ { "altTitles": [], "artist": "ROTTEN BLOTCH", - "data": { - "isHot": true - }, + "data": {}, "id": 2276, "searchTerms": [ "UNDER THE NEST " @@ -9614,9 +8012,7 @@ { "altTitles": [], "artist": "YASUSHI ASADA", - "data": { - "isHot": false - }, + "data": {}, "id": 2277, "searchTerms": [ "SENSE OF THE SC" @@ -9626,9 +8022,7 @@ { "altTitles": [], "artist": "PRIM", - "data": { - "isHot": true - }, + "data": {}, "id": 2278, "searchTerms": [ "KOISURUUTYUSENN" @@ -9638,9 +8032,7 @@ { "altTitles": [], "artist": "HIROMIXXX", - "data": { - "isHot": true - }, + "data": {}, "id": 2279, "searchTerms": [ "PHANTOM VERONIC" @@ -9650,9 +8042,7 @@ { "altTitles": [], "artist": "AOUP", - "data": { - "isHot": false - }, + "data": {}, "id": 2280, "searchTerms": [ "HANAMARUPIPPIHA" @@ -9662,9 +8052,7 @@ { "altTitles": [], "artist": "HINATABI BITTER", - "data": { - "isHot": true - }, + "data": {}, "id": 2281, "searchTerms": [ "GEKIATSUMAZIYAB" @@ -9674,9 +8062,7 @@ { "altTitles": [], "artist": "ASAKI", - "data": { - "isHot": true - }, + "data": {}, "id": 2282, "searchTerms": [ "GUREN" @@ -9686,9 +8072,7 @@ { "altTitles": [], "artist": "HINATABI BITTER", - "data": { - "isHot": true - }, + "data": {}, "id": 2284, "searchTerms": [ "SHITKOKU NO SPE" @@ -9698,9 +8082,7 @@ { "altTitles": [], "artist": "GREAT JAPAN MOR", - "data": { - "isHot": true - }, + "data": {}, "id": 2285, "searchTerms": [ "IMA WAREWARE NI" @@ -9710,9 +8092,7 @@ { "altTitles": [], "artist": "KANAKO KOTERA", - "data": { - "isHot": true - }, + "data": {}, "id": 2286, "searchTerms": [ "TSUISOU" @@ -9722,9 +8102,7 @@ { "altTitles": [], "artist": "YAMATO", - "data": { - "isHot": false - }, + "data": {}, "id": 2287, "searchTerms": [ "ALTERNATIVE TAC" @@ -9734,9 +8112,7 @@ { "altTitles": [], "artist": "SEKU", - "data": { - "isHot": false - }, + "data": {}, "id": 2288, "searchTerms": [ "SKYPHOBIA" @@ -9746,9 +8122,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 2289, "searchTerms": [ "MODEL DD11" @@ -9758,9 +8132,7 @@ { "altTitles": [], "artist": "HINATABI BITTER", - "data": { - "isHot": true - }, + "data": {}, "id": 2290, "searchTerms": [ "CHIHOUSOUSEI CH" @@ -9770,9 +8142,7 @@ { "altTitles": [], "artist": "ASAKI", - "data": { - "isHot": true - }, + "data": {}, "id": 2291, "searchTerms": [ "TAIYO NO KO" @@ -9782,9 +8152,7 @@ { "altTitles": [], "artist": "AKHUTA", - "data": { - "isHot": true - }, + "data": {}, "id": 2292, "searchTerms": [ "ARX TYRANNI" @@ -9794,9 +8162,7 @@ { "altTitles": [], "artist": "GENKIKUN BAND", - "data": { - "isHot": false - }, + "data": {}, "id": 2293, "searchTerms": [ "RAKIHAPIDAYS" @@ -9806,9 +8172,7 @@ { "altTitles": [], "artist": "MAOKI YAMAMOTO", - "data": { - "isHot": false - }, + "data": {}, "id": 2294, "searchTerms": [ "MIND ERUPTION" @@ -9818,9 +8182,7 @@ { "altTitles": [], "artist": "HINATABI BITTER", - "data": { - "isHot": true - }, + "data": {}, "id": 2295, "searchTerms": [ "FLUTTERGENSHOU " @@ -9830,9 +8192,7 @@ { "altTitles": [], "artist": "GOOD-COOL FT. P", - "data": { - "isHot": true - }, + "data": {}, "id": 2296, "searchTerms": [ "FEED THE HUNGER" @@ -9842,9 +8202,7 @@ { "altTitles": [], "artist": "GEKIDAN RECORD ", - "data": { - "isHot": true - }, + "data": {}, "id": 2297, "searchTerms": [ "TENKYUCHO" @@ -9854,9 +8212,7 @@ { "altTitles": [], "artist": "KANAKO KOTERA", - "data": { - "isHot": true - }, + "data": {}, "id": 2298, "searchTerms": [ "JUST BELIEVE" @@ -9866,9 +8222,7 @@ { "altTitles": [], "artist": "AOUP", - "data": { - "isHot": false - }, + "data": {}, "id": 2301, "searchTerms": [ "ZENRYOKU BATANK" @@ -9878,9 +8232,7 @@ { "altTitles": [], "artist": "ASAKI TSURUGI", - "data": { - "isHot": true - }, + "data": {}, "id": 2302, "searchTerms": [ "TOUMEI HA MADAR" @@ -9890,9 +8242,7 @@ { "altTitles": [], "artist": "COSMO ATTO BOUS", - "data": { - "isHot": false - }, + "data": {}, "id": 2303, "searchTerms": [ "KEI" @@ -9902,9 +8252,7 @@ { "altTitles": [], "artist": "SOUND HOLIC VS.", - "data": { - "isHot": true - }, + "data": {}, "id": 2304, "searchTerms": [ "YUUKYUU NO PEGA" @@ -9914,9 +8262,7 @@ { "altTitles": [], "artist": "TRICK TRAP", - "data": { - "isHot": true - }, + "data": {}, "id": 2305, "searchTerms": [ "GOLDEN GALAXY" @@ -9926,9 +8272,7 @@ { "altTitles": [], "artist": "96 AND KEIICHI", - "data": { - "isHot": true - }, + "data": {}, "id": 2306, "searchTerms": [ "DESTINY WINGS" @@ -9938,9 +8282,7 @@ { "altTitles": [], "artist": "OSTER PROJECT", - "data": { - "isHot": true - }, + "data": {}, "id": 2307, "searchTerms": [ "IJYOUSHINNIKI" @@ -9950,9 +8292,7 @@ { "altTitles": [], "artist": "DJ TOTTO", - "data": { - "isHot": true - }, + "data": {}, "id": 2308, "searchTerms": [ "UNMONOCHROME" @@ -9962,9 +8302,7 @@ { "altTitles": [], "artist": "GODSPEED", - "data": { - "isHot": false - }, + "data": {}, "id": 2309, "searchTerms": [ "BLAZE" @@ -9974,9 +8312,7 @@ { "altTitles": [], "artist": "SETSAT", - "data": { - "isHot": false - }, + "data": {}, "id": 2310, "searchTerms": [ "STELLAR NOTES" @@ -9986,9 +8322,7 @@ { "altTitles": [], "artist": "HINATABI BITTER", - "data": { - "isHot": true - }, + "data": {}, "id": 2311, "searchTerms": [ "SUIGETUKYOUKA N" @@ -9998,9 +8332,7 @@ { "altTitles": [], "artist": "HINATABI BITTER", - "data": { - "isHot": true - }, + "data": {}, "id": 2312, "searchTerms": [ "POKAPOKARETOROA" @@ -10010,9 +8342,7 @@ { "altTitles": [], "artist": "HINATABI BITTER", - "data": { - "isHot": true - }, + "data": {}, "id": 2313, "searchTerms": [ "KANZENMUKETU NO" @@ -10022,9 +8352,7 @@ { "altTitles": [], "artist": "HINATABI BITTER", - "data": { - "isHot": true - }, + "data": {}, "id": 2314, "searchTerms": [ "EXCITINGMOCHACH" @@ -10034,9 +8362,7 @@ { "altTitles": [], "artist": "HINATABI BITTER", - "data": { - "isHot": true - }, + "data": {}, "id": 2315, "searchTerms": [ "TOBITTUKIRI NO " @@ -10046,9 +8372,7 @@ { "altTitles": [], "artist": "HINATABI BITTER", - "data": { - "isHot": true - }, + "data": {}, "id": 2316, "searchTerms": [ "3 AM DETECTIVES" @@ -10058,9 +8382,7 @@ { "altTitles": [], "artist": "STRAND FEAT.MAS", - "data": { - "isHot": false - }, + "data": {}, "id": 2317, "searchTerms": [ "THE NEW MYTH" @@ -10070,9 +8392,7 @@ { "altTitles": [], "artist": "HIMAWARI PUNCH", - "data": { - "isHot": true - }, + "data": {}, "id": 2318, "searchTerms": [ "DOKIDOKI VALENT" @@ -10082,9 +8402,7 @@ { "altTitles": [], "artist": "RYU", - "data": { - "isHot": false - }, + "data": {}, "id": 2319, "searchTerms": [ "GEKIJOU NO HANA" @@ -10094,9 +8412,7 @@ { "altTitles": [], "artist": "DJ GENKI FEAT. ", - "data": { - "isHot": true - }, + "data": {}, "id": 2320, "searchTerms": [ "THE TOWN OF SUN" @@ -10106,9 +8422,7 @@ { "altTitles": [], "artist": "SEBON", - "data": { - "isHot": false - }, + "data": {}, "id": 2321, "searchTerms": [ "TERRA CAR" @@ -10118,9 +8432,7 @@ { "altTitles": [], "artist": "KIRYU", - "data": { - "isHot": false - }, + "data": {}, "id": 2322, "searchTerms": [ "IRODORI" @@ -10130,9 +8442,7 @@ { "altTitles": [], "artist": "CHELSY", - "data": { - "isHot": false - }, + "data": {}, "id": 2323, "searchTerms": [ "ESCAPE" @@ -10142,9 +8452,7 @@ { "altTitles": [], "artist": "HUMER FEAT, HIR", - "data": { - "isHot": false - }, + "data": {}, "id": 2324, "searchTerms": [ "MEGATONIC SHAPE" @@ -10154,9 +8462,7 @@ { "altTitles": [], "artist": "ROOKIE.F", - "data": { - "isHot": false - }, + "data": {}, "id": 2325, "searchTerms": [ "TWILIGHT" @@ -10166,9 +8472,7 @@ { "altTitles": [], "artist": "SIS BOND CHIT", - "data": { - "isHot": true - }, + "data": {}, "id": 2326, "searchTerms": [ "BUTTERFLY EFFEC" @@ -10178,9 +8482,7 @@ { "altTitles": [], "artist": "COLORS", - "data": { - "isHot": false - }, + "data": {}, "id": 2327, "searchTerms": [ "RAINY DAYS" @@ -10190,9 +8492,7 @@ { "altTitles": [], "artist": "YOSHIMI KUDO BA", - "data": { - "isHot": false - }, + "data": {}, "id": 2328, "searchTerms": [ "JAGUAR NINGEN N" @@ -10202,9 +8502,7 @@ { "altTitles": [], "artist": "YASUSHI ASADA", - "data": { - "isHot": false - }, + "data": {}, "id": 2329, "searchTerms": [ "NO REASON OF FE" @@ -10214,9 +8512,7 @@ { "altTitles": [], "artist": "HINATABI BITTER", - "data": { - "isHot": true - }, + "data": {}, "id": 2330, "searchTerms": [ "KUROKAMI MIDARE" @@ -10226,9 +8522,7 @@ { "altTitles": [], "artist": "GEKIDAN RECORD ", - "data": { - "isHot": false - }, + "data": {}, "id": 2331, "searchTerms": [ "SHUUKYOKU" @@ -10238,9 +8532,7 @@ { "altTitles": [], "artist": "96", - "data": { - "isHot": true - }, + "data": {}, "id": 2332, "searchTerms": [ "CHOUJYUUGIGA" @@ -10250,9 +8542,7 @@ { "altTitles": [], "artist": "MORINO KUMAKO", - "data": { - "isHot": true - }, + "data": {}, "id": 2333, "searchTerms": [ "MOHUMOHUSHITAIN" @@ -10262,9 +8552,7 @@ { "altTitles": [], "artist": "MAOKI YAMAMOTO", - "data": { - "isHot": true - }, + "data": {}, "id": 2334, "searchTerms": [ "EMPYREAL CATAST" @@ -10274,9 +8562,7 @@ { "altTitles": [], "artist": "MAOKI YAMAMOTO ", - "data": { - "isHot": true - }, + "data": {}, "id": 2335, "searchTerms": [ "GRAPHIC MELODY" @@ -10286,9 +8572,7 @@ { "altTitles": [], "artist": "KANAKO KOTERA", - "data": { - "isHot": true - }, + "data": {}, "id": 2336, "searchTerms": [ "MY WAY, MY LIFE" @@ -10298,9 +8582,7 @@ { "altTitles": [], "artist": "96", - "data": { - "isHot": true - }, + "data": {}, "id": 2337, "searchTerms": [ "BURNING CREMATI" @@ -10310,9 +8592,7 @@ { "altTitles": [], "artist": "98", - "data": { - "isHot": true - }, + "data": {}, "id": 2338, "searchTerms": [ "TAWAMURE PANDA" @@ -10322,9 +8602,7 @@ { "altTitles": [], "artist": "YOSHIHIKO KOEZU", - "data": { - "isHot": true - }, + "data": {}, "id": 2339, "searchTerms": [ "BURANKO" @@ -10334,9 +8612,7 @@ { "altTitles": [], "artist": "ROOKIE.F", - "data": { - "isHot": false - }, + "data": {}, "id": 2340, "searchTerms": [ "FOREVER YOUNG" @@ -10346,9 +8622,7 @@ { "altTitles": [], "artist": "ASAKI", - "data": { - "isHot": false - }, + "data": {}, "id": 2341, "searchTerms": [ "ANATHEMA" @@ -10358,9 +8632,7 @@ { "altTitles": [], "artist": "JUNJOU DISCORD ", - "data": { - "isHot": true - }, + "data": {}, "id": 2342, "searchTerms": [ "FRAGMENT OF YGG" @@ -10370,9 +8642,7 @@ { "altTitles": [], "artist": "COSMO ATTO BOUS", - "data": { - "isHot": true - }, + "data": {}, "id": 2343, "searchTerms": [ "GAI" @@ -10382,9 +8652,7 @@ { "altTitles": [], "artist": "GEKIDAN RECORD ", - "data": { - "isHot": true - }, + "data": {}, "id": 2344, "searchTerms": [ "MISTY LAKE" @@ -10394,9 +8662,7 @@ { "altTitles": [], "artist": "THEATERR", - "data": { - "isHot": true - }, + "data": {}, "id": 2345, "searchTerms": [ "RUINS" @@ -10406,9 +8672,7 @@ { "altTitles": [], "artist": "DJ GENKI FEAT. ", - "data": { - "isHot": true - }, + "data": {}, "id": 2346, "searchTerms": [ "WE GO DOWN" @@ -10418,9 +8682,7 @@ { "altTitles": [], "artist": "GENKIKUN BAND", - "data": { - "isHot": true - }, + "data": {}, "id": 2347, "searchTerms": [ "SIRENSIGN" @@ -10430,9 +8692,7 @@ { "altTitles": [], "artist": "BUTAOTOME", - "data": { - "isHot": true - }, + "data": {}, "id": 2348, "searchTerms": [ "KAKERA" @@ -10442,9 +8702,7 @@ { "altTitles": [], "artist": "YUA", - "data": { - "isHot": false - }, + "data": {}, "id": 2349, "searchTerms": [ "KUSARI" @@ -10454,9 +8712,7 @@ { "altTitles": [], "artist": "PW.A", - "data": { - "isHot": false - }, + "data": {}, "id": 2350, "searchTerms": [ "PRETTY TRYING" @@ -10466,9 +8722,7 @@ { "altTitles": [], "artist": "MILLLL", - "data": { - "isHot": false - }, + "data": {}, "id": 2351, "searchTerms": [ "GOOD BYE J.A." @@ -10478,9 +8732,7 @@ { "altTitles": [], "artist": "YGGDRASIL WORKS", - "data": { - "isHot": true - }, + "data": {}, "id": 2352, "searchTerms": [ "AKENUYORU" @@ -10490,9 +8742,7 @@ { "altTitles": [], "artist": "MICHAN", - "data": { - "isHot": true - }, + "data": {}, "id": 2353, "searchTerms": [ "HELLO" @@ -10502,9 +8752,7 @@ { "altTitles": [], "artist": "GOOD-COOL FT. P", - "data": { - "isHot": false - }, + "data": {}, "id": 2354, "searchTerms": [ "COVERED WITH TH" @@ -10514,9 +8762,7 @@ { "altTitles": [], "artist": "SOUND HOLIC VS.", - "data": { - "isHot": true - }, + "data": {}, "id": 2355, "searchTerms": [ "ROZA DE ANDALUC" @@ -10526,9 +8772,7 @@ { "altTitles": [], "artist": "SHIRITUBEMANIGA", - "data": { - "isHot": true - }, + "data": {}, "id": 2356, "searchTerms": [ "GOOD BYE, SUMME" @@ -10538,9 +8782,7 @@ { "altTitles": [], "artist": "96 AND KEIICHI", - "data": { - "isHot": true - }, + "data": {}, "id": 2357, "searchTerms": [ "FIRE IN MY HEAR" @@ -10550,9 +8792,7 @@ { "altTitles": [], "artist": "BUTAOTOME", - "data": { - "isHot": false - }, + "data": {}, "id": 2358, "searchTerms": [ "RADICAL GIRL" @@ -10562,9 +8802,7 @@ { "altTitles": [], "artist": "RYU", - "data": { - "isHot": true - }, + "data": {}, "id": 2359, "searchTerms": [ "ASAGAO NO NAMID" @@ -10574,9 +8812,7 @@ { "altTitles": [], "artist": "DES-ROW UNITED ", - "data": { - "isHot": true - }, + "data": {}, "id": 2360, "searchTerms": [ "ARUGAMAMANI" @@ -10586,9 +8822,7 @@ { "altTitles": [], "artist": "96 FEAT.SUWA", - "data": { - "isHot": true - }, + "data": {}, "id": 2361, "searchTerms": [ "GONE WITH THE A" @@ -10598,9 +8832,7 @@ { "altTitles": [], "artist": "HIGE DRIVER FEA", - "data": { - "isHot": false - }, + "data": {}, "id": 2362, "searchTerms": [ "SKY DIVER" @@ -10610,9 +8842,7 @@ { "altTitles": [], "artist": "AKHUTA", - "data": { - "isHot": true - }, + "data": {}, "id": 2363, "searchTerms": [ "KISSING WITH TH" @@ -10622,9 +8852,7 @@ { "altTitles": [], "artist": "KRADNESS", - "data": { - "isHot": false - }, + "data": {}, "id": 2364, "searchTerms": [ "ZERO-NO-ISOU" @@ -10634,9 +8862,7 @@ { "altTitles": [], "artist": "DJ TOTTO FEAT.K", - "data": { - "isHot": true - }, + "data": {}, "id": 2365, "searchTerms": [ "VOYAGE SEVEN CO" @@ -10646,9 +8872,7 @@ { "altTitles": [], "artist": "YUSUKE HIRAGA", - "data": { - "isHot": false - }, + "data": {}, "id": 2367, "searchTerms": [ "SEASONS" @@ -10658,9 +8882,7 @@ { "altTitles": [], "artist": "INO.", - "data": { - "isHot": false - }, + "data": {}, "id": 2368, "searchTerms": [ "DEEP DEEP INSID" @@ -10670,9 +8892,7 @@ { "altTitles": [], "artist": "DAIHEI", - "data": { - "isHot": false - }, + "data": {}, "id": 2369, "searchTerms": [ "GO READY" @@ -10682,9 +8902,7 @@ { "altTitles": [], "artist": "DAIHEI", - "data": { - "isHot": false - }, + "data": {}, "id": 2370, "searchTerms": [ "DREAMER'S HIGH" @@ -10694,9 +8912,7 @@ { "altTitles": [], "artist": "ROOKIE.F", - "data": { - "isHot": false - }, + "data": {}, "id": 2371, "searchTerms": [ "HYOUSHIMEIKYUU" @@ -10706,9 +8922,7 @@ { "altTitles": [], "artist": "COLORS", - "data": { - "isHot": true - }, + "data": {}, "id": 2372, "searchTerms": [ "UNDER THE SUN" @@ -10718,9 +8932,7 @@ { "altTitles": [], "artist": "YGGDRASIL WORKS", - "data": { - "isHot": false - }, + "data": {}, "id": 2373, "searchTerms": [ "ANTARES" @@ -10730,9 +8942,7 @@ { "altTitles": [], "artist": "MILLLL", - "data": { - "isHot": false - }, + "data": {}, "id": 2374, "searchTerms": [ "TSUMARI G BLUES" @@ -10742,9 +8952,7 @@ { "altTitles": [], "artist": "ROOKIE.F FEAT. ", - "data": { - "isHot": true - }, + "data": {}, "id": 2375, "searchTerms": [ "NO MORE SORROW" @@ -10754,9 +8962,7 @@ { "altTitles": [], "artist": "MITSUHIRO", - "data": { - "isHot": true - }, + "data": {}, "id": 2376, "searchTerms": [ "BLAZE LINE" @@ -10766,9 +8972,7 @@ { "altTitles": [], "artist": "KANAKO KOTERA", - "data": { - "isHot": true - }, + "data": {}, "id": 2377, "searchTerms": [ "IROHANI HOHETO " @@ -10778,9 +8982,7 @@ { "altTitles": [], "artist": "JUNJOU DISCORD ", - "data": { - "isHot": true - }, + "data": {}, "id": 2378, "searchTerms": [ "SINGULARITY OF " @@ -10790,9 +8992,7 @@ { "altTitles": [], "artist": "PON", - "data": { - "isHot": true - }, + "data": {}, "id": 2379, "searchTerms": [ "3DIM" @@ -10802,9 +9002,7 @@ { "altTitles": [], "artist": "YOSHIHIKO KOEZU", - "data": { - "isHot": true - }, + "data": {}, "id": 2380, "searchTerms": [ "RASPBERRY" @@ -10814,9 +9012,7 @@ { "altTitles": [], "artist": "ANONYMOUS", - "data": { - "isHot": false - }, + "data": {}, "id": 2381, "searchTerms": [ "AION" @@ -10826,9 +9022,7 @@ { "altTitles": [], "artist": "BUTAOTOME", - "data": { - "isHot": true - }, + "data": {}, "id": 2382, "searchTerms": [ "TANPOPO" @@ -10838,9 +9032,7 @@ { "altTitles": [], "artist": "ANZI", - "data": { - "isHot": true - }, + "data": {}, "id": 2383, "searchTerms": [ "LIGHTNING" @@ -10850,9 +9042,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 2384, "searchTerms": [ "WHITE FOREST" @@ -10862,9 +9052,7 @@ { "altTitles": [], "artist": "RYU", - "data": { - "isHot": true - }, + "data": {}, "id": 2385, "searchTerms": [ "AQUATIC BIRD" @@ -10874,9 +9062,7 @@ { "altTitles": [], "artist": "SHIRASAWA RYO F", - "data": { - "isHot": true - }, + "data": {}, "id": 2386, "searchTerms": [ "DRASTIC YOUR DR" @@ -10886,9 +9072,7 @@ { "altTitles": [], "artist": "MAOKI YAMAMOTO ", - "data": { - "isHot": true - }, + "data": {}, "id": 2387, "searchTerms": [ "MONOCHROME ORTE" @@ -10898,9 +9082,7 @@ { "altTitles": [], "artist": "HUMER FEAT.FERN", - "data": { - "isHot": false - }, + "data": {}, "id": 2388, "searchTerms": [ "SETSUNA" @@ -10910,9 +9092,7 @@ { "altTitles": [], "artist": "MASAHIRO GODSPE", - "data": { - "isHot": false - }, + "data": {}, "id": 2389, "searchTerms": [ "SURGE" @@ -10922,9 +9102,7 @@ { "altTitles": [], "artist": "GITADOROCK BY Y", - "data": { - "isHot": true - }, + "data": {}, "id": 2390, "searchTerms": [ "OBORO" @@ -10934,9 +9112,7 @@ { "altTitles": [], "artist": "YASUSHI ASADA", - "data": { - "isHot": true - }, + "data": {}, "id": 2391, "searchTerms": [ "THE FOURTH INTE" @@ -10946,9 +9122,7 @@ { "altTitles": [], "artist": "YOSHIMI KUDO BA", - "data": { - "isHot": true - }, + "data": {}, "id": 2392, "searchTerms": [ "SYUNAKI KIKAI N" @@ -10958,9 +9132,7 @@ { "altTitles": [], "artist": "MAOKI YAMAMOTO", - "data": { - "isHot": true - }, + "data": {}, "id": 2393, "searchTerms": [ "REFLEXES MANIPU" @@ -10970,9 +9142,7 @@ { "altTitles": [], "artist": "MITSUYO", - "data": { - "isHot": false - }, + "data": {}, "id": 2394, "searchTerms": [ "FATAL ATTRACTIO" @@ -10982,9 +9152,7 @@ { "altTitles": [], "artist": "SIS BOND CHIT", - "data": { - "isHot": true - }, + "data": {}, "id": 2395, "searchTerms": [ "AND THE DEAD RA" @@ -10994,9 +9162,7 @@ { "altTitles": [], "artist": "RYU", - "data": { - "isHot": true - }, + "data": {}, "id": 2396, "searchTerms": [ "BLURRY GLASS" @@ -11006,9 +9172,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 2399, "searchTerms": [ "SUGAR SONG AND " @@ -11018,9 +9182,7 @@ { "altTitles": [], "artist": "HOUKAGO TEATIME", - "data": { - "isHot": false - }, + "data": {}, "id": 2402, "searchTerms": [ "GOGO MANIAC" @@ -11030,9 +9192,7 @@ { "altTitles": [], "artist": "ARM VS ZYUKUCHO", - "data": { - "isHot": false - }, + "data": {}, "id": 2404, "searchTerms": [ "YAMINAVE ROCK" @@ -11042,9 +9202,7 @@ { "altTitles": [], "artist": "DAIHEI", - "data": { - "isHot": true - }, + "data": {}, "id": 2405, "searchTerms": [ "BEYOND THE LIGH" @@ -11054,9 +9212,7 @@ { "altTitles": [], "artist": "MITSUHIRO", - "data": { - "isHot": true - }, + "data": {}, "id": 2406, "searchTerms": [ "EXCLAMATION" @@ -11066,9 +9222,7 @@ { "altTitles": [], "artist": "DOUBLE HELIX", - "data": { - "isHot": true - }, + "data": {}, "id": 2407, "searchTerms": [ "OUR FAITH FAITH" @@ -11078,9 +9232,7 @@ { "altTitles": [], "artist": "NEKOMATA_MASTER", - "data": { - "isHot": true - }, + "data": {}, "id": 2408, "searchTerms": [ "FLY FAR BOUNCE" @@ -11090,9 +9242,7 @@ { "altTitles": [], "artist": "BAD HEROES", - "data": { - "isHot": true - }, + "data": {}, "id": 2409, "searchTerms": [ "BAD HERO" @@ -11102,9 +9252,7 @@ { "altTitles": [], "artist": "ROOKIE.F FEAT.H", - "data": { - "isHot": false - }, + "data": {}, "id": 2410, "searchTerms": [ "GITADOLIGHT" @@ -11114,9 +9262,7 @@ { "altTitles": [], "artist": "ROOKIE.F FEAT.H", - "data": { - "isHot": true - }, + "data": {}, "id": 2411, "searchTerms": [ "GITADORASHIKA" @@ -11126,9 +9272,7 @@ { "altTitles": [], "artist": "SARAH", - "data": { - "isHot": false - }, + "data": {}, "id": 2412, "searchTerms": [ "NEXT FUTURE" @@ -11138,9 +9282,7 @@ { "altTitles": [], "artist": "DENNIS GUNN", - "data": { - "isHot": false - }, + "data": {}, "id": 2413, "searchTerms": [ "KING G 2017MIX" @@ -11150,9 +9292,7 @@ { "altTitles": [], "artist": "THEATERR", - "data": { - "isHot": true - }, + "data": {}, "id": 2414, "searchTerms": [ "MEDUSA" @@ -11162,9 +9302,7 @@ { "altTitles": [], "artist": "GEKIDAN RECORD ", - "data": { - "isHot": false - }, + "data": {}, "id": 2415, "searchTerms": [ "FAVORITE STUFFE" @@ -11174,9 +9312,7 @@ { "altTitles": [], "artist": "AKHUTA", - "data": { - "isHot": true - }, + "data": {}, "id": 2416, "searchTerms": [ "MARITAL VOWS" @@ -11186,9 +9322,7 @@ { "altTitles": [], "artist": "SOUND HOLIC VS.", - "data": { - "isHot": true - }, + "data": {}, "id": 2417, "searchTerms": [ "LIPS NOISE HUNT" @@ -11198,9 +9332,7 @@ { "altTitles": [], "artist": "PILOKALPIN", - "data": { - "isHot": false - }, + "data": {}, "id": 2418, "searchTerms": [ "GROWIN-GROWIN" @@ -11210,9 +9342,7 @@ { "altTitles": [], "artist": "AOUP", - "data": { - "isHot": false - }, + "data": {}, "id": 2419, "searchTerms": [ "DING DONG BELL" @@ -11222,9 +9352,7 @@ { "altTitles": [], "artist": "RYU", - "data": { - "isHot": true - }, + "data": {}, "id": 2420, "searchTerms": [ "SACRIFICE" @@ -11234,9 +9362,7 @@ { "altTitles": [], "artist": "KAYUKI", - "data": { - "isHot": false - }, + "data": {}, "id": 2421, "searchTerms": [ "CRESCENT" @@ -11246,9 +9372,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 2422, "searchTerms": [ "BLACK ROSES" @@ -11258,9 +9382,7 @@ { "altTitles": [], "artist": "DJ GENKI FEAT. ", - "data": { - "isHot": false - }, + "data": {}, "id": 2423, "searchTerms": [ "KIKAGAKUTEKI TR" @@ -11270,9 +9392,7 @@ { "altTitles": [], "artist": "DJ GENKI FEAT.N", - "data": { - "isHot": true - }, + "data": {}, "id": 2424, "searchTerms": [ "YUMEIRO SPIRAL" @@ -11282,9 +9402,7 @@ { "altTitles": [], "artist": "BUTAOTOME", - "data": { - "isHot": true - }, + "data": {}, "id": 2425, "searchTerms": [ "DEGUCHI IRIGUCH" @@ -11294,9 +9412,7 @@ { "altTitles": [], "artist": "HIROMIXXX", - "data": { - "isHot": false - }, + "data": {}, "id": 2426, "searchTerms": [ "PERFECT WORLD" @@ -11306,9 +9422,7 @@ { "altTitles": [], "artist": "GRAN-DRAMATIC B", - "data": { - "isHot": false - }, + "data": {}, "id": 2427, "searchTerms": [ "SHITSUREN KAZOE" @@ -11318,9 +9432,7 @@ { "altTitles": [], "artist": "MIGIMIMI SLEEP ", - "data": { - "isHot": false - }, + "data": {}, "id": 2428, "searchTerms": [ "CALLME" @@ -11330,9 +9442,7 @@ { "altTitles": [], "artist": "JANE DOE", - "data": { - "isHot": false - }, + "data": {}, "id": 2429, "searchTerms": [ "13" @@ -11342,9 +9452,7 @@ { "altTitles": [], "artist": "SUWA HIDEO", - "data": { - "isHot": true - }, + "data": {}, "id": 2430, "searchTerms": [ "HAISUINOJIN" @@ -11354,9 +9462,7 @@ { "altTitles": [], "artist": "YOSHIHIKO KOEZU", - "data": { - "isHot": true - }, + "data": {}, "id": 2432, "searchTerms": [ "DURIAN" @@ -11366,9 +9472,7 @@ { "altTitles": [], "artist": "AKHUTA", - "data": { - "isHot": true - }, + "data": {}, "id": 2434, "searchTerms": [ "ATER REGIS ALIU" @@ -11378,9 +9482,7 @@ { "altTitles": [], "artist": "HIMAWARI PUNCH", - "data": { - "isHot": true - }, + "data": {}, "id": 2437, "searchTerms": [ "HITOYO NO KISEK" @@ -11390,9 +9492,7 @@ { "altTitles": [], "artist": "SNOWMAN", - "data": { - "isHot": false - }, + "data": {}, "id": 2438, "searchTerms": [ "JYUNBIUNDOU" @@ -11402,9 +9502,7 @@ { "altTitles": [], "artist": "HIZAKI", - "data": { - "isHot": false - }, + "data": {}, "id": 2439, "searchTerms": [ "VICTORIA" @@ -11414,9 +9512,7 @@ { "altTitles": [], "artist": "DAIHEI", - "data": { - "isHot": false - }, + "data": {}, "id": 2440, "searchTerms": [ "FLY TO SKY" @@ -11426,9 +9522,7 @@ { "altTitles": [], "artist": "MITSUHIRO", - "data": { - "isHot": true - }, + "data": {}, "id": 2441, "searchTerms": [ "FATE OF THE FUR" @@ -11438,9 +9532,7 @@ { "altTitles": [], "artist": "YGGDRASIL WORKS", - "data": { - "isHot": false - }, + "data": {}, "id": 2442, "searchTerms": [ "KIRIHITOHA" @@ -11450,9 +9542,7 @@ { "altTitles": [], "artist": "MAOKI YAMAMOTO ", - "data": { - "isHot": false - }, + "data": {}, "id": 2443, "searchTerms": [ "TOBIKIRI SUGART" @@ -11462,9 +9552,7 @@ { "altTitles": [], "artist": "MAOKI YAMAMOTO", - "data": { - "isHot": true - }, + "data": {}, "id": 2444, "searchTerms": [ "PIRATES BANQUET" @@ -11474,9 +9562,7 @@ { "altTitles": [], "artist": "YOSHIMI KUDO BA", - "data": { - "isHot": true - }, + "data": {}, "id": 2445, "searchTerms": [ "YAOYOROZURANZU" @@ -11486,9 +9572,7 @@ { "altTitles": [], "artist": "AKHUTA", - "data": { - "isHot": true - }, + "data": {}, "id": 2446, "searchTerms": [ "HIMEYURI REQUIE" @@ -11498,9 +9582,7 @@ { "altTitles": [], "artist": "GYZE", - "data": { - "isHot": false - }, + "data": {}, "id": 2447, "searchTerms": [ "PIRATES OF UPAS" @@ -11510,9 +9592,7 @@ { "altTitles": [], "artist": "KENSHI YONEZU", - "data": { - "isHot": false - }, + "data": {}, "id": 2448, "searchTerms": [ "PEACE SIGN" @@ -11522,9 +9602,7 @@ { "altTitles": [], "artist": "KAMISAMA BOKUHA", - "data": { - "isHot": false - }, + "data": {}, "id": 2450, "searchTerms": [ "CQCQ" @@ -11534,9 +9612,7 @@ { "altTitles": [], "artist": "SUCHMOS", - "data": { - "isHot": false - }, + "data": {}, "id": 2451, "searchTerms": [ "STAY TUNE" @@ -11546,9 +9622,7 @@ { "altTitles": [], "artist": "BALLOON", - "data": { - "isHot": false - }, + "data": {}, "id": 2452, "searchTerms": [ "CHARLES" @@ -11558,9 +9632,7 @@ { "altTitles": [], "artist": "HINATABI BITTER", - "data": { - "isHot": true - }, + "data": {}, "id": 2453, "searchTerms": [ "MIRACLE SWEET S" @@ -11570,9 +9642,7 @@ { "altTitles": [], "artist": "HINATABI BITTER", - "data": { - "isHot": true - }, + "data": {}, "id": 2454, "searchTerms": [ "KNIGHT OF RONDO" @@ -11582,9 +9652,7 @@ { "altTitles": [], "artist": "HINATABI BITTER", - "data": { - "isHot": true - }, + "data": {}, "id": 2455, "searchTerms": [ "DRIZZLY VENOM" @@ -11594,9 +9662,7 @@ { "altTitles": [], "artist": "HINATABI BITTER", - "data": { - "isHot": true - }, + "data": {}, "id": 2456, "searchTerms": [ "BEAST'S CHAMPIO" @@ -11606,9 +9672,7 @@ { "altTitles": [], "artist": "HINATABI BITTER", - "data": { - "isHot": true - }, + "data": {}, "id": 2457, "searchTerms": [ "THE BULLET FOR " @@ -11618,9 +9682,7 @@ { "altTitles": [], "artist": "SHINONOME NATSU", - "data": { - "isHot": true - }, + "data": {}, "id": 2458, "searchTerms": [ "KIRISUTE GOMEN" @@ -11630,9 +9692,7 @@ { "altTitles": [], "artist": "SHINONOME KOKON", - "data": { - "isHot": true - }, + "data": {}, "id": 2459, "searchTerms": [ "SHINOBI SHINONO" @@ -11642,9 +9702,7 @@ { "altTitles": [], "artist": "TOKIMEKI IDOL P", - "data": { - "isHot": false - }, + "data": {}, "id": 2460, "searchTerms": [ "DREAMINGING" @@ -11654,9 +9712,7 @@ { "altTitles": [], "artist": "RINZO", - "data": { - "isHot": true - }, + "data": {}, "id": 2461, "searchTerms": [ "THE KINGSROAD" @@ -11666,9 +9722,7 @@ { "altTitles": [], "artist": "SUGISHITA TOKIY", - "data": { - "isHot": false - }, + "data": {}, "id": 2462, "searchTerms": [ "USODARAKENOBOKU" @@ -11678,9 +9732,7 @@ { "altTitles": [], "artist": "AOUP", - "data": { - "isHot": false - }, + "data": {}, "id": 2463, "searchTerms": [ "KUNSHIAYAUKUMOC" @@ -11690,9 +9742,7 @@ { "altTitles": [], "artist": "MASAHIRO GODSPE", - "data": { - "isHot": false - }, + "data": {}, "id": 2464, "searchTerms": [ "BUSY COME BUSY " @@ -11702,9 +9752,7 @@ { "altTitles": [], "artist": "YUKI NAKASHIMA", - "data": { - "isHot": true - }, + "data": {}, "id": 2465, "searchTerms": [ "BE A HERO" @@ -11714,9 +9762,7 @@ { "altTitles": [], "artist": "TRICK TRAP", - "data": { - "isHot": true - }, + "data": {}, "id": 2466, "searchTerms": [ "NAVY BLUE SEA" @@ -11726,9 +9772,7 @@ { "altTitles": [], "artist": "GRAN-DRAMATIC B", - "data": { - "isHot": true - }, + "data": {}, "id": 2467, "searchTerms": [ "SAIKYOU GAME EN" @@ -11738,9 +9782,7 @@ { "altTitles": [], "artist": "U1 OVERGROUND", - "data": { - "isHot": true - }, + "data": {}, "id": 2468, "searchTerms": [ "NOREPINEPHRINE" @@ -11750,9 +9792,7 @@ { "altTitles": [], "artist": "SARAH", - "data": { - "isHot": true - }, + "data": {}, "id": 2469, "searchTerms": [ "ONE DAY" @@ -11762,9 +9802,7 @@ { "altTitles": [], "artist": "DJ TOTTO", - "data": { - "isHot": false - }, + "data": {}, "id": 2470, "searchTerms": [ "WINDY FAIRY GIT" @@ -11774,9 +9812,7 @@ { "altTitles": [], "artist": "AKHUTA WORKS", - "data": { - "isHot": true - }, + "data": {}, "id": 2471, "searchTerms": [ "DUELLA LYRICA" @@ -11786,9 +9822,7 @@ { "altTitles": [], "artist": "R AND R CIRCUIT", - "data": { - "isHot": false - }, + "data": {}, "id": 2472, "searchTerms": [ "7TH FLOOR" @@ -11798,9 +9832,7 @@ { "altTitles": [], "artist": "HUMER VS IMY FE", - "data": { - "isHot": true - }, + "data": {}, "id": 2473, "searchTerms": [ "SHIDENISSEN" @@ -11810,9 +9842,7 @@ { "altTitles": [], "artist": "TAG", - "data": { - "isHot": false - }, + "data": {}, "id": 2474, "searchTerms": [ "A STORY THAT CO" @@ -11822,9 +9852,7 @@ { "altTitles": [], "artist": "HINATABI BITTER", - "data": { - "isHot": true - }, + "data": {}, "id": 2475, "searchTerms": [ "CHOCOLATE SMILE" @@ -11834,9 +9862,7 @@ { "altTitles": [], "artist": "TATSUYA", - "data": { - "isHot": true - }, + "data": {}, "id": 2476, "searchTerms": [ "TRIANGULUM" @@ -11846,9 +9872,7 @@ { "altTitles": [], "artist": "HIMAWARI PUNCH", - "data": { - "isHot": true - }, + "data": {}, "id": 2477, "searchTerms": [ "FLIPBOOK STORY" @@ -11858,9 +9882,7 @@ { "altTitles": [], "artist": "KENSHI YONEZU", - "data": { - "isHot": false - }, + "data": {}, "id": 2482, "searchTerms": [ "SHUNRAI" @@ -11870,9 +9892,7 @@ { "altTitles": [], "artist": "KANA BOON", - "data": { - "isHot": false - }, + "data": {}, "id": 2483, "searchTerms": [ "SILHOUETTE" @@ -11882,9 +9902,7 @@ { "altTitles": [], "artist": "HONEY LATTE", - "data": { - "isHot": true - }, + "data": {}, "id": 2484, "searchTerms": [ "SWEET FEELIN" @@ -11894,9 +9912,7 @@ { "altTitles": [], "artist": "YUKI NAKASHIMA", - "data": { - "isHot": true - }, + "data": {}, "id": 2485, "searchTerms": [ "RAISON DETRE ZE" @@ -11906,9 +9922,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 2486, "searchTerms": [ "MODEL FT4" @@ -11918,9 +9932,7 @@ { "altTitles": [], "artist": "MITSUHIRO", - "data": { - "isHot": false - }, + "data": {}, "id": 2487, "searchTerms": [ "DANCE OF THE VA" @@ -11930,9 +9942,7 @@ { "altTitles": [], "artist": "MEG", - "data": { - "isHot": false - }, + "data": {}, "id": 2488, "searchTerms": [ "REBORN" @@ -11942,9 +9952,7 @@ { "altTitles": [], "artist": "SARAH", - "data": { - "isHot": true - }, + "data": {}, "id": 2489, "searchTerms": [ "MELODY OF LOVE" @@ -11954,9 +9962,7 @@ { "altTitles": [], "artist": "DAIHEI", - "data": { - "isHot": true - }, + "data": {}, "id": 2490, "searchTerms": [ "LIFE GOES ON" @@ -11966,9 +9972,7 @@ { "altTitles": [], "artist": "GOOD-COOL FT. S", - "data": { - "isHot": true - }, + "data": {}, "id": 2491, "searchTerms": [ "SAN BON GAWA" @@ -11978,9 +9982,7 @@ { "altTitles": [], "artist": "YGGDRASIL WORKS", - "data": { - "isHot": true - }, + "data": {}, "id": 2492, "searchTerms": [ "KILLING BITES" @@ -11990,9 +9992,7 @@ { "altTitles": [], "artist": "ROOKIE.F FEAT. ", - "data": { - "isHot": true - }, + "data": {}, "id": 2493, "searchTerms": [ "RAIN DROPS" @@ -12002,9 +10002,7 @@ { "altTitles": [], "artist": "KANADEYUK", - "data": { - "isHot": true - }, + "data": {}, "id": 2494, "searchTerms": [ "BLOOD RED" @@ -12014,9 +10012,7 @@ { "altTitles": [], "artist": "KANADEYUK", - "data": { - "isHot": false - }, + "data": {}, "id": 2495, "searchTerms": [ "CLOWING FOLLY" @@ -12026,9 +10022,7 @@ { "altTitles": [], "artist": "OSTER PROJECT", - "data": { - "isHot": true - }, + "data": {}, "id": 2496, "searchTerms": [ "RENGOKUJIHEN" @@ -12038,9 +10032,7 @@ { "altTitles": [], "artist": "MAOKI YAMAMOTO", - "data": { - "isHot": true - }, + "data": {}, "id": 2497, "searchTerms": [ "CAPTURING XANAD" @@ -12050,9 +10042,7 @@ { "altTitles": [], "artist": "SYUNN", - "data": { - "isHot": true - }, + "data": {}, "id": 2498, "searchTerms": [ "CINNAMON" @@ -12062,9 +10052,7 @@ { "altTitles": [], "artist": "YASUSHI ASADA", - "data": { - "isHot": true - }, + "data": {}, "id": 2499, "searchTerms": [ "PHYSICAL DECAY" @@ -12074,9 +10062,7 @@ { "altTitles": [], "artist": "YOSHIMI KUDO BA", - "data": { - "isHot": true - }, + "data": {}, "id": 2500, "searchTerms": [ "KIYARORA EISEI " @@ -12086,9 +10072,7 @@ { "altTitles": [], "artist": "TOMOSUKE FEAT M", - "data": { - "isHot": false - }, + "data": {}, "id": 2501, "searchTerms": [ "MONOLITH GITADO" @@ -12098,9 +10082,7 @@ { "altTitles": [], "artist": "MATSUYAMA AOI G", - "data": { - "isHot": true - }, + "data": {}, "id": 2502, "searchTerms": [ "KIMIMOTENSHINRA" @@ -12110,9 +10092,7 @@ { "altTitles": [], "artist": "TAG", - "data": { - "isHot": true - }, + "data": {}, "id": 2503, "searchTerms": [ "BEGINNING" @@ -12122,9 +10102,7 @@ { "altTitles": [], "artist": "MEGUMI TATSUMI ", - "data": { - "isHot": true - }, + "data": {}, "id": 2504, "searchTerms": [ "SUMMER MOTION" @@ -12134,9 +10112,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": false - }, + "data": {}, "id": 2505, "searchTerms": [ "TRIPLE ORBIT" @@ -12146,9 +10122,7 @@ { "altTitles": [], "artist": "DJ TOTTO FEAT.M", - "data": { - "isHot": true - }, + "data": {}, "id": 2506, "searchTerms": [ "SEIZAGAKOISHITA" @@ -12158,9 +10132,7 @@ { "altTitles": [], "artist": "PERSON09", - "data": { - "isHot": true - }, + "data": {}, "id": 2507, "searchTerms": [ "PUBERTY DYSTHYM" @@ -12170,9 +10142,7 @@ { "altTitles": [], "artist": "NEKOMATAMASTER", - "data": { - "isHot": true - }, + "data": {}, "id": 2508, "searchTerms": [ "LIFE IS BEAUTIF" @@ -12182,9 +10152,7 @@ { "altTitles": [], "artist": "U1 OVERGROUND", - "data": { - "isHot": true - }, + "data": {}, "id": 2509, "searchTerms": [ "SUPER SUMMER SA" @@ -12194,9 +10162,7 @@ { "altTitles": [], "artist": "GEKIDAN RECORD ", - "data": { - "isHot": true - }, + "data": {}, "id": 2510, "searchTerms": [ "WIND CHIME FIRE" @@ -12206,9 +10172,7 @@ { "altTitles": [], "artist": "DUSTUP", - "data": { - "isHot": true - }, + "data": {}, "id": 2511, "searchTerms": [ "PREY" @@ -12218,9 +10182,7 @@ { "altTitles": [], "artist": "HUMER FEAT.PON", - "data": { - "isHot": true - }, + "data": {}, "id": 2512, "searchTerms": [ "REJOIN" @@ -12230,9 +10192,7 @@ { "altTitles": [], "artist": "SOUND HOLIC VS.", - "data": { - "isHot": true - }, + "data": {}, "id": 2513, "searchTerms": [ "KITKA SHURANOMA" @@ -12242,9 +10202,7 @@ { "altTitles": [], "artist": "KANA YAGINUMA", - "data": { - "isHot": false - }, + "data": {}, "id": 2514, "searchTerms": [ "BITTER ESCAPE" @@ -12254,9 +10212,7 @@ { "altTitles": [], "artist": "KIRYU", - "data": { - "isHot": false - }, + "data": {}, "id": 2515, "searchTerms": [ "MUKU" @@ -12266,9 +10222,7 @@ { "altTitles": [], "artist": "MARO", - "data": { - "isHot": true - }, + "data": {}, "id": 2516, "searchTerms": [ "BREAK DOWN" @@ -12278,9 +10232,7 @@ { "altTitles": [], "artist": "MEG FEAT. KEITA", - "data": { - "isHot": true - }, + "data": {}, "id": 2517, "searchTerms": [ "INSIDE MY HEART" @@ -12290,9 +10242,7 @@ { "altTitles": [], "artist": "YUUKI SATO", - "data": { - "isHot": true - }, + "data": {}, "id": 2518, "searchTerms": [ "ROAD TO DREAM" @@ -12302,9 +10252,7 @@ { "altTitles": [], "artist": "RYU", - "data": { - "isHot": true - }, + "data": {}, "id": 2519, "searchTerms": [ "TENKU NO ROUKAK" @@ -12314,9 +10262,7 @@ { "altTitles": [], "artist": "MIGIMIMI SLEEP ", - "data": { - "isHot": true - }, + "data": {}, "id": 2520, "searchTerms": [ "MIGHT BE DEAD" @@ -12326,9 +10272,7 @@ { "altTitles": [], "artist": "ROOKIE.F FEAT.D", - "data": { - "isHot": true - }, + "data": {}, "id": 2521, "searchTerms": [ "LAS BOS" @@ -12338,9 +10282,7 @@ { "altTitles": [], "artist": "COLORS", - "data": { - "isHot": true - }, + "data": {}, "id": 2522, "searchTerms": [ "HANABI" @@ -12350,9 +10292,7 @@ { "altTitles": [], "artist": "BUTAOTOME", - "data": { - "isHot": true - }, + "data": {}, "id": 2523, "searchTerms": [ "TOUMEI JUSTICE" @@ -12362,9 +10302,7 @@ { "altTitles": [], "artist": "KAZUE AKITA FEA", - "data": { - "isHot": false - }, + "data": {}, "id": 2524, "searchTerms": [ "NOW OR NEVER MI" @@ -12374,9 +10312,7 @@ { "altTitles": [], "artist": "HOLY SAINT META", - "data": { - "isHot": true - }, + "data": {}, "id": 2525, "searchTerms": [ "THE METAL WARRI" @@ -12386,9 +10322,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": false - }, + "data": {}, "id": 2526, "searchTerms": [ "1816 WIND" @@ -12398,9 +10332,7 @@ { "altTitles": [], "artist": "YOSHIHIKO KOEZU", - "data": { - "isHot": false - }, + "data": {}, "id": 2527, "searchTerms": [ "UGLY DUCKLING" @@ -12410,9 +10342,7 @@ { "altTitles": [], "artist": "HIMAWARI PUNCH", - "data": { - "isHot": true - }, + "data": {}, "id": 2528, "searchTerms": [ "HIMAWARI EXCHAI" @@ -12422,9 +10352,7 @@ { "altTitles": [], "artist": "RED GLASSES FEA", - "data": { - "isHot": true - }, + "data": {}, "id": 2529, "searchTerms": [ "GREEN LEAF SYND" @@ -12434,9 +10362,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 2530, "searchTerms": [ "THE ULTIMATES -" @@ -12446,9 +10372,7 @@ { "altTitles": [], "artist": "YVYA", - "data": { - "isHot": true - }, + "data": {}, "id": 2531, "searchTerms": [ "THE ULTIMATES -" @@ -12458,9 +10382,7 @@ { "altTitles": [], "artist": "ZERO", - "data": { - "isHot": false - }, + "data": {}, "id": 2532, "searchTerms": [ "KNIGHTS ASSAULT" @@ -12470,9 +10392,7 @@ { "altTitles": [], "artist": "RANI", - "data": { - "isHot": true - }, + "data": {}, "id": 2533, "searchTerms": [ "BATUBATUKEIKOKU" @@ -12482,9 +10402,7 @@ { "altTitles": [], "artist": "YORUSHIKA", - "data": { - "isHot": false - }, + "data": {}, "id": 2534, "searchTerms": [ "ITTE" @@ -12494,9 +10412,7 @@ { "altTitles": [], "artist": "KISIDAKYOUDAN A", - "data": { - "isHot": false - }, + "data": {}, "id": 2535, "searchTerms": [ "UN OWEN WAS HER" @@ -12506,9 +10422,7 @@ { "altTitles": [], "artist": "04 LIMITED SAZA", - "data": { - "isHot": false - }, + "data": {}, "id": 2536, "searchTerms": [ "MY HERO" @@ -12518,9 +10432,7 @@ { "altTitles": [], "artist": "BLANC BUNNY BAN", - "data": { - "isHot": false - }, + "data": {}, "id": 2537, "searchTerms": [ "SYNCHRO FISH" @@ -12530,9 +10442,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": false - }, + "data": {}, "id": 2538, "searchTerms": [ "SENBONZAKURA" @@ -12542,9 +10452,7 @@ { "altTitles": [], "artist": "SUPER MOMO TARO", - "data": { - "isHot": true - }, + "data": {}, "id": 2539, "searchTerms": [ "BURN BURN BURNI" @@ -12554,9 +10462,7 @@ { "altTitles": [], "artist": "POWER OF NATURE", - "data": { - "isHot": true - }, + "data": {}, "id": 2540, "searchTerms": [ "RINGANAKU" @@ -12566,9 +10472,7 @@ { "altTitles": [], "artist": "ASAKI", - "data": { - "isHot": true - }, + "data": {}, "id": 2541, "searchTerms": [ "BANBUTUKAIRAKUR" @@ -12578,9 +10482,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 2542, "searchTerms": [ "FIRE 2" @@ -12590,9 +10492,7 @@ { "altTitles": [], "artist": "TETUGAKU", - "data": { - "isHot": true - }, + "data": {}, "id": 2543, "searchTerms": [ "HITONATU NO TAW" @@ -12602,9 +10502,7 @@ { "altTitles": [], "artist": "HIMAWARI PUNCH", - "data": { - "isHot": true - }, + "data": {}, "id": 2544, "searchTerms": [ "HITOYO NO KISEK" @@ -12614,9 +10512,7 @@ { "altTitles": [], "artist": "YUKI NAKASHIMA", - "data": { - "isHot": true - }, + "data": {}, "id": 2545, "searchTerms": [ "CATCH OUR FIRE" @@ -12626,9 +10522,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": false - }, + "data": {}, "id": 2546, "searchTerms": [ "POLAR NIGHT" @@ -12638,9 +10532,7 @@ { "altTitles": [], "artist": "AKHUTA WORKS", - "data": { - "isHot": false - }, + "data": {}, "id": 2547, "searchTerms": [ "A TALE OF BLIND" @@ -12650,9 +10542,7 @@ { "altTitles": [], "artist": "COLORED STRINGS", - "data": { - "isHot": true - }, + "data": {}, "id": 2548, "searchTerms": [ "LETS DANCE" @@ -12662,9 +10552,7 @@ { "altTitles": [], "artist": "EL DORADO", - "data": { - "isHot": true - }, + "data": {}, "id": 2549, "searchTerms": [ "KATSUTE EGAITA " @@ -12674,9 +10562,7 @@ { "altTitles": [], "artist": "DES-ROW UNITED", - "data": { - "isHot": true - }, + "data": {}, "id": 2550, "searchTerms": [ "DARAKU" @@ -12686,9 +10572,7 @@ { "altTitles": [], "artist": "MEG FEAT.KIHIRO", - "data": { - "isHot": true - }, + "data": {}, "id": 2551, "searchTerms": [ "STATE OF MIND" @@ -12698,9 +10582,7 @@ { "altTitles": [], "artist": "NINE UNIVERSE", - "data": { - "isHot": true - }, + "data": {}, "id": 2552, "searchTerms": [ "KILLING MY HEAR" @@ -12710,9 +10592,7 @@ { "altTitles": [], "artist": "GEKIDAN RECORD ", - "data": { - "isHot": true - }, + "data": {}, "id": 2553, "searchTerms": [ "TREACHERY" @@ -12722,9 +10602,7 @@ { "altTitles": [], "artist": "YGGDRASIL WORKS", - "data": { - "isHot": true - }, + "data": {}, "id": 2554, "searchTerms": [ "RIDDLE" @@ -12734,9 +10612,7 @@ { "altTitles": [], "artist": "ROOKIE.F FEAT. ", - "data": { - "isHot": true - }, + "data": {}, "id": 2555, "searchTerms": [ "NEVER END" @@ -12746,9 +10622,7 @@ { "altTitles": [], "artist": "YVYA", - "data": { - "isHot": true - }, + "data": {}, "id": 2556, "searchTerms": [ "FRACTUS" @@ -12758,9 +10632,7 @@ { "altTitles": [], "artist": "SAORI YASAKA FE", - "data": { - "isHot": true - }, + "data": {}, "id": 2557, "searchTerms": [ "TOKYO RIDE ON T" @@ -12770,9 +10642,7 @@ { "altTitles": [], "artist": "CHISA FEAT.MIA", - "data": { - "isHot": true - }, + "data": {}, "id": 2558, "searchTerms": [ "TAKE ME HIGHER" @@ -12782,9 +10652,7 @@ { "altTitles": [], "artist": "RENO", - "data": { - "isHot": false - }, + "data": {}, "id": 2559, "searchTerms": [ "HIDDEN EMOTIONS" @@ -12794,9 +10662,7 @@ { "altTitles": [], "artist": "HUΣER × YVYA", - "data": { - "isHot": true - }, + "data": {}, "id": 2560, "searchTerms": [ "NEURON" @@ -12806,9 +10672,7 @@ { "altTitles": [], "artist": "BLANC BUNNY BAN", - "data": { - "isHot": false - }, + "data": {}, "id": 2561, "searchTerms": [ "HAKONIWA NO ETU" @@ -12818,9 +10682,7 @@ { "altTitles": [], "artist": "BLANC BUNNY BAN", - "data": { - "isHot": false - }, + "data": {}, "id": 2562, "searchTerms": [ "TATAEYO ZETTAIH" @@ -12830,9 +10692,7 @@ { "altTitles": [], "artist": "BLANC BUNNY BAN", - "data": { - "isHot": false - }, + "data": {}, "id": 2563, "searchTerms": [ "ONIGIRI DISCO" @@ -12842,9 +10702,7 @@ { "altTitles": [], "artist": "THOMAS HOWARD L", - "data": { - "isHot": true - }, + "data": {}, "id": 2564, "searchTerms": [ "CONQUISTADOR" @@ -12854,9 +10712,7 @@ { "altTitles": [], "artist": "PARTYCREW FROM ", - "data": { - "isHot": true - }, + "data": {}, "id": 2565, "searchTerms": [ "SESSION WITH YO" @@ -12866,9 +10722,7 @@ { "altTitles": [], "artist": "SHOUNEN RADIO", - "data": { - "isHot": false - }, + "data": {}, "id": 2566, "searchTerms": [ "NEU" @@ -12878,9 +10732,7 @@ { "altTitles": [], "artist": "ASAKI", - "data": { - "isHot": true - }, + "data": {}, "id": 2567, "searchTerms": [ "SANAGI RE" @@ -12890,9 +10742,7 @@ { "altTitles": [], "artist": "AKHUTA WORKS", - "data": { - "isHot": true - }, + "data": {}, "id": 2568, "searchTerms": [ "PLUVIA" @@ -12902,9 +10752,7 @@ { "altTitles": [], "artist": "IKEDATAKADA", - "data": { - "isHot": true - }, + "data": {}, "id": 2569, "searchTerms": [ "EM11" @@ -12914,9 +10762,7 @@ { "altTitles": [], "artist": "PINK CAPSULE", - "data": { - "isHot": true - }, + "data": {}, "id": 2570, "searchTerms": [ "YUENI AI SO BAD" @@ -12926,9 +10772,7 @@ { "altTitles": [], "artist": "BEMANI SOUND TE", - "data": { - "isHot": false - }, + "data": {}, "id": 2571, "searchTerms": [ "50TH MEMORIAL S" @@ -12938,9 +10782,7 @@ { "altTitles": [], "artist": "BEMANI SOUND TE", - "data": { - "isHot": false - }, + "data": {}, "id": 2572, "searchTerms": [ "50TH MEMORIAL S" @@ -12950,9 +10792,7 @@ { "altTitles": [], "artist": "BEMANI SOUND TE", - "data": { - "isHot": false - }, + "data": {}, "id": 2573, "searchTerms": [ "50TH MEMORIAL S" @@ -12962,9 +10802,7 @@ { "altTitles": [], "artist": "BEMANI SOUND TE", - "data": { - "isHot": false - }, + "data": {}, "id": 2574, "searchTerms": [ "50TH MEMORIAL S" @@ -12974,9 +10812,7 @@ { "altTitles": [], "artist": "USO TO CHAMELEO", - "data": { - "isHot": false - }, + "data": {}, "id": 2575, "searchTerms": [ "SAREDO KIJYUTSU" @@ -12986,9 +10822,7 @@ { "altTitles": [], "artist": "DJ TOTTO", - "data": { - "isHot": true - }, + "data": {}, "id": 2576, "searchTerms": [ "STELLA IN DREAM" @@ -12998,9 +10832,7 @@ { "altTitles": [], "artist": "VIVI", - "data": { - "isHot": true - }, + "data": {}, "id": 2577, "searchTerms": [ "SAIGO NO TSUYOG" @@ -13010,9 +10842,7 @@ { "altTitles": [], "artist": "VIVI", - "data": { - "isHot": false - }, + "data": {}, "id": 2578, "searchTerms": [ "HAVE A GOOD TIM" @@ -13022,9 +10852,7 @@ { "altTitles": [], "artist": "TRICK TRAP", - "data": { - "isHot": true - }, + "data": {}, "id": 2579, "searchTerms": [ "GRAY CLOUDS" @@ -13034,9 +10862,7 @@ { "altTitles": [], "artist": "ASAKI", - "data": { - "isHot": true - }, + "data": {}, "id": 2580, "searchTerms": [ "TSUMINAGARA...T" @@ -13046,9 +10872,7 @@ { "altTitles": [], "artist": "ASAKI", - "data": { - "isHot": false - }, + "data": {}, "id": 2581, "searchTerms": [ "SHIAWASE NO DAI" @@ -13058,9 +10882,7 @@ { "altTitles": [], "artist": "ASAKI & RENO", - "data": { - "isHot": true - }, + "data": {}, "id": 2582, "searchTerms": [ "DRAGON BLADE -T" @@ -13070,9 +10892,7 @@ { "altTitles": [], "artist": "TOMOSUKE FEAT. ", - "data": { - "isHot": true - }, + "data": {}, "id": 2583, "searchTerms": [ "PAIN" @@ -13082,9 +10902,7 @@ { "altTitles": [], "artist": "YVYA", - "data": { - "isHot": true - }, + "data": {}, "id": 2584, "searchTerms": [ "NEBULAS" @@ -13094,9 +10912,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": false - }, + "data": {}, "id": 2585, "searchTerms": [ "1716 SAHARA MOO" @@ -13106,9 +10922,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 2586, "searchTerms": [ "MEI LI DE XIA R" @@ -13118,9 +10932,7 @@ { "altTitles": [], "artist": "HIMAWARI PUNCH", - "data": { - "isHot": true - }, + "data": {}, "id": 2587, "searchTerms": [ "HONEY-PUDDING W" @@ -13130,9 +10942,7 @@ { "altTitles": [], "artist": "HIMAWARI PUNCH", - "data": { - "isHot": true - }, + "data": {}, "id": 2588, "searchTerms": [ "THE PAST FOR TH" @@ -13142,9 +10952,7 @@ { "altTitles": [], "artist": "AKHUTA WORKS", - "data": { - "isHot": true - }, + "data": {}, "id": 2589, "searchTerms": [ "BENIBANA" @@ -13154,9 +10962,7 @@ { "altTitles": [], "artist": "YVYA × MUTSUHI", - "data": { - "isHot": true - }, + "data": {}, "id": 2590, "searchTerms": [ "SIX STRING PROO" @@ -13166,9 +10972,7 @@ { "altTitles": [], "artist": "DJ TECHNORCH WI", - "data": { - "isHot": true - }, + "data": {}, "id": 2591, "searchTerms": [ "SMALLEST 3K-PER" @@ -13178,9 +10982,7 @@ { "altTitles": [], "artist": "AKIRA COMPLEX W", - "data": { - "isHot": true - }, + "data": {}, "id": 2592, "searchTerms": [ "BLACK JACKAL GI" @@ -13190,9 +10992,7 @@ { "altTitles": [], "artist": "NEKOMATA GEKIDA", - "data": { - "isHot": true - }, + "data": {}, "id": 2593, "searchTerms": [ "AFTERIMAGE D'AU" @@ -13202,9 +11002,7 @@ { "altTitles": [], "artist": "PON FEAT.NUKO", - "data": { - "isHot": true - }, + "data": {}, "id": 2594, "searchTerms": [ "OH MYLOVELYSWEE" @@ -13214,9 +11012,7 @@ { "altTitles": [], "artist": "PHQUASE YVYA", - "data": { - "isHot": true - }, + "data": {}, "id": 2595, "searchTerms": [ "VOLTISSISSIMO G" @@ -13226,9 +11022,7 @@ { "altTitles": [], "artist": "S-C-U & SYUNN ", - "data": { - "isHot": true - }, + "data": {}, "id": 2596, "searchTerms": [ "TOY BOXER GITAD" @@ -13238,9 +11032,7 @@ { "altTitles": [], "artist": "DJ TAKA", - "data": { - "isHot": true - }, + "data": {}, "id": 2597, "searchTerms": [ "TRILL AUF G" @@ -13250,9 +11042,7 @@ { "altTitles": [], "artist": "ICHIKA", - "data": { - "isHot": true - }, + "data": {}, "id": 2598, "searchTerms": [ "MIDNIGHT WAR" @@ -13262,9 +11052,7 @@ { "altTitles": [], "artist": "GRAN DRAMATIC B", - "data": { - "isHot": false - }, + "data": {}, "id": 2599, "searchTerms": [ "YOIMACHI ATTENT" @@ -13274,9 +11062,7 @@ { "altTitles": [], "artist": "ROOKIE F FEAT Y", - "data": { - "isHot": false - }, + "data": {}, "id": 2600, "searchTerms": [ "CHOUSOKUSENSHIG" @@ -13286,9 +11072,7 @@ { "altTitles": [], "artist": "ROOKIE.F", - "data": { - "isHot": true - }, + "data": {}, "id": 2601, "searchTerms": [ "HYOUSHIMEIKYUUT" @@ -13298,9 +11082,7 @@ { "altTitles": [], "artist": "RYU", - "data": { - "isHot": true - }, + "data": {}, "id": 2602, "searchTerms": [ "TENKYU NO MAI" @@ -13310,9 +11092,7 @@ { "altTitles": [], "artist": "RENO", - "data": { - "isHot": true - }, + "data": {}, "id": 2603, "searchTerms": [ "THE ESCAPE" @@ -13322,9 +11102,7 @@ { "altTitles": [], "artist": "RENO", - "data": { - "isHot": true - }, + "data": {}, "id": 2604, "searchTerms": [ "OBSESSION" @@ -13334,9 +11112,7 @@ { "altTitles": [], "artist": "SARAH(FROM NINE", - "data": { - "isHot": false - }, + "data": {}, "id": 2605, "searchTerms": [ "RAIMEY" @@ -13346,9 +11122,7 @@ { "altTitles": [], "artist": "MEG FEAT. KEITA", - "data": { - "isHot": false - }, + "data": {}, "id": 2606, "searchTerms": [ "OVERCOME" @@ -13358,9 +11132,7 @@ { "altTitles": [], "artist": "AILI", - "data": { - "isHot": true - }, + "data": {}, "id": 2607, "searchTerms": [ "SWEET ANNIVERSA" @@ -13370,9 +11142,7 @@ { "altTitles": [], "artist": "OTOBEAR RIO", - "data": { - "isHot": true - }, + "data": {}, "id": 2608, "searchTerms": [ "OTOBEAR EKAKIUT" @@ -13382,9 +11152,7 @@ { "altTitles": [], "artist": "HUMER FEAT.FERN", - "data": { - "isHot": true - }, + "data": {}, "id": 2609, "searchTerms": [ "JUNSHINKARENDEZ" @@ -13394,9 +11162,7 @@ { "altTitles": [], "artist": "ASAKI", - "data": { - "isHot": true - }, + "data": {}, "id": 2610, "searchTerms": [ "JIKKAI" @@ -13406,9 +11172,7 @@ { "altTitles": [], "artist": "MAMI", - "data": { - "isHot": true - }, + "data": {}, "id": 2611, "searchTerms": [ "KANOJO HA KAITO" @@ -13418,9 +11182,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 2612, "searchTerms": [ "ECLIPSE 2" @@ -13430,9 +11192,7 @@ { "altTitles": [], "artist": "MIA FEAT SENRIT", - "data": { - "isHot": true - }, + "data": {}, "id": 2613, "searchTerms": [ "TOUMEINAHANA" @@ -13442,9 +11202,7 @@ { "altTitles": [], "artist": "KAGEKIDAN RECOR", - "data": { - "isHot": true - }, + "data": {}, "id": 2614, "searchTerms": [ "FLOWER NAMED LO" @@ -13454,9 +11212,7 @@ { "altTitles": [], "artist": "ASAKA", - "data": { - "isHot": false - }, + "data": {}, "id": 2615, "searchTerms": [ "SHINY DAYS" @@ -13466,9 +11222,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 2616, "searchTerms": [ "WAKAMONONOSUBET" @@ -13478,9 +11232,7 @@ { "altTitles": [], "artist": "FREDERIC", - "data": { - "isHot": false - }, + "data": {}, "id": 2617, "searchTerms": [ "VISION" @@ -13490,9 +11242,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 2618, "searchTerms": [ "HAKUJITSU" @@ -13502,9 +11252,7 @@ { "altTitles": [], "artist": "YORUSHIKA", - "data": { - "isHot": false - }, + "data": {}, "id": 2619, "searchTerms": [ "TADA KIMINI HAR" @@ -13514,9 +11262,7 @@ { "altTitles": [], "artist": "IRONBUNNY", - "data": { - "isHot": false - }, + "data": {}, "id": 2620, "searchTerms": [ "23TWENTY THREE" @@ -13526,9 +11272,7 @@ { "altTitles": [], "artist": "AFTER THE RAIN ", - "data": { - "isHot": false - }, + "data": {}, "id": 2621, "searchTerms": [ "1 2 3" @@ -13538,9 +11282,7 @@ { "altTitles": [], "artist": "ASAKI", - "data": { - "isHot": true - }, + "data": {}, "id": 2622, "searchTerms": [ "SLIP INTO MY RO" @@ -13550,9 +11292,7 @@ { "altTitles": [], "artist": "PERSON09", - "data": { - "isHot": false - }, + "data": {}, "id": 2623, "searchTerms": [ "CATAPULTED ARCH" @@ -13562,9 +11302,7 @@ { "altTitles": [], "artist": "METEOROLOGISTS", - "data": { - "isHot": true - }, + "data": {}, "id": 2624, "searchTerms": [ "SORANAKI" @@ -13574,9 +11312,7 @@ { "altTitles": [], "artist": "NEKOMATA-MASTER", - "data": { - "isHot": true - }, + "data": {}, "id": 2625, "searchTerms": [ "CHAOS EATER GIT" @@ -13586,9 +11322,7 @@ { "altTitles": [], "artist": "YUKI NAKASHIMA ", - "data": { - "isHot": false - }, + "data": {}, "id": 2626, "searchTerms": [ "RANKER KILLER G" @@ -13598,9 +11332,7 @@ { "altTitles": [], "artist": "TAG FEAT. RIO H", - "data": { - "isHot": true - }, + "data": {}, "id": 2627, "searchTerms": [ "MIREN TARATTA" @@ -13610,9 +11342,7 @@ { "altTitles": [], "artist": "BUTAOTOME", - "data": { - "isHot": true - }, + "data": {}, "id": 2628, "searchTerms": [ "HENTEKO" @@ -13622,9 +11352,7 @@ { "altTitles": [], "artist": "BUTAOTOME", - "data": { - "isHot": false - }, + "data": {}, "id": 2629, "searchTerms": [ "SOLID" @@ -13634,9 +11362,7 @@ { "altTitles": [], "artist": "IKEDAWASABI", - "data": { - "isHot": true - }, + "data": {}, "id": 2630, "searchTerms": [ "SADAME" @@ -13646,9 +11372,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 2631, "searchTerms": [ "MODEL DD13" @@ -13658,9 +11382,7 @@ { "altTitles": [], "artist": "HIGE DRIVER & Y", - "data": { - "isHot": true - }, + "data": {}, "id": 2632, "searchTerms": [ "SESSHA SESSHA S" @@ -13670,9 +11392,7 @@ { "altTitles": [], "artist": "YVYA", - "data": { - "isHot": false - }, + "data": {}, "id": 2633, "searchTerms": [ "FUEGO GITADORA " @@ -13682,9 +11402,7 @@ { "altTitles": [], "artist": "DJ TOTTO FEAT Y", - "data": { - "isHot": false - }, + "data": {}, "id": 2634, "searchTerms": [ "AROUSING" @@ -13694,9 +11412,7 @@ { "altTitles": [], "artist": "PON", - "data": { - "isHot": false - }, + "data": {}, "id": 2635, "searchTerms": [ "LA FAME DI ADRI" @@ -13706,9 +11422,7 @@ { "altTitles": [], "artist": "OSTER PROJECT", - "data": { - "isHot": true - }, + "data": {}, "id": 2636, "searchTerms": [ "COSMIC SYMPHONY" @@ -13718,9 +11432,7 @@ { "altTitles": [], "artist": "KE-JI", - "data": { - "isHot": false - }, + "data": {}, "id": 2637, "searchTerms": [ "LAST CONCERTO" @@ -13730,9 +11442,7 @@ { "altTitles": [], "artist": "KAMERIA", - "data": { - "isHot": true - }, + "data": {}, "id": 2638, "searchTerms": [ "EMPIRE OF FLAME" @@ -13742,9 +11452,7 @@ { "altTitles": [], "artist": "R & R SHOXX", - "data": { - "isHot": true - }, + "data": {}, "id": 2639, "searchTerms": [ "KRAMER STRAT" @@ -13754,9 +11462,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 2640, "searchTerms": [ "PRETENDER" @@ -13766,9 +11472,7 @@ { "altTitles": [], "artist": "YVYA OJ FEAT. N", - "data": { - "isHot": true - }, + "data": {}, "id": 2641, "searchTerms": [ "PINK BORDERLINE" @@ -13778,9 +11482,7 @@ { "altTitles": [], "artist": "ASAKI", - "data": { - "isHot": true - }, + "data": {}, "id": 2642, "searchTerms": [ "HAE NO OU" @@ -13790,9 +11492,7 @@ { "altTitles": [], "artist": "YVYA", - "data": { - "isHot": true - }, + "data": {}, "id": 2643, "searchTerms": [ "ALNILAM" @@ -13802,9 +11502,7 @@ { "altTitles": [], "artist": "RAYFLOWER", - "data": { - "isHot": false - }, + "data": {}, "id": 2644, "searchTerms": [ "BLOOM MOMENT" @@ -13814,9 +11512,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 2645, "searchTerms": [ "GURENGE" @@ -13826,9 +11522,7 @@ { "altTitles": [], "artist": "ANONYMOUS", - "data": { - "isHot": true - }, + "data": {}, "id": 2646, "searchTerms": [ "UNBELIEF" @@ -13838,9 +11532,7 @@ { "altTitles": [], "artist": "KAYUKI", - "data": { - "isHot": true - }, + "data": {}, "id": 2647, "searchTerms": [ "CLEAR WINGS" @@ -13850,9 +11542,7 @@ { "altTitles": [], "artist": "TAKA PON AKHUTA", - "data": { - "isHot": true - }, + "data": {}, "id": 2648, "searchTerms": [ "INVISIBLE FAREW" @@ -13862,9 +11552,7 @@ { "altTitles": [], "artist": "SOTA F YVYA FEA", - "data": { - "isHot": true - }, + "data": {}, "id": 2649, "searchTerms": [ "LOVE KIRA SPLAS" @@ -13874,9 +11562,7 @@ { "altTitles": [], "artist": "VANITAS LACRIMO", - "data": { - "isHot": true - }, + "data": {}, "id": 2650, "searchTerms": [ "SHIJYO NO LATRE" @@ -13886,9 +11572,7 @@ { "altTitles": [], "artist": "BLANC BUNNY BAN", - "data": { - "isHot": false - }, + "data": {}, "id": 2651, "searchTerms": [ "ROOM" @@ -13898,9 +11582,7 @@ { "altTitles": [], "artist": "MERRY BAD MARCH", - "data": { - "isHot": false - }, + "data": {}, "id": 2652, "searchTerms": [ "SAKASAMA CINDER" @@ -13910,9 +11592,7 @@ { "altTitles": [], "artist": "YASYAHIME KAGUR", - "data": { - "isHot": false - }, + "data": {}, "id": 2653, "searchTerms": [ "OTOGIBANASHI NI" @@ -13922,9 +11602,7 @@ { "altTitles": [], "artist": "QRISPY JOYBOX F", - "data": { - "isHot": true - }, + "data": {}, "id": 2654, "searchTerms": [ "SPARKLE SMILIN " @@ -13934,9 +11612,7 @@ { "altTitles": [], "artist": "HUMER YVYA FEAT", - "data": { - "isHot": true - }, + "data": {}, "id": 2655, "searchTerms": [ "KYOSUI ICHIKA G" @@ -13946,9 +11622,7 @@ { "altTitles": [], "artist": "NEKOMATAMASTER", - "data": { - "isHot": true - }, + "data": {}, "id": 2656, "searchTerms": [ "SHUFFLE CATS" @@ -13958,9 +11632,7 @@ { "altTitles": [], "artist": "OSTER PROJECT", - "data": { - "isHot": true - }, + "data": {}, "id": 2657, "searchTerms": [ "BEYOND NIRVANA" @@ -13970,9 +11642,7 @@ { "altTitles": [], "artist": "AKHUTA", - "data": { - "isHot": true - }, + "data": {}, "id": 2658, "searchTerms": [ "TRUARE" @@ -13982,9 +11652,7 @@ { "altTitles": [], "artist": "DJ TAKA FEAT NO", - "data": { - "isHot": true - }, + "data": {}, "id": 2659, "searchTerms": [ "JETCOASTER WIND" @@ -13994,9 +11662,7 @@ { "altTitles": [], "artist": "HIMAWARI PUNCH", - "data": { - "isHot": true - }, + "data": {}, "id": 2660, "searchTerms": [ "HIMAPAN CAKE MA" @@ -14006,9 +11672,7 @@ { "altTitles": [], "artist": "HIMAWARI PUNCH", - "data": { - "isHot": true - }, + "data": {}, "id": 2661, "searchTerms": [ "HOSHIKUZU NO FL" @@ -14018,9 +11682,7 @@ { "altTitles": [], "artist": "BLANC BUNNY BAN", - "data": { - "isHot": false - }, + "data": {}, "id": 2662, "searchTerms": [ "TSUIOKU NO ARIA" @@ -14030,9 +11692,7 @@ { "altTitles": [], "artist": "MOTOI SAKURABA", - "data": { - "isHot": true - }, + "data": {}, "id": 2663, "searchTerms": [ "STEP FORWARD" @@ -14042,9 +11702,7 @@ { "altTitles": [], "artist": "OHISAMA CLUB", - "data": { - "isHot": true - }, + "data": {}, "id": 2664, "searchTerms": [ "PANDA SHINKEN 1" @@ -14054,9 +11712,7 @@ { "altTitles": [], "artist": "KANZAKI MISA", - "data": { - "isHot": true - }, + "data": {}, "id": 2665, "searchTerms": [ "KAYOWAKI KOI NO" @@ -14066,9 +11722,7 @@ { "altTitles": [], "artist": "ASAKI", - "data": { - "isHot": true - }, + "data": {}, "id": 2666, "searchTerms": [ "STARGAZER" @@ -14078,9 +11732,7 @@ { "altTitles": [], "artist": "BEACH PARASOLS", - "data": { - "isHot": true - }, + "data": {}, "id": 2667, "searchTerms": [ "HELLO SUMMER" @@ -14090,9 +11742,7 @@ { "altTitles": [], "artist": "VANITAS LACRIMO", - "data": { - "isHot": false - }, + "data": {}, "id": 2668, "searchTerms": [ "HANGYAKU NO DIS" @@ -14102,9 +11752,7 @@ { "altTitles": [], "artist": "YVYA", - "data": { - "isHot": true - }, + "data": {}, "id": 2669, "searchTerms": [ "NEXTAGE" @@ -14114,9 +11762,7 @@ { "altTitles": [], "artist": "KAYUKI", - "data": { - "isHot": true - }, + "data": {}, "id": 2670, "searchTerms": [ "RABBICAL TRAP" @@ -14126,9 +11772,7 @@ { "altTitles": [], "artist": "MEG", - "data": { - "isHot": true - }, + "data": {}, "id": 2671, "searchTerms": [ "NEVER EVER END" @@ -14138,9 +11782,7 @@ { "altTitles": [], "artist": "SHIN FEAT MIA A", - "data": { - "isHot": true - }, + "data": {}, "id": 2672, "searchTerms": [ "TAKE YOU AWAY" @@ -14150,9 +11792,7 @@ { "altTitles": [], "artist": "KAMEN JOSHI", - "data": { - "isHot": true - }, + "data": {}, "id": 2673, "searchTerms": [ "HIGH VOLT AGE" @@ -14162,9 +11802,7 @@ { "altTitles": [], "artist": "KEIICHI MIYAKO", - "data": { - "isHot": true - }, + "data": {}, "id": 2674, "searchTerms": [ "REACT" @@ -14174,9 +11812,7 @@ { "altTitles": [], "artist": "YVYA FEAT GORYU", - "data": { - "isHot": true - }, + "data": {}, "id": 2676, "searchTerms": [ "GET THERE" @@ -14186,9 +11822,7 @@ { "altTitles": [], "artist": "YVYA", - "data": { - "isHot": true - }, + "data": {}, "id": 2677, "searchTerms": [ "DEVILS RULE" @@ -14198,9 +11832,7 @@ { "altTitles": [], "artist": "BLANC BUNNY BAN", - "data": { - "isHot": false - }, + "data": {}, "id": 2678, "searchTerms": [ "HARA SHOW ONIGI" @@ -14210,9 +11842,7 @@ { "altTitles": [], "artist": "VANITAS LACRIMO", - "data": { - "isHot": false - }, + "data": {}, "id": 2679, "searchTerms": [ "INNOCENT BIBLE" @@ -14222,9 +11852,7 @@ { "altTitles": [], "artist": "ASAKITAI", - "data": { - "isHot": true - }, + "data": {}, "id": 2680, "searchTerms": [ "KOKOKARAYOROSHI" @@ -14234,9 +11862,7 @@ { "altTitles": [], "artist": "ASAKI", - "data": { - "isHot": true - }, + "data": {}, "id": 2681, "searchTerms": [ "JUST ONLY FOR T" @@ -14246,9 +11872,7 @@ { "altTitles": [], "artist": "AKHUTA WORKS", - "data": { - "isHot": true - }, + "data": {}, "id": 2682, "searchTerms": [ "KAZEKIRI RUMBLE" @@ -14258,9 +11882,7 @@ { "altTitles": [], "artist": "INUGAMI KYOKO A", - "data": { - "isHot": true - }, + "data": {}, "id": 2683, "searchTerms": [ "SHUAN NO TEMARI" @@ -14270,9 +11892,7 @@ { "altTitles": [], "artist": "YOSHIHIKO KOEZU", - "data": { - "isHot": true - }, + "data": {}, "id": 2684, "searchTerms": [ "KIWI" @@ -14282,9 +11902,7 @@ { "altTitles": [], "artist": "MIKARU COSMO(SE", - "data": { - "isHot": true - }, + "data": {}, "id": 2686, "searchTerms": [ "CYCLONICXSTORM" @@ -14294,9 +11912,7 @@ { "altTitles": [], "artist": "RENO", - "data": { - "isHot": true - }, + "data": {}, "id": 2687, "searchTerms": [ "HEPTAGRAM" @@ -14306,9 +11922,7 @@ { "altTitles": [], "artist": "RYU", - "data": { - "isHot": true - }, + "data": {}, "id": 2694, "searchTerms": [ "PERSEPOLIS" @@ -14318,9 +11932,7 @@ { "altTitles": [], "artist": "SOTA F", - "data": { - "isHot": true - }, + "data": {}, "id": 2695, "searchTerms": [ "40C DESERT" @@ -14330,9 +11942,7 @@ { "altTitles": [], "artist": "YOSHIHIKO KOEZU", - "data": { - "isHot": true - }, + "data": {}, "id": 2696, "searchTerms": [ "VIOLET MILKY WA" @@ -14342,9 +11952,7 @@ { "altTitles": [], "artist": "PROGRESSIVE NAZ", - "data": { - "isHot": true - }, + "data": {}, "id": 2697, "searchTerms": [ "THEME OF PROGRE" @@ -14354,9 +11962,7 @@ { "altTitles": [], "artist": "YVYA", - "data": { - "isHot": false - }, + "data": {}, "id": 2698, "searchTerms": [ "PROMISED VICTOR" @@ -14366,9 +11972,7 @@ { "altTitles": [], "artist": "TAG", - "data": { - "isHot": true - }, + "data": {}, "id": 2699, "searchTerms": [ "SYMPHONIC TEAR" @@ -14378,9 +11982,7 @@ { "altTitles": [], "artist": "YVYA", - "data": { - "isHot": true - }, + "data": {}, "id": 2700, "searchTerms": [ "SAIPH" @@ -14390,9 +11992,7 @@ { "altTitles": [], "artist": "YOSHIHIKO KOEZU", - "data": { - "isHot": true - }, + "data": {}, "id": 2701, "searchTerms": [ "DREAMS ON THE R" @@ -14402,9 +12002,7 @@ { "altTitles": [], "artist": "ASAKI", - "data": { - "isHot": true - }, + "data": {}, "id": 2702, "searchTerms": [ "TOKOSHIE" @@ -14414,9 +12012,7 @@ { "altTitles": [], "artist": "TOMOSUKE FEAT.B", - "data": { - "isHot": true - }, + "data": {}, "id": 2703, "searchTerms": [ "COMME LE MIEL" @@ -14426,9 +12022,7 @@ { "altTitles": [], "artist": "SUPER MOMO TARO", - "data": { - "isHot": true - }, + "data": {}, "id": 2704, "searchTerms": [ "RISE UP" @@ -14438,9 +12032,7 @@ { "altTitles": [], "artist": "MAOKI YAMAMOTO ", - "data": { - "isHot": true - }, + "data": {}, "id": 2705, "searchTerms": [ "BOKURANO SHINFO" @@ -14450,9 +12042,7 @@ { "altTitles": [], "artist": "MAOKI YAMAMOTO", - "data": { - "isHot": true - }, + "data": {}, "id": 2706, "searchTerms": [ "LUCID NIGHTMARE" @@ -14462,9 +12052,7 @@ { "altTitles": [], "artist": "GOOD-COOL FEAT.", - "data": { - "isHot": true - }, + "data": {}, "id": 2707, "searchTerms": [ "EKAKIUTA" @@ -14474,9 +12062,7 @@ { "altTitles": [], "artist": "DADACO", - "data": { - "isHot": true - }, + "data": {}, "id": 2708, "searchTerms": [ "WONDER TRIP" @@ -14486,9 +12072,7 @@ { "altTitles": [], "artist": "HUMER FEAT FERN", - "data": { - "isHot": true - }, + "data": {}, "id": 2709, "searchTerms": [ "ACCORD" @@ -14498,9 +12082,7 @@ { "altTitles": [], "artist": "YVYA", - "data": { - "isHot": true - }, + "data": {}, "id": 2710, "searchTerms": [ "CAJUPUT" @@ -14510,9 +12092,7 @@ { "altTitles": [], "artist": "KOTERA KANAKO R", - "data": { - "isHot": true - }, + "data": {}, "id": 2716, "searchTerms": [ "ITETSU NO PRIDE" @@ -14522,9 +12102,7 @@ { "altTitles": [], "artist": "NANAHIRA NANA T", - "data": { - "isHot": true - }, + "data": {}, "id": 2717, "searchTerms": [ "CHUCHU MACHU PI" @@ -14534,9 +12112,7 @@ { "altTitles": [], "artist": "KOYOMI KANAKO H", - "data": { - "isHot": true - }, + "data": {}, "id": 2718, "searchTerms": [ "LIKE A VAMPIRE" @@ -14546,9 +12122,7 @@ { "altTitles": [], "artist": "HIDEO SUWA AKIN", - "data": { - "isHot": true - }, + "data": {}, "id": 2719, "searchTerms": [ "SUPER BATTLE BA" @@ -14558,9 +12132,7 @@ { "altTitles": [], "artist": "MAMI DADAKO BY ", - "data": { - "isHot": true - }, + "data": {}, "id": 2720, "searchTerms": [ "MURASAKIBANA" @@ -14570,9 +12142,7 @@ { "altTitles": [], "artist": "MAYUMI MORINAGA", - "data": { - "isHot": true - }, + "data": {}, "id": 2721, "searchTerms": [ "DUAL STRIKER" @@ -14582,9 +12152,7 @@ { "altTitles": [], "artist": "DJ TAKA DJ YOSH", - "data": { - "isHot": true - }, + "data": {}, "id": 2722, "searchTerms": [ "TRIPLE CROSS GI" @@ -14594,9 +12162,7 @@ { "altTitles": [], "artist": "AILI", - "data": { - "isHot": true - }, + "data": {}, "id": 2724, "searchTerms": [ "SUNAO NA KIMOCH" @@ -14606,9 +12172,7 @@ { "altTitles": [], "artist": "SEBASU CHAN", - "data": { - "isHot": true - }, + "data": {}, "id": 2725, "searchTerms": [ "YORU NO JOOU NO" @@ -14618,9 +12182,7 @@ { "altTitles": [], "artist": "SYUNN", - "data": { - "isHot": true - }, + "data": {}, "id": 2726, "searchTerms": [ "CLOVE" @@ -14630,9 +12192,7 @@ { "altTitles": [], "artist": "NEKOMATA_MASTER", - "data": { - "isHot": true - }, + "data": {}, "id": 2727, "searchTerms": [ "AFTERMATH" @@ -14642,9 +12202,7 @@ { "altTitles": [], "artist": "YOSHIHIKO KOEZU", - "data": { - "isHot": true - }, + "data": {}, "id": 2728, "searchTerms": [ "SENTIMENTAL ILL" @@ -14654,9 +12212,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 2730, "searchTerms": [ "YORU NI KAKERU" @@ -14666,9 +12222,7 @@ { "altTitles": [], "artist": "2021 SUMMER SIN", - "data": { - "isHot": true - }, + "data": {}, "id": 2731, "searchTerms": [ "RENAI KANSOKU 2" @@ -14678,9 +12232,7 @@ { "altTitles": [], "artist": "AKHUTA WORKS", - "data": { - "isHot": true - }, + "data": {}, "id": 2733, "searchTerms": [ "ARENA ARGENTICU" @@ -14690,9 +12242,7 @@ { "altTitles": [], "artist": "NATSUHI SHINONO", - "data": { - "isHot": true - }, + "data": {}, "id": 2734, "searchTerms": [ "MORATORIUM NOTE" @@ -14702,9 +12252,7 @@ { "altTitles": [], "artist": "IBU AND NATSUHI", - "data": { - "isHot": true - }, + "data": {}, "id": 2735, "searchTerms": [ "SOUSEI LUMINESC" @@ -14714,9 +12262,7 @@ { "altTitles": [], "artist": "HINATABI BITTER", - "data": { - "isHot": true - }, + "data": {}, "id": 2736, "searchTerms": [ "SEKIBAKU TARU S" @@ -14726,9 +12272,7 @@ { "altTitles": [], "artist": "HINATABI BITTER", - "data": { - "isHot": true - }, + "data": {}, "id": 2737, "searchTerms": [ "NETSUJYO NO ZAP" @@ -14738,9 +12282,7 @@ { "altTitles": [], "artist": "HINATABI BITTER", - "data": { - "isHot": true - }, + "data": {}, "id": 2738, "searchTerms": [ "KAKUMEI PASSION" @@ -14750,9 +12292,7 @@ { "altTitles": [], "artist": "COCONATSU", - "data": { - "isHot": true - }, + "data": {}, "id": 2739, "searchTerms": [ "BABY STEP" @@ -14762,9 +12302,7 @@ { "altTitles": [], "artist": "YOSHIHIKO KOEZU", - "data": { - "isHot": true - }, + "data": {}, "id": 2740, "searchTerms": [ "MOBIUS" @@ -14774,9 +12312,7 @@ { "altTitles": [], "artist": "MEGUMI TATSUMI ", - "data": { - "isHot": true - }, + "data": {}, "id": 2741, "searchTerms": [ "REMEMBER" @@ -14786,9 +12322,7 @@ { "altTitles": [], "artist": "YVYA", - "data": { - "isHot": true - }, + "data": {}, "id": 2742, "searchTerms": [ "IMMERSED" @@ -14798,9 +12332,7 @@ { "altTitles": [], "artist": "MITSUO TAKEUCHI", - "data": { - "isHot": true - }, + "data": {}, "id": 2744, "searchTerms": [ "INVIOLABLE SOUL" @@ -14810,9 +12342,7 @@ { "altTitles": [], "artist": "SEBASU CHAN", - "data": { - "isHot": true - }, + "data": {}, "id": 2747, "searchTerms": [ "SYMPHONY NO9 4T" @@ -14822,9 +12352,7 @@ { "altTitles": [], "artist": "ZERO HUMER", - "data": { - "isHot": true - }, + "data": {}, "id": 2749, "searchTerms": [ "PARALLAX" @@ -14834,9 +12362,7 @@ { "altTitles": [], "artist": "TECHNOPLANET", - "data": { - "isHot": true - }, + "data": {}, "id": 2750, "searchTerms": [ "THE SPLENDID EX" @@ -14846,9 +12372,7 @@ { "altTitles": [], "artist": "HIMAWARI PUNCH", - "data": { - "isHot": true - }, + "data": {}, "id": 2753, "searchTerms": [ "REAL WONDER LAN" @@ -14858,9 +12382,7 @@ { "altTitles": [], "artist": "RENO", - "data": { - "isHot": true - }, + "data": {}, "id": 2758, "searchTerms": [ "PERUPETWUMUMOBI" @@ -14870,9 +12392,7 @@ { "altTitles": [], "artist": "ASAKI", - "data": { - "isHot": true - }, + "data": {}, "id": 2767, "searchTerms": [ "KUUSOU" @@ -14882,9 +12402,7 @@ { "altTitles": [], "artist": "YVYA", - "data": { - "isHot": true - }, + "data": {}, "id": 2768, "searchTerms": [ "VITRUM" @@ -14894,9 +12412,7 @@ { "altTitles": [], "artist": "ASAKI", - "data": { - "isHot": true - }, + "data": {}, "id": 2782, "searchTerms": [ "TORINAKI JIMA N" @@ -14906,9 +12422,7 @@ { "altTitles": [], "artist": "B.E.L", - "data": { - "isHot": true - }, + "data": {}, "id": 2784, "searchTerms": [ "FLOWER BAND VER" @@ -14918,9 +12432,7 @@ { "altTitles": [], "artist": "TOKYO ACTIVE NE", - "data": { - "isHot": true - }, + "data": {}, "id": 2785, "searchTerms": [ "THE SAFARI NEET" @@ -14930,9 +12442,7 @@ { "altTitles": [], "artist": "FLEUFLEU", - "data": { - "isHot": true - }, + "data": {}, "id": 2786, "searchTerms": [ "FOLLOW TOMORROW" @@ -14942,9 +12452,7 @@ { "altTitles": [], "artist": "CIVILIAN SKUNK", - "data": { - "isHot": true - }, + "data": {}, "id": 2787, "searchTerms": [ "MURMUR TWINS CI" @@ -14954,9 +12462,7 @@ { "altTitles": [], "artist": "MAR.NA", - "data": { - "isHot": true - }, + "data": {}, "id": 2788, "searchTerms": [ "MAX LOVE KANE N" @@ -14966,9 +12472,7 @@ { "altTitles": [], "artist": "TERMINALCODE_FE", - "data": { - "isHot": true - }, + "data": {}, "id": 2789, "searchTerms": [ "FLY ABOVE BAND " @@ -14978,9 +12482,7 @@ { "altTitles": [], "artist": "WHITE LIE", - "data": { - "isHot": true - }, + "data": {}, "id": 2790, "searchTerms": [ "BLAZE BREEZE WH" @@ -14990,9 +12492,7 @@ { "altTitles": [], "artist": "PINK TURBO", - "data": { - "isHot": true - }, + "data": {}, "id": 2791, "searchTerms": [ "PANDORA TSUIOKU" @@ -15002,9 +12502,7 @@ { "altTitles": [], "artist": "ASTRA", - "data": { - "isHot": true - }, + "data": {}, "id": 2792, "searchTerms": [ "A ASTRAL INNER " @@ -15014,9 +12512,7 @@ { "altTitles": [], "artist": "GOOD-COOL", - "data": { - "isHot": true - }, + "data": {}, "id": 2793, "searchTerms": [ "TWINKLE WONDERL" @@ -15026,9 +12522,7 @@ { "altTitles": [], "artist": "KOYOMI BAND", - "data": { - "isHot": true - }, + "data": {}, "id": 2794, "searchTerms": [ "RENAI KANSOKU R" @@ -15038,9 +12532,7 @@ { "altTitles": [], "artist": "UCCHIES BAND", - "data": { - "isHot": true - }, + "data": {}, "id": 2795, "searchTerms": [ "AIRFLOW DREAMIN" @@ -15050,9 +12542,7 @@ { "altTitles": [], "artist": "SHOGO", - "data": { - "isHot": true - }, + "data": {}, "id": 2796, "searchTerms": [ "LEAD ME" @@ -15062,9 +12552,7 @@ { "altTitles": [], "artist": "96", - "data": { - "isHot": true - }, + "data": {}, "id": 2797, "searchTerms": [ "FUURINKAZAN" @@ -15074,9 +12562,7 @@ { "altTitles": [], "artist": "MAOKI YAMAMOTO ", - "data": { - "isHot": true - }, + "data": {}, "id": 2798, "searchTerms": [ "TOBENAI BOKU TO" @@ -15086,9 +12572,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 2820, "searchTerms": [ "MIXED NUTS" @@ -15098,9 +12582,7 @@ { "altTitles": [], "artist": "JIMMY WECKL", - "data": { - "isHot": false - }, + "data": {}, "id": 5000, "searchTerms": [ "ACROSS THE NIGH" @@ -15110,9 +12592,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": false - }, + "data": {}, "id": 5001, "searchTerms": [ "JET WORLD CLASS" @@ -15122,9 +12602,7 @@ { "altTitles": [], "artist": "HANDSOME JET", - "data": { - "isHot": false - }, + "data": {}, "id": 5002, "searchTerms": [ "PPR CLASSIC" @@ -15134,9 +12612,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": false - }, + "data": {}, "id": 5003, "searchTerms": [ "DAY DREAM CLASS" @@ -15146,9 +12622,7 @@ { "altTitles": [], "artist": "HIROFUMI SASAKI", - "data": { - "isHot": false - }, + "data": {}, "id": 5004, "searchTerms": [ "THE LEAST 100SE" @@ -15158,9 +12632,7 @@ { "altTitles": [], "artist": "HIROFUMI SASAKI", - "data": { - "isHot": true - }, + "data": {}, "id": 5005, "searchTerms": [ "KODOMONO RAKUGA" @@ -15170,9 +12642,7 @@ { "altTitles": [], "artist": "SUZUKI AI", - "data": { - "isHot": false - }, + "data": {}, "id": 5006, "searchTerms": [ "SEIRON CLASSIC" @@ -15182,9 +12652,7 @@ { "altTitles": [], "artist": "TOMOSUKE FEAT. ", - "data": { - "isHot": false - }, + "data": {}, "id": 5007, "searchTerms": [ "JET COASTER GIR" @@ -15194,9 +12662,7 @@ { "altTitles": [], "artist": "ASAKI", - "data": { - "isHot": false - }, + "data": {}, "id": 5008, "searchTerms": [ "SANAGI CLASSIC" @@ -15206,9 +12672,7 @@ { "altTitles": [], "artist": "HIROFUMI SASAKI", - "data": { - "isHot": true - }, + "data": {}, "id": 5009, "searchTerms": [ "CONCERTINO IN B" @@ -15218,9 +12682,7 @@ { "altTitles": [], "artist": "ANETTAI MAJI-SK", - "data": { - "isHot": false - }, + "data": {}, "id": 5010, "searchTerms": [ "MIKENEKO ROCK C" @@ -15230,9 +12692,7 @@ { "altTitles": [], "artist": "BEFORU", - "data": { - "isHot": false - }, + "data": {}, "id": 5011, "searchTerms": [ "BREAK DOWN CLAS" @@ -15242,9 +12702,7 @@ { "altTitles": [], "artist": "JIMMY WECKL", - "data": { - "isHot": false - }, + "data": {}, "id": 5012, "searchTerms": [ "MANGEKYO CLASSI" @@ -15254,9 +12712,7 @@ { "altTitles": [], "artist": "TRICK TRAP", - "data": { - "isHot": false - }, + "data": {}, "id": 5013, "searchTerms": [ "BLACK HORIZON C" @@ -15266,9 +12722,7 @@ { "altTitles": [], "artist": "ASAKI", - "data": { - "isHot": true - }, + "data": {}, "id": 5014, "searchTerms": [ "AGNUS DEI CLASS" @@ -15278,9 +12732,7 @@ { "altTitles": [], "artist": "JIMMY WECKL", - "data": { - "isHot": true - }, + "data": {}, "id": 5015, "searchTerms": [ "COCKPIT CLASSIC" @@ -15290,9 +12742,7 @@ { "altTitles": [], "artist": "DES-ROW FEAT.SH", - "data": { - "isHot": false - }, + "data": {}, "id": 5016, "searchTerms": [ "FUNKY SONIC WOR" @@ -15302,9 +12752,7 @@ { "altTitles": [], "artist": "ONINOKOGASHOUDA", - "data": { - "isHot": false - }, + "data": {}, "id": 5017, "searchTerms": [ "ONIHIME CLASSIC" @@ -15314,9 +12762,7 @@ { "altTitles": [], "artist": "KOZO NAKAMURA", - "data": { - "isHot": false - }, + "data": {}, "id": 5018, "searchTerms": [ "DRAGON BLADE CL" @@ -15326,9 +12772,7 @@ { "altTitles": [], "artist": "PINK CAPSULE", - "data": { - "isHot": true - }, + "data": {}, "id": 5019, "searchTerms": [ "KOTATSU TO MIKA" @@ -15338,9 +12782,7 @@ { "altTitles": [], "artist": "HIROFUMI SASAKI", - "data": { - "isHot": true - }, + "data": {}, "id": 5020, "searchTerms": [ "TIMEPIECE PHASE" @@ -15350,9 +12792,7 @@ { "altTitles": [], "artist": "TRICK TRAP", - "data": { - "isHot": true - }, + "data": {}, "id": 5021, "searchTerms": [ "WHITE TORNADO C" @@ -15362,9 +12802,7 @@ { "altTitles": [], "artist": "ASAKO TOKI", - "data": { - "isHot": false - }, + "data": {}, "id": 5022, "searchTerms": [ "LITTLE PRAYER C" @@ -15374,9 +12812,7 @@ { "altTitles": [], "artist": "YOSHIHIKO KOEZU", - "data": { - "isHot": false - }, + "data": {}, "id": 5023, "searchTerms": [ "GREEN LIME CLAS" @@ -15386,9 +12822,7 @@ { "altTitles": [], "artist": "KOZO NAKAMURA", - "data": { - "isHot": true - }, + "data": {}, "id": 5024, "searchTerms": [ "ATALANTE CLASSI" @@ -15398,9 +12832,7 @@ { "altTitles": [], "artist": "VOX", - "data": { - "isHot": false - }, + "data": {}, "id": 5025, "searchTerms": [ "OVER THERE CLAS" @@ -15410,9 +12842,7 @@ { "altTitles": [], "artist": "DJ YOSHITAKA FE", - "data": { - "isHot": false - }, + "data": {}, "id": 5026, "searchTerms": [ "CAPTIVATE CLASS" @@ -15422,9 +12852,7 @@ { "altTitles": [], "artist": "KOZO NAKAMURA", - "data": { - "isHot": true - }, + "data": {}, "id": 5027, "searchTerms": [ "RING CLASSIC" @@ -15434,9 +12862,7 @@ { "altTitles": [], "artist": "TAG", - "data": { - "isHot": false - }, + "data": {}, "id": 5028, "searchTerms": [ "EL DORADO CLASS" @@ -15446,9 +12872,7 @@ { "altTitles": [], "artist": "JIN SENBONMATSU", - "data": { - "isHot": false - }, + "data": {}, "id": 5029, "searchTerms": [ "AXIS CLASSIC" @@ -15458,9 +12882,7 @@ { "altTitles": [], "artist": "GYRAGYRA MEGANE", - "data": { - "isHot": false - }, + "data": {}, "id": 5030, "searchTerms": [ "RYORAN HITCHART" @@ -15470,9 +12892,7 @@ { "altTitles": [], "artist": "JIMMY WECKL", - "data": { - "isHot": true - }, + "data": {}, "id": 5031, "searchTerms": [ "MIRAGE RESIDENC" @@ -15482,9 +12902,7 @@ { "altTitles": [], "artist": "DORMIR", - "data": { - "isHot": false - }, + "data": {}, "id": 5032, "searchTerms": [ "ARKHE CLASSIC" @@ -15494,9 +12912,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 5033, "searchTerms": [ "MODEL FT2 MIRAC" @@ -15506,9 +12922,7 @@ { "altTitles": [], "artist": "", - "data": { - "isHot": true - }, + "data": {}, "id": 5034, "searchTerms": [ "TENTAIKANSOKU C" @@ -15518,9 +12932,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": false - }, + "data": {}, "id": 5035, "searchTerms": [ "MODEL DD08 CLAS" @@ -15530,9 +12942,7 @@ { "altTitles": [], "artist": "96", - "data": { - "isHot": false - }, + "data": {}, "id": 5036, "searchTerms": [ "ICHIMOUDAJIN CL" @@ -15542,9 +12952,7 @@ { "altTitles": [], "artist": "KI KI", - "data": { - "isHot": false - }, + "data": {}, "id": 5037, "searchTerms": [ "COLORFUL PASTEL" @@ -15554,9 +12962,7 @@ { "altTitles": [], "artist": "GOOD-COOL FEAT.", - "data": { - "isHot": false - }, + "data": {}, "id": 5038, "searchTerms": [ "TANBO NO TA CLA" @@ -15566,9 +12972,7 @@ { "altTitles": [], "artist": "BENIIROLITMUS", - "data": { - "isHot": false - }, + "data": {}, "id": 5039, "searchTerms": [ "RINTOSITESAKUHA" @@ -15578,9 +12982,7 @@ { "altTitles": [], "artist": "JIN SENBONMATSU", - "data": { - "isHot": true - }, + "data": {}, "id": 5040, "searchTerms": [ "DYNAMIS CLASSIC" @@ -15590,9 +12992,7 @@ { "altTitles": [], "artist": "98", - "data": { - "isHot": false - }, + "data": {}, "id": 5041, "searchTerms": [ "FUJINUNRYUDEN C" @@ -15602,9 +13002,7 @@ { "altTitles": [], "artist": "TAG", - "data": { - "isHot": false - }, + "data": {}, "id": 5042, "searchTerms": [ "CHRONOS CLASSIC" @@ -15614,9 +13012,7 @@ { "altTitles": [], "artist": "YASUSHI ASADA", - "data": { - "isHot": false - }, + "data": {}, "id": 5043, "searchTerms": [ "VAMPIRE KILLER " @@ -15626,9 +13022,7 @@ { "altTitles": [], "artist": "MEGUMI TATSUMI ", - "data": { - "isHot": false - }, + "data": {}, "id": 5044, "searchTerms": [ "IJIWARUNAANATA " @@ -15638,9 +13032,7 @@ { "altTitles": [], "artist": "ASAKI", - "data": { - "isHot": true - }, + "data": {}, "id": 5045, "searchTerms": [ "A DOGMA CLASSIC" @@ -15650,9 +13042,7 @@ { "altTitles": [], "artist": "JIN SENBONMATSU", - "data": { - "isHot": true - }, + "data": {}, "id": 5046, "searchTerms": [ "ROCK TO INFINIT" @@ -15662,9 +13052,7 @@ { "altTitles": [], "artist": "ASAKI", - "data": { - "isHot": true - }, + "data": {}, "id": 5047, "searchTerms": [ "FOR THE FINAL C" @@ -15674,9 +13062,7 @@ { "altTitles": [], "artist": "96", - "data": { - "isHot": false - }, + "data": {}, "id": 5048, "searchTerms": [ "KAISER PHOENIX " @@ -15686,9 +13072,7 @@ { "altTitles": [], "artist": "NOBUO UEMATSU T", - "data": { - "isHot": false - }, + "data": {}, "id": 5049, "searchTerms": [ "EINHERJAR CLASS" @@ -15698,9 +13082,7 @@ { "altTitles": [], "artist": "SANA", - "data": { - "isHot": false - }, + "data": {}, "id": 5050, "searchTerms": [ "HOSHIFURI CLASS" @@ -15710,9 +13092,7 @@ { "altTitles": [], "artist": "AIKO OI", - "data": { - "isHot": false - }, + "data": {}, "id": 5051, "searchTerms": [ "LIMITLESS POSSI" @@ -15722,9 +13102,7 @@ { "altTitles": [], "artist": "ITO KENJI", - "data": { - "isHot": true - }, + "data": {}, "id": 5052, "searchTerms": [ "SHAKE AND SHOUT" @@ -15734,9 +13112,7 @@ { "altTitles": [], "artist": "GOOD-COOL FT. S", - "data": { - "isHot": false - }, + "data": {}, "id": 5053, "searchTerms": [ "AKOGARE NO BODY" @@ -15746,9 +13122,7 @@ { "altTitles": [], "artist": "TAG FEAT. 96", - "data": { - "isHot": false - }, + "data": {}, "id": 5054, "searchTerms": [ "10,000,000,000 " @@ -15758,9 +13132,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": false - }, + "data": {}, "id": 5055, "searchTerms": [ "CHINESE SNOWY D" @@ -15770,9 +13142,7 @@ { "altTitles": [], "artist": "98", - "data": { - "isHot": true - }, + "data": {}, "id": 5056, "searchTerms": [ "GENSORIJINKI CL" @@ -15782,9 +13152,7 @@ { "altTitles": [], "artist": "MEGUMI TATSUMI ", - "data": { - "isHot": false - }, + "data": {}, "id": 5057, "searchTerms": [ "VICTORY CLASSIC" @@ -15794,9 +13162,7 @@ { "altTitles": [], "artist": "SHINICHI KOBAYA", - "data": { - "isHot": false - }, + "data": {}, "id": 5058, "searchTerms": [ "GAME YORI AI WO" @@ -15806,9 +13172,7 @@ { "altTitles": [], "artist": "DEAR BREEZE STU", - "data": { - "isHot": false - }, + "data": {}, "id": 5059, "searchTerms": [ "ILLUMINATI CLAS" @@ -15818,9 +13182,7 @@ { "altTitles": [], "artist": "TAG", - "data": { - "isHot": true - }, + "data": {}, "id": 5060, "searchTerms": [ "EXCELSIOR DIVE " @@ -15830,9 +13192,7 @@ { "altTitles": [], "artist": "MOTOAKI FURUKAW", - "data": { - "isHot": true - }, + "data": {}, "id": 5061, "searchTerms": [ "CAPTAIN'S VOYAG" @@ -15842,9 +13202,7 @@ { "altTitles": [], "artist": "YOSHIHIKO KOEZU", - "data": { - "isHot": false - }, + "data": {}, "id": 5062, "searchTerms": [ "YELLOW PANIC TI" @@ -15854,9 +13212,7 @@ { "altTitles": [], "artist": "KOZO NAKAMURA", - "data": { - "isHot": true - }, + "data": {}, "id": 5063, "searchTerms": [ "WILD RIDE CLASS" @@ -15866,9 +13222,7 @@ { "altTitles": [], "artist": "SUZUKI AI", - "data": { - "isHot": true - }, + "data": {}, "id": 5064, "searchTerms": [ "SOUHAKU CLASSIC" @@ -15878,9 +13232,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 5065, "searchTerms": [ "MODEL DD06 CLAS" @@ -15890,9 +13242,7 @@ { "altTitles": [], "artist": "SERENA", - "data": { - "isHot": true - }, + "data": {}, "id": 5066, "searchTerms": [ "REACHING FOR TH" @@ -15902,9 +13252,7 @@ { "altTitles": [], "artist": "WANNYAN PANICS", - "data": { - "isHot": true - }, + "data": {}, "id": 5067, "searchTerms": [ "DIE ZAUBERFLOTE" @@ -15914,9 +13262,7 @@ { "altTitles": [], "artist": "ASAKI", - "data": { - "isHot": true - }, + "data": {}, "id": 5068, "searchTerms": [ "KYOKUTO SHIKI C" @@ -15926,9 +13272,7 @@ { "altTitles": [], "artist": "JIMMY WECKL", - "data": { - "isHot": true - }, + "data": {}, "id": 5069, "searchTerms": [ "TENGU CLASSIC" @@ -15938,9 +13282,7 @@ { "altTitles": [], "artist": "96", - "data": { - "isHot": false - }, + "data": {}, "id": 5070, "searchTerms": [ "DEVOLUTION OF T" @@ -15950,9 +13292,7 @@ { "altTitles": [], "artist": "TOSHIO SAKURAI", - "data": { - "isHot": false - }, + "data": {}, "id": 5071, "searchTerms": [ "COSMIC COWGIRL " @@ -15962,9 +13302,7 @@ { "altTitles": [], "artist": "HIROFUMI SASAKI", - "data": { - "isHot": true - }, + "data": {}, "id": 5072, "searchTerms": [ "TAMAYURA CLASSI" @@ -15974,9 +13312,7 @@ { "altTitles": [], "artist": "MELI MELO", - "data": { - "isHot": true - }, + "data": {}, "id": 5073, "searchTerms": [ "LOOKS CLASSIC" @@ -15986,9 +13322,7 @@ { "altTitles": [], "artist": "SIS BOND CHIT", - "data": { - "isHot": true - }, + "data": {}, "id": 5074, "searchTerms": [ "VERTIGO CLASSIC" @@ -15998,9 +13332,7 @@ { "altTitles": [], "artist": "MEGUMI TATSUMI", - "data": { - "isHot": false - }, + "data": {}, "id": 5075, "searchTerms": [ "KOIHAOKUBYOU CL" @@ -16010,9 +13342,7 @@ { "altTitles": [], "artist": "SUZAKU VS. TAG", - "data": { - "isHot": false - }, + "data": {}, "id": 5076, "searchTerms": [ "VANESSA CLASSIC" @@ -16022,9 +13352,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": false - }, + "data": {}, "id": 5077, "searchTerms": [ "JUNGLE CLASSIC" @@ -16034,9 +13362,7 @@ { "altTitles": [], "artist": "TOMOSUKE FEAT. ", - "data": { - "isHot": false - }, + "data": {}, "id": 5078, "searchTerms": [ "WALK WITH YOU C" @@ -16046,9 +13372,7 @@ { "altTitles": [], "artist": "96", - "data": { - "isHot": true - }, + "data": {}, "id": 5079, "searchTerms": [ "CALAMITY PHOENI" @@ -16058,9 +13382,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 5080, "searchTerms": [ "MODEL DD09 CLAS" @@ -16070,9 +13392,7 @@ { "altTitles": [], "artist": "HIDEYUKI ONO", - "data": { - "isHot": false - }, + "data": {}, "id": 5081, "searchTerms": [ "CLASSIC PARTY 3" @@ -16082,9 +13402,7 @@ { "altTitles": [], "artist": "ASMAT AND EMI", - "data": { - "isHot": false - }, + "data": {}, "id": 5082, "searchTerms": [ "O JIYA CLASSIC" @@ -16094,9 +13412,7 @@ { "altTitles": [], "artist": "KEVIN VECCHIONE", - "data": { - "isHot": false - }, + "data": {}, "id": 5083, "searchTerms": [ "PLASTIC IMITATI" @@ -16106,9 +13422,7 @@ { "altTitles": [], "artist": "RAJ RAMAYYA", - "data": { - "isHot": false - }, + "data": {}, "id": 5084, "searchTerms": [ "BOBBY SUE AND S" @@ -16118,9 +13432,7 @@ { "altTitles": [], "artist": "TOMOSUKE FEAT. ", - "data": { - "isHot": true - }, + "data": {}, "id": 5085, "searchTerms": [ "MEIKYOUSHISUI C" @@ -16130,9 +13442,7 @@ { "altTitles": [], "artist": "ASAKI", - "data": { - "isHot": false - }, + "data": {}, "id": 5086, "searchTerms": [ "SONNE CLASSIC" @@ -16142,9 +13452,7 @@ { "altTitles": [], "artist": "TRICK TRAP", - "data": { - "isHot": true - }, + "data": {}, "id": 5087, "searchTerms": [ "PURPLE STORM CL" @@ -16154,9 +13462,7 @@ { "altTitles": [], "artist": "TAG", - "data": { - "isHot": true - }, + "data": {}, "id": 5088, "searchTerms": [ "PRIME LIGHT CLA" @@ -16166,9 +13472,7 @@ { "altTitles": [], "artist": "ROBBIE DANZIE", - "data": { - "isHot": false - }, + "data": {}, "id": 5089, "searchTerms": [ "RIGHT ON TIME C" @@ -16178,9 +13482,7 @@ { "altTitles": [], "artist": "JIMMY WECKL", - "data": { - "isHot": true - }, + "data": {}, "id": 5090, "searchTerms": [ "THREE WORMS CLA" @@ -16190,9 +13492,7 @@ { "altTitles": [], "artist": "MUTSUHIKO IZUMI", - "data": { - "isHot": true - }, + "data": {}, "id": 5091, "searchTerms": [ "MODEL DD04 CLAS" @@ -16202,9 +13502,7 @@ { "altTitles": [], "artist": "THOMAS' FAMILY ", - "data": { - "isHot": true - }, + "data": {}, "id": 5092, "searchTerms": [ "SPIP CLASSIC" @@ -16214,9 +13512,7 @@ { "altTitles": [], "artist": "YASUSHI ASADA", - "data": { - "isHot": false - }, + "data": {}, "id": 5093, "searchTerms": [ "EXCAVATION DAMA" @@ -16226,9 +13522,7 @@ { "altTitles": [], "artist": "TAKAO NAGATANI", - "data": { - "isHot": false - }, + "data": {}, "id": 5094, "searchTerms": [ "CONFESSION CLAS" diff --git a/database-seeds/scripts/rerunners/maimaidx/add-maimaidx-internal-levels.ts b/database-seeds/scripts/rerunners/maimaidx/add-maimaidx-internal-levels.ts index 0f42ebdc6..34e0ea5d6 100644 --- a/database-seeds/scripts/rerunners/maimaidx/add-maimaidx-internal-levels.ts +++ b/database-seeds/scripts/rerunners/maimaidx/add-maimaidx-internal-levels.ts @@ -320,15 +320,6 @@ function addOtherSheet(csvData: string[][], headerRow: number, options: AddOther ); chart.levelNum = internalLevel; } - if ( - chart.data.isLatest !== markLatest && - !markLatestExceptions.includes(song.title) - ) { - console.log( - `Marking ${song.title} [${chart.difficulty}]'s isLatest to ${markLatest}` - ); - chart.data.isLatest = markLatest; - } } } return charts; diff --git a/database-seeds/scripts/rerunners/maimaidx/merge-options.ts b/database-seeds/scripts/rerunners/maimaidx/merge-options.ts index 2fc36b4fd..7a2da877e 100644 --- a/database-seeds/scripts/rerunners/maimaidx/merge-options.ts +++ b/database-seeds/scripts/rerunners/maimaidx/merge-options.ts @@ -2,50 +2,56 @@ import { Command } from "commander"; import { XMLParser } from "fast-xml-parser"; import { existsSync, readFileSync, readdirSync, statSync } from "fs"; import path from "path"; -import { CreateChartID, GetFreshSongIDGenerator, MutateCollection, ReadCollection, WriteCollection } from "../../util"; +import { + CreateChartID, + GetFreshSongIDGenerator, + MutateCollection, + ReadCollection, + WriteCollection, +} from "../../util"; import { ChartDocument, Difficulties, GetGamePTConfig, SongDocument } from "tachi-common"; const VERSION_DISPLAY_NAMES = [ - "maimai", - "maimai PLUS", - "GreeN", - "GreeN PLUS", - "ORANGE", - "ORANGE PLUS", - "PiNK", - "PiNK PLUS", - "MURASAKi", - "MURASAKi PLUS", - "MiLK", - "MiLK PLUS", - "FiNALE", - "maimaiでらっくす", - "maimaiでらっくす PLUS", - "Splash", - "Splash PLUS", - "UNiVERSE", + "maimai", + "maimai PLUS", + "GreeN", + "GreeN PLUS", + "ORANGE", + "ORANGE PLUS", + "PiNK", + "PiNK PLUS", + "MURASAKi", + "MURASAKi PLUS", + "MiLK", + "MiLK PLUS", + "FiNALE", + "maimaiでらっくす", + "maimaiでらっくす PLUS", + "Splash", + "Splash PLUS", + "UNiVERSE", "UNiVERSE PLUS", - "FESTiVAL", - "FESTiVAL PLUS", - "BUDDiES", + "FESTiVAL", + "FESTiVAL PLUS", + "BUDDiES", ]; interface IDWithDisplayName { id: number; - str: string; + str: string; } interface NotesData { - file: { - path: string; - }; + file: { + path: string; + }; isEnable: boolean; level: number; levelDecimal: number; notesDesigner: IDWithDisplayName; notesType: number; - musicLevelID: number; - maxNotes: number; + musicLevelID: number; + maxNotes: number; } interface MusicXML { @@ -54,7 +60,7 @@ interface MusicXML { name: IDWithDisplayName; artistName: IDWithDisplayName; AddVersion: IDWithDisplayName; - genreName: IDWithDisplayName; + genreName: IDWithDisplayName; notesData: { Notes: NotesData[]; @@ -63,7 +69,7 @@ interface MusicXML { } function calculateLevel(data: Pick) { - // TODO: Change levelDecimal condition to 6 when updating to BUDDiES+ + // TODO: Change levelDecimal condition to 6 when updating to BUDDiES+ return `${data.level}${data.levelDecimal >= 7 && data.level >= 7 ? "+" : ""}`; } @@ -78,25 +84,29 @@ program.requiredOption("-v, --version "); program.parse(process.argv); const options = program.opts(); -const versions = Object.keys(GetGamePTConfig("maimaidx", "Single").versions) -const isLatestVersion = versions.indexOf(options.version.replace(/(-intl|-omni)$/u, "")) === versions.length - 1; +const versions = Object.keys(GetGamePTConfig("maimaidx", "Single").versions); +const isLatestVersion = + versions.indexOf(options.version.replace(/(-intl|-omni)$/u, "")) === versions.length - 1; const existingSongDocs: Array> = ReadCollection("songs-maimaidx.json"); -const existingChartDocs: Array> = ReadCollection("charts-maimaidx.json"); +const existingChartDocs: Array> = + ReadCollection("charts-maimaidx.json"); const existingSongs = new Map(existingSongDocs.map((s) => [s.id, s])); const existingCharts = new Map>(); const titleArtistToSongIDMap = new Map(); for (const chart of existingChartDocs) { - const song = existingSongs.get(chart.songID); + const song = existingSongs.get(chart.songID); - if (song === undefined) { - console.error(`CONSISTENCY ERROR: Chart ID ${chart.chartID} does not belong to any songs! (songID was ${chart.songID})`); - process.exit(1); - } + if (song === undefined) { + console.error( + `CONSISTENCY ERROR: Chart ID ${chart.chartID} does not belong to any songs! (songID was ${chart.songID})` + ); + process.exit(1); + } existingCharts.set(`${song.title}-${song.artist}-${chart.difficulty}`, chart); - titleArtistToSongIDMap.set(`${song.title}-${song.artist}`, song.id); + titleArtistToSongIDMap.set(`${song.title}-${song.artist}`, song.id); } const parser = new XMLParser(); @@ -144,13 +154,15 @@ for (const optionFolder of options.input) { let songID: number | undefined; - if (inGameID === 11422) { - // Manual override since the song's title is empty in the dataset and not - // IDEOGRAPHIC SPACE (U+3000). - songID = 959; - } else { - songID = titleArtistToSongIDMap.get(`${musicData.name.str}-${musicData.artistName.str}`); - } + if (inGameID === 11422) { + // Manual override since the song's title is empty in the dataset and not + // IDEOGRAPHIC SPACE (U+3000). + songID = 959; + } else { + songID = titleArtistToSongIDMap.get( + `${musicData.name.str}-${musicData.artistName.str}` + ); + } if (songID === undefined) { if (musicData.disable) { @@ -158,10 +170,10 @@ for (const optionFolder of options.input) { } songID = songIDGenerator(); - + const displayVersion = VERSION_DISPLAY_NAMES[musicData.AddVersion.id]; - - if (!displayVersion) { + + if (!displayVersion) { throw new Error( `Unknown version ID ${musicData.AddVersion.id}. Update merge-options.ts.` ); @@ -180,42 +192,44 @@ for (const optionFolder of options.input) { }; newSongs.push(songDoc); - titleArtistToSongIDMap.set(`${songDoc.title}-${songDoc.artist}`, songID); + titleArtistToSongIDMap.set(`${songDoc.title}-${songDoc.artist}`, songID); } else if (musicData.disable) { - // Sometimes, removed songs slip into the base game, - // and are "removed" later by marking the disable flag. - existingChartDocs - .filter((c) => c.songID === songID) - .forEach((c) => { - const versionIndex = c.versions.indexOf(options.version); - - if (versionIndex !== -1) { - c.versions.splice(versionIndex); - } - }); - continue; - } + // Sometimes, removed songs slip into the base game, + // and are "removed" later by marking the disable flag. + existingChartDocs + .filter((c) => c.songID === songID) + .forEach((c) => { + const versionIndex = c.versions.indexOf(options.version); + + if (versionIndex !== -1) { + c.versions.splice(versionIndex); + } + }); + continue; + } for (const [index, difficulty] of musicData.notesData.Notes.entries()) { - if (!difficulty.isEnable || !existsSync(path.join(songFolder, difficulty.file.path))) { - continue; - } + if (!difficulty.isEnable || !existsSync(path.join(songFolder, difficulty.file.path))) { + continue; + } - // There's also a sixth difficulty, "Strong", but it has always stayed disabled. - // Tachi doesn't support it anyways. + // There's also a sixth difficulty, "Strong", but it has always stayed disabled. + // Tachi doesn't support it anyways. let difficultyName = ["Basic", "Advanced", "Expert", "Master", "Re:Master"][index]; - if (inGameID > 10000) { - difficultyName = `DX ${difficultyName}`; - } + if (inGameID > 10000) { + difficultyName = `DX ${difficultyName}`; + } - let exists: ChartDocument<"maimaidx:Single"> | undefined; + let exists: ChartDocument<"maimaidx:Single"> | undefined; - if (inGameID === 11422) { - exists = existingCharts.get(`-x0o0x_-${difficultyName}`); - } else { - exists = existingCharts.get(`${musicData.name.str}-${musicData.artistName.str}-${difficultyName}`); - } + if (inGameID === 11422) { + exists = existingCharts.get(`-x0o0x_-${difficultyName}`); + } else { + exists = existingCharts.get( + `${musicData.name.str}-${musicData.artistName.str}-${difficultyName}` + ); + } const level = calculateLevel(difficulty); const levelNum = calculateLevelNum(difficulty); @@ -244,9 +258,7 @@ for (const optionFolder of options.input) { levelNum, versions: [options.version], playtype: "Single", - data: { - isLatest: isLatestVersion, - }, + data: {}, }; newCharts.push(chartDoc); } diff --git a/database-seeds/scripts/rerunners/maimaidx/parse-maimaidx-dataset.js b/database-seeds/scripts/rerunners/maimaidx/parse-maimaidx-dataset.js index 5faa3d40c..d2904ea50 100644 --- a/database-seeds/scripts/rerunners/maimaidx/parse-maimaidx-dataset.js +++ b/database-seeds/scripts/rerunners/maimaidx/parse-maimaidx-dataset.js @@ -127,8 +127,6 @@ const versionOverrides = { return; } - const isLatest = version >= CURRENT_VERSION_NUM; - const lvNum = Number(data[`dx_lev_${diff}`].replace(/\+/u, ".7")); charts.push({ @@ -139,9 +137,7 @@ const versionOverrides = { isPrimary: true, difficulty: `DX ${diffMap.get(diff)}`, playtype: "Single", - data: { - isLatest, - }, + data: {}, versions: [CURRENT_VERSION], }); }); @@ -161,8 +157,6 @@ const versionOverrides = { return; } - const isLatest = version >= CURRENT_VERSION_NUM; - const lvNum = Number(data[`lev_${diff}`].replace(/\+/u, ".7")); charts.push({ @@ -173,9 +167,7 @@ const versionOverrides = { isPrimary: true, difficulty: diffMap.get(diff), playtype: "Single", - data: { - isLatest, - }, + data: {}, versions: [CURRENT_VERSION], }); }); diff --git a/database-seeds/scripts/rerunners/ongeki/fetch-ongeki.ts b/database-seeds/scripts/rerunners/ongeki/fetch-ongeki.ts index 61f745754..04f34ee06 100644 --- a/database-seeds/scripts/rerunners/ongeki/fetch-ongeki.ts +++ b/database-seeds/scripts/rerunners/ongeki/fetch-ongeki.ts @@ -103,9 +103,6 @@ const scrapeWikiwiki = async ( playtype: "Single", data: { displayVersion: CURRENT_VERSION_PRETTY, - totalBellCount: bellCount, - totalNoteCount: noteCount, - isHot: true, }, versions: [CURRENT_VERSION, `${CURRENT_VERSION}Omni`], }; diff --git a/docs/docs/game-support/common-config/index.md b/docs/docs/game-support/common-config/index.md index becc030ea..c328d0864 100644 --- a/docs/docs/game-support/common-config/index.md +++ b/docs/docs/game-support/common-config/index.md @@ -196,9 +196,7 @@ export const WACCA_SINGLE_CONF = { reverse: "REVERSE", }, - chartData: z.strictObject({ - isHot: z.boolean(), - }), + chartData: z.strictObject({}), preferences: z.strictObject({}), scoreMeta: z.strictObject({ mirror: z.boolean().optional() }), diff --git a/docs/docs/game-support/games/gitadora-Dora.md b/docs/docs/game-support/games/gitadora-Dora.md index ba6b02b3d..36369b676 100644 --- a/docs/docs/game-support/games/gitadora-Dora.md +++ b/docs/docs/game-support/games/gitadora-Dora.md @@ -60,7 +60,6 @@ The default rating algorithm is `skill`. | Name | Description | | :: | :: | -| `skill` | Your profile skill as it's implemented in game -- 25 HOT and 25 not HOT. | | `naiveSkill` | Your best 50 skill levels added together, regardless of whether the chart is HOT or not. | ## Difficulties diff --git a/docs/docs/game-support/games/gitadora-Gita.md b/docs/docs/game-support/games/gitadora-Gita.md index caeda275c..3a5148f8d 100644 --- a/docs/docs/game-support/games/gitadora-Gita.md +++ b/docs/docs/game-support/games/gitadora-Gita.md @@ -60,7 +60,6 @@ The default rating algorithm is `skill`. | Name | Description | | :: | :: | -| `skill` | Your profile skill as it's implemented in game -- 25 HOT and 25 not HOT. | | `naiveSkill` | Your best 50 skill levels added together, regardless of whether the chart is HOT or not. | ## Difficulties diff --git a/server/src/external/mongo/indexes.ts b/server/src/external/mongo/indexes.ts index f5d8d4fe3..8d5e46a22 100644 --- a/server/src/external/mongo/indexes.ts +++ b/server/src/external/mongo/indexes.ts @@ -120,7 +120,7 @@ const staticIndexes: Partial>> = { "charts-museca": [index({ "data.inGameID": 1, difficulty: 1 }, UNIQUE)], "charts-chunithm": [index({ "data.inGameID": 1, difficulty: 1 }, UNIQUE)], "charts-gitadora": [index({ "data.inGameID": 1, difficulty: 1, playtype: 1 }, UNIQUE)], - "charts-wacca": [index({ "data.inGameID": 1, difficulty: 1 }, UNIQUE), index({ isHot: 1 })], + "charts-wacca": [index({ "data.inGameID": 1, difficulty: 1 }, UNIQUE)], "charts-usc": [index({ "data.hashSHA1": 1, playtype: 1 }, UNIQUE)], "charts-jubeat": [index({ "data.inGameID": 1, difficulty: 1 }, UNIQUE)], "charts-pms": [ diff --git a/server/src/game-implementations/games/gitadora.test.ts b/server/src/game-implementations/games/gitadora.test.ts index 984e535b4..079e9b72e 100644 --- a/server/src/game-implementations/games/gitadora.test.ts +++ b/server/src/game-implementations/games/gitadora.test.ts @@ -91,7 +91,7 @@ for (const [playtype, impl] of [ t.test("Colour Class", (t) => { const f = (v: number | null, expected: any) => t.equal( - impl.classDerivers.colour({ skill: v }), + impl.classDerivers.colour({ naiveSkill: v }), expected, `A skill level of ${v} should result in ${expected}.` ); diff --git a/server/src/game-implementations/games/gitadora.ts b/server/src/game-implementations/games/gitadora.ts index 99725ac82..25efafa4b 100644 --- a/server/src/game-implementations/games/gitadora.ts +++ b/server/src/game-implementations/games/gitadora.ts @@ -1,40 +1,11 @@ import { GoalFmtPercent, GoalOutOfFmtPercent, GradeGoalFormatter } from "./_common"; -import db from "external/mongo/db"; import { CreatePBMergeFor } from "game-implementations/utils/pb-merge"; -import { GetBestRatingOnSongs, ProfileSumBestN } from "game-implementations/utils/profile-calc"; +import { ProfileSumBestN } from "game-implementations/utils/profile-calc"; import { SessionAvgBest10For } from "game-implementations/utils/session-calc"; import { GITADORASkill } from "rg-stats"; import { GITADORA_GBOUNDARIES, GetGrade } from "tachi-common"; import { IsNullish } from "utils/misc"; import type { GPTServerImplementation } from "game-implementations/types"; -import type { Game, Playtype, integer } from "tachi-common"; - -async function CalculateGitadoraSkill(game: Game, playtype: Playtype, userID: integer) { - const hotSongIDs = ( - await db.songs.gitadora.find({ "data.isHot": true }, { projection: { id: 1 } }) - ).map((e) => e.id); - - // get it - const coldSongIDs = ( - await db.songs.gitadora.find({ "data.isHot": false }, { projection: { id: 1 } }) - ).map((e) => e.id); - - const [bestHotScores, bestScores] = await Promise.all([ - GetBestRatingOnSongs(hotSongIDs, userID, game, playtype, "skill", 25), - GetBestRatingOnSongs(coldSongIDs, userID, game, playtype, "skill", 25), - ]); - - if (bestHotScores.length + bestScores.length === 0) { - return null; - } - - let skill = 0; - - skill = skill + bestHotScores.reduce((a, e) => a + e.calculatedData.skill!, 0); - skill = skill + bestScores.reduce((a, e) => a + e.calculatedData.skill!, 0); - - return skill; -} const GITADORA_IMPL: GPTServerImplementation<"gitadora:Dora" | "gitadora:Gita"> = { chartSpecificValidators: {}, @@ -45,10 +16,10 @@ const GITADORA_IMPL: GPTServerImplementation<"gitadora:Dora" | "gitadora:Gita"> skill: (scoreData, chart) => GITADORASkill.calculate(scoreData.percent, chart.levelNum), }, sessionCalcs: { skill: SessionAvgBest10For("skill") }, - profileCalcs: { skill: CalculateGitadoraSkill, naiveSkill: ProfileSumBestN("skill", 50) }, + profileCalcs: { naiveSkill: ProfileSumBestN("skill", 50) }, classDerivers: { colour: (ratings) => { - const sk = ratings.skill; + const sk = ratings.naiveSkill; if (IsNullish(sk)) { return null; diff --git a/server/src/game-implementations/games/maimaidx.test.ts b/server/src/game-implementations/games/maimaidx.test.ts index c7927139a..b991518f8 100644 --- a/server/src/game-implementations/games/maimaidx.test.ts +++ b/server/src/game-implementations/games/maimaidx.test.ts @@ -68,7 +68,7 @@ t.test("Maimai DX Implementation", (t) => { t.test("Colour Deriver", (t) => { const f = (v: number | null, expected: any) => t.equal( - MAIMAIDX_IMPL.classDerivers.colour({ rate: v }), + MAIMAIDX_IMPL.classDerivers.colour({ naiveRate: v }), expected, `A rate of ${v} should result in ${expected}.` ); diff --git a/server/src/game-implementations/games/maimaidx.ts b/server/src/game-implementations/games/maimaidx.ts index 2e8ce207b..3a6f5fb56 100644 --- a/server/src/game-implementations/games/maimaidx.ts +++ b/server/src/game-implementations/games/maimaidx.ts @@ -1,5 +1,4 @@ import { GoalFmtPercent, GoalOutOfFmtPercent, GradeGoalFormatter } from "./_common"; -import db from "external/mongo/db"; import { CreatePBMergeFor } from "game-implementations/utils/pb-merge"; import { ProfileSumBestN } from "game-implementations/utils/profile-calc"; import { SessionAvgBest10For } from "game-implementations/utils/session-calc"; @@ -7,65 +6,6 @@ import { MaimaiDXRate } from "rg-stats"; import { GetGrade, MAIMAIDX_GBOUNDARIES } from "tachi-common"; import { IsNullish } from "utils/misc"; import type { GPTServerImplementation } from "game-implementations/types"; -import type { Game, Playtype, integer } from "tachi-common"; - -// basically the same as WACCA's. -async function CalculateMaimaiDXRate(game: Game, playtype: Playtype, userID: integer) { - const newChartIDs = ( - await db.charts.maimaidx.find({ "data.isLatest": true }, { projection: { chartID: 1 } }) - ).map((e) => e.chartID); - - const oldChartIDs = ( - await db.charts.maimaidx.find({ "data.isLatest": false }, { projection: { chartID: 1 } }) - ).map((e) => e.chartID); - - const best15New = await db["personal-bests"].find( - { - game, - playtype, - userID, - chartID: { $in: newChartIDs }, - "calculatedData.rate": { $type: "number" }, - }, - { - sort: { - "calculatedData.rate": -1, - }, - limit: 15, - projection: { - "calculatedData.rate": 1, - }, - } - ); - - const best35Old = await db["personal-bests"].find( - { - game, - playtype, - userID, - chartID: { $in: oldChartIDs }, - "calculatedData.rate": { $type: "number" }, - }, - { - sort: { - "calculatedData.rate": -1, - }, - limit: 35, - projection: { - "calculatedData.rate": 1, - }, - } - ); - - if (best15New.length + best35Old.length === 0) { - return null; - } - - return ( - best15New.reduce((a, e) => a + e.calculatedData.rate!, 0) + - best35Old.reduce((a, e) => a + e.calculatedData.rate!, 0) - ); -} export const MAIMAIDX_IMPL: GPTServerImplementation<"maimaidx:Single"> = { chartSpecificValidators: {}, @@ -77,12 +17,11 @@ export const MAIMAIDX_IMPL: GPTServerImplementation<"maimaidx:Single"> = { }, sessionCalcs: { rate: SessionAvgBest10For("rate") }, profileCalcs: { - rate: CalculateMaimaiDXRate, naiveRate: ProfileSumBestN("rate", 50), }, classDerivers: { colour: (ratings) => { - const rate = ratings.rate; + const rate = ratings.naiveRate; if (IsNullish(rate)) { return null; diff --git a/server/src/game-implementations/games/wacca.test.ts b/server/src/game-implementations/games/wacca.test.ts index f78b6cbea..3817bec55 100644 --- a/server/src/game-implementations/games/wacca.test.ts +++ b/server/src/game-implementations/games/wacca.test.ts @@ -79,7 +79,7 @@ t.test("WACCA Implementation", (t) => { t.test("Colour Deriver", (t) => { const f = (v: number | null, expected: any) => t.equal( - WACCA_IMPL.classDerivers.colour({ rate: v }), + WACCA_IMPL.classDerivers.colour({ naiveRate: v }), expected, `A rating of ${v} should result in ${expected}.` ); diff --git a/server/src/game-implementations/games/wacca.ts b/server/src/game-implementations/games/wacca.ts index 8f6de3a11..43b0faf3c 100644 --- a/server/src/game-implementations/games/wacca.ts +++ b/server/src/game-implementations/games/wacca.ts @@ -1,5 +1,4 @@ import { GoalFmtScore, GoalOutOfFmtScore, GradeGoalFormatter } from "./_common"; -import db from "external/mongo/db"; import { CreatePBMergeFor } from "game-implementations/utils/pb-merge"; import { ProfileSumBestN } from "game-implementations/utils/profile-calc"; import { SessionAvgBest10For } from "game-implementations/utils/session-calc"; @@ -7,65 +6,6 @@ import { WACCARate } from "rg-stats"; import { FmtNum, GetGrade, WACCA_GBOUNDARIES } from "tachi-common"; import { IsNullish } from "utils/misc"; import type { GPTServerImplementation } from "game-implementations/types"; -import type { Game, Playtype, integer } from "tachi-common"; - -// Wacca has a funny algorithm for rate involving gitadora-style latest chart bonuses, -async function CalculateWACCARate(game: Game, playtype: Playtype, userID: integer) { - const hotChartIDs = ( - await db.charts.wacca.find({ "data.isHot": true }, { projection: { chartID: 1 } }) - ).map((e) => e.chartID); - - const coldChartIDs = ( - await db.charts.wacca.find({ "data.isHot": false }, { projection: { chartID: 1 } }) - ).map((e) => e.chartID); - - const best15Hot = await db["personal-bests"].find( - { - game, - playtype, - userID, - chartID: { $in: hotChartIDs }, - "calculatedData.rate": { $type: "number" }, - }, - { - sort: { - "calculatedData.rate": -1, - }, - limit: 15, - projection: { - "calculatedData.rate": 1, - }, - } - ); - - const best35Cold = await db["personal-bests"].find( - { - game, - playtype, - userID, - chartID: { $in: coldChartIDs }, - "calculatedData.rate": { $type: "number" }, - }, - { - sort: { - "calculatedData.rate": -1, - }, - limit: 35, - projection: { - "calculatedData.rate": 1, - }, - } - ); - - if (best15Hot.length + best35Cold.length === 0) { - return null; - } - - return ( - best15Hot.reduce((a, e) => a + e.calculatedData.rate!, 0) + - best35Cold.reduce((a, e) => a + e.calculatedData.rate!, 0) - ); -} export const WACCA_IMPL: GPTServerImplementation<"wacca:Single"> = { chartSpecificValidators: {}, @@ -77,12 +17,11 @@ export const WACCA_IMPL: GPTServerImplementation<"wacca:Single"> = { }, sessionCalcs: { rate: SessionAvgBest10For("rate") }, profileCalcs: { - rate: CalculateWACCARate, naiveRate: ProfileSumBestN("rate", 50), }, classDerivers: { colour: (ratings) => { - const rate = ratings.rate; + const rate = ratings.naiveRate; if (IsNullish(rate)) { return null; diff --git a/server/src/lib/migration/migrations.ts b/server/src/lib/migration/migrations.ts index 236accc75..f2b8e572b 100644 --- a/server/src/lib/migration/migrations.ts +++ b/server/src/lib/migration/migrations.ts @@ -14,6 +14,7 @@ import RemoveIIDX2dxtraBeginners from "./migrations/remove-iidx-extra-beginners" import RemoveMultifolderStats from "./migrations/remove-multifolder-stats"; import RemoveRandom from "./migrations/remove-random"; import RemoveSessionViews from "./migrations/remove-session-views"; +import RmHot from "./migrations/rm-hot"; import SessionsToScoreIDs from "./migrations/sessions-to-scoreIDs"; import UpdateJubeatPreferredTables from "./migrations/update-jubeat-preferred-tables"; import V3PropsMigration from "./migrations/v3-props"; @@ -66,7 +67,8 @@ if (Environment.nodeEnv !== "test") { MarkFervidexAsWithoutIntent, MarkKsHookAsWithoutIntent, KtRatingToCuratorSkill, - RemoveIIDX2dxtraBeginners + RemoveIIDX2dxtraBeginners, + RmHot ); } diff --git a/server/src/lib/migration/migrations/rm-hot.ts b/server/src/lib/migration/migrations/rm-hot.ts new file mode 100644 index 000000000..176cfd2e2 --- /dev/null +++ b/server/src/lib/migration/migrations/rm-hot.ts @@ -0,0 +1,50 @@ +/* eslint-disable no-await-in-loop */ +import db from "external/mongo/db"; +import type { Migration } from "utils/types"; + +const migration: Migration = { + id: "rm-hot", + up: async () => { + const toRemove = [ + ["gitadora", "skill"], + ["wacca", "rate"], + ["maimai", "rate"], + ["maimaidx", "rate"], + ] as const; + + for (const [game, met] of toRemove) { + await db["game-settings"].update( + { + game, + "preferences.preferredProfileAlg": met, + }, + { + $set: { + "preferences.preferredProfileAlg": null, + }, + }, + { multi: true } + ); + + await db["game-stats"].update( + { game }, + { + $unset: { [`ratings.${met}`]: 1 }, + }, + { multi: true } + ); + await db["game-stats-snapshots"].update( + { game }, + { + $unset: { [`ratings.${met}`]: 1, [`rankings.${met}`]: 1 }, + }, + { multi: true } + ); + } + }, + down: () => { + throw new Error(`Reverting this change is not possible.`); + }, +}; + +export default migration; diff --git a/server/src/lib/score-import/framework/profile-calculated-data/classes.test.ts b/server/src/lib/score-import/framework/profile-calculated-data/classes.test.ts index 79d11b1cb..883c93e13 100644 --- a/server/src/lib/score-import/framework/profile-calculated-data/classes.test.ts +++ b/server/src/lib/score-import/framework/profile-calculated-data/classes.test.ts @@ -37,7 +37,7 @@ t.test("#CalculateUGPTClasses", (t) => { "Dora", 1, { - skill: 9000, + naiveSkill: 9000, }, null, logger diff --git a/server/src/server/router/api/v1/users/_userID/router.test.ts b/server/src/server/router/api/v1/users/_userID/router.test.ts index 0cabd422e..aafe0b32d 100644 --- a/server/src/server/router/api/v1/users/_userID/router.test.ts +++ b/server/src/server/router/api/v1/users/_userID/router.test.ts @@ -353,7 +353,7 @@ t.test("GET /api/v1/users/:userID/game-stats", (t) => { playtype: "Dora", classes: {}, ratings: { - skill: 4843, + naiveSkill: 4843, }, }, ]; diff --git a/server/src/test-utils/mock-db/charts-wacca.json b/server/src/test-utils/mock-db/charts-wacca.json index 618e5e38b..dc4f9baa1 100644 --- a/server/src/test-utils/mock-db/charts-wacca.json +++ b/server/src/test-utils/mock-db/charts-wacca.json @@ -2,7 +2,6 @@ { "chartID": "2abcf2da86f3d968dbe07695ab7ebf6b79cb0841", "data": { - "isHot": false, "inGameID": 2085 }, "difficulty": "EXPERT", @@ -15,4 +14,4 @@ "reverse" ] } -] +] \ No newline at end of file diff --git a/server/src/test-utils/test-data.ts b/server/src/test-utils/test-data.ts index 992d36b7b..6326b8938 100644 --- a/server/src/test-utils/test-data.ts +++ b/server/src/test-utils/test-data.ts @@ -387,9 +387,7 @@ export const TestingMaimaiChart: ChartDocument<"maimai:Single"> = { export const TestingMaimaiDXChart: ChartDocument<"maimaidx:Single"> = { chartID: "fbde73d543f93cbad9ec67052a7165700c5c8df6", - data: { - isLatest: false, - }, + data: {}, difficulty: "Advanced", isPrimary: true, level: "7", @@ -576,7 +574,6 @@ export const TestingWaccaPupaExp: ChartDocument<"wacca:Single"> = { levelNum: 13.7, level: "13+", data: { - isHot: false, inGameID: 2085, }, isPrimary: true, @@ -589,7 +586,7 @@ export const TestingWaccaPupaSong: SongDocument<"wacca"> = { artist: "モリモリあつし", data: { displayVersion: "lilyr", - genre: "バラエティ" + genre: "バラエティ", }, searchTerms: [], altTitles: [],