Asilosfervip commited on
Commit
adfae21
·
1 Parent(s): 7bcab31

Upload 2543 files

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .gitattributes +5 -0
  2. justdanceonline-main/.env +22 -0
  3. justdanceonline-main/.gitignore +5 -0
  4. justdanceonline-main/README.md +37 -0
  5. justdanceonline-main/jdcs.js +500 -0
  6. justdanceonline-main/local_settings/aliases/aliases.json +1 -0
  7. justdanceonline-main/local_settings/carousel/actionLists.json +236 -0
  8. justdanceonline-main/local_settings/carousel/categories.json +305 -0
  9. justdanceonline-main/local_settings/carousel/favorites.json +11 -0
  10. justdanceonline-main/local_settings/carousel/search.json +22 -0
  11. justdanceonline-main/local_settings/carousel/serverBoosters.json +13 -0
  12. justdanceonline-main/local_settings/carousel/songItemLists.json +13 -0
  13. justdanceonline-main/local_settings/itemdb/avatars.json +0 -0
  14. justdanceonline-main/local_settings/itemdb/portraitBorders.json +1115 -0
  15. justdanceonline-main/local_settings/itemdb/skins.json +1582 -0
  16. justdanceonline-main/local_settings/localisation/localisation.json +3296 -0
  17. justdanceonline-main/local_settings/pages/dancerprofile.json +220 -0
  18. justdanceonline-main/local_settings/pages/ftue.json +72 -0
  19. justdanceonline-main/local_settings/pages/jdtv.json +0 -0
  20. justdanceonline-main/local_settings/pages/kids.json +35 -0
  21. justdanceonline-main/local_settings/pages/quests.json +67 -0
  22. justdanceonline-main/local_settings/pages/recap-autodance.json +0 -0
  23. justdanceonline-main/local_settings/pages/upsell-videos.json +419 -0
  24. justdanceonline-main/local_settings/paths.json +14 -0
  25. justdanceonline-main/local_settings/playlistdb/playlists.json +17 -0
  26. justdanceonline-main/local_settings/questdb/quests.json +427 -0
  27. justdanceonline-main/local_settings/songdb/specificMaps.json +1 -0
  28. justdanceonline-main/local_settings/wdf/online-bosses.json +32 -0
  29. justdanceonline-main/maps/10000Lucht.json +110 -0
  30. justdanceonline-main/maps/1999.json +106 -0
  31. justdanceonline-main/maps/8BitRetake.json +123 -0
  32. justdanceonline-main/maps/AboutThatBass.json +114 -0
  33. justdanceonline-main/maps/AboutThatBassALT.json +118 -0
  34. justdanceonline-main/maps/AddictedToYou.json +97 -0
  35. justdanceonline-main/maps/Adeyyo.json +119 -0
  36. justdanceonline-main/maps/AdoreYou.json +90 -0
  37. justdanceonline-main/maps/Alexandrie.json +98 -0
  38. justdanceonline-main/maps/AllTheGoodGirls.json +90 -0
  39. justdanceonline-main/maps/AllYouGotta.json +125 -0
  40. justdanceonline-main/maps/AngryBirds.json +132 -0
  41. justdanceonline-main/maps/Animals.json +120 -0
  42. justdanceonline-main/maps/AnotherOne.json +142 -0
  43. justdanceonline-main/maps/AnotherOneALT.json +125 -0
  44. justdanceonline-main/maps/Automaton.json +124 -0
  45. justdanceonline-main/maps/BBoomBBoom.json +105 -0
  46. justdanceonline-main/maps/BadAssPrincessKids.json +92 -0
  47. justdanceonline-main/maps/BadGuyALT.json +103 -0
  48. justdanceonline-main/maps/BadLiar.json +123 -0
  49. justdanceonline-main/maps/Bailando1997.json +90 -0
  50. justdanceonline-main/maps/Bailar.json +114 -0
.gitattributes CHANGED
@@ -33,3 +33,8 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ justdanceonline-main/node_modules/geoip-lite/data/geoip-city-names.dat filter=lfs diff=lfs merge=lfs -text
37
+ justdanceonline-main/node_modules/geoip-lite/data/geoip-city.dat filter=lfs diff=lfs merge=lfs -text
38
+ justdanceonline-main/node_modules/geoip-lite/data/geoip-city6.dat filter=lfs diff=lfs merge=lfs -text
39
+ justdanceonline-main/node_modules/geoip-lite/data/geoip-country.dat filter=lfs diff=lfs merge=lfs -text
40
+ justdanceonline-main/node_modules/geoip-lite/data/geoip-country6.dat filter=lfs diff=lfs merge=lfs -text
justdanceonline-main/.env ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ NODE_ENV=prod
2
+
3
+ server_js=jdcs
4
+ server_url=localhost
5
+ server_version=2.1.0
6
+
7
+ connect_to_mongodb=true
8
+
9
+ log_folder=logs
10
+ log_file=error.log
11
+ log_auth_file=unauthorized.log
12
+ log_debug_file=debug.log
13
+ log_dev_file=dev.log
14
+
15
+ maps_folder=./maps
16
+ maps_block_folder=./maps_blocks
17
+
18
+ dev_debug=true
19
+
20
+ auth_checkPlatformType=false
21
+
22
+ port=1300
justdanceonline-main/.gitignore ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ node_modules/
2
+ tmp/tokens.json
3
+ settings/jd/jd_topPlayedSongs.json
4
+ .env
5
+ logs/
justdanceonline-main/README.md ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # justdancebest (JDCS)
2
+ My version of Just Dance Custom Server API, used for Just Dance Best, I worked on up to June 2021.
3
+
4
+ **JDCS (Just Dance Custom Service)** is a mock-up of **Just Dance Unlimited (JMCS)** servers by Ubisoft.
5
+
6
+ **Just Dance Unlimited** is a online-subscription service created by Ubisoft back in 2015 for Just Dance 2016-2021 and on for Xbox One, Xbox Series, PS4, PS5, Wii U, Nintendo Switch, PC and Google Stadia.
7
+
8
+ ## Requirements
9
+ - [Node.js](https://nodejs.org/)
10
+ - A server to host (duh)
11
+ ## How to install
12
+
13
+ - Use `git clone https://github.com/devvjs/justdanceonline.git` or download the repo as a ZIP file directly.
14
+ - Once you are done, go into `jdcs` folder and run `npm i` to install all packages that are required.
15
+ - After that, you can run the server by `node jdcs.js`.
16
+
17
+ ### Configuration
18
+ There are 3 types of configuration in Just Dance Best.
19
+ - **Local Settings**, where all local JSONs are being returned
20
+ - **Settings**, where all server/game configurations are stored
21
+ - **Environment file** where the server's main config such as maps folder, server port are in
22
+ - **JDCS object** in jdcs.js, where all UbiServices and official JMCS server urls are in.
23
+
24
+ ## Admin Panel
25
+ **JDCS** comes with a free-easy to access admin panel along with itself. In this admin panel, we have scripts for you to control your server easily.
26
+ - Add/edit songs
27
+ - Add/edit aliases
28
+ - View your CDN files
29
+ - Make developer requests to access the server with no credientials
30
+
31
+ and more!
32
+
33
+ ## License
34
+ There is no license for this project currently.
35
+
36
+ #### Discord server
37
+ [Join our Discord server!](https://discord.gg/devd)
justdanceonline-main/jdcs.js ADDED
@@ -0,0 +1,500 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ // Just Dance Best Source Code (version 2.5)
2
+ // This file was created on April 24, 2021 10:23 PM
3
+
4
+ // -- Modules
5
+
6
+ // Global
7
+ const express = require("express"),
8
+ app = express(),
9
+ axios = require("axios"),
10
+ mongoose = require("mongoose"),
11
+ chalk = require("chalk"),
12
+ expressip = require('express-ip'),
13
+ md5Dir = require("md5-dir")
14
+ fs = require("fs")
15
+
16
+ // Local
17
+ const basicFunc = require("./scripts/modules/basicFunc")
18
+
19
+ // --
20
+
21
+
22
+ // -- Mongoose DB connection
23
+ if (process.env.connect_to_mongodb === "true") {
24
+ mongoose.connect("mongodb://localhost/jdbestDatabase", {useNewUrlParser: true, useUnifiedTopology: true, useCreateIndex: true})
25
+ const db = mongoose.connection
26
+ db.on("error", (error) => {
27
+ console.error(error)
28
+ })
29
+ db.on("open", () => {
30
+ basicFunc.debugLog("[mongoDB] Connected to database /jdbestDatabase")
31
+ })
32
+ }
33
+ else basicFunc.debugLog("[mongoDB] Can't connect to database since connect_to_mongodb is false.", "yellow")
34
+ // --
35
+
36
+
37
+ // -- JDCS
38
+ // The main module of the game. It is responsible for creating modules, configurations,
39
+ // maintaining the game state, as well as handling most of the server communication.
40
+ // Stable stuff goes into .env while configurations that can change at any moment are stored in here.
41
+ let jdcs = {
42
+ port: process.env.port, // Server port
43
+ server_url: "jdcs-prod.justdancebest.tk",
44
+ server_protocol: "https",
45
+ serverLanguage: "en", // Default language of the server
46
+ // Server status codes
47
+ statusCodes: {
48
+ banned: 401,
49
+ invalidticket: 401,
50
+ invalidskuid: 400,
51
+ missingheader: 403,
52
+ missingdata: 400,
53
+ servererror: 500,
54
+ notfound: 404
55
+ },
56
+ // Server URLs
57
+ urls: {
58
+ // JMCS JDU servers
59
+ jmcs: {
60
+ prod: "jmcs-prod.just-dance.com",
61
+ uat: "jmcs-uat.just-dance.com",
62
+ lt: "jmcs-lt.just-dance.com",
63
+ cert: "jmcs-cert.just-dance.com",
64
+ staging: "jmcs-staging.just-dance.com"
65
+ },
66
+ jmcschn: {
67
+ prod: "prod-ws.jdcn.ubisoft.cn"
68
+ },
69
+ // UbiServices
70
+ ubiservices: {
71
+ prod: "public-ubiservices.ubi.com",
72
+ uat: "uat-ubiservices.uplaypc.ubisoft.cn",
73
+ lt: "lt-public-ubiservices.ubi.com",
74
+ cert: "cert2-public-ubiservices.ubi.com",
75
+ staging: "public-ubiservices.ubi.com"
76
+ },
77
+ // JDSkylight, custom CDN
78
+ jdskylight: {
79
+ prod: "public-cdn.justdancebest.tk"
80
+ },
81
+ jdbest_cdn: {
82
+ url: "jdbest-cdn.justdancebest.tk"
83
+ }
84
+ },
85
+ // Ticket Platform Types
86
+ platformTypes: {
87
+ orbis: "psn",
88
+ ps4: "psn",
89
+ xone: "xbl",
90
+ wiiu: "wiiu",
91
+ pc: "uplay",
92
+ nx: "switch"
93
+ },
94
+ // Sessions
95
+ sessions: {
96
+ mapsFolderMD5: md5Dir.sync(process.env.maps_folder), // MD5 of maps folder.
97
+ sessionTimeLimit: 1200000, // The time limit of user's inactive time.
98
+ content_auth_expiration: 3600 // 1 hour.
99
+ },
100
+ // Tickets
101
+ tickets: {
102
+ jmcs: "", // Global JMCS is currently disabled due to our accounts getting disabled.
103
+ jmcsCHN: basicFunc.generateJmcsTicket("jmcschn") // Generate China ticket to access JMCS China.
104
+ },
105
+ // Other
106
+ skus: basicFunc.getSetting("skus"), // All available skuIds
107
+ envs: ["prod", "dev"] // All available server environments
108
+ }
109
+ exports.jdcs = jdcs // Export server settings for other scripts.
110
+ // --
111
+
112
+
113
+
114
+ // -- MIDDLEWARES
115
+ app.use(expressip().getIpInfoMiddleware) // Receiving user information by IP.
116
+ app.use(express.static("static")) // Make static folder public for access.
117
+ app.use(express.json())
118
+ // --
119
+
120
+
121
+ // Create required files that are ignored in environment file.
122
+ if (!fs.existsSync("./settings/jd/jd_topPlayedSongs.json")) {
123
+ fs.writeFileSync("./settings/jd/jd_topPlayedSongs.json", JSON.stringify({}))
124
+ }
125
+
126
+
127
+
128
+ // CurrentUsers is an object for keeping all players that are connected.
129
+ let currentUsers = {
130
+ players: {},
131
+ userCount: 0
132
+ };
133
+ exports.currentUsers = currentUsers
134
+
135
+
136
+ // - authenticateJMCS is used for checking user's headers to see if they are valid on JMCS.
137
+ // This is useful to avoid stealing files outside the game.
138
+ const authenticateJDCS = function async(req, res, next) {
139
+
140
+ // Read required headers.
141
+ const authorization = req.header("authorization");
142
+ const skuId = req.header("x-skuid");
143
+ const userAgent = req.header("user-agent");
144
+
145
+ // Server boosters JSON file.
146
+ let serverBoostersJSON = basicFunc.getSetting("serverBoosters")
147
+
148
+
149
+
150
+ // -- Update userCount of currentUsers
151
+ currentUsers.userCount = Object.keys(currentUsers.players).length
152
+
153
+
154
+ // -- If the skuId got isDev tag in skus or x-developer-acc (the header that bypasses all checks) header exists, pass the user without any check and set req.isDev
155
+ if (skuId && jdcs.skus[skuId] && jdcs.skus[skuId]["isDev"] || req.header("x-developer-acc")) {
156
+ res.profileData = {
157
+ nameOnPlatform: req.ipInfo.ip, // Assign dev Ip as nameOnPlatform.
158
+ sid: "dev"
159
+ }
160
+ basicFunc.debugLog(`[authenticateJDCS] Dev access received ${req.originalUrl}, ${req.header("x-skuid")}`)
161
+ basicFunc.writeLog("dev", `${new Date().toISOString()} ${req.ipInfo.ip} ${req.originalUrl} ${req.header("x-skuid")} ${JSON.stringify(req.body)}\n\n`)
162
+ req.isDev = true
163
+ next()
164
+ }
165
+ // --
166
+
167
+
168
+ // -- If authorization is missing.
169
+ else if (!authorization) {
170
+ res.set("WWW-Authenticate", "Ubi_v1") // Set response WWW-Authenticate header.
171
+ return res.sendStatus(basicFunc.getStatusCode("missingHeader")) // Send missingHeader status back.
172
+ }
173
+ // If skuId is missing.
174
+ else if (!skuId) {
175
+ return res.sendStatus(basicFunc.getStatusCode("missingHeader")) // Send missingHeader status back.
176
+ }
177
+ // --
178
+
179
+
180
+ // INIT
181
+ // If all required data is given, pass the user for security and data check.
182
+ // If the user passes, add them to currentUsers. If user is in currentUsers already, it does not
183
+ // Check anything, the functions at the end will check their info and update them.
184
+ // Developers do not pass this check.
185
+ if (authorization && skuId && !req.isDev) {
186
+
187
+ // Decode Ubi_v1 ticket to read user's session ID, if the result is null, send invalidTicket status.
188
+ let ubiV1header = basicFunc.getUbiV1Header(authorization)
189
+ if (ubiV1header == null) { // If ubiV1 header is null or invalid, don't pass the user.
190
+ basicFunc.writeLog("unauthorized", `${new Date().toISOString()} ${req.headers['x-forwarded-for'] || req.connection.remoteAddress}${req.originalUrl} ${req.header("x-skuid")} ${JSON.stringify(req.body)}\n[INVALID TICKET]\n`)
191
+ basicFunc.debugLog(`[authenticateJDCS] Invalid ticket, not passing.`)
192
+ return res.sendStatus(basicFunc.getStatusCode("invalidTicket"));
193
+ }
194
+
195
+
196
+ // checkSkuId is a function that checks if client's skuId is valid or not, if skuId is invalid, it doesn't pass the client.
197
+ function checkSkuId(skuId) {
198
+ if (jdcs.skus[skuId] && ubiV1header.aid === jdcs.skus[skuId].appId) return true
199
+ else {
200
+ //basicFunc.debugLog(`[authenticateJDCS] User's skuId does not exist or appId does not equal skuId appId.`)
201
+ return false
202
+ }
203
+ }
204
+
205
+
206
+ // checkPlatformType returns the required platformType by reading skuId.
207
+ function checkPlatformType(platformType) {
208
+ if (process.env.checkPlatformType === "true") {
209
+ if (platformType === jdcs.platformTypes[skuId.split("-")[1]]) return true
210
+ }
211
+ else return true
212
+ }
213
+
214
+
215
+
216
+ // createSessions checks the client's information, requests UbiServices data and adds them to currentUsers object.
217
+ async function createSessions(sessionId) {
218
+
219
+ // Do GET on /v3/profiles/sessions on UbiServices to receive user's information.
220
+ const ubiResponse = await basicFunc.makeRequest("ubiservices", "post", "/v3/profiles/sessions", {}, {
221
+ "ubi-appid": "d03d28dd-4706-4808-ba6d-13f43ba62a11",
222
+ "authorization": authorization.replace("Ubi_v1 ", "Ubi_v1 t="),
223
+ "ubi-requestedplatformtype": jdcs.platformTypes[skuId.split("-")[1]]
224
+ })
225
+ // If data was received, check client's ticket platformType and continue.
226
+ if (ubiResponse.data && checkPlatformType(ubiResponse.data.platformType)) {
227
+
228
+ // ME
229
+ // This route is for receiving client's country.
230
+ const ubiMEResponse = await basicFunc.makeRequest("ubiservices", "get", "/v1/users/me", {}, {
231
+ "ubi-appid": "d03d28dd-4706-4808-ba6d-13f43ba62a11",
232
+ "authorization": authorization.replace("Ubi_v1 ", "Ubi_v1 t="),
233
+ "ubi-requestedplatformtype": jdcs.platformTypes[skuId.split("-")[1]]
234
+ })
235
+
236
+ // BAN CHECK
237
+ // If user's profileId or userId is banned from the server, don't pass them.
238
+ if (basicFunc.checkBanned(ubiResponse.data.userId) || basicFunc.checkBanned(ubiResponse.data.profileId)) { // If the profileId exists in banned users
239
+ basicFunc.writeLog("banned", `${new Date().toISOString()} ${ubiResponse.data.nameOnPlatform} ${req.header("x-skuid")} ${JSON.stringify(req.body)}\n[BANNED USER ACCESS]\n`)
240
+ // basicFunc.debugLog(`[authenticateJDCS - createSessions] ${ubiResponse.data.nameOnPlatform} is banned.`, "red")
241
+ return res.status(basicFunc.getStatusCode("banned")).send()
242
+ }
243
+
244
+
245
+ // ADDING USER TO SESSIONS
246
+ // If user is not banned, continue.
247
+ else {
248
+ // basicFunc.debugLog(`[authenticateJDCS - createSessions] ${ubiResponse.data.nameOnPlatform} was added to sessions.`) HAD TO DISABLE THIS CUZ IT WAS ANNOYING
249
+
250
+ // If player's ME response gives "User not found" or they don't have a country, set default country as US.
251
+ if (!ubiMEResponse.data || !ubiMEResponse.data.country) {
252
+ ubiMEResponse.data = {};
253
+ ubiMEResponse.data.country = "US";
254
+ }
255
+
256
+ // If user is not in sessions, continue
257
+ if (!currentUsers.players[sessionId]) {
258
+ currentUsers.players[sessionId] = {
259
+ nameOnPlatform: ubiResponse.data.nameOnPlatform, // uplay Username
260
+ clientIpCountry: ubiMEResponse.data.country, // Country from ME
261
+ uid: ubiResponse.data.userId, // userId
262
+ pid: ubiResponse.data.profileId, // profileId
263
+ sid: sessionId, // sessionId
264
+ skuId: skuId, // Current skuId
265
+ epoch: Date.now(), // Epoch to keep them connected with the server.
266
+ serverBooster: false // If the user is a server booster, this will be true.
267
+ }
268
+
269
+ // If the user is a server booster, turn serverBooster to true.
270
+ if (serverBoostersJSON[ubiResponse.data.userId] || serverBoostersJSON[ubiResponse.data.profileId]) {
271
+ currentUsers.players[sessionId].serverBooster = true
272
+ }
273
+
274
+ basicFunc.debugLog(`[authenticateJDCS - NEW PLAYER] ${ubiResponse.data.nameOnPlatform} from ${ubiMEResponse.data.country} entered JDCS from ${req.header("x-skuid")}`)
275
+ // Duplicate sessions of client and set as res.profileData for access everywhere.
276
+ res.profileData = Object.create(currentUsers.players[sessionId])
277
+ next() // Pass the user.
278
+ }
279
+ }
280
+ }
281
+
282
+ // If there was an issue with UbiServices response, don't pass the user.
283
+ else {
284
+ basicFunc.writeLog("unauthorized", `${new Date().toISOString()} ${req.headers['x-forwarded-for'] || req.connection.remoteAddress}${req.originalUrl} ${req.header("x-skuid")} ${JSON.stringify(req.body)}\n[NO PROFILE OR PLATFORMTYPE MATCH]\n`)
285
+ return res.sendStatus(basicFunc.getStatusCode("invalidTicket"));
286
+ }
287
+ }
288
+
289
+
290
+ // updateSessionId updates given key/value inside client's session object.
291
+ function updateSessionId(sessionId, update) {
292
+ // basicFunc.debugLog(`[authenticateJDCS - updateUserSession] Updated user in-game, old epoch was ${currentUsers.players[sessionId].epoch} and the new one is ${Date.now()}`, "blue")
293
+
294
+ switch(update) {
295
+ // Epoch
296
+ case "epoch":
297
+ currentUsers.players[sessionId].epoch = Date.now()
298
+ }
299
+ // Update global response profileData for access everywhere.
300
+ res.profileData = currentUsers.players[sessionId]
301
+ return;
302
+ }
303
+
304
+
305
+ // deleteSessionId deletes given sessionId from currentUsers.
306
+ function deleteSessionId(sessionId) {
307
+ basicFunc.debugLog(`[authenticateJDCS- deleteSessionId] Removed expired user ${currentUsers.players[sessionId]["sid"]}`, "yellow")
308
+ delete currentUsers.players[sessionId] // Delete sessionId
309
+ return;
310
+ }
311
+
312
+
313
+ // -- EXECUTING THE FUNCTIONS
314
+
315
+
316
+ // If user's sessionId does not exist in players object create sessions.
317
+ if (!currentUsers.players[ubiV1header.sid]) {
318
+ if (checkSkuId(skuId)) { // If skuId exists
319
+ createSessions(ubiV1header.sid) // Create session
320
+ } else return res.sendStatus(basicFunc.getStatusCode("invalidSkuId"));
321
+ }
322
+
323
+ // If user's sessionId is already in the object and skuId equals header skuId, update their data.
324
+ else if (currentUsers.players[ubiV1header.sid] && currentUsers.players[ubiV1header.sid].skuId === skuId) {
325
+ // If user's epoch has not passed the timeLimit, update their epoch.
326
+ if (Date.now() - currentUsers.players[ubiV1header.sid].epoch < jdcs["sessions"]["sessionTimeLimit"]) {
327
+ updateSessionId(ubiV1header.sid, "epoch") // Update epoch
328
+ next()
329
+ }
330
+ }
331
+
332
+ // --
333
+
334
+ else {
335
+ return res.sendStatus(basicFunc.getStatusCode("missingData"))
336
+ }
337
+
338
+
339
+ // Read each sessionId and delete ones that passed the timeLimit, tag:COULDBEIMPROVED
340
+ Object.keys(currentUsers.players).forEach(sessionId => {
341
+ if (Date.now() - currentUsers.players[sessionId]["epoch"] > jdcs["sessions"]["sessionTimeLimit"]) {
342
+ deleteSessionId(sessionId) // Delete sessionId.
343
+ // If a client's session was removed and they send request at the same time it was removed, create a new session.
344
+ if (ubiV1header.sid === sessionId) createSessions(sessionId)
345
+ }
346
+ })
347
+
348
+ }
349
+ // --
350
+ };
351
+
352
+ // -- ROUTES
353
+
354
+ // -- ALIASDB
355
+ // A database of all available aliases / titles.
356
+ app.use("/aliasdb/", authenticateJDCS, require("./scripts/routes/aliasdb"))
357
+ // --
358
+
359
+ // -- AVATARDB
360
+ // A database of all available avatars.
361
+ app.use("/avatardb/", authenticateJDCS, require("./scripts/routes/avatardb"))
362
+ // --
363
+
364
+ // -- CAROUSEL
365
+ // Listing all available content such as maps, settings etc.
366
+ app.use("/carousel/", authenticateJDCS, require("./scripts/routes/carousel"))
367
+ // --
368
+
369
+ // -- COM-VIDEO
370
+ // Unknown route, tag:INFO
371
+ app.use("/com-video/", authenticateJDCS, require("./scripts/routes/com-video"))
372
+ // --
373
+
374
+ // -- COMMUNITY-REMIX
375
+ // Community remix configuration.
376
+ app.use("/community-remix/", authenticateJDCS, require("./scripts/routes/community-remix"))
377
+ // --
378
+
379
+ // -- CONSTANT-PROVIDER
380
+ // Configuration for such settings in-game.
381
+ app.use("/constant-provider/", authenticateJDCS, require("./scripts/routes/constant-provider"))
382
+ // --
383
+
384
+ // -- CONTENT-AUTHORIZATION
385
+ // Return specific map's video url data
386
+ app.use("/content-authorization/", authenticateJDCS, require("./scripts/routes/content-authorization"))
387
+ // --
388
+
389
+ // -- CUSTOMIZABLE-ITEMDB
390
+ // A database of all avatars, skins and portrait borders.
391
+ app.use("/customizable-itemdb/", authenticateJDCS, require("./scripts/routes/customizable-itemdb"))
392
+ // --
393
+
394
+ // -- DANCE-MACHINE
395
+ // A database of all available blocks for JDM.
396
+ app.use("/dance-machine/", authenticateJDCS, require("./scripts/routes/dance-machine"))
397
+ // --
398
+
399
+ // -- DEBUG
400
+ // Debug options and developer configuration, also used in adminPanel. Only access-able if isDev is enabled.
401
+ app.use("/debug", authenticateJDCS, function (req, res, next) {
402
+ if (req.isDev) {
403
+ next()
404
+ } else return res.sendStatus(basicFunc.getStatusCode("missingHeader"))
405
+ }, require("./scripts/routes/debug"));
406
+ // --
407
+
408
+ // -- LEADERBOARD
409
+ // List score data for songs worldwide for players.
410
+ app.use("/leaderboard/", authenticateJDCS, require("./scripts/routes/leaderboard"))
411
+ // --
412
+
413
+ // -- PACKAGES
414
+ // Packages is used for listing all skupackages for songs.
415
+ app.use("/packages/", authenticateJDCS, require("./scripts/routes/packages"))
416
+ // --
417
+
418
+ // -- PLAYLISTDB
419
+ // Playlist Database
420
+ app.use("/playlistdb/", authenticateJDCS, require("./scripts/routes/playlistdb"))
421
+ // --
422
+
423
+ // -- PRIVATE
424
+ // Private access to DB from JD19 and above.
425
+ app.use("/private/", require("./scripts/routes/private"))
426
+ // --
427
+
428
+ // -- PROFILES
429
+ // User profile database
430
+ app.use("/profile/", authenticateJDCS, require("./scripts/routes/profile"))
431
+ // --
432
+
433
+ // -- QUESTDB
434
+ // A database of all available quests.
435
+ app.use("/questdb/", require("./scripts/routes/questdb"))
436
+ // --
437
+
438
+ // -- SESSION-QUEST
439
+ // Session quest for JD18 and above online quests.
440
+ app.use("/session-quest/", authenticateJDCS, require("./scripts/routes/session-quest"))
441
+ // --
442
+
443
+ // -- SONGDB
444
+ // Song database is used for listing all songs' information such as artist, title, assets url and such.
445
+ app.use("/songdb/", authenticateJDCS, require("./scripts/routes/songdb"))
446
+ // --
447
+
448
+ // -- STATUS
449
+ // Server status and pinging.
450
+ app.use("/status/", require("./scripts/routes/status"))
451
+ // --
452
+
453
+ // -- SUBSCRIPTION
454
+ // PLayer's JDU subscription data.
455
+ app.use("/subscription/", authenticateJDCS, require("./scripts/routes/subscription"))
456
+ // --
457
+
458
+ // -- WDF
459
+ // World Dance Floor API
460
+ app.use("/wdf/", authenticateJDCS, require("./scripts/routes/wdf"))
461
+ // --
462
+
463
+
464
+
465
+ // --
466
+
467
+ // Send other routes that we do not have as 404 with empty response.
468
+ app.all("/*", (req, res) => {
469
+ return res.status(404).send()
470
+ });
471
+
472
+ // -- ERROR HANDLER
473
+ // This is for handling any server error and logging it for research purposes.
474
+ app.use(function (err, req, res, next) {
475
+ if (err) {
476
+ basicFunc.writeLog("error", `${new Date().toISOString()} ${req.originalUrl} ${req.header("x-skuid")} \n${err}\n\n`)
477
+ return res.sendStatus(basicFunc.getStatusCode("serverError"))
478
+ }
479
+ })
480
+ // --
481
+
482
+ const listener = app.listen(jdcs.port, function() {
483
+ console.log(
484
+ chalk.blue(`---------- JUST DANCE BEST SERVER (JDCS) ----------\n`),
485
+ `${chalk.blue("Version")}: ${process.env.server_version} ${chalk.blue("Port")}: ${listener.address().port} ${chalk.blue("Environment")}: ${process.env.NODE_ENV}\n`,
486
+ `Server was started successfully.\n`
487
+
488
+ );
489
+ });
490
+
491
+
492
+ // REPEATING FUNCTIONS
493
+ // This is a list of all functions that should be called each x sec/min/hr.
494
+
495
+ // JMCS-CHN Ticket Generation
496
+ // Call ticket generation every 1.5 hour since it expires.
497
+ setInterval(function(){
498
+ debugLog(`[generateJmcsTicketCHN] Ticket for JMCS CHN was called after 1 hour(s).`)
499
+ jdcs.tickets.jmcsCHN = basicFunc.generateJmcsTicket("jmcschn")
500
+ }, 3600000);
justdanceonline-main/local_settings/aliases/aliases.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {}
justdanceonline-main/local_settings/carousel/actionLists.json ADDED
@@ -0,0 +1,236 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "search": {
3
+ "__class": "ActionList",
4
+ "actions": [
5
+ {
6
+ "__class": "Action",
7
+ "bannerType": "SEARCH",
8
+ "title": "Search",
9
+ "type": "open-keyboard"
10
+ },
11
+ {
12
+ "__class": "Action",
13
+ "bannerContext": "default",
14
+ "bannerTheme": "DEFAULT",
15
+ "bannerType": "SEARCH",
16
+ "title": "Previous Search",
17
+ "type": "previous-search"
18
+ }
19
+ ],
20
+ "itemType": "search"
21
+ },
22
+ "sweatMap": {
23
+ "__class": "ActionList",
24
+ "actions": [
25
+ {
26
+ "__class": "Action",
27
+ "bannerContext": "CONTEXT_SWEAT",
28
+ "bannerTheme": "DEFAULT",
29
+ "bannerType": "song",
30
+ "title": "Dance",
31
+ "type": "play-song"
32
+ },
33
+ {
34
+ "__class": "Action",
35
+ "bannerContext": "CONTEXT_SWEAT",
36
+ "bannerTheme": "DEFAULT",
37
+ "bannerType": "song_leaderboard",
38
+ "title": "Leaderboard",
39
+ "type": "leaderboard"
40
+ },
41
+ {
42
+ "__class": "Action",
43
+ "bannerContext": "CONTEXT_SWEAT",
44
+ "bannerTheme": "DEFAULT",
45
+ "bannerType": "song_licensing",
46
+ "title": "Credits",
47
+ "type": "credits"
48
+ }
49
+ ],
50
+ "itemType": "map"
51
+ },
52
+ "create-challenge": {
53
+ "__class": "ActionList",
54
+ "actions": [],
55
+ "itemType": "challengeV2"
56
+ },
57
+ "create-playlist": {
58
+ "__class": "ActionList",
59
+ "actions": [
60
+ {
61
+ "__class": "Action",
62
+ "title": "Add Song",
63
+ "type": "add-song"
64
+ }
65
+ ],
66
+ "itemType": "map"
67
+ },
68
+ "searchPreset": {
69
+ "__class": "ActionList",
70
+ "actions": [
71
+ {
72
+ "__class": "Action",
73
+ "bannerType": "SEARCH",
74
+ "title": "Search Preset",
75
+ "type": "search-preset"
76
+ }
77
+ ],
78
+ "itemType": "search"
79
+ },
80
+ "NonStop": {
81
+ "__class": "ActionList",
82
+ "actions": [
83
+ {
84
+ "__class": "Action",
85
+ "bannerType": "SHUFFLE",
86
+ "title": "Dance!",
87
+ "type": "start-rowPlaylist"
88
+ }
89
+ ],
90
+ "itemType": "map"
91
+ },
92
+ "partyMap": {
93
+ "__class": "ActionList",
94
+ "actions": [
95
+ {
96
+ "__class": "Action",
97
+ "bannerContext": "family_rival",
98
+ "bannerTheme": "DEFAULT",
99
+ "bannerType": "song",
100
+ "title": "Dance!",
101
+ "type": "play-song"
102
+ },
103
+ {
104
+ "__class": "Action",
105
+ "bannerContext": "family_rival",
106
+ "bannerTheme": "DEFAULT",
107
+ "bannerType": "song",
108
+ "title": "Add to favorites",
109
+ "type": "set-favorite"
110
+ },
111
+ {
112
+ "__class": "Action",
113
+ "bannerContext": "family_rival",
114
+ "bannerTheme": "DEFAULT",
115
+ "bannerType": "song_leaderboard",
116
+ "title": "Leaderboard",
117
+ "type": "leaderboard"
118
+ },
119
+ {
120
+ "__class": "Action",
121
+ "bannerContext": "family_rival",
122
+ "bannerTheme": "DEFAULT",
123
+ "bannerType": "song_licensing",
124
+ "title": "Credits",
125
+ "type": "credits"
126
+ }
127
+ ],
128
+ "itemType": "map"
129
+ },
130
+ "partyMapCoop": {
131
+ "__class": "ActionList",
132
+ "actions": [
133
+ {
134
+ "__class": "Action",
135
+ "bannerContext": "family_coop",
136
+ "bannerTheme": "DEFAULT",
137
+ "bannerType": "song",
138
+ "title": "Dance!",
139
+ "type": "play-song"
140
+ },
141
+ {
142
+ "__class": "Action",
143
+ "bannerContext": "family_coop",
144
+ "bannerTheme": "DEFAULT",
145
+ "bannerType": "song",
146
+ "title": "Add to favorites",
147
+ "type": "set-favorite"
148
+ },
149
+ {
150
+ "__class": "Action",
151
+ "bannerContext": "family_coop",
152
+ "bannerTheme": "DEFAULT",
153
+ "bannerType": "song_leaderboard",
154
+ "title": "Leaderboard",
155
+ "type": "leaderboard"
156
+ },
157
+ {
158
+ "__class": "Action",
159
+ "bannerContext": "family_coop",
160
+ "bannerTheme": "DEFAULT",
161
+ "bannerType": "song_licensing",
162
+ "title": "Credits",
163
+ "type": "credits"
164
+ }
165
+ ],
166
+ "itemType": "map"
167
+ },
168
+ "newsPage": {
169
+ "__class": "ActionList",
170
+ "actions": [
171
+ {
172
+ "__class": "Action",
173
+ "bannerContext": "family_rival",
174
+ "bannerTheme": "DEFAULT",
175
+ "bannerType": "song_licensing",
176
+ "title": "",
177
+ "type": "credits"
178
+ }
179
+ ],
180
+ "itemType": "map"
181
+ },
182
+ "comingSoon": {
183
+ "__class": "ActionList",
184
+ "actions": [
185
+ {
186
+ "__class": "Action",
187
+ "bannerContext": "family_rival",
188
+ "bannerTheme": "DEFAULT",
189
+ "bannerType": "song",
190
+ "title": "Coming Soon!",
191
+ "type": "credits"
192
+ }
193
+ ],
194
+ "itemType": "map"
195
+ },
196
+ "upsell_rival": {
197
+ "__class": "ActionList",
198
+ "actions": [
199
+ {
200
+ "__class": "Action",
201
+ "bannerContext": "family_rival",
202
+ "bannerTheme": "DEFAULT",
203
+ "bannerType": "song",
204
+ "title": "Подписаться",
205
+ "type": "play-song"
206
+ }
207
+ ],
208
+ "itemType": "map"
209
+ },
210
+ "ftue": {
211
+ "__class": "ActionList",
212
+ "actions": [
213
+ {
214
+ "__class": "Action",
215
+ "bannerContext": "family_rival",
216
+ "bannerTheme": "DEFAULT",
217
+ "bannerType": "song",
218
+ "title": "Dance",
219
+ "type": "play-song"
220
+ }
221
+ ],
222
+ "itemType": "map"
223
+ },
224
+ "teaser_ftue": {
225
+ "__class": "ActionList",
226
+ "actions": [
227
+ {
228
+ "__class": "Action",
229
+ "bannerType": "TEASER",
230
+ "title": "",
231
+ "type": "teaser"
232
+ }
233
+ ],
234
+ "itemType": "map"
235
+ }
236
+ }
justdanceonline-main/local_settings/carousel/categories.json ADDED
@@ -0,0 +1,305 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [{
2
+ "__class": "Category",
3
+ "title": {
4
+ "zh": "JUST DANCE BEST",
5
+ "en": "Just Dance Best"
6
+ },
7
+ "act": "ui_carousel",
8
+ "isc": "grp_row",
9
+ "items": []
10
+ }, {
11
+ "__class": "Category",
12
+ "title": {
13
+ "zh": "Gōngtuī",
14
+ "es": "Recomendado",
15
+ "en": "Recommended"
16
+ },
17
+ "act": "ui_carousel",
18
+ "isc": "grp_row",
19
+ "items": []
20
+ }, {
21
+ "__class": "Category",
22
+ "title": {
23
+ "zh": "DàZhòng",
24
+ "es": "Canciones Mas Jugadas",
25
+ "en": "Top Played Songs"
26
+ },
27
+ "noShuffle": true,
28
+ "act": "ui_carousel",
29
+ "isc": "grp_row",
30
+ "items": []
31
+ }, {
32
+ "__class": "Category",
33
+ "title": {
34
+ "zh": "JUST DANCE 1",
35
+ "en": "Just Dance 1"
36
+ },
37
+ "filter": {
38
+ "type": "originalJDVersion",
39
+ "originalJDVersion": 1
40
+ },
41
+ "act": "ui_carousel",
42
+ "isc": "grp_row",
43
+ "items": []
44
+ }, {
45
+ "__class": "Category",
46
+ "title": {
47
+ "zh": "JUST DANCE 2",
48
+ "en": "Just Dance 2"
49
+ },
50
+ "filter": {
51
+ "type": "originalJDVersion",
52
+ "originalJDVersion": 2
53
+ },
54
+ "act": "ui_carousel",
55
+ "isc": "grp_row",
56
+ "items": []
57
+ }, {
58
+ "__class": "Category",
59
+ "title": {
60
+ "zh": "JUST DANCE 3",
61
+ "en": "Just Dance 3"
62
+ },
63
+ "filter": {
64
+ "type": "originalJDVersion",
65
+ "originalJDVersion": 3
66
+ },
67
+ "act": "ui_carousel",
68
+ "isc": "grp_row",
69
+ "items": []
70
+ }, {
71
+ "__class": "Category",
72
+ "title": {
73
+ "zh": "JUST DANCE 4",
74
+ "en": "Just Dance 4"
75
+ },
76
+ "filter": {
77
+ "type": "originalJDVersion",
78
+ "originalJDVersion": 4
79
+ },
80
+ "act": "ui_carousel",
81
+ "isc": "grp_row",
82
+ "items": []
83
+ }, {
84
+ "__class": "Category",
85
+ "title": {
86
+ "zh": "JUST DANCE 2014",
87
+ "en": "Just Dance 2014"
88
+ },
89
+ "filter": {
90
+ "type": "originalJDVersion",
91
+ "originalJDVersion": 2014
92
+ },
93
+ "act": "ui_carousel",
94
+ "isc": "grp_row",
95
+ "items": []
96
+ }, {
97
+ "__class": "Category",
98
+ "title": {
99
+ "zh": "JUST DANCE 2015",
100
+ "en": "Just Dance 2015"
101
+ },
102
+ "filter": {
103
+ "type": "originalJDVersion",
104
+ "originalJDVersion": 2015
105
+ },
106
+ "act": "ui_carousel",
107
+ "isc": "grp_row",
108
+ "items": []
109
+ }, {
110
+ "__class": "Category",
111
+ "title": {
112
+ "zh": "JUST DANCE 2016",
113
+ "en": "Just Dance 2016"
114
+ },
115
+ "filter": {
116
+ "type": "originalJDVersion",
117
+ "originalJDVersion": 2016
118
+ },
119
+ "act": "ui_carousel",
120
+ "isc": "grp_row",
121
+ "items": []
122
+ }, {
123
+ "__class": "Category",
124
+ "title": {
125
+ "zh": "JUST DANCE 2017",
126
+ "en": "Just Dance 2017"
127
+ },
128
+ "filter": {
129
+ "type": "originalJDVersion",
130
+ "originalJDVersion": 2017
131
+ },
132
+ "act": "ui_carousel",
133
+ "isc": "grp_row",
134
+ "items": []
135
+ }, {
136
+ "__class": "Category",
137
+ "title": {
138
+ "zh": "JUST DANCE 2018",
139
+ "en": "Just Dance 2018"
140
+ },
141
+ "filter": {
142
+ "type": "originalJDVersion",
143
+ "originalJDVersion": 2018
144
+ },
145
+ "act": "ui_carousel",
146
+ "isc": "grp_row",
147
+ "items": []
148
+ }, {
149
+ "__class": "Category",
150
+ "title": {
151
+ "zh": "JUST DANCE 2019",
152
+ "en": "Just Dance 2019"
153
+ },
154
+ "filter": {
155
+ "type": "originalJDVersion",
156
+ "originalJDVersion": 2019
157
+ },
158
+ "act": "ui_carousel",
159
+ "isc": "grp_row",
160
+ "items": []
161
+ }, {
162
+ "__class": "Category",
163
+ "title": {
164
+ "zh": "JUST DANCE 2020",
165
+ "en": "Just Dance 2020"
166
+ },
167
+ "filter": {
168
+ "type": "originalJDVersion",
169
+ "originalJDVersion": 2020
170
+ },
171
+ "act": "ui_carousel",
172
+ "isc": "grp_row",
173
+ "items": []
174
+ }, {
175
+ "__class": "Category",
176
+ "title": {
177
+ "zh": "JUST DANCE 2021",
178
+ "en": "Just Dance 2021"
179
+ },
180
+ "filter": {
181
+ "type": "originalJDVersion",
182
+ "originalJDVersion": 2021
183
+ },
184
+ "act": "ui_carousel",
185
+ "isc": "grp_row",
186
+ "items": []
187
+ }, {
188
+ "__class": "Category",
189
+ "title": {
190
+ "en": "Solo",
191
+ "zh": "Dúzòu"
192
+ },
193
+ "filter": {
194
+ "type": "coachCount",
195
+ "coachCount": 1
196
+ },
197
+ "act": "ui_carousel",
198
+ "isc": "grp_row",
199
+ "items": []
200
+ }, {
201
+ "__class": "Category",
202
+ "title": {
203
+ "zh": "Èrchóngchàng",
204
+ "en": "Duet"
205
+ },
206
+ "filter": {
207
+ "type": "coachCount",
208
+ "coachCount": 2
209
+ },
210
+ "act": "ui_carousel",
211
+ "isc": "grp_row",
212
+ "items": []
213
+ }, {
214
+ "__class": "Category",
215
+ "title": {
216
+ "zh": "Sānchóngzòu",
217
+ "en": "Trio"
218
+ },
219
+ "filter": {
220
+ "type": "coachCount",
221
+ "coachCount": 3
222
+ },
223
+ "act": "ui_carousel",
224
+ "isc": "grp_row",
225
+ "items": []
226
+ },{
227
+ "__class": "Category",
228
+ "title": {
229
+ "zh": "Sì gè",
230
+ "es": "Quatro",
231
+ "en": "Dance Crew"
232
+ },
233
+ "filter": {
234
+ "type": "coachCount",
235
+ "coachCount": 4
236
+ },
237
+ "act": "ui_carousel",
238
+ "isc": "grp_row",
239
+ "items": []
240
+ }, {
241
+ "__class": "Category",
242
+ "title": {
243
+ "zh": "Yìng gē",
244
+ "en": "Extreme"
245
+ },
246
+ "filter": {
247
+ "type": "difficulty",
248
+ "difficulty": 4
249
+ },
250
+ "act": "ui_carousel",
251
+ "isc": "grp_row",
252
+ "items": []
253
+ }, {
254
+ "__class": "Category",
255
+ "title": {
256
+ "zh": "JUST DANCE Yàzhōu",
257
+ "en": "Just Dance Asia"
258
+ },
259
+ "filter": {
260
+ "type": "originalJDVersion",
261
+ "originalJDVersion": 4514
262
+ },
263
+ "act": "ui_carousel",
264
+ "isc": "grp_row",
265
+ "items": []
266
+ }, {
267
+ "__class": "Category",
268
+ "title": {
269
+ "zh": "ABBA: Wǔdǎo tiānhòu",
270
+ "en": "ABBA: You Can Dance"
271
+ },
272
+ "filter": {
273
+ "type": "originalJDVersion",
274
+ "originalJDVersion": 4884
275
+ },
276
+ "act": "ui_carousel",
277
+ "isc": "grp_row",
278
+ "items": []
279
+ }, {
280
+ "__class": "Category",
281
+ "title": {
282
+ "zh": "Háizimen de gē",
283
+ "en": "Kids"
284
+ },
285
+ "filter": {
286
+ "type": "originalJDVersion",
287
+ "originalJDVersion": 123
288
+ },
289
+ "act": "ui_carousel",
290
+ "isc": "grp_row",
291
+ "items": []
292
+ }, {
293
+ "__class": "Category",
294
+ "title": {
295
+ "zh": "Dújiā gēqǔ",
296
+ "en": "Exclusive"
297
+ },
298
+ "filter": {
299
+ "type": "originalJDVersion",
300
+ "originalJDVersion": 8357
301
+ },
302
+ "act": "ui_carousel",
303
+ "isc": "grp_row",
304
+ "items": []
305
+ }]
justdanceonline-main/local_settings/carousel/favorites.json ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "__class": "Category",
3
+ "title": {
4
+ "en": "[icon:FAVORITE] Favorites",
5
+ "es": "[icon:FAVORITE] Favoritos",
6
+ "zh": "[icon:FAVORITE] Shōucáng Jiā"
7
+ },
8
+ "act": "ui_carousel",
9
+ "isc": "grp_row",
10
+ "items": []
11
+ }
justdanceonline-main/local_settings/carousel/search.json ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "__class": "Category",
3
+ "title": {
4
+ "tr": "[icon:SEARCH_FILTER] Arama",
5
+ "zh": "[icon:SEARCH_FILTER] Sōusuǒ",
6
+ "es": "[icon:SEARCH_FILTER] Buscar",
7
+ "pt": "[icon:SEARCH_FILTER] Procurar",
8
+ "ru": "[icon:SEARCH_FILTER] Поиск",
9
+ "fr": "[icon:SEARCH_FILTER] Chercher",
10
+ "en": "[icon:SEARCH_FILTER] Search"
11
+ },
12
+ "act": "ui_carousel",
13
+ "isc": "grp_row_search",
14
+ "noShuffle": true,
15
+ "items": [{
16
+ "__class": "Item",
17
+ "act": "ui_component_base",
18
+ "components": [],
19
+ "isc": "grp_search",
20
+ "actionList": "search"
21
+ }]
22
+ }
justdanceonline-main/local_settings/carousel/serverBoosters.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "__class": "Category",
3
+ "title": {
4
+ "en": "Server Boosters-Only"
5
+ },
6
+ "filter": {
7
+ "type": "serverBoosterOnly",
8
+ "serverBoosterOnly": true
9
+ },
10
+ "act": "ui_carousel",
11
+ "isc": "grp_row",
12
+ "items": []
13
+ }
justdanceonline-main/local_settings/carousel/songItemLists.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "teaser_ftue": {
3
+ "__class": "SongItemList",
4
+ "actionListName": "teaser_ftue",
5
+ "list": [
6
+ {
7
+ "__class": "SongItem",
8
+ "act": "ui_component_base",
9
+ "isc": "teaser_item"
10
+ }
11
+ ]
12
+ }
13
+ }
justdanceonline-main/local_settings/itemdb/avatars.json ADDED
The diff for this file is too large to render. See raw diff
 
justdanceonline-main/local_settings/itemdb/portraitBorders.json ADDED
@@ -0,0 +1,1115 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "0": {
3
+ "__class": "OnlinePortraitBorder",
4
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0000_flowers/back.png/bcadb1763158956f80e7a0d06e92e134.png",
5
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0000_flowers/front.png/9f7688b2c1d7536c95c5aec1d20c26fa.png",
6
+ "originalLockStatus": 0,
7
+ "visibility": 0
8
+ },
9
+ "1": {
10
+ "__class": "OnlinePortraitBorder",
11
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0001_food/back.png/428ccafcda8bf0389fb533b9ef9c4a40.png",
12
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0001_food/front.png/3779ed75aaa26ec1dff816ab8b3c0e48.png",
13
+ "originalLockStatus": 0,
14
+ "visibility": 0
15
+ },
16
+ "2": {
17
+ "__class": "OnlinePortraitBorder",
18
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0002_gems/back.png/2234cbb474357da66cd1c78298f3fce3.png",
19
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0002_gems/front.png/98d38df1ff657427864806cd4bc7b7c1.png",
20
+ "originalLockStatus": 0,
21
+ "visibility": 0
22
+ },
23
+ "3": {
24
+ "__class": "OnlinePortraitBorder",
25
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0003_halloween/back.png/739e06207c6a5631a4e39ffdb48636ee.png",
26
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0003_halloween/front.png/9b226e5ae707af296f9b7574cc8123a4.png",
27
+ "originalLockStatus": 0,
28
+ "visibility": 0
29
+ },
30
+ "4": {
31
+ "__class": "OnlinePortraitBorder",
32
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0004_candies/back.png/8429d8a0f91094e2a0010af8c76cd287.png",
33
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0004_candies/front.png/23c4d95e2b8e567ccd56ee570bb00a07.png",
34
+ "originalLockStatus": 0,
35
+ "visibility": 0
36
+ },
37
+ "5": {
38
+ "__class": "OnlinePortraitBorder",
39
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0005_music/back.png/d6bb8f6d4dd0c6517f55f76740cc9ae2.png",
40
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0005_music/front.png/363a7b3db4c445b3773cde4b51fa6dbe.png",
41
+ "originalLockStatus": 0,
42
+ "visibility": 0
43
+ },
44
+ "6": {
45
+ "__class": "OnlinePortraitBorder",
46
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0006_sports/back.png/45008d9c648ce64c01ee909f1693d123.png",
47
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0006_sports/front.png/c4284e65b562d602b2eaa04b943922a8.png",
48
+ "originalLockStatus": 0,
49
+ "visibility": 0
50
+ },
51
+ "7": {
52
+ "__class": "OnlinePortraitBorder",
53
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0007_planets/back.png/657ff26f7f8e97545d0dfe5b47f573f8.png",
54
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0007_planets/front.png/54ff4bee5337893cc608c981b3e7245e.png",
55
+ "originalLockStatus": 0,
56
+ "visibility": 0
57
+ },
58
+ "8": {
59
+ "__class": "OnlinePortraitBorder",
60
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0008_fire/back.png/676f399b1720b016eb6392c2c5ac1e9d.png",
61
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0008_fire/front.png/efb2258a72ff7ab2f7df9fcc7805af3a.png",
62
+ "originalLockStatus": 0,
63
+ "visibility": 0
64
+ },
65
+ "9": {
66
+ "__class": "OnlinePortraitBorder",
67
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0009_water/back.png/fce9143cfec71196d514f572cd927b00.png",
68
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0009_water/front.png/9eb10fb50af5cdd8563192396881a33c.png",
69
+ "originalLockStatus": 0,
70
+ "visibility": 0
71
+ },
72
+ "10": {
73
+ "__class": "OnlinePortraitBorder",
74
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0010_wind/back.png/437da263374e7fdfec8aa215fee5169a.png",
75
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0010_wind/front.png/77c8bbf62e02aa8404c41442e285673d.png",
76
+ "originalLockStatus": 0,
77
+ "visibility": 0
78
+ },
79
+ "11": {
80
+ "__class": "OnlinePortraitBorder",
81
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0011_ice/back.png/b135cdcc95a23182a34f414d1038d53c.png",
82
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0011_ice/front.png/1d8bc483b3a56fcf40458dbfd9df96ec.png",
83
+ "originalLockStatus": 0,
84
+ "visibility": 0
85
+ },
86
+ "12": {
87
+ "__class": "OnlinePortraitBorder",
88
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0012_fruits/back.png/cf1324b7ee9c8660a0f0fbdbe6fed4b0.png",
89
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0012_fruits/front.png/f81127dd6c3a0415958273bd2d9cae65.png",
90
+ "originalLockStatus": 0,
91
+ "visibility": 0
92
+ },
93
+ "13": {
94
+ "__class": "OnlinePortraitBorder",
95
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0013_vegetables/back.png/851e04b9aae8c227a44b90b09af5fbe4.png",
96
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0013_vegetables/front.png/bca54bea00cf9856b581f1d7fae3ed0c.png",
97
+ "originalLockStatus": 0,
98
+ "visibility": 0
99
+ },
100
+ "14": {
101
+ "__class": "OnlinePortraitBorder",
102
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0014_stars/back.png/b539ccc20e0cb1065156f85fc32e0d23.png",
103
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0014_stars/front.png/49bc4a7ebe9ac870cf9dd30e325cc780.png",
104
+ "originalLockStatus": 0,
105
+ "visibility": 0
106
+ },
107
+ "15": {
108
+ "__class": "OnlinePortraitBorder",
109
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0015_wings/back.png/59faf2e752a7aeb7528b4a9b33cfd959.png",
110
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0015_wings/front.png/05c32d95acc7df853240b483cac82c7f.png",
111
+ "originalLockStatus": 0,
112
+ "visibility": 0
113
+ },
114
+ "16": {
115
+ "__class": "OnlinePortraitBorder",
116
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0016_leaves/back.png/b28e25355e4a644f6ab234bb5644c71f.png",
117
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0016_leaves/front.png/c01c7da36fcd95827d76642d85af94bd.png",
118
+ "originalLockStatus": 0,
119
+ "visibility": 0
120
+ },
121
+ "17": {
122
+ "__class": "OnlinePortraitBorder",
123
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0017_animals/back.png/bbb1969551998c2d7a9544830ec33f95.png",
124
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0017_animals/front.png/29f1dfea0c4388b1cb90512aa7468d5d.png",
125
+ "originalLockStatus": 0,
126
+ "visibility": 0
127
+ },
128
+ "18": {
129
+ "__class": "OnlinePortraitBorder",
130
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0018_mechanism/back.png/ced77a1df7f8dec1ffd109ae002b80c9.png",
131
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0018_mechanism/front.png/968c0f6d3e9fb132ff8b049faa1f1390.png",
132
+ "originalLockStatus": 0,
133
+ "visibility": 0
134
+ },
135
+ "19": {
136
+ "__class": "OnlinePortraitBorder",
137
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0019_abstract/back.png/9a85e169c71defba7a9e57c97820d3df.png",
138
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0019_abstract/front.png/620611ad9cbf1f3096af3c92904a7444.png",
139
+ "originalLockStatus": 0,
140
+ "visibility": 0
141
+ },
142
+ "20": {
143
+ "__class": "OnlinePortraitBorder",
144
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0020_guest_blue/back.png/dc42f135701e4c3be0704b434385c8c6.png",
145
+ "originalLockStatus": 1,
146
+ "visibility": 0
147
+ },
148
+ "21": {
149
+ "__class": "OnlinePortraitBorder",
150
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0021_guest_red/back.png/f2bec9f4337bfa1b00093c9859e8dde4.png",
151
+ "originalLockStatus": 1,
152
+ "visibility": 0
153
+ },
154
+ "22": {
155
+ "__class": "OnlinePortraitBorder",
156
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0022_guest_aqua/back.png/04b105622f124e3874837a5624a2b131.png",
157
+ "originalLockStatus": 1,
158
+ "visibility": 0
159
+ },
160
+ "23": {
161
+ "__class": "OnlinePortraitBorder",
162
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0023_guest_pink/back.png/9c8499344a879a073e3293b3fa591ad8.png",
163
+ "originalLockStatus": 1,
164
+ "visibility": 0
165
+ },
166
+ "24": {
167
+ "__class": "OnlinePortraitBorder",
168
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0024_guest_green/back.png/9d7161dce8d4b280845fd419c29dd0f3.png",
169
+ "originalLockStatus": 1,
170
+ "visibility": 0
171
+ },
172
+ "25": {
173
+ "__class": "OnlinePortraitBorder",
174
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0025_guest_Purple/back.png/306f1a65f799a94df6b3dd69f13a234c.png",
175
+ "originalLockStatus": 1,
176
+ "visibility": 0
177
+ },
178
+ "26": {
179
+ "__class": "OnlinePortraitBorder",
180
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0026_FTUE/back.png/6234d3a4b46ccbd9eecbc9618bda4c03.png",
181
+ "originalLockStatus": 1,
182
+ "visibility": 1
183
+ },
184
+ "27": {
185
+ "__class": "OnlinePortraitBorder",
186
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0027_rain/back.png/557a02085e2a904fe725ff78063803cc.png",
187
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0027_rain/front.png/6797f87190d819f676a7e08388fc8d41.png",
188
+ "originalLockStatus": 0,
189
+ "visibility": 0
190
+ },
191
+ "28": {
192
+ "__class": "OnlinePortraitBorder",
193
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0028_autumn/back.png/ba89df338d40ecd49fc5d3375eb61696.png",
194
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0028_autumn/front.png/0ed44d87b657f8396076bdf132e00cf8.png",
195
+ "originalLockStatus": 0,
196
+ "visibility": 0
197
+ },
198
+ "29": {
199
+ "__class": "OnlinePortraitBorder",
200
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0029_spring/back.png/d3ddd4c32188fb83cc04c9394c085024.png",
201
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0029_spring/front.png/4889677d240b735cd26a65a9a4c5b752.png",
202
+ "originalLockStatus": 0,
203
+ "visibility": 0
204
+ },
205
+ "30": {
206
+ "__class": "OnlinePortraitBorder",
207
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0030_summer/back.png/16f10a939a5f4863ca26a298dc006a01.png",
208
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0030_summer/front.png/8ea8c4aadef51efd63e7326adcf13d41.png",
209
+ "originalLockStatus": 0,
210
+ "visibility": 0
211
+ },
212
+ "31": {
213
+ "__class": "OnlinePortraitBorder",
214
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0031_winter/back.png/d1a495609910c2682666b13057dc651f.png",
215
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0031_winter/front.png/da71f5c7c30967e7f292c4abf6e34d9b.png",
216
+ "originalLockStatus": 0,
217
+ "visibility": 0
218
+ },
219
+ "32": {
220
+ "__class": "OnlinePortraitBorder",
221
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0032_gold/back.png/cfc15b16938b2b03a308478eecb2a9df.png",
222
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0032_gold/front.png/0b750264df5468eb3c720f92866655ec.png",
223
+ "originalLockStatus": 0,
224
+ "visibility": 0
225
+ },
226
+ "33": {
227
+ "__class": "OnlinePortraitBorder",
228
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0033_books/back.png/a8d2f5d11fb1f2fdbb4e04a19ccca03b.png",
229
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0033_books/front.png/b49f071e49dc33b7266f7da33dcaec43.png",
230
+ "originalLockStatus": 0,
231
+ "visibility": 0
232
+ },
233
+ "34": {
234
+ "__class": "OnlinePortraitBorder",
235
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0034_disco/back.png/d1984b5d253cef431bb14b18ec773c86.png",
236
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0034_disco/front.png/096dad9ec09442d0aeecc7e69150f998.png",
237
+ "originalLockStatus": 0,
238
+ "visibility": 0
239
+ },
240
+ "35": {
241
+ "__class": "OnlinePortraitBorder",
242
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0035_gift/back.png/894774dfa424443bb2b423b89d78ac91.png",
243
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0035_gift/front.png/84b0e75d20484e0fdaefcaa8fd11e509.png",
244
+ "originalLockStatus": 0,
245
+ "visibility": 0
246
+ },
247
+ "36": {
248
+ "__class": "OnlinePortraitBorder",
249
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0036_make_up/back.png/cd3e9bd1dca7ce775c1cbe38d0d50542.png",
250
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0036_make_up/front.png/3b44c2e473907e5226153fc3285829bd.png",
251
+ "originalLockStatus": 0,
252
+ "visibility": 0
253
+ },
254
+ "37": {
255
+ "__class": "OnlinePortraitBorder",
256
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0037_origami/back.png/862da7981733b04ecb6c84d1222ec5fe.png",
257
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0037_origami/front.png/fb8e60a244fc4dd15980a36c264ee577.png",
258
+ "originalLockStatus": 0,
259
+ "visibility": 0
260
+ },
261
+ "38": {
262
+ "__class": "OnlinePortraitBorder",
263
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0038_rabbit/back.png/af14128652648a1dbce75fa414f79d22.png",
264
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0038_rabbit/front.png/d3985b2bb44264757c7da86a588be353.png",
265
+ "originalLockStatus": 0,
266
+ "visibility": 0
267
+ },
268
+ "39": {
269
+ "__class": "OnlinePortraitBorder",
270
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0039_robot/back.png/407dd5e9b00fca0329a19dde0c98fa56.png",
271
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0039_robot/front.png/9f2e92dfa95fc0560766ccc6b2f291c4.png",
272
+ "originalLockStatus": 0,
273
+ "visibility": 0
274
+ },
275
+ "40": {
276
+ "__class": "OnlinePortraitBorder",
277
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0040_unicorn/back.png/bf0722315534ad84e49282ae7d335b19.png",
278
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0040_unicorn/front.png/6e949e2bcb228cd10f8122b1535a9efd.png",
279
+ "originalLockStatus": 0,
280
+ "visibility": 0
281
+ },
282
+ "41": {
283
+ "__class": "OnlinePortraitBorder",
284
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0041_witch/back.png/fbd5df31888dafc9eea1a105db01e7fd.png",
285
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0041_witch/front.png/a1e7a0c9cf4bc42b06c6459910f909d7.png",
286
+ "originalLockStatus": 0,
287
+ "visibility": 0
288
+ },
289
+ "42": {
290
+ "__class": "OnlinePortraitBorder",
291
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0042_aliens/back.png/2c61e396044010b32725f7b7bc5db72d.png",
292
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0042_aliens/front.png/13b4a8a8f01ee6fa311516251755c6c5.png",
293
+ "originalLockStatus": 0,
294
+ "visibility": 0
295
+ },
296
+ "43": {
297
+ "__class": "OnlinePortraitBorder",
298
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0043_beach/back.png/758744c0056873a419b50a468423e149.png",
299
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0043_beach/front.png/79f8e98482ca81df4e70a0df4a1101c3.png",
300
+ "originalLockStatus": 0,
301
+ "visibility": 0
302
+ },
303
+ "44": {
304
+ "__class": "OnlinePortraitBorder",
305
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0044_birthday/back.png/1eb0639aa2894ecaf6ac5d2347dfaaba.png",
306
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0044_birthday/front.png/3fe57524bba20b8b4e07268ac8eebedf.png",
307
+ "originalLockStatus": 0,
308
+ "visibility": 0
309
+ },
310
+ "45": {
311
+ "__class": "OnlinePortraitBorder",
312
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0045_breakfast/back.png/6c46caa83d8298c707a48980b2eda224.png",
313
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0045_breakfast/front.png/f6996a922cbb1b8d0b2604344a009157.png",
314
+ "originalLockStatus": 0,
315
+ "visibility": 0
316
+ },
317
+ "46": {
318
+ "__class": "OnlinePortraitBorder",
319
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0046_carnival/back.png/d1454fa1ccfa20493ebbfbd2c1d84876.png",
320
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0046_carnival/front.png/1b21b6351b46caba49cc100e22cfc5ad.png",
321
+ "originalLockStatus": 0,
322
+ "visibility": 0
323
+ },
324
+ "47": {
325
+ "__class": "OnlinePortraitBorder",
326
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0047_casino/back.png/f1ac0a3180f52b004f5feda2a0f17f8f.png",
327
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0047_casino/front.png/e5512fdaadc0b9cd821b5161a0809247.png",
328
+ "originalLockStatus": 0,
329
+ "visibility": 0
330
+ },
331
+ "48": {
332
+ "__class": "OnlinePortraitBorder",
333
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0048_chocolate_and_cakes/back.png/7e6a96ad00e276bd7e9b4f6637599b56.png",
334
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0048_chocolate_and_cakes/front.png/60135ea8bcb06bc09e20dd70e5fe6291.png",
335
+ "originalLockStatus": 0,
336
+ "visibility": 0
337
+ },
338
+ "49": {
339
+ "__class": "OnlinePortraitBorder",
340
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0049_christmas/back.png/b70eff704cf12923dd96dc2156b5daef.png",
341
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0049_christmas/front.png/180040e5875ac0c44fff99f3c3285581.png",
342
+ "originalLockStatus": 0,
343
+ "visibility": 0
344
+ },
345
+ "50": {
346
+ "__class": "OnlinePortraitBorder",
347
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0050_crown/back.png/8c7356a5444fba4171ec6722f3bbb164.png",
348
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0050_crown/front.png/1fa1572830f36c1344eb3a4f2d7f85b1.png",
349
+ "originalLockStatus": 0,
350
+ "visibility": 0
351
+ },
352
+ "51": {
353
+ "__class": "OnlinePortraitBorder",
354
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0051_fitness/back.png/335670f5affb26b27db2f9d2e9ba3a44.png",
355
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0051_fitness/front.png/9cc3739c75e454283d459b16dbe33282.png",
356
+ "originalLockStatus": 0,
357
+ "visibility": 0
358
+ },
359
+ "52": {
360
+ "__class": "OnlinePortraitBorder",
361
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0052_game_controller/back.png/8a0e73c9c9bd1ac161f892ef4b9bc37a.png",
362
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0052_game_controller/front.png/25387d200ab9bb1f8675913276b45dd7.png",
363
+ "originalLockStatus": 0,
364
+ "visibility": 0
365
+ },
366
+ "53": {
367
+ "__class": "OnlinePortraitBorder",
368
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0053_jungle/back.png/03f29c5118a2954a246f7a3b5fd1480f.png",
369
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0053_jungle/front.png/7c8f7097f81c9fa0730fcb9152270e31.png",
370
+ "originalLockStatus": 0,
371
+ "visibility": 0
372
+ },
373
+ "54": {
374
+ "__class": "OnlinePortraitBorder",
375
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0054_kittens/back.png/d6140d0a5313adb629f90a569ec32d27.png",
376
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0054_kittens/front.png/865582d7c28aca2589c034cb8317a548.png",
377
+ "originalLockStatus": 0,
378
+ "visibility": 0
379
+ },
380
+ "55": {
381
+ "__class": "OnlinePortraitBorder",
382
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0055_knight/back.png/8f04fd51866be5f736642b52e9015b5d.png",
383
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0055_knight/front.png/8fe0e3cf7f00efb1679ea36d2e0c565e.png",
384
+ "originalLockStatus": 0,
385
+ "visibility": 0
386
+ },
387
+ "56": {
388
+ "__class": "OnlinePortraitBorder",
389
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0056_lunar_new_year/back.png/dfc0d4b2ef27440f00d9b32805c9e180.png",
390
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0056_lunar_new_year/front.png/477431a725f2a7ea72e69fba76389a0e.png",
391
+ "originalLockStatus": 0,
392
+ "visibility": 0
393
+ },
394
+ "57": {
395
+ "__class": "OnlinePortraitBorder",
396
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0057_queer/back.png/f59c9b5ac62eb97d77dbf73241a5120e.png",
397
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0057_queer/front.png/74a0ec6d74976536a94c91bad4aadaff.png",
398
+ "originalLockStatus": 0,
399
+ "visibility": 0
400
+ },
401
+ "58": {
402
+ "__class": "OnlinePortraitBorder",
403
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0058_snakes/back.png/19bc51b66d2b60998aad6e2cc1782b91.png",
404
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0058_snakes/front.png/d79e67d3b56ff94630e16173dbdace63.png",
405
+ "originalLockStatus": 0,
406
+ "visibility": 0
407
+ },
408
+ "59": {
409
+ "__class": "OnlinePortraitBorder",
410
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0059_superheroes/back.png/cd9edfca6af5baad3b23cb3a2dc0c101.png",
411
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0059_superheroes/front.png/bc3ba68e6b54e105a568d70490a75049.png",
412
+ "originalLockStatus": 0,
413
+ "visibility": 0
414
+ },
415
+ "60": {
416
+ "__class": "OnlinePortraitBorder",
417
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0060_amusementpark/back.png/9341da7e21e9620f57054034738e2d70.png",
418
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0060_amusementpark/front.png/7be5ac7d04f2b187c22cdf0c38b65b88.png",
419
+ "originalLockStatus": 0,
420
+ "visibility": 1
421
+ },
422
+ "61": {
423
+ "__class": "OnlinePortraitBorder",
424
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0061_artfurniture/back.png/f74cd8ab6ff21549f2995632a5028eb0.png",
425
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0061_artfurniture/front.png/58ac0f45d11050a9da1e9017be6e6cd6.png",
426
+ "originalLockStatus": 0,
427
+ "visibility": 1
428
+ },
429
+ "62": {
430
+ "__class": "OnlinePortraitBorder",
431
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0062_avocados/back.png/3e54160ef4d8547ef0b158e086fa085d.png",
432
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0062_avocados/front.png/c8250d5879dc788917fbdc46586232f5.png",
433
+ "originalLockStatus": 0,
434
+ "visibility": 1
435
+ },
436
+ "63": {
437
+ "__class": "OnlinePortraitBorder",
438
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0063_ballet/back.png/cfd6b4cdc9f53f01b152f8281ed05df5.png",
439
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0063_ballet/front.png/33745147794781d0de0620a4d57cd8d8.png",
440
+ "originalLockStatus": 0,
441
+ "visibility": 1
442
+ },
443
+ "64": {
444
+ "__class": "OnlinePortraitBorder",
445
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0064_bamboos/back.png/b2fcfa252a27319f809aacce9c2c9888.png",
446
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0064_bamboos/front.png/0cebbfe25af1135f3a4e4f9dfe432781.png",
447
+ "originalLockStatus": 0,
448
+ "visibility": 1
449
+ },
450
+ "65": {
451
+ "__class": "OnlinePortraitBorder",
452
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0065_bees/back.png/2426dbe588dbc303991bda763a04788a.png",
453
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0065_bees/front.png/8e3c2ef7f97081840d10ba866963ae5b.png",
454
+ "originalLockStatus": 0,
455
+ "visibility": 1
456
+ },
457
+ "66": {
458
+ "__class": "OnlinePortraitBorder",
459
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0066_bubbles/back.png/21343551fd5947ead0a974cff1f6deda.png",
460
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0066_bubbles/front.png/5046c511f73495177f53c085b2c0a31a.png",
461
+ "originalLockStatus": 0,
462
+ "visibility": 1
463
+ },
464
+ "67": {
465
+ "__class": "OnlinePortraitBorder",
466
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0067_butterflies/back.png/189bf8b5dbcfcd9572f395421cba7aca.png",
467
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0067_butterflies/front.png/a83c52dca88202b5a00096909c96be71.png",
468
+ "originalLockStatus": 0,
469
+ "visibility": 1
470
+ },
471
+ "68": {
472
+ "__class": "OnlinePortraitBorder",
473
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0068_castle/back.png/79f6c6f1926ae4375cae1100c627cacc.png",
474
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0068_castle/front.png/2d159084d85ca1a6e1bb01efef7b69f5.png",
475
+ "originalLockStatus": 0,
476
+ "visibility": 1
477
+ },
478
+ "69": {
479
+ "__class": "OnlinePortraitBorder",
480
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0069_cheese/back.png/ce19f8bd3608cd13c4f2870851d0a367.png",
481
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0069_cheese/front.png/d2b163b99544c4f973eebe776722e7c5.png",
482
+ "originalLockStatus": 0,
483
+ "visibility": 1
484
+ },
485
+ "70": {
486
+ "__class": "OnlinePortraitBorder",
487
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0070_cherryblossoms/back.png/50fe5debcd4619b9b50681414f4902e5.png",
488
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0070_cherryblossoms/front.png/d788ef2593b3cdf7d4ed2a70c7d12695.png",
489
+ "originalLockStatus": 0,
490
+ "visibility": 1
491
+ },
492
+ "71": {
493
+ "__class": "OnlinePortraitBorder",
494
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0071_children_s_toys/back.png/30d4a6838a17c5c13e2de27704fc6758.png",
495
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0071_children_s_toys/front.png/76502150178b030a28ecde3851909df0.png",
496
+ "originalLockStatus": 0,
497
+ "visibility": 1
498
+ },
499
+ "72": {
500
+ "__class": "OnlinePortraitBorder",
501
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0072_circus/back.png/207dbc530354f23fad8226dc1c85f177.png",
502
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0072_circus/front.png/8defb34be9b83abc9fc9e7c1426bfdad.png",
503
+ "originalLockStatus": 0,
504
+ "visibility": 1
505
+ },
506
+ "73": {
507
+ "__class": "OnlinePortraitBorder",
508
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0073_city/back.png/a9584b9622c5c8c66a62de6d26f18fec.png",
509
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0073_city/front.png/ff2859fa77426278a307a55751c22136.png",
510
+ "originalLockStatus": 0,
511
+ "visibility": 1
512
+ },
513
+ "74": {
514
+ "__class": "OnlinePortraitBorder",
515
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0074_constellations/back.png/76e30de78d867eb11195383ab37804f3.png",
516
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0074_constellations/front.png/c5dffc9876b3f63bfd67ecea4b9b411e.png",
517
+ "originalLockStatus": 0,
518
+ "visibility": 1
519
+ },
520
+ "75": {
521
+ "__class": "OnlinePortraitBorder",
522
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0075_corgis/back.png/64363bac44cafa3b7c3a4734e838f841.png",
523
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0075_corgis/front.png/be08e8dc245941cb64c38216a425f096.png",
524
+ "originalLockStatus": 0,
525
+ "visibility": 1
526
+ },
527
+ "76": {
528
+ "__class": "OnlinePortraitBorder",
529
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0076_desert/back.png/541e8e09db0ab3df888b9c2acff771db.png",
530
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0076_desert/front.png/f2f2acf01166402b27ed4d1d24788c36.png",
531
+ "originalLockStatus": 0,
532
+ "visibility": 1
533
+ },
534
+ "77": {
535
+ "__class": "OnlinePortraitBorder",
536
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0077_dolphins/back.png/36ff79a54b7f8ab922a1f9dff211030a.png",
537
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0077_dolphins/front.png/7086ecfd40c0c10a0a479311d78f7c99.png",
538
+ "originalLockStatus": 0,
539
+ "visibility": 1
540
+ },
541
+ "78": {
542
+ "__class": "OnlinePortraitBorder",
543
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0078_donut/back.png/495b35553a3d9dea2afe621272fd7123.png",
544
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0078_donut/front.png/19962afad268a194800cc14a84d14773.png",
545
+ "originalLockStatus": 0,
546
+ "visibility": 1
547
+ },
548
+ "79": {
549
+ "__class": "OnlinePortraitBorder",
550
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0079_fastfood/back.png/865af42eb1de46abbd4ff2f201b3d0f7.png",
551
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0079_fastfood/front.png/b24bc612fa088d372f8b038f17020cb5.png",
552
+ "originalLockStatus": 0,
553
+ "visibility": 1
554
+ },
555
+ "80": {
556
+ "__class": "OnlinePortraitBorder",
557
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0080_ghost/back.png/6bf1786855e2cb8c0344652ab367d5e7.png",
558
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0080_ghost/front.png/c4a16261dc4fc7bd1456aeded934fcb9.png",
559
+ "originalLockStatus": 0,
560
+ "visibility": 1
561
+ },
562
+ "81": {
563
+ "__class": "OnlinePortraitBorder",
564
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0081_lucky/back.png/4a474d1fc17846a6d7319a7022b2dcf9.png",
565
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0081_lucky/front.png/22b09bee3268de4a9e02c592325d651c.png",
566
+ "originalLockStatus": 0,
567
+ "visibility": 1
568
+ },
569
+ "82": {
570
+ "__class": "OnlinePortraitBorder",
571
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0082_monkey/back.png/d74a565cba199c01c625ac4db3d36f69.png",
572
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0082_monkey/front.png/0a4ab6225c321ab4310f91d135336e69.png",
573
+ "originalLockStatus": 0,
574
+ "visibility": 1
575
+ },
576
+ "83": {
577
+ "__class": "OnlinePortraitBorder",
578
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0083_fish/back.png/5bdae7a8d01edafd168c68cdeaa271ab.png",
579
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0083_fish/front.png/d8b5ec1cd4f666834f69c368e43903bc.png",
580
+ "originalLockStatus": 0,
581
+ "visibility": 1
582
+ },
583
+ "84": {
584
+ "__class": "OnlinePortraitBorder",
585
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0084_dinosaur/back.png/0bfb5c89110b955c6dc8a8e7b92621f4.png",
586
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0084_dinosaur/front.png/b73ef65687e867e0f632c0a1f904b0fa.png",
587
+ "originalLockStatus": 0,
588
+ "visibility": 1
589
+ },
590
+ "85": {
591
+ "__class": "OnlinePortraitBorder",
592
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0085_icecream/back.png/0276b524ed6f3a43fdd1e46f925adacd.png",
593
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0085_icecream/front.png/4588bf86cd24a76a98a83423444714b8.png",
594
+ "originalLockStatus": 0,
595
+ "visibility": 1
596
+ },
597
+ "86": {
598
+ "__class": "OnlinePortraitBorder",
599
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0086_india/back.png/6c4fd7d5627bfbd938be2d0fe5208407.png",
600
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0086_india/front.png/4fba88e65ac3671fea782a5d27b6f14a.png",
601
+ "originalLockStatus": 0,
602
+ "visibility": 1
603
+ },
604
+ "87": {
605
+ "__class": "OnlinePortraitBorder",
606
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0087_greekantiquity/back.png/d6155589595a8d6de70004b208672539.png",
607
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0087_greekantiquity/front.png/6f9a22ffeb3026f5bdb22bb4afad2647.png",
608
+ "originalLockStatus": 0,
609
+ "visibility": 1
610
+ },
611
+ "88": {
612
+ "__class": "OnlinePortraitBorder",
613
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0088_kawai/back.png/f81684307832386b8929ba4d5e2c3153.png",
614
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0088_kawai/front.png/bdb7676d183b6c6b5c17c8f0d71a7373.png",
615
+ "originalLockStatus": 0,
616
+ "visibility": 1
617
+ },
618
+ "89": {
619
+ "__class": "OnlinePortraitBorder",
620
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0089_ladybug/back.png/260485552f6964d860d6061787914543.png",
621
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0089_ladybug/front.png/dae884e2dae05df556876e82cad49103.png",
622
+ "originalLockStatus": 0,
623
+ "visibility": 1
624
+ },
625
+ "90": {
626
+ "__class": "OnlinePortraitBorder",
627
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0090_mice/back.png/2297197325c69f0a24b2011a887c38cf.png",
628
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0090_mice/front.png/f66b619e45b3d0fd382935ca2523eaa2.png",
629
+ "originalLockStatus": 0,
630
+ "visibility": 1
631
+ },
632
+ "91": {
633
+ "__class": "OnlinePortraitBorder",
634
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0091_paris/back.png/266aa26feec169bc73fa4d7b4c6f2483.png",
635
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0091_paris/front.png/971c02ca7af0b05bbaeef0138c402d6e.png",
636
+ "originalLockStatus": 0,
637
+ "visibility": 1
638
+ },
639
+ "92": {
640
+ "__class": "OnlinePortraitBorder",
641
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0092_italy/back.png/01565714f78c94976e836e3ee4772f2f.png",
642
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0092_italy/front.png/c4feb579c18b29d7c131fc76824a40e7.png",
643
+ "originalLockStatus": 0,
644
+ "visibility": 1
645
+ },
646
+ "93": {
647
+ "__class": "OnlinePortraitBorder",
648
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0093_penguins/back.png/e8d16341bd95bef1d3685860dd98f463.png",
649
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0093_penguins/front.png/2225d3d0ce614a44a632babb25d289ec.png",
650
+ "originalLockStatus": 0,
651
+ "visibility": 1
652
+ },
653
+ "94": {
654
+ "__class": "OnlinePortraitBorder",
655
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0094_pharaoh/back.png/00b9beeea6e5807bdd40a2c0f142f29d.png",
656
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0094_pharaoh/front.png/10702318df1c2ed44f7801b0331e096c.png",
657
+ "originalLockStatus": 0,
658
+ "visibility": 1
659
+ },
660
+ "95": {
661
+ "__class": "OnlinePortraitBorder",
662
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0095_pig/back.png/1105ec1e7210c8bec123f0599ccfad36.png",
663
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0095_pig/front.png/2a9b2e816a3e035470fa7a39b669a8e7.png",
664
+ "originalLockStatus": 0,
665
+ "visibility": 1
666
+ },
667
+ "96": {
668
+ "__class": "OnlinePortraitBorder",
669
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0096_pirate/back.png/386c4dc29a5819c5cf7710d5b0b5c13e.png",
670
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0096_pirate/front.png/ccf35a6843b3917b9fb6d7d2089f701c.png",
671
+ "originalLockStatus": 0,
672
+ "visibility": 1
673
+ },
674
+ "97": {
675
+ "__class": "OnlinePortraitBorder",
676
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0097_racingcars/back.png/eead84838db6472dd59702e5e20ec89a.png",
677
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0097_racingcars/front.png/6933de4b49186d4cd8715c471cce627d.png",
678
+ "originalLockStatus": 0,
679
+ "visibility": 1
680
+ },
681
+ "98": {
682
+ "__class": "OnlinePortraitBorder",
683
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0098_ramen/back.png/49d7b314fd686448583b3c2c03987e10.png",
684
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0098_ramen/front.png/c0b862928787f0468d3b0e5eaf3eb830.png",
685
+ "originalLockStatus": 0,
686
+ "visibility": 1
687
+ },
688
+ "99": {
689
+ "__class": "OnlinePortraitBorder",
690
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0099_shopping/back.png/0fd868813872c95723edfb4c6c4a0124.png",
691
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0099_shopping/front.png/dd277ec15aa51e76b74b973db5e17865.png",
692
+ "originalLockStatus": 0,
693
+ "visibility": 1
694
+ },
695
+ "100": {
696
+ "__class": "OnlinePortraitBorder",
697
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0100_technology/back.png/f044a026194acfaa17fe099fec7d07b3.png",
698
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0100_technology/front.png/b2daecadc586fd250beacea25ea8b6e6.png",
699
+ "originalLockStatus": 0,
700
+ "visibility": 1
701
+ },
702
+ "101": {
703
+ "__class": "OnlinePortraitBorder",
704
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0101_pizza/back.png/280c2e0934cccaf42ff49a6cda9d3c60.png",
705
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0101_pizza/front.png/25159068dd385e36ef36bbf3adacda31.png",
706
+ "originalLockStatus": 0,
707
+ "visibility": 1
708
+ },
709
+ "102": {
710
+ "__class": "OnlinePortraitBorder",
711
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0102_tropicalfruit/back.png/e07c1de6d7685acae2de98933ac69f3d.png",
712
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0102_tropicalfruit/front.png/d6257587193fa832393b773146289844.png",
713
+ "originalLockStatus": 0,
714
+ "visibility": 1
715
+ },
716
+ "103": {
717
+ "__class": "OnlinePortraitBorder",
718
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0103_valentinesday/back.png/6dec9cff2eab3bfa500cb328c9ffde70.png",
719
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0103_valentinesday/front.png/583e903cbfd752e8d03db0af46e0b26b.png",
720
+ "originalLockStatus": 0,
721
+ "visibility": 1
722
+ },
723
+ "104": {
724
+ "__class": "OnlinePortraitBorder",
725
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0104_bunting/back.png/f718d697ce40a6653fda92766f306ac6.png",
726
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0104_bunting/front.png/6895ba888e9dd5ae551c5e4e402c6198.png",
727
+ "originalLockStatus": 0,
728
+ "visibility": 1
729
+ },
730
+ "105": {
731
+ "__class": "OnlinePortraitBorder",
732
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0105_cactus/back.png/e71444260c92e56cdcd42603dd84e9a8.png",
733
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0105_cactus/front.png/f94c0db8acfba933c42c7fe307963e2e.png",
734
+ "originalLockStatus": 0,
735
+ "visibility": 1
736
+ },
737
+ "106": {
738
+ "__class": "OnlinePortraitBorder",
739
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0106_caligraphy/back.png/4d1cef58177f67cf7d22eaad9a9223a6.png",
740
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0106_caligraphy/front.png/47a0f42807555ac1844153537bb0910f.png",
741
+ "originalLockStatus": 0,
742
+ "visibility": 1
743
+ },
744
+ "107": {
745
+ "__class": "OnlinePortraitBorder",
746
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0107_clock/back.png/832bb9f7c531065b42d694939dbce8a4.png",
747
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0107_clock/front.png/f87d730c50dede627204c9df2a1c396d.png",
748
+ "originalLockStatus": 0,
749
+ "visibility": 1
750
+ },
751
+ "108": {
752
+ "__class": "OnlinePortraitBorder",
753
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0108_cloud/back.png/f2c8d864c9adb132244c69aeb8ff679d.png",
754
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0108_cloud/front.png/2229988170b86321dd9646a4ba9b679f.png",
755
+ "originalLockStatus": 0,
756
+ "visibility": 1
757
+ },
758
+ "109": {
759
+ "__class": "OnlinePortraitBorder",
760
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0109_cocktail/back.png/cfb69b11ae12537afae41aa9a8d96ccb.png",
761
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0109_cocktail/front.png/d1d4e373fe580b33dda026e97367c72d.png",
762
+ "originalLockStatus": 0,
763
+ "visibility": 1
764
+ },
765
+ "110": {
766
+ "__class": "OnlinePortraitBorder",
767
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0110_crocodile/back.png/c97536e000c6bc4adc2d31c0f2329df1.png",
768
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0110_crocodile/front.png/7abf20665726478494a3082570352e13.png",
769
+ "originalLockStatus": 0,
770
+ "visibility": 1
771
+ },
772
+ "111": {
773
+ "__class": "OnlinePortraitBorder",
774
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0111_crystalball/back.png/35a4d67ce5257fb1210efd15508cd06c.png",
775
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0111_crystalball/front.png/4e259f2235ba342609153d6c3b08ae44.png",
776
+ "originalLockStatus": 0,
777
+ "visibility": 1
778
+ },
779
+ "112": {
780
+ "__class": "OnlinePortraitBorder",
781
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0112_synthwave/back.png/4c0e94027095f9c340b3e71c0cb29784.png",
782
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0112_synthwave/front.png/a81d821611ba51143db6b46600650dc5.png",
783
+ "originalLockStatus": 0,
784
+ "visibility": 1
785
+ },
786
+ "113": {
787
+ "__class": "OnlinePortraitBorder",
788
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0113_dots/back.png/fedf4f35a385c230b76eda297402b043.png",
789
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0113_dots/front.png/7f1efffe0e504afa97e4c6bf6fedf348.png",
790
+ "originalLockStatus": 0,
791
+ "visibility": 1
792
+ },
793
+ "114": {
794
+ "__class": "OnlinePortraitBorder",
795
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0114_eastereggs/back.png/38200ecdfde1f750e6919cf6ff7398c8.png",
796
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0114_eastereggs/front.png/549625b48406122d8a4b0d0c12840d3a.png",
797
+ "originalLockStatus": 0,
798
+ "visibility": 1
799
+ },
800
+ "115": {
801
+ "__class": "OnlinePortraitBorder",
802
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0115_fairy/back.png/2adeb9c9c3aee97b9afcd2a9fddb88bb.png",
803
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0115_fairy/front.png/d563c59224d3c720a4d711ef1a174d26.png",
804
+ "originalLockStatus": 0,
805
+ "visibility": 1
806
+ },
807
+ "116": {
808
+ "__class": "OnlinePortraitBorder",
809
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0116_fan/back.png/bb4d576ae0a9f9ac4450ad681e67f2c1.png",
810
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0116_fan/front.png/57ccf56ed23a1c4df567c4f20b7aff08.png",
811
+ "originalLockStatus": 0,
812
+ "visibility": 1
813
+ },
814
+ "117": {
815
+ "__class": "OnlinePortraitBorder",
816
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0117_fireflies/back.png/c74e974f1bb6aaa79ba11df5c2d35c40.png",
817
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0117_fireflies/front.png/44ed47e168a2a44def5952e83ca82470.png",
818
+ "originalLockStatus": 0,
819
+ "visibility": 1
820
+ },
821
+ "118": {
822
+ "__class": "OnlinePortraitBorder",
823
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0118_fireworks/back.png/0bc4dbdc03855acca3cbd9954bd7a77d.png",
824
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0118_fireworks/front.png/da2bbece78239d08c9487fed1f04fdfd.png",
825
+ "originalLockStatus": 0,
826
+ "visibility": 1
827
+ },
828
+ "119": {
829
+ "__class": "OnlinePortraitBorder",
830
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0119_frame/back.png/82d56ecab83c267bf3bf8509bfca2933.png",
831
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0119_frame/front.png/b3aa3d9051a18dd87438a43aadebb1b3.png",
832
+ "originalLockStatus": 0,
833
+ "visibility": 1
834
+ },
835
+ "120": {
836
+ "__class": "OnlinePortraitBorder",
837
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0120_galaxy/back.png/fb8928118e1fb4b4d4bb0cf51f220a35.png",
838
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0120_galaxy/front.png/c960a555f1d7c25289906f567bffd8d8.png",
839
+ "originalLockStatus": 0,
840
+ "visibility": 1
841
+ },
842
+ "121": {
843
+ "__class": "OnlinePortraitBorder",
844
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0121_gingerbreadhouse/back.png/6c00d8a69f6a911990aacfaddd1d7f81.png",
845
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0121_gingerbreadhouse/front.png/ed20e9d1e202b24dd1df440f0676f27a.png",
846
+ "originalLockStatus": 0,
847
+ "visibility": 1
848
+ },
849
+ "122": {
850
+ "__class": "OnlinePortraitBorder",
851
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0122_hawaiianpattern/back.png/e7629cf2a5ddab3a803e8209407dfe50.png",
852
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0122_hawaiianpattern/front.png/48fd7e19a192bc9dc7ea5b8794732899.png",
853
+ "originalLockStatus": 0,
854
+ "visibility": 1
855
+ },
856
+ "123": {
857
+ "__class": "OnlinePortraitBorder",
858
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0123_hedgehog/back.png/3f651653eb66ff72e729ee5063d4b891.png",
859
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0123_hedgehog/front.png/8c01cb3882ba2f26960d400f6da950f0.png",
860
+ "originalLockStatus": 0,
861
+ "visibility": 1
862
+ },
863
+ "124": {
864
+ "__class": "OnlinePortraitBorder",
865
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0124_jellyfish/back.png/ca2a630fd75e005142ca8c7c8248db9f.png",
866
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0124_jellyfish/front.png/5e262e7ed390ca87fe4a57b3fff021ad.png",
867
+ "originalLockStatus": 0,
868
+ "visibility": 1
869
+ },
870
+ "125": {
871
+ "__class": "OnlinePortraitBorder",
872
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0125_kite/back.png/c96e2fb3511d1ec9687456483544b6ca.png",
873
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0125_kite/front.png/0c2bf8ec1d0dafcf0603a148c246d8f9.png",
874
+ "originalLockStatus": 0,
875
+ "visibility": 1
876
+ },
877
+ "126": {
878
+ "__class": "OnlinePortraitBorder",
879
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0126_laces/back.png/28a2da01110d1e20b039350c470aa936.png",
880
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0126_laces/front.png/40da9c4606ed167b3095c674ef78b096.png",
881
+ "originalLockStatus": 0,
882
+ "visibility": 1
883
+ },
884
+ "127": {
885
+ "__class": "OnlinePortraitBorder",
886
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0127_lightning/back.png/6978e319d560809027c36ceede4945f1.png",
887
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0127_lightning/front.png/40fe7b02d42d470e49fc0d82324ecd47.png",
888
+ "originalLockStatus": 0,
889
+ "visibility": 1
890
+ },
891
+ "128": {
892
+ "__class": "OnlinePortraitBorder",
893
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0128_mosaic/back.png/467bc05106c29adb454d77fc7ff32ff2.png",
894
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0128_mosaic/front.png/8f539815e4da4921eef5655acf76ca56.png",
895
+ "originalLockStatus": 0,
896
+ "visibility": 1
897
+ },
898
+ "129": {
899
+ "__class": "OnlinePortraitBorder",
900
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0129_mushroom/back.png/1475cd1c8874c2a2b452aa9cfa5adc6c.png",
901
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0129_mushroom/front.png/2350e0b504063cdd7c50b29581c3df66.png",
902
+ "originalLockStatus": 0,
903
+ "visibility": 1
904
+ },
905
+ "130": {
906
+ "__class": "OnlinePortraitBorder",
907
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0130_peacocktail/back.png/f70446e35cfffb8a139c3d2f41947e3e.png",
908
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0130_peacocktail/front.png/8aceaaee8476fe4cc61f103a99c39d8e.png",
909
+ "originalLockStatus": 0,
910
+ "visibility": 1
911
+ },
912
+ "131": {
913
+ "__class": "OnlinePortraitBorder",
914
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0131_pillow/back.png/8018cdb5db6351f5bc7bbaf4a7bbc73a.png",
915
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0131_pillow/front.png/d314a0c7ebb7680d9b7edf8241557313.png",
916
+ "originalLockStatus": 0,
917
+ "visibility": 1
918
+ },
919
+ "132": {
920
+ "__class": "OnlinePortraitBorder",
921
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0132_theatrecurtain/back.png/d7d20b2227459402fa3f64dd742dd9d9.png",
922
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0132_theatrecurtain/front.png/20ff684726ef5a9774cd660b86544598.png",
923
+ "originalLockStatus": 0,
924
+ "visibility": 1
925
+ },
926
+ "133": {
927
+ "__class": "OnlinePortraitBorder",
928
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0133_pixel/back.png/3c243bd2262ad4a33fd148337e74a6b8.png",
929
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0133_pixel/front.png/0197c6c2ca49e9e30fce1df238c2e400.png",
930
+ "originalLockStatus": 0,
931
+ "visibility": 1
932
+ },
933
+ "134": {
934
+ "__class": "OnlinePortraitBorder",
935
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0134_playingcardspattern/back.png/db97f7fe865d920bcc6e323288cb2759.png",
936
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0134_playingcardspattern/front.png/2ee14559dd458d972d873fed9b1b575a.png",
937
+ "originalLockStatus": 0,
938
+ "visibility": 1
939
+ },
940
+ "135": {
941
+ "__class": "OnlinePortraitBorder",
942
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0135_porcelain/back.png/4808c8ce5fe20aa1ebd866d71682d755.png",
943
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0135_porcelain/front.png/f2411580b9e0c6813463de3c36704d51.png",
944
+ "originalLockStatus": 0,
945
+ "visibility": 1
946
+ },
947
+ "136": {
948
+ "__class": "OnlinePortraitBorder",
949
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0136_porthole/back.png/943729978e53261bee217b214abf5fb9.png",
950
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0136_porthole/front.png/9aca8600741cf41d17926e06311d9004.png",
951
+ "originalLockStatus": 0,
952
+ "visibility": 1
953
+ },
954
+ "137": {
955
+ "__class": "OnlinePortraitBorder",
956
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0137_puppies/back.png/e6ceba1f2e691f6f46177ed50735fff3.png",
957
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0137_puppies/front.png/0ee988290bd2573650b4ca1c14d07dfb.png",
958
+ "originalLockStatus": 0,
959
+ "visibility": 1
960
+ },
961
+ "138": {
962
+ "__class": "OnlinePortraitBorder",
963
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0138_strawberry/back.png/d97b3bdacee2d1a0c207c9af15274c67.png",
964
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0138_strawberry/front.png/245e062287ee6352789a3dc1ca1c34ab.png",
965
+ "originalLockStatus": 0,
966
+ "visibility": 1
967
+ },
968
+ "139": {
969
+ "__class": "OnlinePortraitBorder",
970
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0139_stamp/back.png/1300f6e7c0cfc95c8eb6e1685e18851b.png",
971
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0139_stamp/front.png/08b371838002041616afb7aa1eb65774.png",
972
+ "originalLockStatus": 0,
973
+ "visibility": 1
974
+ },
975
+ "140": {
976
+ "__class": "OnlinePortraitBorder",
977
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0140_spotlight/back.png/bdc7254b1005f14e1828d085c75fa7ac.png",
978
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0140_spotlight/front.png/08edc3fd60eadb024e9e3eb312445971.png",
979
+ "originalLockStatus": 0,
980
+ "visibility": 1
981
+ },
982
+ "141": {
983
+ "__class": "OnlinePortraitBorder",
984
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0141_spiral/back.png/994a97cf40aaa384fbac64b15f3ef730.png",
985
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0141_spiral/front.png/4c2bd10e87a6624a7827c937cd412a5a.png",
986
+ "originalLockStatus": 0,
987
+ "visibility": 1
988
+ },
989
+ "142": {
990
+ "__class": "OnlinePortraitBorder",
991
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0142_spiderweb/back.png/f3476c7f6cf9cfc2f0eb4ce5df5c44a3.png",
992
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0142_spiderweb/front.png/cc8c10618a63058cc9a7c8324c95263d.png",
993
+ "originalLockStatus": 0,
994
+ "visibility": 1
995
+ },
996
+ "143": {
997
+ "__class": "OnlinePortraitBorder",
998
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0143_snowflake/back.png/2f2824103a76502ad4536b02acd5eba4.png",
999
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0143_snowflake/front.png/faf3de93d52f9a1f37410a145c519420.png",
1000
+ "originalLockStatus": 0,
1001
+ "visibility": 1
1002
+ },
1003
+ "144": {
1004
+ "__class": "OnlinePortraitBorder",
1005
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0144_snailshell/back.png/f1cb510da325f8f6af831eca63df4778.png",
1006
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0144_snailshell/front.png/46e1f00eaf90b8f5ea05a113995081a2.png",
1007
+ "originalLockStatus": 0,
1008
+ "visibility": 1
1009
+ },
1010
+ "145": {
1011
+ "__class": "OnlinePortraitBorder",
1012
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0145_scolls/back.png/8f846bc8f33981d8bcd822b60cd47b1f.png",
1013
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0145_scolls/front.png/09a07d78248c4089f7e3f9d6553329c7.png",
1014
+ "originalLockStatus": 0,
1015
+ "visibility": 1
1016
+ },
1017
+ "146": {
1018
+ "__class": "OnlinePortraitBorder",
1019
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0146_sandcastle/back.png/a074390658749c7bed7c63e66668b639.png",
1020
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0146_sandcastle/front.png/505a57dfc7af7319c4b32f620b9ac138.png",
1021
+ "originalLockStatus": 0,
1022
+ "visibility": 1
1023
+ },
1024
+ "147": {
1025
+ "__class": "OnlinePortraitBorder",
1026
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0147_wood/back.png/ddc02e0724d1534b3e7265b3d3c7e6a9.png",
1027
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0147_wood/front.png/ed40ebbbbd491e701e17371dac0d0ee5.png",
1028
+ "originalLockStatus": 0,
1029
+ "visibility": 1
1030
+ },
1031
+ "148": {
1032
+ "__class": "OnlinePortraitBorder",
1033
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0148_windrose/back.png/05dca142f478a68cf5d32a3c49ff16a6.png",
1034
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0148_windrose/front.png/73f13d7caa382242f566ec5bd05df759.png",
1035
+ "originalLockStatus": 0,
1036
+ "visibility": 1
1037
+ },
1038
+ "149": {
1039
+ "__class": "OnlinePortraitBorder",
1040
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0149_waterlilly/back.png/1fd34851b47e7d68a6d4143438ae9b90.png",
1041
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0149_waterlilly/front.png/1c68de8c1a5f38326a374f61dbac060c.png",
1042
+ "originalLockStatus": 0,
1043
+ "visibility": 1
1044
+ },
1045
+ "150": {
1046
+ "__class": "OnlinePortraitBorder",
1047
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0150_umbrella/back.png/91cdb1ba0a50c7ada600fabda66c2fd6.png",
1048
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0150_umbrella/front.png/d7c6cf791d8f54bab63f64841de1d549.png",
1049
+ "originalLockStatus": 0,
1050
+ "visibility": 1
1051
+ },
1052
+ "151": {
1053
+ "__class": "OnlinePortraitBorder",
1054
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0151_turtle/back.png/edfc8d6f20297f0276704469586fc7e6.png",
1055
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0151_turtle/front.png/75612626b9af8652e54d132efaf7d26f.png",
1056
+ "originalLockStatus": 0,
1057
+ "visibility": 1
1058
+ },
1059
+ "152": {
1060
+ "__class": "OnlinePortraitBorder",
1061
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0152_teddy/back.png/0701aa586d5f5edb5d1afcde6a59903b.png",
1062
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0152_teddy/front.png/21f50d9e5a0ac41376f88e3ab9249dfa.png",
1063
+ "originalLockStatus": 0,
1064
+ "visibility": 1
1065
+ },
1066
+ "153": {
1067
+ "__class": "OnlinePortraitBorder",
1068
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0153_tartan/back.png/0ae379272474a3d1d6de44290c9a86f4.png",
1069
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0153_tartan/front.png/f32fcce5eb2470865da76afb1be6986e.png",
1070
+ "originalLockStatus": 0,
1071
+ "visibility": 1
1072
+ },
1073
+ "154": {
1074
+ "__class": "OnlinePortraitBorder",
1075
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0154_target/back.png/994edc689062b63dd1953be45c7e3093.png",
1076
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0154_target/front.png/314cb6745c1b55e7ce1dfcbf66f1d508.png",
1077
+ "originalLockStatus": 0,
1078
+ "visibility": 1
1079
+ },
1080
+ "155": {
1081
+ "__class": "OnlinePortraitBorder",
1082
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0155_surfboard/back.png/084bdf7ee64ae5df13cdbb194dd00605.png",
1083
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0155_surfboard/front.png/ea8d63af4f107a1e5b381b64eb790bda.png",
1084
+ "originalLockStatus": 0,
1085
+ "visibility": 1
1086
+ },
1087
+ "156": {
1088
+ "__class": "OnlinePortraitBorder",
1089
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0156_sunset/back.png/3f01a6c1a30f8aa28c3575ad2086c97a.png",
1090
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0156_sunset/front.png/ae1448ff65bfeda7ab31f51a7b7336d4.png",
1091
+ "originalLockStatus": 0,
1092
+ "visibility": 1
1093
+ },
1094
+ "157": {
1095
+ "__class": "OnlinePortraitBorder",
1096
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0157_sun/back.png/8babaca7aa4fbc417877ed45fe3654e1.png",
1097
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0157_sun/front.png/6cdefb83e44892319cc63d647b885ed7.png",
1098
+ "originalLockStatus": 0,
1099
+ "visibility": 1
1100
+ },
1101
+ "158": {
1102
+ "__class": "OnlinePortraitBorder",
1103
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0158_stripes/back.png/5b3f3f6f0f73d8e5e7db34b0ff2dfa58.png",
1104
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0158_stripes/front.png/00597f3f7a0488d89fbc80bd18e63c22.png",
1105
+ "originalLockStatus": 0,
1106
+ "visibility": 1
1107
+ },
1108
+ "159": {
1109
+ "__class": "OnlinePortraitBorder",
1110
+ "backgroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0159_streetart/back.png/5f278534a9c77e9d39db0753db6ea289.png",
1111
+ "foregroundUrl": "https://jd-s3.akamaized.net/public/portrait-borders/0159_streetart/front.png/88ee8438eee17a8bd832e7952c0f8a3b.png",
1112
+ "originalLockStatus": 0,
1113
+ "visibility": 1
1114
+ }
1115
+ }
justdanceonline-main/local_settings/itemdb/skins.json ADDED
@@ -0,0 +1,1582 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "1": {
3
+ "__class": "OnlineCustomizableItem",
4
+ "jdVersion": 2017,
5
+ "mojoPrice": 0,
6
+ "status": 3,
7
+ "unlockType": 20,
8
+ "url": "https://jd-s3.akamaized.net/public/skin/1/skin.png/6d8c18967391710bd4fcb9d484bb553c.png",
9
+ "itemType": 1,
10
+ "visibility": 1
11
+ },
12
+ "2": {
13
+ "__class": "OnlineCustomizableItem",
14
+ "jdVersion": 2017,
15
+ "mojoPrice": 5000,
16
+ "status": 1,
17
+ "unlockType": 1,
18
+ "url": "https://jd-s3.akamaized.net/public/skin/2/skin.png/406c3607b7a9f688b381fadcf8da4e48.png",
19
+ "itemType": 1,
20
+ "visibility": 1
21
+ },
22
+ "3": {
23
+ "__class": "OnlineCustomizableItem",
24
+ "jdVersion": 2017,
25
+ "mojoPrice": 5000,
26
+ "status": 1,
27
+ "unlockType": 1,
28
+ "url": "https://jd-s3.akamaized.net/public/skin/3/skin.png/cc2504d1ca358b768eb8c8d0663c882f.png",
29
+ "itemType": 1,
30
+ "visibility": 1
31
+ },
32
+ "4": {
33
+ "__class": "OnlineCustomizableItem",
34
+ "jdVersion": 2017,
35
+ "mojoPrice": 0,
36
+ "status": 1,
37
+ "unlockType": 17,
38
+ "url": "https://jd-s3.akamaized.net/public/skin/4/skin.png/810dd7e20da6e3dcd3acfd40d5632681.png",
39
+ "itemType": 1,
40
+ "visibility": 1
41
+ },
42
+ "5": {
43
+ "__class": "OnlineCustomizableItem",
44
+ "jdVersion": 2017,
45
+ "mojoPrice": 0,
46
+ "status": 1,
47
+ "unlockType": 17,
48
+ "url": "https://jd-s3.akamaized.net/public/skin/5/skin.png/51158e3dc751ed86c3b46323f9b7c97b.png",
49
+ "itemType": 1,
50
+ "visibility": 1
51
+ },
52
+ "7": {
53
+ "__class": "OnlineCustomizableItem",
54
+ "jdVersion": 2017,
55
+ "mojoPrice": 1000,
56
+ "status": 1,
57
+ "unlockType": 1,
58
+ "url": "https://jd-s3.akamaized.net/public/skin/7/skin.png/02c98ad521b435ed22d1758c8be56249.png",
59
+ "itemType": 1,
60
+ "visibility": 1
61
+ },
62
+ "9": {
63
+ "__class": "OnlineCustomizableItem",
64
+ "jdVersion": 2017,
65
+ "mojoPrice": 0,
66
+ "status": 3,
67
+ "unlockType": 20,
68
+ "url": "https://jd-s3.akamaized.net/public/skin/9/skin.png/04136d2135d36dec1f93a332a612a555.png",
69
+ "itemType": 1,
70
+ "visibility": 1
71
+ },
72
+ "10": {
73
+ "__class": "OnlineCustomizableItem",
74
+ "jdVersion": 2017,
75
+ "mojoPrice": 1000,
76
+ "status": 1,
77
+ "unlockType": 1,
78
+ "url": "https://jd-s3.akamaized.net/public/skin/10/skin.png/88e54c9c33c9205126e263f021cd2822.png",
79
+ "itemType": 1,
80
+ "visibility": 1
81
+ },
82
+ "11": {
83
+ "__class": "OnlineCustomizableItem",
84
+ "jdVersion": 2017,
85
+ "mojoPrice": 1000,
86
+ "status": 1,
87
+ "unlockType": 1,
88
+ "url": "https://jd-s3.akamaized.net/public/skin/11/skin.png/0fd1302f27fe737dbf554994494b9bad.png",
89
+ "itemType": 1,
90
+ "visibility": 1
91
+ },
92
+ "12": {
93
+ "__class": "OnlineCustomizableItem",
94
+ "jdVersion": 2017,
95
+ "mojoPrice": 1000,
96
+ "status": 1,
97
+ "unlockType": 1,
98
+ "url": "https://jd-s3.akamaized.net/public/skin/12/skin.png/a6dd6e5b2f55f0af7f465d1a350c230d.png",
99
+ "itemType": 1,
100
+ "visibility": 1
101
+ },
102
+ "13": {
103
+ "__class": "OnlineCustomizableItem",
104
+ "jdVersion": 2017,
105
+ "mojoPrice": 1000,
106
+ "status": 1,
107
+ "unlockType": 1,
108
+ "url": "https://jd-s3.akamaized.net/public/skin/13/skin.png/0cff06e773bf0c95ce4e2c609259fae0.png",
109
+ "itemType": 1,
110
+ "visibility": 1
111
+ },
112
+ "14": {
113
+ "__class": "OnlineCustomizableItem",
114
+ "jdVersion": 2017,
115
+ "mojoPrice": 0,
116
+ "status": 3,
117
+ "unlockType": 20,
118
+ "url": "https://jd-s3.akamaized.net/public/skin/14/skin.png/c25f9ad7659212d7d3c5229b256c9084.png",
119
+ "itemType": 1,
120
+ "visibility": 1
121
+ },
122
+ "15": {
123
+ "__class": "OnlineCustomizableItem",
124
+ "jdVersion": 2017,
125
+ "mojoPrice": 0,
126
+ "status": 1,
127
+ "unlockType": 17,
128
+ "url": "https://jd-s3.akamaized.net/public/skin/15/skin.png/3701c0069c1d4aa1564de578fd97cf37.png",
129
+ "itemType": 1,
130
+ "visibility": 1
131
+ },
132
+ "16": {
133
+ "__class": "OnlineCustomizableItem",
134
+ "jdVersion": 2017,
135
+ "mojoPrice": 0,
136
+ "status": 1,
137
+ "unlockType": 17,
138
+ "url": "https://jd-s3.akamaized.net/public/skin/16/skin.png/6c75c5043723e565934509eee34e6a97.png",
139
+ "itemType": 1,
140
+ "visibility": 1
141
+ },
142
+ "18": {
143
+ "__class": "OnlineCustomizableItem",
144
+ "jdVersion": 2017,
145
+ "mojoPrice": 0,
146
+ "status": 3,
147
+ "unlockType": 20,
148
+ "url": "https://jd-s3.akamaized.net/public/skin/18/skin.png/1c81f78e1137145f5e56763d0d0b36fb.png",
149
+ "itemType": 1,
150
+ "visibility": 1
151
+ },
152
+ "19": {
153
+ "__class": "OnlineCustomizableItem",
154
+ "jdVersion": 2017,
155
+ "mojoPrice": 1000,
156
+ "status": 1,
157
+ "unlockType": 1,
158
+ "url": "https://jd-s3.akamaized.net/public/skin/19/skin.png/924de07e984daaf2b42ee5a8acb6c29f.png",
159
+ "itemType": 1,
160
+ "visibility": 1
161
+ },
162
+ "20": {
163
+ "__class": "OnlineCustomizableItem",
164
+ "jdVersion": 2017,
165
+ "mojoPrice": 1000,
166
+ "status": 1,
167
+ "unlockType": 1,
168
+ "url": "https://jd-s3.akamaized.net/public/skin/20/skin.png/a2c48aaa8454a5589bfb9c2b514f19b4.png",
169
+ "itemType": 1,
170
+ "visibility": 1
171
+ },
172
+ "21": {
173
+ "__class": "OnlineCustomizableItem",
174
+ "jdVersion": 2017,
175
+ "mojoPrice": 1000,
176
+ "status": 1,
177
+ "unlockType": 1,
178
+ "url": "https://jd-s3.akamaized.net/public/skin/21/skin.png/569a611b6bd67694839534a0e0c24131.png",
179
+ "itemType": 1,
180
+ "visibility": 1
181
+ },
182
+ "22": {
183
+ "__class": "OnlineCustomizableItem",
184
+ "jdVersion": 2017,
185
+ "mojoPrice": 1000,
186
+ "status": 1,
187
+ "unlockType": 1,
188
+ "url": "https://jd-s3.akamaized.net/public/skin/22/skin.png/3fe4ad0ea02b1ce426a9a8b182848312.png",
189
+ "itemType": 1,
190
+ "visibility": 1
191
+ },
192
+ "23": {
193
+ "__class": "OnlineCustomizableItem",
194
+ "jdVersion": 2017,
195
+ "mojoPrice": 0,
196
+ "status": 1,
197
+ "unlockType": 17,
198
+ "url": "https://jd-s3.akamaized.net/public/skin/23/skin.png/9e6f34ea0e4481da68b268813b887205.png",
199
+ "itemType": 1,
200
+ "visibility": 1
201
+ },
202
+ "25": {
203
+ "__class": "OnlineCustomizableItem",
204
+ "jdVersion": 2017,
205
+ "mojoPrice": 1000,
206
+ "status": 1,
207
+ "unlockType": 1,
208
+ "url": "https://jd-s3.akamaized.net/public/skin/25/skin.png/953ebcf94839a29ea7de9e5c451b4fcb.png",
209
+ "itemType": 1,
210
+ "visibility": 1
211
+ },
212
+ "26": {
213
+ "__class": "OnlineCustomizableItem",
214
+ "jdVersion": 2017,
215
+ "mojoPrice": 0,
216
+ "status": 1,
217
+ "unlockType": 17,
218
+ "url": "https://jd-s3.akamaized.net/public/skin/26/skin.png/fcf491f39b8bd77c1660a921da69cfdf.png",
219
+ "itemType": 1,
220
+ "visibility": 1
221
+ },
222
+ "27": {
223
+ "__class": "OnlineCustomizableItem",
224
+ "jdVersion": 2017,
225
+ "mojoPrice": 1000,
226
+ "status": 1,
227
+ "unlockType": 1,
228
+ "url": "https://jd-s3.akamaized.net/public/skin/27/skin.png/20d8fcfe1b0b6095e6ec268eaa504744.png",
229
+ "itemType": 1,
230
+ "visibility": 1
231
+ },
232
+ "29": {
233
+ "__class": "OnlineCustomizableItem",
234
+ "jdVersion": 2017,
235
+ "mojoPrice": 10000,
236
+ "status": 1,
237
+ "unlockType": 1,
238
+ "url": "https://jd-s3.akamaized.net/public/skin/29/skin.png/3dd87f23ae946ba070440040f23dc0a5.png",
239
+ "itemType": 1,
240
+ "visibility": 1
241
+ },
242
+ "30": {
243
+ "__class": "OnlineCustomizableItem",
244
+ "jdVersion": 2017,
245
+ "mojoPrice": 0,
246
+ "status": 1,
247
+ "unlockType": 17,
248
+ "url": "https://jd-s3.akamaized.net/public/skin/30/skin.png/f9b221102ad0b6ced908a0dea5574439.png",
249
+ "itemType": 1,
250
+ "visibility": 1
251
+ },
252
+ "31": {
253
+ "__class": "OnlineCustomizableItem",
254
+ "jdVersion": 2017,
255
+ "mojoPrice": 10000,
256
+ "status": 1,
257
+ "unlockType": 1,
258
+ "url": "https://jd-s3.akamaized.net/public/skin/31/skin.png/9034d013b9ab0e02d930017a364965bb.png",
259
+ "itemType": 1,
260
+ "visibility": 1
261
+ },
262
+ "32": {
263
+ "__class": "OnlineCustomizableItem",
264
+ "jdVersion": 2017,
265
+ "mojoPrice": 0,
266
+ "status": 1,
267
+ "unlockType": 17,
268
+ "url": "https://jd-s3.akamaized.net/public/skin/32/skin.png/d3dfe1b7b58600fb8a81d3d63a46d436.png",
269
+ "itemType": 1,
270
+ "visibility": 1
271
+ },
272
+ "33": {
273
+ "__class": "OnlineCustomizableItem",
274
+ "jdVersion": 2017,
275
+ "mojoPrice": 0,
276
+ "status": 1,
277
+ "unlockType": 17,
278
+ "url": "https://jd-s3.akamaized.net/public/skin/33/skin.png/d7eebd2d0c0c2913dd1a831ff702719f.png",
279
+ "itemType": 1,
280
+ "visibility": 1
281
+ },
282
+ "34": {
283
+ "__class": "OnlineCustomizableItem",
284
+ "jdVersion": 2017,
285
+ "mojoPrice": 0,
286
+ "status": 1,
287
+ "unlockType": 17,
288
+ "url": "https://jd-s3.akamaized.net/public/skin/34/skin.png/aab141c64df5d6d01baec2a9ab1b21e1.png",
289
+ "itemType": 1,
290
+ "visibility": 1
291
+ },
292
+ "35": {
293
+ "__class": "OnlineCustomizableItem",
294
+ "jdVersion": 2017,
295
+ "mojoPrice": 0,
296
+ "status": 1,
297
+ "unlockType": 17,
298
+ "url": "https://jd-s3.akamaized.net/public/skin/35/skin.png/4b8b938913349d4c50583cb92cb772ab.png",
299
+ "itemType": 1,
300
+ "visibility": 1
301
+ },
302
+ "36": {
303
+ "__class": "OnlineCustomizableItem",
304
+ "jdVersion": 2017,
305
+ "mojoPrice": 0,
306
+ "status": 1,
307
+ "unlockType": 17,
308
+ "url": "https://jd-s3.akamaized.net/public/skin/36/skin.png/65bcb56e8705b5a9121d70c2a9917be7.png",
309
+ "itemType": 1,
310
+ "visibility": 1
311
+ },
312
+ "37": {
313
+ "__class": "OnlineCustomizableItem",
314
+ "jdVersion": 2017,
315
+ "mojoPrice": 5000,
316
+ "status": 1,
317
+ "unlockType": 1,
318
+ "url": "https://jd-s3.akamaized.net/public/skin/37/skin.png/594ecd91da79396246898ddf593a2a7c.png",
319
+ "itemType": 1,
320
+ "visibility": 1
321
+ },
322
+ "38": {
323
+ "__class": "OnlineCustomizableItem",
324
+ "jdVersion": 2017,
325
+ "mojoPrice": 5000,
326
+ "status": 1,
327
+ "unlockType": 1,
328
+ "url": "https://jd-s3.akamaized.net/public/skin/38/skin.png/31f108c2777d5ec3f8845612c720d287.png",
329
+ "itemType": 1,
330
+ "visibility": 1
331
+ },
332
+ "39": {
333
+ "__class": "OnlineCustomizableItem",
334
+ "jdVersion": 2017,
335
+ "mojoPrice": 5000,
336
+ "status": 1,
337
+ "unlockType": 18,
338
+ "url": "https://jd-s3.akamaized.net/public/skin/39/skin.png/fa4fb52006dc42d6658504b6e9bb6199.png",
339
+ "itemType": 1,
340
+ "visibility": 1
341
+ },
342
+ "40": {
343
+ "__class": "OnlineCustomizableItem",
344
+ "jdVersion": 2017,
345
+ "mojoPrice": 0,
346
+ "status": 1,
347
+ "unlockType": 18,
348
+ "url": "https://jd-s3.akamaized.net/public/skin/40/skin.png/6f82da40aa4cf507a84229313e8f4d25.png",
349
+ "itemType": 1,
350
+ "visibility": 1
351
+ },
352
+ "41": {
353
+ "__class": "OnlineCustomizableItem",
354
+ "jdVersion": 2017,
355
+ "mojoPrice": 0,
356
+ "status": 1,
357
+ "unlockType": 17,
358
+ "url": "https://jd-s3.akamaized.net/public/skin/41/skin.png/da541f79d777edab38cdbad53dabc656.png",
359
+ "itemType": 1,
360
+ "visibility": 1
361
+ },
362
+ "42": {
363
+ "__class": "OnlineCustomizableItem",
364
+ "jdVersion": 2017,
365
+ "mojoPrice": 0,
366
+ "status": 1,
367
+ "unlockType": 18,
368
+ "url": "https://jd-s3.akamaized.net/public/skin/42/skin.png/06e6d3510ebb3d0d11c6a11ffcf59d26.png",
369
+ "itemType": 1,
370
+ "visibility": 1
371
+ },
372
+ "43": {
373
+ "__class": "OnlineCustomizableItem",
374
+ "jdVersion": 2017,
375
+ "mojoPrice": 5000,
376
+ "status": 1,
377
+ "unlockType": 1,
378
+ "url": "https://jd-s3.akamaized.net/public/skin/43/skin.png/e7dfac5dfaa7d44e29b88504c74c56bc.png",
379
+ "itemType": 1,
380
+ "visibility": 1
381
+ },
382
+ "44": {
383
+ "__class": "OnlineCustomizableItem",
384
+ "jdVersion": 2017,
385
+ "mojoPrice": 5000,
386
+ "status": 1,
387
+ "unlockType": 1,
388
+ "url": "https://jd-s3.akamaized.net/public/skin/44/skin.png/c036c0cf085020547a12c5d9747107ae.png",
389
+ "itemType": 1,
390
+ "visibility": 1
391
+ },
392
+ "45": {
393
+ "__class": "OnlineCustomizableItem",
394
+ "jdVersion": 2017,
395
+ "mojoPrice": 5000,
396
+ "status": 1,
397
+ "unlockType": 1,
398
+ "url": "https://jd-s3.akamaized.net/public/skin/45/skin.png/95761bcf446efea74a3f61bdbcda541c.png",
399
+ "itemType": 1,
400
+ "visibility": 1
401
+ },
402
+ "46": {
403
+ "__class": "OnlineCustomizableItem",
404
+ "jdVersion": 2017,
405
+ "mojoPrice": 5000,
406
+ "status": 1,
407
+ "unlockType": 1,
408
+ "url": "https://jd-s3.akamaized.net/public/skin/46/skin.png/4e3df94bfdea3ec35ae889128fccf6f7.png",
409
+ "itemType": 1,
410
+ "visibility": 1
411
+ },
412
+ "47": {
413
+ "__class": "OnlineCustomizableItem",
414
+ "jdVersion": 2017,
415
+ "mojoPrice": 0,
416
+ "status": 1,
417
+ "unlockType": 18,
418
+ "url": "https://jd-s3.akamaized.net/public/skin/47/skin.png/c7fa5b07c9fb69ebf65fabca2138b5e1.png",
419
+ "itemType": 1,
420
+ "visibility": 1
421
+ },
422
+ "48": {
423
+ "__class": "OnlineCustomizableItem",
424
+ "jdVersion": 9999,
425
+ "mojoPrice": 0,
426
+ "status": 1,
427
+ "unlockType": 12,
428
+ "url": "https://jd-s3.akamaized.net/public/skin/48/skin.png/9a5d2cd1fbabf812a23d63ffd79d89cb.png",
429
+ "itemType": 1,
430
+ "visibility": 1
431
+ },
432
+ "49": {
433
+ "__class": "OnlineCustomizableItem",
434
+ "jdVersion": 9999,
435
+ "mojoPrice": 0,
436
+ "status": 1,
437
+ "unlockType": 13,
438
+ "url": "https://jd-s3.akamaized.net/public/skin/49/skin.png/848ebd77989de9b8cca611c52866379a.png",
439
+ "itemType": 1,
440
+ "visibility": 1
441
+ },
442
+ "50": {
443
+ "__class": "OnlineCustomizableItem",
444
+ "jdVersion": 9999,
445
+ "mojoPrice": 0,
446
+ "status": 1,
447
+ "unlockType": 14,
448
+ "url": "https://jd-s3.akamaized.net/public/skin/50/skin.png/fed0a0a2988b9f2d873199cb94425c04.png",
449
+ "itemType": 1,
450
+ "visibility": 1
451
+ },
452
+ "51": {
453
+ "__class": "OnlineCustomizableItem",
454
+ "jdVersion": 2017,
455
+ "mojoPrice": 0,
456
+ "status": 1,
457
+ "unlockType": 18,
458
+ "url": "https://jd-s3.akamaized.net/public/skin/51/skin.png/825c1d327d5ae5b5ff0e4d3cb8b24815.png",
459
+ "itemType": 1,
460
+ "visibility": 1
461
+ },
462
+ "52": {
463
+ "__class": "OnlineCustomizableItem",
464
+ "jdVersion": 2017,
465
+ "mojoPrice": 0,
466
+ "status": 1,
467
+ "unlockType": 18,
468
+ "url": "https://jd-s3.akamaized.net/public/skin/52/skin.png/d28538861990711fbcfc28c5fecb3cb2.png",
469
+ "itemType": 1,
470
+ "visibility": 1
471
+ },
472
+ "53": {
473
+ "__class": "OnlineCustomizableItem",
474
+ "jdVersion": 2017,
475
+ "mojoPrice": 0,
476
+ "status": 1,
477
+ "unlockType": 17,
478
+ "url": "https://jd-s3.akamaized.net/public/skin/53/skin.png/2cb25c60a4b51d8600dada4846d5f235.png",
479
+ "itemType": 1,
480
+ "visibility": 1
481
+ },
482
+ "54": {
483
+ "__class": "OnlineCustomizableItem",
484
+ "jdVersion": 2017,
485
+ "mojoPrice": 0,
486
+ "status": 3,
487
+ "unlockType": 20,
488
+ "url": "https://jd-s3.akamaized.net/public/skin/54/skin.png/0e423b07deb3ccc384ba1d6ccba684ad.png",
489
+ "itemType": 1,
490
+ "visibility": 1
491
+ },
492
+ "55": {
493
+ "__class": "OnlineCustomizableItem",
494
+ "jdVersion": 2017,
495
+ "mojoPrice": 0,
496
+ "status": 1,
497
+ "unlockType": 17,
498
+ "url": "https://jd-s3.akamaized.net/public/skin/55/skin.png/54bf1873999b23354ba86eb8e7b7a0d1.png",
499
+ "itemType": 1,
500
+ "visibility": 1
501
+ },
502
+ "56": {
503
+ "__class": "OnlineCustomizableItem",
504
+ "jdVersion": 2017,
505
+ "mojoPrice": 0,
506
+ "status": 1,
507
+ "unlockType": 6,
508
+ "url": "https://jd-s3.akamaized.net/public/skin/56/skin.png/cefed447ed4d2d1cf4de382dc573b85b.png",
509
+ "itemType": 1,
510
+ "visibility": 1
511
+ },
512
+ "57": {
513
+ "__class": "OnlineCustomizableItem",
514
+ "jdVersion": 2017,
515
+ "mojoPrice": 0,
516
+ "status": 1,
517
+ "unlockType": 6,
518
+ "url": "https://jd-s3.akamaized.net/public/skin/57/skin.png/bfc97a1dfc622af95ed1e42c8870de27.png",
519
+ "itemType": 1,
520
+ "visibility": 1
521
+ },
522
+ "58": {
523
+ "__class": "OnlineCustomizableItem",
524
+ "jdVersion": 2017,
525
+ "mojoPrice": 0,
526
+ "status": 1,
527
+ "unlockType": 6,
528
+ "url": "https://jd-s3.akamaized.net/public/skin/58/skin.png/380f94556c4685017d7a4644b9e40b24.png",
529
+ "itemType": 1,
530
+ "visibility": 1
531
+ },
532
+ "59": {
533
+ "__class": "OnlineCustomizableItem",
534
+ "jdVersion": 2017,
535
+ "mojoPrice": 0,
536
+ "status": 1,
537
+ "unlockType": 6,
538
+ "url": "https://jd-s3.akamaized.net/public/skin/59/skin.png/6b0f62afbc29f1617c72e7fe8829a283.png",
539
+ "itemType": 1,
540
+ "visibility": 1
541
+ },
542
+ "60": {
543
+ "__class": "OnlineCustomizableItem",
544
+ "jdVersion": 2017,
545
+ "mojoPrice": 0,
546
+ "status": 1,
547
+ "unlockType": 6,
548
+ "url": "https://jd-s3.akamaized.net/public/skin/60/skin.png/51d6645b6c521c3250c65010c9af82d6.png",
549
+ "itemType": 1,
550
+ "visibility": 1
551
+ },
552
+ "61": {
553
+ "__class": "OnlineCustomizableItem",
554
+ "jdVersion": 2017,
555
+ "mojoPrice": 0,
556
+ "status": 1,
557
+ "unlockType": 6,
558
+ "url": "https://jd-s3.akamaized.net/public/skin/61/skin.png/c8767e68884fd8e4b69646efde204a11.png",
559
+ "itemType": 1,
560
+ "visibility": 1
561
+ },
562
+ "62": {
563
+ "__class": "OnlineCustomizableItem",
564
+ "jdVersion": 2017,
565
+ "mojoPrice": 0,
566
+ "status": 1,
567
+ "unlockType": 16,
568
+ "url": "https://jd-s3.akamaized.net/public/skin/62/skin.png/8c7217b640d0d8ba8bf46a3b9dc0fb11.png",
569
+ "itemType": 1,
570
+ "visibility": 1
571
+ },
572
+ "63": {
573
+ "__class": "OnlineCustomizableItem",
574
+ "jdVersion": 2017,
575
+ "mojoPrice": 0,
576
+ "status": 1,
577
+ "unlockType": 16,
578
+ "url": "https://jd-s3.akamaized.net/public/skin/63/skin.png/ff34701eebedc171bccdfb42eeb98659.png",
579
+ "itemType": 1,
580
+ "visibility": 1
581
+ },
582
+ "65": {
583
+ "__class": "OnlineCustomizableItem",
584
+ "jdVersion": 2017,
585
+ "mojoPrice": 0,
586
+ "status": 1,
587
+ "unlockType": 16,
588
+ "url": "https://jd-s3.akamaized.net/public/skin/65/skin.png/9b271212d622656053335d367f0eaf0c.png",
589
+ "itemType": 1,
590
+ "visibility": 1
591
+ },
592
+ "67": {
593
+ "__class": "OnlineCustomizableItem",
594
+ "jdVersion": 2017,
595
+ "mojoPrice": 0,
596
+ "status": 1,
597
+ "unlockType": 16,
598
+ "url": "https://jd-s3.akamaized.net/public/skin/67/skin.png/b76079dbdb01427c343e4d95d36cd6f9.png",
599
+ "itemType": 1,
600
+ "visibility": 1
601
+ },
602
+ "68": {
603
+ "__class": "OnlineCustomizableItem",
604
+ "jdVersion": 2017,
605
+ "mojoPrice": 0,
606
+ "status": 1,
607
+ "unlockType": 16,
608
+ "url": "https://jd-s3.akamaized.net/public/skin/68/skin.png/a3975d524dc2432c344ff21ff59209e2.png",
609
+ "itemType": 1,
610
+ "visibility": 1
611
+ },
612
+ "69": {
613
+ "__class": "OnlineCustomizableItem",
614
+ "jdVersion": 2017,
615
+ "mojoPrice": 20000,
616
+ "status": 1,
617
+ "unlockType": 1,
618
+ "url": "https://jd-s3.akamaized.net/public/skin/69/skin.png/e02effb67ecf18e8c42273ca1b4c7f1e.png",
619
+ "itemType": 1,
620
+ "visibility": 1
621
+ },
622
+ "70": {
623
+ "__class": "OnlineCustomizableItem",
624
+ "jdVersion": 2017,
625
+ "mojoPrice": 0,
626
+ "status": 3,
627
+ "unlockType": 20,
628
+ "url": "https://jd-s3.akamaized.net/public/skin/70/skin.png/f317cebcbdbb558672026e824e1de886.png",
629
+ "itemType": 1,
630
+ "visibility": 1
631
+ },
632
+ "71": {
633
+ "__class": "OnlineCustomizableItem",
634
+ "jdVersion": 2017,
635
+ "mojoPrice": 0,
636
+ "status": 3,
637
+ "unlockType": 20,
638
+ "url": "https://jd-s3.akamaized.net/public/skin/71/skin.png/f670d6a154641e6c1ecc35b1901073a8.png",
639
+ "itemType": 1,
640
+ "visibility": 1
641
+ },
642
+ "72": {
643
+ "__class": "OnlineCustomizableItem",
644
+ "jdVersion": 2017,
645
+ "mojoPrice": 10000,
646
+ "status": 1,
647
+ "unlockType": 1,
648
+ "url": "https://jd-s3.akamaized.net/public/skin/72/skin.png/887d258447428e2ae1bf2f2d33be3c44.png",
649
+ "itemType": 1,
650
+ "visibility": 1
651
+ },
652
+ "75": {
653
+ "__class": "OnlineCustomizableItem",
654
+ "jdVersion": 2017,
655
+ "mojoPrice": 0,
656
+ "status": 3,
657
+ "unlockType": 20,
658
+ "url": "https://jd-s3.akamaized.net/public/skin/75/skin.png/c2f7ff3fbb575d890107709d1e794100.png",
659
+ "itemType": 1,
660
+ "visibility": 1
661
+ },
662
+ "76": {
663
+ "__class": "OnlineCustomizableItem",
664
+ "jdVersion": 2017,
665
+ "mojoPrice": 0,
666
+ "status": 1,
667
+ "unlockType": 17,
668
+ "url": "https://jd-s3.akamaized.net/public/skin/76/skin.png/c856135b237a31cb89b0ac815b4cb32a.png",
669
+ "itemType": 1,
670
+ "visibility": 1
671
+ },
672
+ "77": {
673
+ "__class": "OnlineCustomizableItem",
674
+ "jdVersion": 2017,
675
+ "mojoPrice": 0,
676
+ "status": 1,
677
+ "unlockType": 17,
678
+ "url": "https://jd-s3.akamaized.net/public/skin/77/skin.png/8a4b2e3956b041e5fa93762726d84a7b.png",
679
+ "itemType": 1,
680
+ "visibility": 1
681
+ },
682
+ "78": {
683
+ "__class": "OnlineCustomizableItem",
684
+ "jdVersion": 2017,
685
+ "mojoPrice": 0,
686
+ "status": 1,
687
+ "unlockType": 10,
688
+ "url": "https://jd-s3.akamaized.net/public/skin/78/skin.png/a61d50164767d8577ce507b1aa33394d.png",
689
+ "itemType": 1,
690
+ "visibility": 1
691
+ },
692
+ "79": {
693
+ "__class": "OnlineCustomizableItem",
694
+ "jdVersion": 2017,
695
+ "mojoPrice": 0,
696
+ "status": 1,
697
+ "unlockType": 10,
698
+ "url": "https://jd-s3.akamaized.net/public/skin/79/skin.png/d2d27e386cb0d5103367b71bbe59c6c0.png",
699
+ "itemType": 1,
700
+ "visibility": 1
701
+ },
702
+ "80": {
703
+ "__class": "OnlineCustomizableItem",
704
+ "jdVersion": 2017,
705
+ "mojoPrice": 0,
706
+ "status": 1,
707
+ "unlockType": 10,
708
+ "url": "https://jd-s3.akamaized.net/public/skin/80/skin.png/2c033f8d6c49129f97740edb072aef74.png",
709
+ "itemType": 1,
710
+ "visibility": 1
711
+ },
712
+ "81": {
713
+ "__class": "OnlineCustomizableItem",
714
+ "jdVersion": 2017,
715
+ "mojoPrice": 0,
716
+ "status": 1,
717
+ "unlockType": 10,
718
+ "url": "https://jd-s3.akamaized.net/public/skin/81/skin.png/d08ad8d10a4a8011a11e9c4f748875ef.png",
719
+ "itemType": 1,
720
+ "visibility": 1
721
+ },
722
+ "82": {
723
+ "__class": "OnlineCustomizableItem",
724
+ "jdVersion": 2017,
725
+ "mojoPrice": 0,
726
+ "status": 1,
727
+ "unlockType": 10,
728
+ "url": "https://jd-s3.akamaized.net/public/skin/82/skin.png/b046ff1e87712a43918b1e5b06d6716a.png",
729
+ "itemType": 1,
730
+ "visibility": 1
731
+ },
732
+ "83": {
733
+ "__class": "OnlineCustomizableItem",
734
+ "jdVersion": 2017,
735
+ "mojoPrice": 0,
736
+ "status": 1,
737
+ "unlockType": 10,
738
+ "url": "https://jd-s3.akamaized.net/public/skin/83/skin.png/d364abd7656fe6b7ce5ea079af05154f.png",
739
+ "itemType": 1,
740
+ "visibility": 1
741
+ },
742
+ "84": {
743
+ "__class": "OnlineCustomizableItem",
744
+ "jdVersion": 2017,
745
+ "mojoPrice": 0,
746
+ "status": 1,
747
+ "unlockType": 10,
748
+ "url": "https://jd-s3.akamaized.net/public/skin/84/skin.png/2279c08edbfec71e80789be66435f791.png",
749
+ "itemType": 1,
750
+ "visibility": 1
751
+ },
752
+ "85": {
753
+ "__class": "OnlineCustomizableItem",
754
+ "jdVersion": 2017,
755
+ "mojoPrice": 0,
756
+ "status": 1,
757
+ "unlockType": 10,
758
+ "url": "https://jd-s3.akamaized.net/public/skin/85/skin.png/8faf32a40f56b27fa3be19b9eb05f464.png",
759
+ "itemType": 1,
760
+ "visibility": 1
761
+ },
762
+ "86": {
763
+ "__class": "OnlineCustomizableItem",
764
+ "jdVersion": 2017,
765
+ "mojoPrice": 0,
766
+ "status": 1,
767
+ "unlockType": 10,
768
+ "url": "https://jd-s3.akamaized.net/public/skin/86/skin.png/ea47451765d4befb3594c7c0dde51123.png",
769
+ "itemType": 1,
770
+ "visibility": 1
771
+ },
772
+ "87": {
773
+ "__class": "OnlineCustomizableItem",
774
+ "jdVersion": 2017,
775
+ "mojoPrice": 0,
776
+ "status": 1,
777
+ "unlockType": 15,
778
+ "url": "https://jd-s3.akamaized.net/public/skin/87/skin.png/7db0f2e0643edc101b828772821cabfc.png",
779
+ "itemType": 1,
780
+ "visibility": 1
781
+ },
782
+ "88": {
783
+ "__class": "OnlineCustomizableItem",
784
+ "jdVersion": 2017,
785
+ "mojoPrice": 0,
786
+ "status": 1,
787
+ "unlockType": 15,
788
+ "url": "https://jd-s3.akamaized.net/public/skin/88/skin.png/ca6a46f7fe6bd115e728e85803c136e2.png",
789
+ "itemType": 1,
790
+ "visibility": 1
791
+ },
792
+ "89": {
793
+ "__class": "OnlineCustomizableItem",
794
+ "jdVersion": 2017,
795
+ "mojoPrice": 0,
796
+ "status": 1,
797
+ "unlockType": 15,
798
+ "url": "https://jd-s3.akamaized.net/public/skin/89/skin.png/8395c137c9df7f09ced2c819b3e2f125.png",
799
+ "itemType": 1,
800
+ "visibility": 1
801
+ },
802
+ "90": {
803
+ "__class": "OnlineCustomizableItem",
804
+ "jdVersion": 2017,
805
+ "mojoPrice": 0,
806
+ "status": 1,
807
+ "unlockType": 15,
808
+ "url": "https://jd-s3.akamaized.net/public/skin/90/skin.png/0a198f5a61792ce4345279de3e5e61d2.png",
809
+ "itemType": 1,
810
+ "visibility": 1
811
+ },
812
+ "91": {
813
+ "__class": "OnlineCustomizableItem",
814
+ "jdVersion": 2018,
815
+ "mojoPrice": 0,
816
+ "status": 1,
817
+ "unlockType": 18,
818
+ "url": "https://jd-s3.akamaized.net/public/skin/91/skin.png/306da19ba36b8f95c5c530fa098a5103.png",
819
+ "itemType": 1,
820
+ "visibility": 1
821
+ },
822
+ "92": {
823
+ "__class": "OnlineCustomizableItem",
824
+ "jdVersion": 2018,
825
+ "mojoPrice": 0,
826
+ "status": 1,
827
+ "unlockType": 18,
828
+ "url": "https://jd-s3.akamaized.net/public/skin/92/skin.png/32d6faba87d56e936da6a43218a9d6cb.png",
829
+ "itemType": 1,
830
+ "visibility": 1
831
+ },
832
+ "93": {
833
+ "__class": "OnlineCustomizableItem",
834
+ "jdVersion": 2018,
835
+ "mojoPrice": 0,
836
+ "status": 1,
837
+ "unlockType": 18,
838
+ "url": "https://jd-s3.akamaized.net/public/skin/93/skin.png/04af81af089c5664eaebe898124bdd56.png",
839
+ "itemType": 1,
840
+ "visibility": 1
841
+ },
842
+ "94": {
843
+ "__class": "OnlineCustomizableItem",
844
+ "jdVersion": 2018,
845
+ "mojoPrice": 0,
846
+ "status": 1,
847
+ "unlockType": 18,
848
+ "url": "https://jd-s3.akamaized.net/public/skin/94/skin.png/ded5170281e7e90408a6089ac2b8eb9c.png",
849
+ "itemType": 1,
850
+ "visibility": 1
851
+ },
852
+ "95": {
853
+ "__class": "OnlineCustomizableItem",
854
+ "jdVersion": 2018,
855
+ "mojoPrice": 0,
856
+ "status": 1,
857
+ "unlockType": 18,
858
+ "url": "https://jd-s3.akamaized.net/public/skin/95/skin.png/28b5ae2da346823c94d8373922af937c.png",
859
+ "itemType": 1,
860
+ "visibility": 1
861
+ },
862
+ "96": {
863
+ "__class": "OnlineCustomizableItem",
864
+ "jdVersion": 2018,
865
+ "mojoPrice": 0,
866
+ "status": 1,
867
+ "unlockType": 18,
868
+ "url": "https://jd-s3.akamaized.net/public/skin/96/skin.png/29a98d12f6bb56d933d1938a7c0d9e98.png",
869
+ "itemType": 1,
870
+ "visibility": 1
871
+ },
872
+ "97": {
873
+ "__class": "OnlineCustomizableItem",
874
+ "jdVersion": 2018,
875
+ "mojoPrice": 0,
876
+ "status": 1,
877
+ "unlockType": 18,
878
+ "url": "https://jd-s3.akamaized.net/public/skin/97/skin.png/751e0aed5532e73dc0816ab558c32b00.png",
879
+ "itemType": 1,
880
+ "visibility": 1
881
+ },
882
+ "98": {
883
+ "__class": "OnlineCustomizableItem",
884
+ "jdVersion": 2018,
885
+ "mojoPrice": 0,
886
+ "status": 1,
887
+ "unlockType": 18,
888
+ "url": "https://jd-s3.akamaized.net/public/skin/98/skin.png/1b882713170cd1527a38d02f5e9b80db.png",
889
+ "itemType": 1,
890
+ "visibility": 1
891
+ },
892
+ "99": {
893
+ "__class": "OnlineCustomizableItem",
894
+ "jdVersion": 2018,
895
+ "mojoPrice": 0,
896
+ "status": 1,
897
+ "unlockType": 18,
898
+ "url": "https://jd-s3.akamaized.net/public/skin/99/skin.png/6efe8df47e4d420cfe1ac4d89a554cb6.png",
899
+ "itemType": 1,
900
+ "visibility": 1
901
+ },
902
+ "100": {
903
+ "__class": "OnlineCustomizableItem",
904
+ "jdVersion": 2018,
905
+ "mojoPrice": 0,
906
+ "status": 1,
907
+ "unlockType": 18,
908
+ "url": "https://jd-s3.akamaized.net/public/skin/100/skin.png/c2498c083e42229c1d7e744d8df7eb78.png",
909
+ "itemType": 1,
910
+ "visibility": 1
911
+ },
912
+ "101": {
913
+ "__class": "OnlineCustomizableItem",
914
+ "jdVersion": 2018,
915
+ "mojoPrice": 0,
916
+ "status": 1,
917
+ "unlockType": 18,
918
+ "url": "https://jd-s3.akamaized.net/public/skin/101/skin.png/8863fde6892a71ec7dbe7f0565ac3b96.png",
919
+ "itemType": 1,
920
+ "visibility": 1
921
+ },
922
+ "102": {
923
+ "__class": "OnlineCustomizableItem",
924
+ "jdVersion": 2018,
925
+ "mojoPrice": 0,
926
+ "status": 1,
927
+ "unlockType": 18,
928
+ "url": "https://jd-s3.akamaized.net/public/skin/102/skin.png/132e5fe87a1ded8307481b7147877bc6.png",
929
+ "itemType": 1,
930
+ "visibility": 1
931
+ },
932
+ "103": {
933
+ "__class": "OnlineCustomizableItem",
934
+ "jdVersion": 2018,
935
+ "mojoPrice": 0,
936
+ "status": 1,
937
+ "unlockType": 18,
938
+ "url": "https://jd-s3.akamaized.net/public/skin/103/skin.png/5d9b88df0629c1a5ffda519945992c5d.png",
939
+ "itemType": 1,
940
+ "visibility": 1
941
+ },
942
+ "104": {
943
+ "__class": "OnlineCustomizableItem",
944
+ "jdVersion": 2018,
945
+ "mojoPrice": 0,
946
+ "status": 1,
947
+ "unlockType": 18,
948
+ "url": "https://jd-s3.akamaized.net/public/skin/104/skin.png/4231197249416ee6effebffa40ab92a8.png",
949
+ "itemType": 1,
950
+ "visibility": 1
951
+ },
952
+ "105": {
953
+ "__class": "OnlineCustomizableItem",
954
+ "jdVersion": 2018,
955
+ "mojoPrice": 0,
956
+ "status": 1,
957
+ "unlockType": 18,
958
+ "url": "https://jd-s3.akamaized.net/public/skin/105/skin.png/6a0068e2ebfabce485dea7b0bf644b18.png",
959
+ "itemType": 1,
960
+ "visibility": 1
961
+ },
962
+ "106": {
963
+ "__class": "OnlineCustomizableItem",
964
+ "jdVersion": 2018,
965
+ "mojoPrice": 0,
966
+ "status": 1,
967
+ "unlockType": 18,
968
+ "url": "https://jd-s3.akamaized.net/public/skin/106/skin.png/825e8e06f6fca574c22c043ee5e45e1f.png",
969
+ "itemType": 1,
970
+ "visibility": 1
971
+ },
972
+ "107": {
973
+ "__class": "OnlineCustomizableItem",
974
+ "jdVersion": 2018,
975
+ "mojoPrice": 0,
976
+ "status": 1,
977
+ "unlockType": 18,
978
+ "url": "https://jd-s3.akamaized.net/public/skin/107/skin.png/5e2b3ef1496f7bb3a68ee79457b234d2.png",
979
+ "itemType": 1,
980
+ "visibility": 1
981
+ },
982
+ "108": {
983
+ "__class": "OnlineCustomizableItem",
984
+ "jdVersion": 2018,
985
+ "mojoPrice": 0,
986
+ "status": 1,
987
+ "unlockType": 18,
988
+ "url": "https://jd-s3.akamaized.net/public/skin/108/skin.png/c26c3a534d86cf4c9a9c544db5ff9c52.png",
989
+ "itemType": 1,
990
+ "visibility": 1
991
+ },
992
+ "109": {
993
+ "__class": "OnlineCustomizableItem",
994
+ "jdVersion": 2018,
995
+ "mojoPrice": 0,
996
+ "status": 1,
997
+ "unlockType": 18,
998
+ "url": "https://jd-s3.akamaized.net/public/skin/109/skin.png/36b2aa662ff59c875b1fbf1ff2412186.png",
999
+ "itemType": 1,
1000
+ "visibility": 1
1001
+ },
1002
+ "110": {
1003
+ "__class": "OnlineCustomizableItem",
1004
+ "jdVersion": 2018,
1005
+ "mojoPrice": 0,
1006
+ "status": 1,
1007
+ "unlockType": 18,
1008
+ "url": "https://jd-s3.akamaized.net/public/skin/110/skin.png/837475484f963443fc5a9d9e357551c9.png",
1009
+ "itemType": 1,
1010
+ "visibility": 1
1011
+ },
1012
+ "111": {
1013
+ "__class": "OnlineCustomizableItem",
1014
+ "jdVersion": 2018,
1015
+ "mojoPrice": 0,
1016
+ "status": 1,
1017
+ "unlockType": 18,
1018
+ "url": "https://jd-s3.akamaized.net/public/skin/111/skin.png/c39c08ff0f27a11f80f9fb9d92c47884.png",
1019
+ "itemType": 1,
1020
+ "visibility": 1
1021
+ },
1022
+ "112": {
1023
+ "__class": "OnlineCustomizableItem",
1024
+ "jdVersion": 2018,
1025
+ "mojoPrice": 0,
1026
+ "status": 1,
1027
+ "unlockType": 18,
1028
+ "url": "https://jd-s3.akamaized.net/public/skin/112/skin.png/e638afcf2da1205d69ed8598f35aafed.png",
1029
+ "itemType": 1,
1030
+ "visibility": 1
1031
+ },
1032
+ "113": {
1033
+ "__class": "OnlineCustomizableItem",
1034
+ "jdVersion": 2018,
1035
+ "mojoPrice": 0,
1036
+ "status": 1,
1037
+ "unlockType": 18,
1038
+ "url": "https://jd-s3.akamaized.net/public/skin/113/skin.png/d3507f0e557a71bd009408617e2ec7e0.png",
1039
+ "itemType": 1,
1040
+ "visibility": 1
1041
+ },
1042
+ "114": {
1043
+ "__class": "OnlineCustomizableItem",
1044
+ "jdVersion": 2018,
1045
+ "mojoPrice": 0,
1046
+ "status": 1,
1047
+ "unlockType": 18,
1048
+ "url": "https://jd-s3.akamaized.net/public/skin/114/skin.png/e581a5a759364af433a3b4d20d31a80a.png",
1049
+ "itemType": 1,
1050
+ "visibility": 1
1051
+ },
1052
+ "115": {
1053
+ "__class": "OnlineCustomizableItem",
1054
+ "jdVersion": 2018,
1055
+ "mojoPrice": 0,
1056
+ "status": 1,
1057
+ "unlockType": 18,
1058
+ "url": "https://jd-s3.akamaized.net/public/skin/115/skin.png/7a638fcd3588c585b7f8dc5151dcb9b4.png",
1059
+ "itemType": 1,
1060
+ "visibility": 1
1061
+ },
1062
+ "116": {
1063
+ "__class": "OnlineCustomizableItem",
1064
+ "jdVersion": 2018,
1065
+ "mojoPrice": 0,
1066
+ "status": 1,
1067
+ "unlockType": 18,
1068
+ "url": "https://jd-s3.akamaized.net/public/skin/116/skin.png/e538e618fa05d58643fad7ed2fde46a4.png",
1069
+ "itemType": 1,
1070
+ "visibility": 1
1071
+ },
1072
+ "117": {
1073
+ "__class": "OnlineCustomizableItem",
1074
+ "jdVersion": 2018,
1075
+ "mojoPrice": 0,
1076
+ "status": 1,
1077
+ "unlockType": 18,
1078
+ "url": "https://jd-s3.akamaized.net/public/skin/117/skin.png/65335185cbe7dd4581f83810e0ab59cd.png",
1079
+ "itemType": 1,
1080
+ "visibility": 1
1081
+ },
1082
+ "118": {
1083
+ "__class": "OnlineCustomizableItem",
1084
+ "jdVersion": 2018,
1085
+ "mojoPrice": 0,
1086
+ "status": 3,
1087
+ "unlockType": 20,
1088
+ "url": "https://jd-s3.akamaized.net/public/skin/118/skin.png/789da1720a72ba30e563d81022af48b0.png",
1089
+ "itemType": 1,
1090
+ "visibility": 1
1091
+ },
1092
+ "119": {
1093
+ "__class": "OnlineCustomizableItem",
1094
+ "jdVersion": 2018,
1095
+ "mojoPrice": 0,
1096
+ "status": 1,
1097
+ "unlockType": 16,
1098
+ "url": "https://jd-s3.akamaized.net/public/skin/119/skin.png/4e3103e91c53fb5a4727891b9b8f8f10.png",
1099
+ "itemType": 1,
1100
+ "visibility": 1
1101
+ },
1102
+ "120": {
1103
+ "__class": "OnlineCustomizableItem",
1104
+ "jdVersion": 2018,
1105
+ "mojoPrice": 0,
1106
+ "status": 1,
1107
+ "unlockType": 18,
1108
+ "url": "https://jd-s3.akamaized.net/public/skin/120/skin.png/33dd7d1feb7cb9bd5bb48549a6cc7527.png",
1109
+ "itemType": 1,
1110
+ "visibility": 1
1111
+ },
1112
+ "121": {
1113
+ "__class": "OnlineCustomizableItem",
1114
+ "jdVersion": 2018,
1115
+ "mojoPrice": 0,
1116
+ "status": 1,
1117
+ "unlockType": 18,
1118
+ "url": "https://jd-s3.akamaized.net/public/skin/121/skin.png/94f5d668d885d0913b6b3c892bb079f8.png",
1119
+ "itemType": 1,
1120
+ "visibility": 1
1121
+ },
1122
+ "122": {
1123
+ "__class": "OnlineCustomizableItem",
1124
+ "jdVersion": 2018,
1125
+ "mojoPrice": 0,
1126
+ "status": 1,
1127
+ "unlockType": 18,
1128
+ "url": "https://jd-s3.akamaized.net/public/skin/122/skin.png/04fcb80fb7b064137a69cb7c3a1ce5b3.png",
1129
+ "itemType": 1,
1130
+ "visibility": 1
1131
+ },
1132
+ "123": {
1133
+ "__class": "OnlineCustomizableItem",
1134
+ "jdVersion": 2018,
1135
+ "mojoPrice": 0,
1136
+ "status": 1,
1137
+ "unlockType": 18,
1138
+ "url": "https://jd-s3.akamaized.net/public/skin/123/skin.png/3f4d26bf43b75d942eb590fd3cc74a77.png",
1139
+ "itemType": 1,
1140
+ "visibility": 1
1141
+ },
1142
+ "124": {
1143
+ "__class": "OnlineCustomizableItem",
1144
+ "jdVersion": 2018,
1145
+ "mojoPrice": 0,
1146
+ "status": 1,
1147
+ "unlockType": 18,
1148
+ "url": "https://jd-s3.akamaized.net/public/skin/124/skin.png/bf3ec983d79365c21d80a2e8bac84a03.png",
1149
+ "itemType": 1,
1150
+ "visibility": 1
1151
+ },
1152
+ "125": {
1153
+ "__class": "OnlineCustomizableItem",
1154
+ "jdVersion": 2018,
1155
+ "mojoPrice": 0,
1156
+ "status": 3,
1157
+ "unlockType": 20,
1158
+ "url": "https://jd-s3.akamaized.net/public/skin/125/skin.png/7c836e9560c40a95b0f643753c2f22aa.png",
1159
+ "itemType": 1,
1160
+ "visibility": 1
1161
+ },
1162
+ "126": {
1163
+ "__class": "OnlineCustomizableItem",
1164
+ "jdVersion": 2018,
1165
+ "mojoPrice": 0,
1166
+ "status": 1,
1167
+ "unlockType": 18,
1168
+ "url": "https://jd-s3.akamaized.net/public/skin/126/skin.png/7f64302e097d848d68c92203068f441d.png",
1169
+ "itemType": 1,
1170
+ "visibility": 1
1171
+ },
1172
+ "127": {
1173
+ "__class": "OnlineCustomizableItem",
1174
+ "jdVersion": 2018,
1175
+ "mojoPrice": 0,
1176
+ "status": 3,
1177
+ "unlockType": 20,
1178
+ "url": "https://jd-s3.akamaized.net/public/skin/127/skin.png/3903f5edc582cadef14c34ef75b30a94.png",
1179
+ "itemType": 1,
1180
+ "visibility": 1
1181
+ },
1182
+ "128": {
1183
+ "__class": "OnlineCustomizableItem",
1184
+ "jdVersion": 2018,
1185
+ "mojoPrice": 0,
1186
+ "status": 1,
1187
+ "unlockType": 18,
1188
+ "url": "https://jd-s3.akamaized.net/public/skin/128/skin.png/e2264fabb468ee3cea2652138fd36537.png",
1189
+ "itemType": 1,
1190
+ "visibility": 1
1191
+ },
1192
+ "129": {
1193
+ "__class": "OnlineCustomizableItem",
1194
+ "jdVersion": 2018,
1195
+ "mojoPrice": 0,
1196
+ "status": 1,
1197
+ "unlockType": 18,
1198
+ "url": "https://jd-s3.akamaized.net/public/skin/129/skin.png/5f0a1df7e3819a0d176e93a1ad4be353.png",
1199
+ "itemType": 1,
1200
+ "visibility": 1
1201
+ },
1202
+ "130": {
1203
+ "__class": "OnlineCustomizableItem",
1204
+ "jdVersion": 2018,
1205
+ "mojoPrice": 0,
1206
+ "status": 3,
1207
+ "unlockType": 20,
1208
+ "url": "https://jd-s3.akamaized.net/public/skin/130/skin.png/84499b69a83997254547e46ae465a547.png",
1209
+ "itemType": 1,
1210
+ "visibility": 1
1211
+ },
1212
+ "131": {
1213
+ "__class": "OnlineCustomizableItem",
1214
+ "jdVersion": 2018,
1215
+ "mojoPrice": 0,
1216
+ "status": 3,
1217
+ "unlockType": 20,
1218
+ "url": "https://jd-s3.akamaized.net/public/skin/131/skin.png/2f6b51c34a2d697c5c83360163d56312.png",
1219
+ "itemType": 1,
1220
+ "visibility": 1
1221
+ },
1222
+ "132": {
1223
+ "__class": "OnlineCustomizableItem",
1224
+ "jdVersion": 2018,
1225
+ "mojoPrice": 0,
1226
+ "status": 3,
1227
+ "unlockType": 20,
1228
+ "url": "https://jd-s3.akamaized.net/public/skin/132/skin.png/eff5c8be285ff9e5d6760b9108e04255.png",
1229
+ "itemType": 1,
1230
+ "visibility": 1
1231
+ },
1232
+ "133": {
1233
+ "__class": "OnlineCustomizableItem",
1234
+ "jdVersion": 2018,
1235
+ "mojoPrice": 0,
1236
+ "status": 1,
1237
+ "unlockType": 18,
1238
+ "url": "https://jd-s3.akamaized.net/public/skin/133/skin.png/1323ed591ee4333de144707b7c7b77ab.png",
1239
+ "itemType": 1,
1240
+ "visibility": 1
1241
+ },
1242
+ "134": {
1243
+ "__class": "OnlineCustomizableItem",
1244
+ "jdVersion": 2018,
1245
+ "mojoPrice": 0,
1246
+ "status": 3,
1247
+ "unlockType": 20,
1248
+ "url": "https://jd-s3.akamaized.net/public/skin/134/skin.png/70bf3e94f8e7ef3926c4e399c4ee5218.png",
1249
+ "itemType": 1,
1250
+ "visibility": 1
1251
+ },
1252
+ "135": {
1253
+ "__class": "OnlineCustomizableItem",
1254
+ "jdVersion": 2018,
1255
+ "mojoPrice": 0,
1256
+ "status": 3,
1257
+ "unlockType": 20,
1258
+ "url": "https://jd-s3.akamaized.net/public/skin/135/skin.png/b26ec3f8189e4205ad5cf759fbeffc1b.png",
1259
+ "itemType": 1,
1260
+ "visibility": 1
1261
+ },
1262
+ "141": {
1263
+ "__class": "OnlineCustomizableItem",
1264
+ "jdVersion": 2018,
1265
+ "mojoPrice": 0,
1266
+ "status": 1,
1267
+ "unlockType": 18,
1268
+ "url": "https://jd-s3.akamaized.net/public/skin/141/skin.png/ba5e0eb99dab6015d15841f409131fb3.png",
1269
+ "itemType": 1,
1270
+ "visibility": 1
1271
+ },
1272
+ "142": {
1273
+ "__class": "OnlineCustomizableItem",
1274
+ "jdVersion": 2018,
1275
+ "mojoPrice": 0,
1276
+ "status": 3,
1277
+ "unlockType": 20,
1278
+ "url": "https://jd-s3.akamaized.net/public/skin/142/skin.png/12678e8c55f38b386e1772c8656e3084.png",
1279
+ "itemType": 1,
1280
+ "visibility": 1
1281
+ },
1282
+ "143": {
1283
+ "__class": "OnlineCustomizableItem",
1284
+ "jdVersion": 2018,
1285
+ "mojoPrice": 0,
1286
+ "status": 1,
1287
+ "unlockType": 18,
1288
+ "url": "https://jd-s3.akamaized.net/public/skin/143/skin.png/0680e5a60491a822bae4bf6fb154d64e.png",
1289
+ "itemType": 1,
1290
+ "visibility": 1
1291
+ },
1292
+ "144": {
1293
+ "__class": "OnlineCustomizableItem",
1294
+ "jdVersion": 2018,
1295
+ "mojoPrice": 0,
1296
+ "status": 1,
1297
+ "unlockType": 18,
1298
+ "url": "https://jd-s3.akamaized.net/public/skin/144/skin.png/5498fd7e832d516be5076b433064ed24.png",
1299
+ "itemType": 1,
1300
+ "visibility": 1
1301
+ },
1302
+ "145": {
1303
+ "__class": "OnlineCustomizableItem",
1304
+ "jdVersion": 9999,
1305
+ "mojoPrice": 0,
1306
+ "status": 1,
1307
+ "unlockType": 12,
1308
+ "url": "https://jd-s3.akamaized.net/public/skin/145/skin.png/7b4ad99878d51a71b7b758a79aa9d5df.png",
1309
+ "itemType": 1,
1310
+ "visibility": 1
1311
+ },
1312
+ "146": {
1313
+ "__class": "OnlineCustomizableItem",
1314
+ "jdVersion": 9999,
1315
+ "mojoPrice": 0,
1316
+ "status": 1,
1317
+ "unlockType": 13,
1318
+ "url": "https://jd-s3.akamaized.net/public/skin/146/skin.png/9e889e2a68ee197b5fbc5558c265fbcd.png",
1319
+ "itemType": 1,
1320
+ "visibility": 1
1321
+ },
1322
+ "147": {
1323
+ "__class": "OnlineCustomizableItem",
1324
+ "jdVersion": 9999,
1325
+ "mojoPrice": 0,
1326
+ "status": 1,
1327
+ "unlockType": 14,
1328
+ "url": "https://jd-s3.akamaized.net/public/skin/147/skin.png/7ece504c3c3dc41ee0f4e188632f3d2a.png",
1329
+ "itemType": 1,
1330
+ "visibility": 1
1331
+ },
1332
+ "148": {
1333
+ "__class": "OnlineCustomizableItem",
1334
+ "jdVersion": 2018,
1335
+ "mojoPrice": 0,
1336
+ "status": 1,
1337
+ "unlockType": 18,
1338
+ "url": "https://jd-s3.akamaized.net/public/skin/148/skin.png/9e8cff78c490cc257f0604a9c7991b9b.png",
1339
+ "itemType": 1,
1340
+ "visibility": 1
1341
+ },
1342
+ "149": {
1343
+ "__class": "OnlineCustomizableItem",
1344
+ "jdVersion": 2018,
1345
+ "mojoPrice": 0,
1346
+ "status": 1,
1347
+ "unlockType": 16,
1348
+ "url": "https://jd-s3.akamaized.net/public/skin/149/skin.png/9a7ee38d76749e097a4106219012e58f.png",
1349
+ "itemType": 1,
1350
+ "visibility": 1
1351
+ },
1352
+ "150": {
1353
+ "__class": "OnlineCustomizableItem",
1354
+ "jdVersion": 2018,
1355
+ "mojoPrice": 0,
1356
+ "status": 3,
1357
+ "unlockType": 20,
1358
+ "url": "https://jd-s3.akamaized.net/public/skin/150/skin.png/d40c8bf53fffaea93bea8f7089108386.png",
1359
+ "itemType": 1,
1360
+ "visibility": 1
1361
+ },
1362
+ "151": {
1363
+ "__class": "OnlineCustomizableItem",
1364
+ "jdVersion": 2018,
1365
+ "mojoPrice": 0,
1366
+ "status": 1,
1367
+ "unlockType": 6,
1368
+ "url": "https://jd-s3.akamaized.net/public/skin/151/skin.png/7cbfce3d00bfbdeccd6a6f4c27e16cfb.png",
1369
+ "itemType": 1,
1370
+ "visibility": 1
1371
+ },
1372
+ "152": {
1373
+ "__class": "OnlineCustomizableItem",
1374
+ "jdVersion": 2018,
1375
+ "mojoPrice": 0,
1376
+ "status": 1,
1377
+ "unlockType": 6,
1378
+ "url": "https://jd-s3.akamaized.net/public/skin/152/skin.png/278bcea1982a6cfd78713832ff8cf64e.png",
1379
+ "itemType": 1,
1380
+ "visibility": 1
1381
+ },
1382
+ "153": {
1383
+ "__class": "OnlineCustomizableItem",
1384
+ "jdVersion": 2018,
1385
+ "mojoPrice": 0,
1386
+ "status": 1,
1387
+ "unlockType": 6,
1388
+ "url": "https://jd-s3.akamaized.net/public/skin/153/skin.png/55a6b4995e7952ff86c1f9f8f48c8f35.png",
1389
+ "itemType": 1,
1390
+ "visibility": 1
1391
+ },
1392
+ "154": {
1393
+ "__class": "OnlineCustomizableItem",
1394
+ "jdVersion": 2018,
1395
+ "mojoPrice": 0,
1396
+ "status": 1,
1397
+ "unlockType": 6,
1398
+ "url": "https://jd-s3.akamaized.net/public/skin/154/skin.png/5646a4cbc7f1ffd5c95b77aa6b856fb5.png",
1399
+ "itemType": 1,
1400
+ "visibility": 1
1401
+ },
1402
+ "155": {
1403
+ "__class": "OnlineCustomizableItem",
1404
+ "jdVersion": 2018,
1405
+ "mojoPrice": 0,
1406
+ "status": 1,
1407
+ "unlockType": 6,
1408
+ "url": "https://jd-s3.akamaized.net/public/skin/155/skin.png/63b6de0fac8bc818d2138bf96092d0e9.png",
1409
+ "itemType": 1,
1410
+ "visibility": 1
1411
+ },
1412
+ "156": {
1413
+ "__class": "OnlineCustomizableItem",
1414
+ "jdVersion": 2018,
1415
+ "mojoPrice": 0,
1416
+ "status": 1,
1417
+ "unlockType": 6,
1418
+ "url": "https://jd-s3.akamaized.net/public/skin/156/skin.png/f899640f5c32dcae3fa71e2670bb5eb4.png",
1419
+ "itemType": 1,
1420
+ "visibility": 1
1421
+ },
1422
+ "157": {
1423
+ "__class": "OnlineCustomizableItem",
1424
+ "jdVersion": 2018,
1425
+ "mojoPrice": 0,
1426
+ "status": 1,
1427
+ "unlockType": 6,
1428
+ "url": "https://jd-s3.akamaized.net/public/skin/157/skin.png/f5115d1b8aff7bbc8ea8fee4915841c6.png",
1429
+ "itemType": 1,
1430
+ "visibility": 1
1431
+ },
1432
+ "158": {
1433
+ "__class": "OnlineCustomizableItem",
1434
+ "jdVersion": 2018,
1435
+ "mojoPrice": 0,
1436
+ "status": 1,
1437
+ "unlockType": 16,
1438
+ "url": "https://jd-s3.akamaized.net/public/skin/158/skin.png/27b3f2107b8174690fb88c1ef706f2e2.png",
1439
+ "itemType": 1,
1440
+ "visibility": 1
1441
+ },
1442
+ "159": {
1443
+ "__class": "OnlineCustomizableItem",
1444
+ "jdVersion": 2018,
1445
+ "mojoPrice": 0,
1446
+ "status": 1,
1447
+ "unlockType": 6,
1448
+ "url": "https://jd-s3.akamaized.net/public/skin/159/skin.png/b77b97cb7a5cf06312190f8f5fb9ff55.png",
1449
+ "itemType": 1,
1450
+ "visibility": 1
1451
+ },
1452
+ "160": {
1453
+ "__class": "OnlineCustomizableItem",
1454
+ "jdVersion": 2018,
1455
+ "mojoPrice": 0,
1456
+ "status": 1,
1457
+ "unlockType": 16,
1458
+ "url": "https://jd-s3.akamaized.net/public/skin/160/skin.png/0815b2d4f5ac2a9e35759cd41380018f.png",
1459
+ "itemType": 1,
1460
+ "visibility": 1
1461
+ },
1462
+ "161": {
1463
+ "__class": "OnlineCustomizableItem",
1464
+ "jdVersion": 2018,
1465
+ "mojoPrice": 0,
1466
+ "status": 1,
1467
+ "unlockType": 16,
1468
+ "url": "https://jd-s3.akamaized.net/public/skin/161/skin.png/05f19ddd3f8605b19e69276be739e2a9.png",
1469
+ "itemType": 1,
1470
+ "visibility": 1
1471
+ },
1472
+ "162": {
1473
+ "__class": "OnlineCustomizableItem",
1474
+ "jdVersion": 2018,
1475
+ "mojoPrice": 0,
1476
+ "status": 1,
1477
+ "unlockType": 16,
1478
+ "url": "https://jd-s3.akamaized.net/public/skin/162/skin.png/907e165ad88b974dbe2e25d3a3024ad9.png",
1479
+ "itemType": 1,
1480
+ "visibility": 1
1481
+ },
1482
+ "163": {
1483
+ "__class": "OnlineCustomizableItem",
1484
+ "jdVersion": 2018,
1485
+ "mojoPrice": 0,
1486
+ "status": 1,
1487
+ "unlockType": 15,
1488
+ "url": "https://jd-s3.akamaized.net/public/skin/163/skin.png/2767c8f96b4136e8ca5e84fd263d7445.png",
1489
+ "itemType": 1,
1490
+ "visibility": 1
1491
+ },
1492
+ "164": {
1493
+ "__class": "OnlineCustomizableItem",
1494
+ "jdVersion": 2018,
1495
+ "mojoPrice": 0,
1496
+ "status": 1,
1497
+ "unlockType": 15,
1498
+ "url": "https://jd-s3.akamaized.net/public/skin/164/skin.png/3cf1ac9d086876b36807c9bb718c3b63.png",
1499
+ "itemType": 1,
1500
+ "visibility": 1
1501
+ },
1502
+ "165": {
1503
+ "__class": "OnlineCustomizableItem",
1504
+ "jdVersion": 2018,
1505
+ "mojoPrice": 0,
1506
+ "status": 1,
1507
+ "unlockType": 15,
1508
+ "url": "https://jd-s3.akamaized.net/public/skin/165/skin.png/10c2b85bca4b57c13f33d043af59e4ff.png",
1509
+ "itemType": 1,
1510
+ "visibility": 1
1511
+ },
1512
+ "166": {
1513
+ "__class": "OnlineCustomizableItem",
1514
+ "jdVersion": 2018,
1515
+ "mojoPrice": 0,
1516
+ "status": 1,
1517
+ "unlockType": 15,
1518
+ "url": "https://jd-s3.akamaized.net/public/skin/166/skin.png/8cea5b357af0f68939f4754a8e97fa16.png",
1519
+ "itemType": 1,
1520
+ "visibility": 1
1521
+ },
1522
+ "167": {
1523
+ "__class": "OnlineCustomizableItem",
1524
+ "jdVersion": 2018,
1525
+ "mojoPrice": 0,
1526
+ "status": 1,
1527
+ "unlockType": 15,
1528
+ "url": "https://jd-s3.akamaized.net/public/skin/167/skin.png/74a398dea6d2f978877f7193da787040.png",
1529
+ "itemType": 1,
1530
+ "visibility": 1
1531
+ },
1532
+ "168": {
1533
+ "__class": "OnlineCustomizableItem",
1534
+ "jdVersion": 2018,
1535
+ "mojoPrice": 0,
1536
+ "status": 1,
1537
+ "unlockType": 15,
1538
+ "url": "https://jd-s3.akamaized.net/public/skin/168/skin.png/8093b6b941d74578a62bda7a96e34e5b.png",
1539
+ "itemType": 1,
1540
+ "visibility": 1
1541
+ },
1542
+ "169": {
1543
+ "__class": "OnlineCustomizableItem",
1544
+ "jdVersion": 2018,
1545
+ "mojoPrice": 0,
1546
+ "status": 1,
1547
+ "unlockType": 15,
1548
+ "url": "https://jd-s3.akamaized.net/public/skin/169/skin.png/f87e082c77fa675b2972da015d310863.png",
1549
+ "itemType": 1,
1550
+ "visibility": 1
1551
+ },
1552
+ "170": {
1553
+ "__class": "OnlineCustomizableItem",
1554
+ "jdVersion": 2018,
1555
+ "mojoPrice": 0,
1556
+ "status": 1,
1557
+ "unlockType": 15,
1558
+ "url": "https://jd-s3.akamaized.net/public/skin/170/skin.png/3ccbe0aae096f8c82dfff170d69f3acb.png",
1559
+ "itemType": 1,
1560
+ "visibility": 1
1561
+ },
1562
+ "171": {
1563
+ "__class": "OnlineCustomizableItem",
1564
+ "jdVersion": 2018,
1565
+ "mojoPrice": 0,
1566
+ "status": 1,
1567
+ "unlockType": 15,
1568
+ "url": "https://jd-s3.akamaized.net/public/skin/171/skin.png/710df0866a391599d82377afb861d339.png",
1569
+ "itemType": 1,
1570
+ "visibility": 1
1571
+ },
1572
+ "172": {
1573
+ "__class": "OnlineCustomizableItem",
1574
+ "jdVersion": 2018,
1575
+ "mojoPrice": 0,
1576
+ "status": 1,
1577
+ "unlockType": 15,
1578
+ "url": "https://jd-s3.akamaized.net/public/skin/172/skin.png/a892b5e1ea87148f793a8ade8aa8d4ce.png",
1579
+ "itemType": 1,
1580
+ "visibility": 1
1581
+ }
1582
+ }
justdanceonline-main/local_settings/localisation/localisation.json ADDED
@@ -0,0 +1,3296 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "9349": {
3
+ "ja": "Girls",
4
+ "ko": "Girls",
5
+ "nl": "Meisjes",
6
+ "fr": "Filles",
7
+ "de": "Mädchen",
8
+ "es": "Chicas",
9
+ "en": "Girls",
10
+ "da": "Piger",
11
+ "fi": "Tytöt",
12
+ "nb": "Jenter",
13
+ "sv": "Tjejer",
14
+ "pt-br": "Garotas",
15
+ "it": "Femmine",
16
+ "zh-cn": "Girls",
17
+ "ru": "Girls",
18
+ "zh-tw": "Girls"
19
+ },
20
+ "9350": {
21
+ "ja": "Boys",
22
+ "ko": "Boys",
23
+ "nl": "Jongens",
24
+ "fr": "Garçons",
25
+ "de": "Jungs",
26
+ "es": "Chicos",
27
+ "en": "Boys",
28
+ "da": "Drenge",
29
+ "fi": "Pojat",
30
+ "nb": "Gutter",
31
+ "sv": "Killar",
32
+ "pt-br": "Garotos",
33
+ "it": "Maschi",
34
+ "zh-cn": "Boys",
35
+ "ru": "Boys",
36
+ "zh-tw": "Boys"
37
+ },
38
+ "10861": {
39
+ "ja": "コミュニティリミックス",
40
+ "ko": "커뮤니티 리믹스",
41
+ "nl": "Community Remix",
42
+ "fr": "Community Remix",
43
+ "de": "Community-Remix",
44
+ "es": "Community Remix",
45
+ "en": "Community Remix",
46
+ "da": "Community Remix",
47
+ "fi": "Community Remix",
48
+ "nb": "Community Remix",
49
+ "sv": "Community Remix",
50
+ "pt-br": "Community Remix",
51
+ "it": "Community Remix",
52
+ "zh-cn": "社区集锦",
53
+ "ru": "Community Remix",
54
+ "zh-tw": "社群集錦"
55
+ },
56
+ "11604": {
57
+ "ja": "カルテットマッシュアップ",
58
+ "ko": "4인용 Mashup",
59
+ "nl": "Kwartet Mash-Up",
60
+ "fr": "Mash-Up Quatuor",
61
+ "de": "Quartett-Mash-Up",
62
+ "es": "Mash-Up para cuarteto",
63
+ "en": "Quartet Mash-Up",
64
+ "da": "Kvartet-mashup",
65
+ "fi": "Quatro Mash-Up",
66
+ "nb": "Kvartett-mash-up",
67
+ "sv": "Fyrtal i Mash-Up",
68
+ "pt-br": "Mash-Up de quarteto",
69
+ "it": "Mash-Up in quattro",
70
+ "zh-cn": "四人组金曲串烧",
71
+ "ru": "Квартет-микс",
72
+ "zh-tw": "四人組金曲串燒"
73
+ },
74
+ "11710": {
75
+ "ja": "コミュニティリミックス",
76
+ "ko": "커뮤니티 리믹스",
77
+ "nl": "WEDSTRIJD!",
78
+ "fr": "COMMUNITY REMIX !",
79
+ "de": "COMMUNITY-REMIX",
80
+ "es": "COMMUNITY REMIX",
81
+ "en": "Community Remix",
82
+ "da": "Community remix",
83
+ "fi": "Community Remix",
84
+ "nb": "Community Remix",
85
+ "sv": "Community Remix",
86
+ "pt-br": "COMMUNITY REMIX!",
87
+ "it": "COMMUNITY REMIX!",
88
+ "zh-cn": "社区集锦",
89
+ "ru": "Соревнование",
90
+ "zh-tw": "社群集錦"
91
+ },
92
+ "12227": {
93
+ "ja": "Just Dance 2016",
94
+ "ko": "Just Dance 2016",
95
+ "nl": "Just Dance 2016",
96
+ "fr": "Just Dance 2016",
97
+ "de": "Just Dance 2016",
98
+ "es": "Just Dance 2016",
99
+ "en": "Just Dance 2016",
100
+ "da": "Just Dance 2016",
101
+ "fi": "Just Dance 2016",
102
+ "nb": "Just Dance 2016",
103
+ "sv": "Just Dance 2016",
104
+ "pt-br": "Just Dance 2016",
105
+ "it": "Just Dance 2016",
106
+ "zh-cn": "《Just Dance 2016》",
107
+ "ru": "Just Dance 2016",
108
+ "zh-tw": "《Just Dance 2016》"
109
+ },
110
+ "12228": {
111
+ "ja": "Just Dance 2015",
112
+ "ko": "Just Dance 2015",
113
+ "nl": "Just Dance 2015",
114
+ "fr": "Just Dance 2015",
115
+ "de": "Just Dance 2015",
116
+ "es": "Just Dance 2015",
117
+ "en": "Just Dance 2015",
118
+ "da": "Just Dance 2015",
119
+ "fi": "Just Dance 2015",
120
+ "nb": "Just Dance 2015",
121
+ "sv": "Just Dance 2015",
122
+ "pt-br": "Just Dance 2015",
123
+ "it": "Just Dance 2015",
124
+ "zh-cn": "《Just Dance 2015》",
125
+ "ru": "Just Dance 2015",
126
+ "zh-tw": "《Just Dance 2015》"
127
+ },
128
+ "12229": {
129
+ "ja": "Just Dance 2014",
130
+ "ko": "Just Dance 2014",
131
+ "nl": "Just Dance 2014",
132
+ "fr": "Just Dance 2014",
133
+ "de": "Just Dance 2014",
134
+ "es": "Just Dance 2014",
135
+ "en": "Just Dance 2014",
136
+ "da": "Just Dance 2014",
137
+ "fi": "Just Dance 2014",
138
+ "nb": "Just Dance 2014",
139
+ "sv": "Just Dance 2014",
140
+ "pt-br": "Just Dance 2014",
141
+ "it": "Just Dance 2014",
142
+ "zh-cn": "《Just Dance 2014》",
143
+ "ru": "Just Dance 2014",
144
+ "zh-tw": "《Just Dance 2014》"
145
+ },
146
+ "12230": {
147
+ "ja": "Just Dance 4",
148
+ "ko": "Just Dance 4",
149
+ "nl": "Just Dance 4",
150
+ "fr": "Just Dance 4",
151
+ "de": "Just Dance 4",
152
+ "es": "Just Dance 4",
153
+ "en": "Just Dance 4",
154
+ "da": "Just Dance 4",
155
+ "fi": "Just Dance 4",
156
+ "nb": "Just Dance 4",
157
+ "sv": "Just Dance 4",
158
+ "pt-br": "Just Dance 4",
159
+ "it": "Just Dance 4",
160
+ "zh-cn": "《Just Dance 4》",
161
+ "ru": "Just Dance 4",
162
+ "zh-tw": "《Just Dance 4》"
163
+ },
164
+ "12231": {
165
+ "ja": "Just Dance 3",
166
+ "ko": "Just Dance 3",
167
+ "nl": "Just Dance 3",
168
+ "fr": "Just Dance 3",
169
+ "de": "Just Dance 3",
170
+ "es": "Just Dance 3",
171
+ "en": "Just Dance 3",
172
+ "da": "Just Dance 3",
173
+ "fi": "Just Dance 3",
174
+ "nb": "Just Dance 3",
175
+ "sv": "Just Dance 3",
176
+ "pt-br": "Just Dance 3",
177
+ "it": "Just Dance 3",
178
+ "zh-cn": "《Just Dance 3》",
179
+ "ru": "Just Dance 3",
180
+ "zh-tw": "《Just Dance 3》"
181
+ },
182
+ "12232": {
183
+ "ja": "Just Dance 2",
184
+ "ko": "Just Dance 2",
185
+ "nl": "Just Dance 2",
186
+ "fr": "Just Dance 2",
187
+ "de": "Just Dance 2",
188
+ "es": "Just Dance 2",
189
+ "en": "Just Dance 2",
190
+ "da": "Just Dance 2",
191
+ "fi": "Just Dance 2",
192
+ "nb": "Just Dance 2",
193
+ "sv": "Just Dance 2",
194
+ "pt-br": "Just Dance 2",
195
+ "it": "Just Dance 2",
196
+ "zh-cn": "《Just Dance 2》",
197
+ "ru": "Just Dance 2",
198
+ "zh-tw": "《Just Dance 2》"
199
+ },
200
+ "12233": {
201
+ "ja": "Just Dance 1",
202
+ "ko": "Just Dance 1",
203
+ "nl": "Just Dance 1",
204
+ "fr": "Just Dance 1",
205
+ "de": "Just Dance 1",
206
+ "es": "Just Dance 1",
207
+ "en": "Just Dance 1",
208
+ "da": "Just Dance 1",
209
+ "fi": "Just Dance 1",
210
+ "nb": "Just Dance 1",
211
+ "sv": "Just Dance 1",
212
+ "pt-br": "Just Dance 1",
213
+ "it": "Just Dance 1",
214
+ "zh-cn": "《Just Dance 1》",
215
+ "ru": "Just Dance 1",
216
+ "zh-tw": "《Just Dance 1》"
217
+ },
218
+ "12599": {
219
+ "ja": "触るな",
220
+ "ko": "건드리지 마",
221
+ "nl": "Niet aanraken",
222
+ "fr": "Pas touche",
223
+ "de": "Nicht berühren",
224
+ "es": "No tocar",
225
+ "en": "Don't touch",
226
+ "da": "Ingen berøring",
227
+ "fi": "Älä koske",
228
+ "nb": "Ikke rør",
229
+ "sv": "Stekhet",
230
+ "pt-br": "Não toque",
231
+ "it": "Non toccare",
232
+ "zh-cn": "切勿触碰",
233
+ "ru": "Не трогать",
234
+ "zh-tw": "切勿觸碰"
235
+ },
236
+ "12600": {
237
+ "ja": "エネルギッシュ・ガールズ",
238
+ "ko": "하이 에너지 걸스",
239
+ "nl": "Meiden vol energie",
240
+ "fr": "Girl power",
241
+ "de": "High-Energy-Girls",
242
+ "es": "Chicas con mucha energía",
243
+ "en": "High energy girls",
244
+ "da": "Piger med spræl i",
245
+ "fi": "Energiset tytöt",
246
+ "nb": "Jenter med mye energi",
247
+ "sv": "Sprudlande tjejer",
248
+ "pt-br": "Garotas enérgicas",
249
+ "it": "Ragazze tutto pepe",
250
+ "zh-cn": "活力女孩",
251
+ "ru": "Энергичные девушки",
252
+ "zh-tw": "活力女孩"
253
+ },
254
+ "12601": {
255
+ "ja": "レトロメン",
256
+ "ko": "레트로 맨",
257
+ "nl": "Retromannen",
258
+ "fr": "Un coup dans le rétro",
259
+ "de": "Retro-Men",
260
+ "es": "Hombres como los de antes",
261
+ "en": "Retro men",
262
+ "da": "Retrofyre",
263
+ "fi": "Retroheput",
264
+ "nb": "Retromenn",
265
+ "sv": "Retrosnubbar",
266
+ "pt-br": "Homens retrô",
267
+ "it": "Uomini vintage",
268
+ "zh-cn": "复古风格",
269
+ "ru": "Любители ретро",
270
+ "zh-tw": "復古風格"
271
+ },
272
+ "12602": {
273
+ "ja": "ホップ&ジャンプ",
274
+ "ko": "높이 뛰어올라",
275
+ "nl": "Gestuiter en gespring",
276
+ "fr": "Et que ça saute",
277
+ "de": "Hüpfen & Springen",
278
+ "es": "Saltos y saltitos",
279
+ "en": "Hops & Jumps",
280
+ "da": "Hop og spring",
281
+ "fi": "Loiki & hypi",
282
+ "nb": "Sprett og hopp",
283
+ "sv": "Skutt och hopp",
284
+ "pt-br": "Pulos & Saltos",
285
+ "it": "Salti e balzi",
286
+ "zh-cn": "蹦蹦跳跳",
287
+ "ru": "Прыжки и скачки",
288
+ "zh-tw": "蹦蹦跳跳"
289
+ },
290
+ "12603": {
291
+ "ja": "コスチューム・パーティー",
292
+ "ko": "코스튬 파티",
293
+ "nl": "Verkleedpartijtje",
294
+ "fr": "Fête costumée",
295
+ "de": "Kostümparty",
296
+ "es": "Fiesta de disfraces",
297
+ "en": "Costume party",
298
+ "da": "Kostumefest",
299
+ "fi": "Naamiaiset",
300
+ "nb": "Kostymefest",
301
+ "sv": "Maskerad",
302
+ "pt-br": "Festa à fantasia",
303
+ "it": "Festa in costume",
304
+ "zh-cn": "化妆舞会",
305
+ "ru": "Карнавал",
306
+ "zh-tw": "化妝舞會"
307
+ },
308
+ "12604": {
309
+ "ja": "大親友",
310
+ "ko": "B.F.F.",
311
+ "nl": "Vrienden voor het leven",
312
+ "fr": "Meilleurs amis pour la vie",
313
+ "de": "Beste Freunde",
314
+ "es": "Amistad de la buena",
315
+ "en": "B.F.F.",
316
+ "da": "De bedste venner",
317
+ "fi": "B.F.F.",
318
+ "nb": "B.F.F.",
319
+ "sv": "Bästa vänner",
320
+ "pt-br": "B.F.F.",
321
+ "it": "B.F.F.",
322
+ "zh-cn": "最佳密友",
323
+ "ru": "Лучший друг",
324
+ "zh-tw": "最佳密友"
325
+ },
326
+ "12605": {
327
+ "ja": "舞��裏",
328
+ "ko": "비하인드 신",
329
+ "nl": "Achter de schermen",
330
+ "fr": "En coulisses",
331
+ "de": "Hinter den Kulissen",
332
+ "es": "Detrás de la cámara",
333
+ "en": "Behind the scenes",
334
+ "da": "Bag om scenen",
335
+ "fi": "Kulissien takana",
336
+ "nb": "Bak kulissene",
337
+ "sv": "Bakom kulisserna",
338
+ "pt-br": "Atrás dos bastidores",
339
+ "it": "Dietro le quinte",
340
+ "zh-cn": "藏身幕后",
341
+ "ru": "За сценой",
342
+ "zh-tw": "藏身幕後"
343
+ },
344
+ "12606": {
345
+ "ja": "三つ子",
346
+ "ko": "세쌍둥이",
347
+ "nl": "Drieling",
348
+ "fr": "Triplés",
349
+ "de": "Drillinge",
350
+ "es": "Tripletes",
351
+ "en": "Triplets",
352
+ "da": "Trillinger",
353
+ "fi": "Kolmoset",
354
+ "nb": "Trillinger",
355
+ "sv": "Trillingar",
356
+ "pt-br": "Tri-gêmeas",
357
+ "it": "Tripletta",
358
+ "zh-cn": "三位一体",
359
+ "ru": "Тройняшки",
360
+ "zh-tw": "三位一體"
361
+ },
362
+ "12607": {
363
+ "ja": "目立ちたがり屋",
364
+ "ko": "뽐내기",
365
+ "nl": "Uitslover",
366
+ "fr": "Démonstration",
367
+ "de": "Gib an!",
368
+ "es": "A presumir",
369
+ "en": "Show-off",
370
+ "da": "Praleri",
371
+ "fi": "Leveilyä",
372
+ "nb": "Skryting",
373
+ "sv": "Skrytmåns",
374
+ "pt-br": "Exiba-se",
375
+ "it": "Mettiti in mostra",
376
+ "zh-cn": "彰显自我",
377
+ "ru": "Хвастунишка",
378
+ "zh-tw": "彰顯自我"
379
+ },
380
+ "12608": {
381
+ "ja": "友達を招待",
382
+ "ko": "친구들 다 데려와",
383
+ "nl": "Neem je vrienden mee",
384
+ "fr": "Petites danses entre amis",
385
+ "de": "Bring deine Freunde mit",
386
+ "es": "Trae a tus amigos",
387
+ "en": "Bring your friends",
388
+ "da": "Tag vennerne med",
389
+ "fi": "Tuo ystäväsikin",
390
+ "nb": "Bring dine venner",
391
+ "sv": "Ta med kompisar",
392
+ "pt-br": "Traga seus amigos",
393
+ "it": "Porta gli amici",
394
+ "zh-cn": "带朋友一起",
395
+ "ru": "Приводите друзей",
396
+ "zh-tw": "帶朋友一起"
397
+ },
398
+ "12609": {
399
+ "ja": "歌姫",
400
+ "ko": "디바",
401
+ "nl": "Diva's",
402
+ "fr": "Divas",
403
+ "de": "Diven",
404
+ "es": "Divas",
405
+ "en": "Divas",
406
+ "da": "Divaer",
407
+ "fi": "Diivat",
408
+ "nb": "Divaer",
409
+ "sv": "Divor",
410
+ "pt-br": "Divas",
411
+ "it": "Dive",
412
+ "zh-cn": "女主唱",
413
+ "ru": "Дивы",
414
+ "zh-tw": "女主唱"
415
+ },
416
+ "12610": {
417
+ "ja": "クラブ",
418
+ "ko": "클럽",
419
+ "nl": "Club",
420
+ "fr": "Club",
421
+ "de": "Club",
422
+ "es": "Club",
423
+ "en": "Club",
424
+ "da": "Klubben",
425
+ "fi": "Klubi",
426
+ "nb": "Klubb",
427
+ "sv": "Klubb",
428
+ "pt-br": "Clube",
429
+ "it": "Club",
430
+ "zh-cn": "Club",
431
+ "ru": "Клуб",
432
+ "zh-tw": "Club"
433
+ },
434
+ "12611": {
435
+ "ja": "ジャスト・シャイン",
436
+ "ko": "빛만 보여",
437
+ "nl": "Swingen maar",
438
+ "fr": "À vous de briller",
439
+ "de": "Einfach nur glänzen",
440
+ "es": "Brillante",
441
+ "en": "Just shine",
442
+ "da": "Just Shine",
443
+ "fi": "Pelkkää loistoa",
444
+ "nb": "Ren utstrålig",
445
+ "sv": "Ut och gläns",
446
+ "pt-br": "Apenas brilhe",
447
+ "it": "Risplendi",
448
+ "zh-cn": "闪耀全开",
449
+ "ru": "Сияйте",
450
+ "zh-tw": "閃耀全開"
451
+ },
452
+ "12612": {
453
+ "ja": "Just Dance 2016のベスト",
454
+ "ko": "Just Dance 2016 베스트",
455
+ "nl": "Het beste van Just Dance 2015",
456
+ "fr": "Best of Just Dance 2016",
457
+ "de": "Das Beste aus Just Dance 2016",
458
+ "es": "Lo mejor de Just Dance 2016",
459
+ "en": "Best of Just Dance 2016",
460
+ "da": "Det bedste af Just Dance 2016",
461
+ "fi": "Just Dance 2016:n parhaat",
462
+ "nb": "Beste fra Just Dance 2016",
463
+ "sv": "Det bästa från Just Dance 2016",
464
+ "pt-br": "Best of Just Dance 2016",
465
+ "it": "Il meglio di Just Dance 2016",
466
+ "zh-cn": "《Just Dance 2016》精选",
467
+ "ru": "Лучшее из Just Dance 2016",
468
+ "zh-tw": "《Just Dance 2016》精選"
469
+ },
470
+ "12613": {
471
+ "ja": "Sunglasses",
472
+ "ko": "선글라스",
473
+ "nl": "Zonnebrillen",
474
+ "fr": "Lunettes de soleil",
475
+ "de": "Sonnenbrillen",
476
+ "es": "Gafas de sol",
477
+ "en": "Sunglasses",
478
+ "da": "Solbriller",
479
+ "fi": "Aurinkolasit",
480
+ "nb": "Solbriller",
481
+ "sv": "Solglasögon",
482
+ "pt-br": "Óculos escuros",
483
+ "it": "Occhiali da sole",
484
+ "zh-cn": "太阳眼镜",
485
+ "ru": "Солнечные очки",
486
+ "zh-tw": "太陽眼鏡"
487
+ },
488
+ "12614": {
489
+ "ja": "オタク",
490
+ "ko": "괴짜들",
491
+ "nl": "Geeks",
492
+ "fr": "Geeks",
493
+ "de": "Geeks",
494
+ "es": "Frikis",
495
+ "en": "Geeks",
496
+ "da": "Nørder",
497
+ "fi": "Nörtit",
498
+ "nb": "Nerder",
499
+ "sv": "Nördar",
500
+ "pt-br": "Nerds",
501
+ "it": "Nerd",
502
+ "zh-cn": "极客",
503
+ "ru": "Гики",
504
+ "zh-tw": "極客"
505
+ },
506
+ "12615": {
507
+ "ja": "ピンク色の髪",
508
+ "ko": "분홍색 머리",
509
+ "nl": "Roze haar",
510
+ "fr": "Cheveux roses",
511
+ "de": "Rosa Haare",
512
+ "es": "Pelo rosa",
513
+ "en": "Pink hair",
514
+ "da": "Pink hår",
515
+ "fi": "Pinkki tukka",
516
+ "nb": "Rosa hår",
517
+ "sv": "Rosa hår",
518
+ "pt-br": "Cabelo rosa",
519
+ "it": "Capelli rosa",
520
+ "zh-cn": "粉色头发",
521
+ "ru": "Розовые волосы",
522
+ "zh-tw": "粉色頭髮"
523
+ },
524
+ "12616": {
525
+ "ja": "着飾ろう!",
526
+ "ko": "복장 필요!",
527
+ "nl": "Zorg voor gepaste kleding!",
528
+ "fr": "En costume !",
529
+ "de": "Putz dich raus!",
530
+ "es": "¡Vístete!",
531
+ "en": "Suit up!",
532
+ "da": "På med jakkesættet!",
533
+ "fi": "Ykköset ylle!",
534
+ "nb": "Kle deg ut!",
535
+ "sv": "På med kostymen!",
536
+ "pt-br": "Arrume-se!",
537
+ "it": "In ghingheri!",
538
+ "zh-cn": "好好打扮!",
539
+ "ru": "Приоденьтесь!",
540
+ "zh-tw": "好好打扮!"
541
+ },
542
+ "12617": {
543
+ "ja": "エネルギッシュ",
544
+ "ko": "넘치는 에너지",
545
+ "nl": "Vol energie",
546
+ "fr": "100 % énergie",
547
+ "de": "High-Energy",
548
+ "es": "Máxima energía",
549
+ "en": "High energy",
550
+ "da": "Fuld energi",
551
+ "fi": "Energiaa",
552
+ "nb": "Mye energi",
553
+ "sv": "Massor av energi",
554
+ "pt-br": "Alto astral",
555
+ "it": "A tutto gas",
556
+ "zh-cn": "活力",
557
+ "ru": "Высокая энергия",
558
+ "zh-tw": "活力"
559
+ },
560
+ "12618": {
561
+ "ja": "メリーゴーランド",
562
+ "ko": "회전목마",
563
+ "nl": "In de draaimolen",
564
+ "fr": "Manège",
565
+ "de": "Karussell",
566
+ "es": "Carrusel",
567
+ "en": "Merry go round",
568
+ "da": "Rundtosset",
569
+ "fi": "Karuselli",
570
+ "nb": "Karusell",
571
+ "sv": "Karusell",
572
+ "pt-br": "Carrossel",
573
+ "it": "Girotondo",
574
+ "zh-cn": "旋转木马",
575
+ "ru": "Карусель",
576
+ "zh-tw": "旋轉木馬"
577
+ },
578
+ "12619": {
579
+ "ja": "フラワー&ビーver.",
580
+ "ko": "꽃과 벌 버전",
581
+ "nl": "Bloemetjes-en-bijtjes-versie",
582
+ "fr": "Version Fleurs et Abeilles",
583
+ "de": "Bienen & Blumen-Version",
584
+ "es": "Versión flores y abejas",
585
+ "en": "Flower & Bee Version",
586
+ "da": "Blomster og bier-version",
587
+ "fi": "Kukka ja mehiläinen -versio",
588
+ "nb": "Blomsten og bien-versjon",
589
+ "sv": "Naturversion",
590
+ "pt-br": "Versão jardim",
591
+ "it": "Versione api e fiori",
592
+ "zh-cn": "花与蜂版本",
593
+ "ru": "Версия цветка и пчелы",
594
+ "zh-tw": "花與蜂版本"
595
+ },
596
+ "12620": {
597
+ "ja": "ナードver.",
598
+ "ko": "괴짜 버전",
599
+ "nl": "Nerd-versie",
600
+ "fr": "Version Bon Élève",
601
+ "de": "Nerd-Version",
602
+ "es": "Versión para empollones",
603
+ "en": "Nerd Version",
604
+ "da": "Nørdversion",
605
+ "fi": "Nörttiversio",
606
+ "nb": "Nerdeversjon",
607
+ "sv": "Nördversion",
608
+ "pt-br": "Versão nerd",
609
+ "it": "Versione nerd",
610
+ "zh-cn": "书虫版本",
611
+ "ru": "Версия отличников",
612
+ "zh-tw": "書蟲版本"
613
+ },
614
+ "12621": {
615
+ "ja": "クラスルームver.",
616
+ "ko": "교실 버전",
617
+ "nl": "Klaslokaal-versie",
618
+ "fr": "Version Salle de Classe",
619
+ "de": "Klassenzimmer-Version",
620
+ "es": "Versión para la clase",
621
+ "en": "Classroom Version",
622
+ "da": "Skoleversion",
623
+ "fi": "Luokkahuoneversio",
624
+ "nb": "Klasseromsversjon",
625
+ "sv": "Skolversion",
626
+ "pt-br": "Versão sala de aula",
627
+ "it": "Versione classe",
628
+ "zh-cn": "教室版本",
629
+ "ru": "Школьная версия",
630
+ "zh-tw": "教室版本"
631
+ },
632
+ "12622": {
633
+ "ja": "車ver.",
634
+ "ko": "자동차 버전",
635
+ "nl": "Auto-versie",
636
+ "fr": "Version Voiture",
637
+ "de": "Auto-Version",
638
+ "es": "Versión para el coche",
639
+ "en": "Car Version",
640
+ "da": "Bilversion",
641
+ "fi": "Autoversio",
642
+ "nb": "Bilversjon",
643
+ "sv": "Bilversion",
644
+ "pt-br": "Versão para carro",
645
+ "it": "Versione auto",
646
+ "zh-cn": "汽车版本",
647
+ "ru": "Версия в машине",
648
+ "zh-tw": "汽車版本"
649
+ },
650
+ "12623": {
651
+ "ja": "タキシードver.",
652
+ "ko": "턱시도 버전",
653
+ "nl": "Smoking-versie",
654
+ "fr": "Version Smoking",
655
+ "de": "Smoking-Version",
656
+ "es": "Versión esmoquin",
657
+ "en": "Tuxedo Version",
658
+ "da": "Smokingversion",
659
+ "fi": "Smokkiversio",
660
+ "nb": "Smokingversjon",
661
+ "sv": "Smokingversion",
662
+ "pt-br": "Versão de terno",
663
+ "it": "Versione smoking",
664
+ "zh-cn": "燕尾服版本",
665
+ "ru": "Версия для смокинга",
666
+ "zh-tw": "燕尾服版本"
667
+ },
668
+ "12624": {
669
+ "ja": "エクストリームver.",
670
+ "ko": "익스트림 버전",
671
+ "nl": "Extreme versie",
672
+ "fr": "Version Extrême",
673
+ "de": "Extrem-Version",
674
+ "es": "Versión Extrema",
675
+ "en": "Extreme Version",
676
+ "da": "Ekstrem version",
677
+ "fi": "Extreme-versio",
678
+ "nb": "Ekstremversjon",
679
+ "sv": "Extrem version",
680
+ "pt-br": "Versão Extrema",
681
+ "it": "Versione estrema",
682
+ "zh-cn": "极限版本",
683
+ "ru": "Экстрим-версия",
684
+ "zh-tw": "極限版本"
685
+ },
686
+ "12625": {
687
+ "ja": "芸者ver.",
688
+ "ko": "게이샤 버전",
689
+ "nl": "Geisha-versie",
690
+ "fr": "Version Geisha",
691
+ "de": "Geisha-Version",
692
+ "es": "Versión para geisha",
693
+ "en": "Geisha Version",
694
+ "da": "Geisha-version",
695
+ "fi": "Geisha-versio",
696
+ "nb": "Geishaversjon",
697
+ "sv": "Geishaversion",
698
+ "pt-br": "Versão gueixa",
699
+ "it": "Versione geisha",
700
+ "zh-cn": "艺妓版本",
701
+ "ru": "Версия гейши",
702
+ "zh-tw": "藝妓版本"
703
+ },
704
+ "12626": {
705
+ "ja": "ラテンフィットネスver.",
706
+ "ko": "라틴 피트니스 버전",
707
+ "nl": "Latin-fitness-versie",
708
+ "fr": "Version Latino-Fitness",
709
+ "de": "Latin-Fitness-Version",
710
+ "es": "Versión fitness latino",
711
+ "en": "Latin Fitness Version",
712
+ "da": "Latinamerikansk fitnessdans",
713
+ "fi": "Latinofitnessversio",
714
+ "nb": "Latinsk fitness-versjon",
715
+ "sv": "Latinoträningsversion",
716
+ "pt-br": "Versão fitness latina",
717
+ "it": "Versione fitness latino",
718
+ "zh-cn": "拉丁塑身版本",
719
+ "ru": "Версия для фитнес-латины",
720
+ "zh-tw": "拉丁塑身版本"
721
+ },
722
+ "12627": {
723
+ "ja": "カップルver.",
724
+ "ko": "커플 버전",
725
+ "nl": "Liefde-versie",
726
+ "fr": "Version Couple",
727
+ "de": "Paar-Version",
728
+ "es": "Versión para parejas",
729
+ "en": "Couple Version",
730
+ "da": "Parversion",
731
+ "fi": "Pariversio",
732
+ "nb": "Parversjon",
733
+ "sv": "Parversion",
734
+ "pt-br": "Versão de casal",
735
+ "it": "Versione coppia",
736
+ "zh-cn": "情侣版本",
737
+ "ru": "Парная версия",
738
+ "zh-tw": "情侶版本"
739
+ },
740
+ "12628": {
741
+ "ja": "インディアンver.",
742
+ "ko": "인도 버전",
743
+ "nl": "Indiase versie",
744
+ "fr": "Version Indienne",
745
+ "de": "Indische Version",
746
+ "es": "Versión hindú",
747
+ "en": "Indian Version",
748
+ "da": "Indisk version",
749
+ "fi": "Intialainen versio",
750
+ "nb": "Indisk versjon",
751
+ "sv": "Indisk version",
752
+ "pt-br": "Versão indiana",
753
+ "it": "Versione indiana",
754
+ "zh-cn": "印度版本",
755
+ "ru": "Индийская версия",
756
+ "zh-tw": "印度版本"
757
+ },
758
+ "12629": {
759
+ "ja": "エアロビクスver.",
760
+ "ko": "에어로빅 버전",
761
+ "nl": "Aerobics-versie",
762
+ "fr": "Version Aérobic",
763
+ "de": "Aerobic-Version",
764
+ "es": "Versión aeróbica",
765
+ "en": "Aerobics Version",
766
+ "da": "Aerobic-version",
767
+ "fi": "Aerobicversio",
768
+ "nb": "Aerobic-versjon",
769
+ "sv": "Aerobicsversion",
770
+ "pt-br": "Versão aeróbica",
771
+ "it": "Versione aerobica",
772
+ "zh-cn": "有氧版本",
773
+ "ru": "Версия для аэробики",
774
+ "zh-tw": "有氧版本"
775
+ },
776
+ "12630": {
777
+ "ja": "ラインダンスver.",
778
+ "ko": "라인 댄스 버전",
779
+ "nl": "Linedance-versie",
780
+ "fr": "Version Square Dance",
781
+ "de": "Line-Dance-Version",
782
+ "es": "Versión baile en filas",
783
+ "en": "Line Dance Version",
784
+ "da": "Linjedans-version",
785
+ "fi": "Rivitanssiversio",
786
+ "nb": "Linedance-versjon",
787
+ "sv": "Linedanceversion",
788
+ "pt-br": "Versão trenzinho",
789
+ "it": "Versione line dance",
790
+ "zh-cn": "排舞版本",
791
+ "ru": "Версия для танца в линию",
792
+ "zh-tw": "排舞版本"
793
+ },
794
+ "12631": {
795
+ "ja": "エクストリームver.",
796
+ "ko": "익스트림 버전",
797
+ "nl": "Extreme versie",
798
+ "fr": "Version Extrême",
799
+ "de": "Extrem-Version",
800
+ "es": "Versión Extrema",
801
+ "en": "Extreme Version",
802
+ "da": "Ekstrem version",
803
+ "fi": "Extreme-versio",
804
+ "nb": "Ekstremversjon",
805
+ "sv": "Extrem version",
806
+ "pt-br": "Versão Extrema",
807
+ "it": "Versione estrema",
808
+ "zh-cn": "极限���本",
809
+ "ru": "Экстрим-версия",
810
+ "zh-tw": "極限版本"
811
+ },
812
+ "12793": {
813
+ "ja": "Just Dance 2017",
814
+ "ko": "Just Dance 2017",
815
+ "nl": "Just Dance 2017",
816
+ "fr": "Just Dance 2017",
817
+ "de": "Just Dance 2017",
818
+ "es": "Just Dance 2017",
819
+ "en": "Just Dance 2017",
820
+ "da": "Just Dance 2017",
821
+ "fi": "Just Dance 2017",
822
+ "nb": "Just Dance 2017",
823
+ "sv": "Just Dance 2017",
824
+ "pt-br": "Just Dance 2017",
825
+ "it": "Just Dance 2017",
826
+ "zh-cn": "《Just Dance 2017》",
827
+ "ru": "Just Dance 2017",
828
+ "zh-tw": "《Just Dance 2017》"
829
+ },
830
+ "12794": {
831
+ "ja": "Just Dance 2018",
832
+ "ko": "Just Dance 2018",
833
+ "nl": "Just Dance 2018",
834
+ "fr": "Just Dance 2018",
835
+ "de": "Just Dance 2018",
836
+ "es": "Just Dance 2018",
837
+ "en": "Just Dance 2018",
838
+ "da": "Just Dance 2018",
839
+ "fi": "Just Dance 2018",
840
+ "nb": "Just Dance 2018",
841
+ "sv": "Just Dance 2018",
842
+ "pt-br": "Just Dance 2018",
843
+ "it": "Just Dance 2018",
844
+ "zh-cn": "《Just Dance 2018》",
845
+ "ru": "Just Dance 2018",
846
+ "zh-tw": "《Just Dance 2018》"
847
+ },
848
+ "12921": {
849
+ "ja": "チャールストンver.",
850
+ "ko": "재즈댄스 버전",
851
+ "nl": "Charleston-versie",
852
+ "fr": "Version Charleston",
853
+ "de": "Charleston-Version",
854
+ "es": "Versión Charleston",
855
+ "en": "Charleston Version",
856
+ "da": "Charleston-version",
857
+ "fi": "Charleston-versio",
858
+ "nb": "Charleston-versjon",
859
+ "sv": "Charleston-version",
860
+ "pt-br": "Versão charleston",
861
+ "it": "Versione charleston",
862
+ "zh-cn": "查尔斯顿舞版本",
863
+ "ru": "Чарльстон-версия",
864
+ "zh-tw": "查爾斯頓舞版本"
865
+ },
866
+ "12922": {
867
+ "ja": "相撲ver.",
868
+ "ko": "스모 버전",
869
+ "nl": "Sumo-versie",
870
+ "fr": "Version Sumo",
871
+ "de": "Sumo-Version",
872
+ "es": "Versión Sumo",
873
+ "en": "Sumo Version",
874
+ "da": "Sumo-version",
875
+ "fi": "Sumoversio",
876
+ "nb": "Sumoversjon",
877
+ "sv": "Sumoversion",
878
+ "pt-br": "Versão sumô",
879
+ "it": "Versione sumo",
880
+ "zh-cn": "相扑版本",
881
+ "ru": "Версия сумо",
882
+ "zh-tw": "相撲版本"
883
+ },
884
+ "12923": {
885
+ "ja": "Sweat ver.",
886
+ "ko": "Sweat 버전",
887
+ "nl": "Sweat-versie",
888
+ "fr": "Version Sweat",
889
+ "de": "Sweat-Version",
890
+ "es": "Versión Sweat",
891
+ "en": "Sweat Version",
892
+ "da": "Sweat Mode-version",
893
+ "fi": "Sweat-versio",
894
+ "nb": "Sweat-versjon",
895
+ "sv": "Sweat-version",
896
+ "pt-br": "Versão Sweat",
897
+ "it": "Versione Sweat",
898
+ "zh-cn": "挥洒汗水版本",
899
+ "ru": "Фитнес-версия",
900
+ "zh-tw": "揮灑汗水版本"
901
+ },
902
+ "12929": {
903
+ "ja": "レスラーver.",
904
+ "ko": "레슬러 버전",
905
+ "nl": "Worstelaar-versie",
906
+ "fr": "Version Catch",
907
+ "de": "Wrestling-Version",
908
+ "es": "Versión Luchador",
909
+ "en": "Wrestler Version",
910
+ "da": "Wrestler-version",
911
+ "fi": "Painijaversio",
912
+ "nb": "Fribryterversjon",
913
+ "sv": "Wrestlingversion",
914
+ "pt-br": "Versão luta livre",
915
+ "it": "Versione wrestler",
916
+ "zh-cn": "摔角版本",
917
+ "ru": "Версия борцов",
918
+ "zh-tw": "摔角版本"
919
+ },
920
+ "12939": {
921
+ "ja": "Kids",
922
+ "ko": "Kids",
923
+ "nl": "Kids",
924
+ "fr": "Enfants",
925
+ "de": "Kids",
926
+ "es": "Infantiles",
927
+ "en": "Kids",
928
+ "da": "Kids",
929
+ "fi": "Kids",
930
+ "nb": "Barn",
931
+ "sv": "Kids",
932
+ "pt-br": "Infantil",
933
+ "it": "Bambini",
934
+ "zh-cn": "Kids",
935
+ "ru": "Kids",
936
+ "zh-tw": "Kids"
937
+ },
938
+ "12945": {
939
+ "ja": "Christmas",
940
+ "ko": "Christmas",
941
+ "nl": "Kerstmis",
942
+ "fr": "Noël",
943
+ "de": "Weihnachten",
944
+ "es": "Navidad",
945
+ "en": "Christmas",
946
+ "da": "Jul",
947
+ "fi": "Joulu",
948
+ "nb": "Jul",
949
+ "sv": "Jul",
950
+ "pt-br": "Natal",
951
+ "it": "Natale",
952
+ "zh-cn": "Christmas",
953
+ "ru": "Christmas",
954
+ "zh-tw": "Christmas"
955
+ },
956
+ "12949": {
957
+ "ja": "Disney",
958
+ "ko": "Disney",
959
+ "nl": "Disney",
960
+ "fr": "Disney",
961
+ "de": "Disney",
962
+ "es": "Disney",
963
+ "en": "Disney",
964
+ "da": "Disney",
965
+ "fi": "Disney",
966
+ "nb": "Disney",
967
+ "sv": "Disney",
968
+ "pt-br": "Disney",
969
+ "it": "Disney",
970
+ "zh-cn": "Disney",
971
+ "ru": "Disney",
972
+ "zh-tw": "Disney"
973
+ },
974
+ "13001": {
975
+ "ja": "80s",
976
+ "ko": "80s",
977
+ "nl": "Jaren 80",
978
+ "fr": "80s",
979
+ "de": "80er",
980
+ "es": "Los 80",
981
+ "en": "80s",
982
+ "da": "80'erne",
983
+ "fi": "80-luku",
984
+ "nb": "80-talls",
985
+ "sv": "80-tal",
986
+ "pt-br": "Anos 80",
987
+ "it": "Anni '80",
988
+ "zh-cn": "80s",
989
+ "ru": "80s",
990
+ "zh-tw": "80s"
991
+ },
992
+ "13004": {
993
+ "ja": "Animals",
994
+ "ko": "Animals",
995
+ "nl": "Dieren",
996
+ "fr": "Animaux",
997
+ "de": "Tiere",
998
+ "es": "Animales",
999
+ "en": "Animals",
1000
+ "da": "Dyr",
1001
+ "fi": "Eläimet",
1002
+ "nb": "Dyr",
1003
+ "sv": "Djur",
1004
+ "pt-br": "Animais",
1005
+ "it": "Animali",
1006
+ "zh-cn": "Animals",
1007
+ "ru": "Animals",
1008
+ "zh-tw": "Animals"
1009
+ },
1010
+ "13005": {
1011
+ "ja": "Battle",
1012
+ "ko": "Battle",
1013
+ "nl": "Battle",
1014
+ "fr": "Battle",
1015
+ "de": "Kampf",
1016
+ "es": "Batallas",
1017
+ "en": "Battle",
1018
+ "da": "Battle",
1019
+ "fi": "Kamppailu",
1020
+ "nb": "Kamp",
1021
+ "sv": "Kamp",
1022
+ "pt-br": "Batalha",
1023
+ "it": "Battaglia",
1024
+ "zh-cn": "Battle",
1025
+ "ru": "Battle",
1026
+ "zh-tw": "Battle"
1027
+ },
1028
+ "13006": {
1029
+ "ja": "Bollywood",
1030
+ "ko": "Bollywood",
1031
+ "nl": "Bollywood",
1032
+ "fr": "Bollywood",
1033
+ "de": "Bollywood",
1034
+ "es": "Bollywood",
1035
+ "en": "Bollywood",
1036
+ "da": "Bollywood",
1037
+ "fi": "Bollywood",
1038
+ "nb": "Bollywood",
1039
+ "sv": "Bollywood",
1040
+ "pt-br": "Bollywood",
1041
+ "it": "Bollywood",
1042
+ "zh-cn": "Bollywood",
1043
+ "ru": "Bollywood",
1044
+ "zh-tw": "Bollywood"
1045
+ },
1046
+ "13011": {
1047
+ "ja": "Classical",
1048
+ "ko": "Classical",
1049
+ "nl": "Klassiek",
1050
+ "fr": "Classique",
1051
+ "de": "Klassisch",
1052
+ "es": "Clásicas",
1053
+ "en": "Classical",
1054
+ "da": "Klassisk",
1055
+ "fi": "Klassinen",
1056
+ "nb": "Klassisk",
1057
+ "sv": "Klassisk",
1058
+ "pt-br": "Clássica",
1059
+ "it": "Classici",
1060
+ "zh-cn": "Classical",
1061
+ "ru": "Classical",
1062
+ "zh-tw": "Classical"
1063
+ },
1064
+ "13018": {
1065
+ "ja": "Futuristic",
1066
+ "ko": "Futuristic",
1067
+ "nl": "Futuristisch",
1068
+ "fr": "Futuriste",
1069
+ "de": "Futuristisch",
1070
+ "es": "Futuristas",
1071
+ "en": "Futuristic",
1072
+ "da": "Futuristisk",
1073
+ "fi": "Tulevaisuus",
1074
+ "nb": "Futuristisk",
1075
+ "sv": "Futuristiskt",
1076
+ "pt-br": "Futurista",
1077
+ "it": "Futuristico",
1078
+ "zh-cn": "Futuristic",
1079
+ "ru": "Futuristic",
1080
+ "zh-tw": "Futuristic"
1081
+ },
1082
+ "13021": {
1083
+ "ja": "Halloween",
1084
+ "ko": "Halloween",
1085
+ "nl": "Halloween",
1086
+ "fr": "Halloween",
1087
+ "de": "Halloween",
1088
+ "es": "Halloween",
1089
+ "en": "Halloween",
1090
+ "da": "Halloween",
1091
+ "fi": "Halloween",
1092
+ "nb": "Halloween",
1093
+ "sv": "Halloween",
1094
+ "pt-br": "Dia das Bruxas",
1095
+ "it": "Halloween",
1096
+ "zh-cn": "Halloween",
1097
+ "ru": "Halloween",
1098
+ "zh-tw": "Halloween"
1099
+ },
1100
+ "13024": {
1101
+ "ja": "Latin",
1102
+ "ko": "Latin",
1103
+ "nl": "Latin",
1104
+ "fr": "Latino",
1105
+ "de": "Latin",
1106
+ "es": "Latina",
1107
+ "en": "Latin",
1108
+ "da": "Latin",
1109
+ "fi": "Latinalainen",
1110
+ "nb": "Latinsk",
1111
+ "sv": "Latino",
1112
+ "pt-br": "Latina",
1113
+ "it": "Latinoamericano",
1114
+ "zh-cn": "Latin",
1115
+ "ru": "Latin",
1116
+ "zh-tw": "Latin"
1117
+ },
1118
+ "13027": {
1119
+ "ja": "Princess",
1120
+ "ko": "Princess",
1121
+ "nl": "Prinses",
1122
+ "fr": "Princesse",
1123
+ "de": "Prinzessin",
1124
+ "es": "Princesa",
1125
+ "en": "Princess",
1126
+ "da": "Prinsesse",
1127
+ "fi": "Prinsessa",
1128
+ "nb": "Prinsesse",
1129
+ "sv": "Prinsessa",
1130
+ "pt-br": "Princesa",
1131
+ "it": "Principessa",
1132
+ "zh-cn": "Princess",
1133
+ "ru": "Princess",
1134
+ "zh-tw": "Princess"
1135
+ },
1136
+ "13031": {
1137
+ "ja": "Sports",
1138
+ "ko": "Sports",
1139
+ "nl": "Sport",
1140
+ "fr": "Sports",
1141
+ "de": "Sport",
1142
+ "es": "Deportes",
1143
+ "en": "Sports",
1144
+ "da": "Sport",
1145
+ "fi": "Urheilu",
1146
+ "nb": "Sport",
1147
+ "sv": "Sport",
1148
+ "pt-br": "Esportes",
1149
+ "it": "Sport",
1150
+ "zh-cn": "Sports",
1151
+ "ru": "Sports",
1152
+ "zh-tw": "Sports"
1153
+ },
1154
+ "13032": {
1155
+ "ja": "Summer",
1156
+ "ko": "Summer",
1157
+ "nl": "Zomer",
1158
+ "fr": "Été",
1159
+ "de": "Sommer",
1160
+ "es": "Verano",
1161
+ "en": "Summer",
1162
+ "da": "Sommer",
1163
+ "fi": "Kesä",
1164
+ "nb": "Sommer",
1165
+ "sv": "Sommar",
1166
+ "pt-br": "Verão",
1167
+ "it": "Estate",
1168
+ "zh-cn": "Summer",
1169
+ "ru": "Summer",
1170
+ "zh-tw": "Summer"
1171
+ },
1172
+ "13033": {
1173
+ "ja": "Superhero",
1174
+ "ko": "Superhero",
1175
+ "nl": "Superheld",
1176
+ "fr": "Super-héros",
1177
+ "de": "Superheld",
1178
+ "es": "Superhéroes",
1179
+ "en": "Superhero",
1180
+ "da": "Superhelt",
1181
+ "fi": "Supersankari",
1182
+ "nb": "Superhelt",
1183
+ "sv": "Superhjälte",
1184
+ "pt-br": "Super-herói",
1185
+ "it": "Supereroi",
1186
+ "zh-cn": "Superhero",
1187
+ "ru": "Superhero",
1188
+ "zh-tw": "Superhero"
1189
+ },
1190
+ "13034": {
1191
+ "ja": "TV and Movies",
1192
+ "ko": "TV and Movies",
1193
+ "nl": "Tv en films",
1194
+ "fr": "TV et cinéma",
1195
+ "de": "Film und Fernsehen",
1196
+ "es": "Televisión y cine",
1197
+ "en": "TV and Movies",
1198
+ "da": "Tv og film",
1199
+ "fi": "TV ja elokuva",
1200
+ "nb": "TV og film",
1201
+ "sv": "Tv och film",
1202
+ "pt-br": "TV e filmes",
1203
+ "it": "Film e TV",
1204
+ "zh-cn": "TV and Movies",
1205
+ "ru": "TV and Movies",
1206
+ "zh-tw": "TV and Movies"
1207
+ },
1208
+ "13035": {
1209
+ "ja": "Video Games",
1210
+ "ko": "Video Games",
1211
+ "nl": "Videogames",
1212
+ "fr": "Jeux vidéo",
1213
+ "de": "Videospiele",
1214
+ "es": "Videojuegos",
1215
+ "en": "Video Games",
1216
+ "da": "Computerspil",
1217
+ "fi": "Videopelit",
1218
+ "nb": "Spill",
1219
+ "sv": "Tv-spel",
1220
+ "pt-br": "Videogames",
1221
+ "it": "Videogiochi",
1222
+ "zh-cn": "Video Games",
1223
+ "ru": "Video Games",
1224
+ "zh-tw": "Video Games"
1225
+ },
1226
+ "13335": {
1227
+ "ja": "Disco Funk",
1228
+ "ko": "Disco Funk",
1229
+ "nl": "Disco Funk",
1230
+ "fr": "Disco Funk",
1231
+ "de": "Disco-Funk",
1232
+ "es": "Disco Funk",
1233
+ "en": "Disco Funk",
1234
+ "da": "Discofunk",
1235
+ "fi": "Disco Funk",
1236
+ "nb": "Discofunk",
1237
+ "sv": "Discofunk",
1238
+ "pt-br": "Disco Funk",
1239
+ "it": "Disco Funk",
1240
+ "zh-cn": "Disco Funk",
1241
+ "ru": "Disco Funk",
1242
+ "zh-tw": "Disco Funk"
1243
+ },
1244
+ "13677": {
1245
+ "ja": "オリンピックver.",
1246
+ "ko": "올림픽 버전",
1247
+ "nl": "Olympische versie",
1248
+ "fr": "Version Olympique",
1249
+ "de": "Olympia-Version",
1250
+ "es": "Versión Olímpica",
1251
+ "en": "Olympic Version",
1252
+ "da": "Olympisk version",
1253
+ "fi": "Olympiaversio",
1254
+ "nb": "Olympisk versjon",
1255
+ "sv": "Olympisk version",
1256
+ "pt-br": "Versão olímpica",
1257
+ "it": "Versione olimpica",
1258
+ "zh-cn": "奥林匹克版本",
1259
+ "ru": "Олимпийская версия",
1260
+ "zh-tw": "奧林匹克版本"
1261
+ },
1262
+ "13683": {
1263
+ "ja": "Caliente",
1264
+ "ko": "Caliente",
1265
+ "nl": "Caliente",
1266
+ "fr": "Caliente",
1267
+ "de": "Caliente",
1268
+ "es": "Caliente",
1269
+ "en": "Caliente",
1270
+ "da": "Caliente",
1271
+ "fi": "Caliente",
1272
+ "nb": "Caliente",
1273
+ "sv": "Caliente",
1274
+ "pt-br": "Caliente",
1275
+ "it": "Caliente",
1276
+ "zh-cn": "Caliente",
1277
+ "ru": "Caliente",
1278
+ "zh-tw": "Caliente"
1279
+ },
1280
+ "13684": {
1281
+ "ja": "Sweatember",
1282
+ "ko": "Sweatember",
1283
+ "nl": "Sweatember",
1284
+ "fr": "Sweatember",
1285
+ "de": "Sweatember",
1286
+ "es": "Sweatember",
1287
+ "en": "Sweatember",
1288
+ "da": "Sweatember",
1289
+ "fi": "Sweatember",
1290
+ "nb": "Sweatember",
1291
+ "sv": "Sweatember",
1292
+ "pt-br": "Sweatember",
1293
+ "it": "Sweatember",
1294
+ "zh-cn": "Sweatember",
1295
+ "ru": "Sweatember",
1296
+ "zh-tw": "Sweatember"
1297
+ },
1298
+ "13685": {
1299
+ "ja": "Swag",
1300
+ "ko": "스웨그",
1301
+ "nl": "Swag",
1302
+ "fr": "Swag",
1303
+ "de": "Swag",
1304
+ "es": "Mírame bien",
1305
+ "en": "Swag",
1306
+ "da": "Swag",
1307
+ "fi": "Swag",
1308
+ "nb": "Swag",
1309
+ "sv": "Swag",
1310
+ "pt-br": "Descolado",
1311
+ "it": "Festone",
1312
+ "zh-cn": "摇摆",
1313
+ "ru": "Swag",
1314
+ "zh-tw": "搖擺"
1315
+ },
1316
+ "13686": {
1317
+ "ja": "Back in the day",
1318
+ "ko": "그땐 그랬지",
1319
+ "nl": "Vroeger",
1320
+ "fr": "Back in the days",
1321
+ "de": "Damals",
1322
+ "es": "En aquellos tiempos",
1323
+ "en": "Back in the day",
1324
+ "da": "I de gode gamle dage",
1325
+ "fi": "Ennen vanhaan",
1326
+ "nb": "I gamle dager",
1327
+ "sv": "Förr i tiden",
1328
+ "pt-br": "Nos velhos tempos",
1329
+ "it": "Bei vecchi tempi",
1330
+ "zh-cn": "重返旧时光",
1331
+ "ru": "Старые добрые дни",
1332
+ "zh-tw": "重返舊時光"
1333
+ },
1334
+ "13687": {
1335
+ "ja": "Sunglasses",
1336
+ "ko": "선글라스",
1337
+ "nl": "Zonnebril",
1338
+ "fr": "Sunglasses",
1339
+ "de": "Sonnenbrille",
1340
+ "es": "Gafas de sol",
1341
+ "en": "Sunglasses",
1342
+ "da": "Solbriller",
1343
+ "fi": "Aurinkolasit",
1344
+ "nb": "Solbriller",
1345
+ "sv": "Solglasögon",
1346
+ "pt-br": "Óculos escuros",
1347
+ "it": "Occhiali da sole",
1348
+ "zh-cn": "墨镜",
1349
+ "ru": "Солнечные очки",
1350
+ "zh-tw": "墨鏡"
1351
+ },
1352
+ "13688": {
1353
+ "ja": "Tease me",
1354
+ "ko": "날 괴롭혀줘",
1355
+ "nl": "Plaag me",
1356
+ "fr": "Tease me",
1357
+ "de": "Tease me",
1358
+ "es": "Provócame",
1359
+ "en": "Tease me",
1360
+ "da": "Dril mig",
1361
+ "fi": "Kiusaa mua",
1362
+ "nb": "Ert meg",
1363
+ "sv": "Reta mig",
1364
+ "pt-br": "Me provoca",
1365
+ "it": "Provocami",
1366
+ "zh-cn": "挑逗我吧",
1367
+ "ru": "Подразни меня",
1368
+ "zh-tw": "挑逗我吧"
1369
+ },
1370
+ "13689": {
1371
+ "ja": "K-Pop",
1372
+ "ko": "K-pop",
1373
+ "nl": "K-pop",
1374
+ "fr": "K-Pop",
1375
+ "de": "K-Pop",
1376
+ "es": "K-pop",
1377
+ "en": "K-pop",
1378
+ "da": "K-pop",
1379
+ "fi": "K-pop",
1380
+ "nb": "K-pop",
1381
+ "sv": "K-pop",
1382
+ "pt-br": "K-Pop",
1383
+ "it": "K-Pop",
1384
+ "zh-cn": "K-Pop",
1385
+ "ru": "Kpop",
1386
+ "zh-tw": "K-pop"
1387
+ },
1388
+ "13690": {
1389
+ "ja": "World",
1390
+ "ko": "월드",
1391
+ "nl": "Wereld",
1392
+ "fr": "World",
1393
+ "de": "Welt",
1394
+ "es": "Mundial",
1395
+ "en": "World",
1396
+ "da": "Verden",
1397
+ "fi": "Maailma",
1398
+ "nb": "Verden",
1399
+ "sv": "World",
1400
+ "pt-br": "Mundo",
1401
+ "it": "Mondo",
1402
+ "zh-cn": "世界",
1403
+ "ru": "Мир",
1404
+ "zh-tw": "世界"
1405
+ },
1406
+ "13691": {
1407
+ "ja": "American dream",
1408
+ "ko": "아메리칸 드림",
1409
+ "nl": "Amerikaanse droom",
1410
+ "fr": "American Dream",
1411
+ "de": "Der amerikanische Traum",
1412
+ "es": "Sueño americano",
1413
+ "en": "American dream",
1414
+ "da": "Den amerikanske drøm",
1415
+ "fi": "Amerikkalainen unelma",
1416
+ "nb": "Amerikansk drøm",
1417
+ "sv": "Amerikanska drömmen",
1418
+ "pt-br": "Sonho americano",
1419
+ "it": "Sogno americano",
1420
+ "zh-cn": "美国梦",
1421
+ "ru": "Американская мечта",
1422
+ "zh-tw": "美國夢"
1423
+ },
1424
+ "13692": {
1425
+ "ja": "Icebreaker",
1426
+ "ko": "분위기 전환",
1427
+ "nl": "IJsbreker",
1428
+ "fr": "Icebreaker",
1429
+ "de": "Eisbrecher",
1430
+ "es": "Rompehielos",
1431
+ "en": "Icebreaker",
1432
+ "da": "Isbryder",
1433
+ "fi": "Jää sulaa",
1434
+ "nb": "Isbryter",
1435
+ "sv": "Isbrytare",
1436
+ "pt-br": "Quebra-gelo",
1437
+ "it": "Rompighiaccio",
1438
+ "zh-cn": "破冰游戏",
1439
+ "ru": "Между всеми тает лед",
1440
+ "zh-tw": "破冰遊戲"
1441
+ },
1442
+ "13751": {
1443
+ "ja": "父と息子ver.",
1444
+ "ko": "아빠와 아들 버전",
1445
+ "nl": "Vader/zoon-versie",
1446
+ "fr": "Version Père/Fils",
1447
+ "de": "Vater/Sohn-Version",
1448
+ "es": "Versión padre e hijo",
1449
+ "en": "Father/Son Version",
1450
+ "da": "Far/søn-version",
1451
+ "fi": "Isä/poika-versio",
1452
+ "nb": "Far og sønn-versjon",
1453
+ "sv": "Far och son-version",
1454
+ "pt-br": "Versão pai/filho",
1455
+ "it": "Versione padre/figlio",
1456
+ "zh-cn": "父子版本",
1457
+ "ru": "Версия для отца и сына",
1458
+ "zh-tw": "父子版本"
1459
+ },
1460
+ "13752": {
1461
+ "ja": "車ver.",
1462
+ "ko": "자동차 버전",
1463
+ "nl": "Auto-versie",
1464
+ "fr": "Version Voiture",
1465
+ "de": "Auto-Version",
1466
+ "es": "Versión coche",
1467
+ "en": "Car Version",
1468
+ "da": "Bilversion",
1469
+ "fi": "Autoversio",
1470
+ "nb": "Bilversjon",
1471
+ "sv": "Bilversion",
1472
+ "pt-br": "Versão para carro",
1473
+ "it": "Versione auto",
1474
+ "zh-cn": "汽车版本",
1475
+ "ru": "Версия в машине",
1476
+ "zh-tw": "汽車版本"
1477
+ },
1478
+ "13753": {
1479
+ "ja": "スカーフver.",
1480
+ "ko": "스카프 버전",
1481
+ "nl": "Sjaal-versie",
1482
+ "fr": "Version Écharpe",
1483
+ "de": "Schal-Version",
1484
+ "es": "Versión bufanda",
1485
+ "en": "Scarf Version",
1486
+ "da": "Halstørklæde-version",
1487
+ "fi": "Huiviversio",
1488
+ "nb": "Skjerfversjon",
1489
+ "sv": "Sjalversion",
1490
+ "pt-br": "Versão cachecol",
1491
+ "it": "Versione sciarpa",
1492
+ "zh-cn": "纱丽版本",
1493
+ "ru": "Версия с шарфом",
1494
+ "zh-tw": "圍巾版本"
1495
+ },
1496
+ "13754": {
1497
+ "ja": "パンダver.",
1498
+ "ko": "판다 버전",
1499
+ "nl": "Panda-versie",
1500
+ "fr": "Version Panda",
1501
+ "de": "Panda-Version",
1502
+ "es": "Versión panda",
1503
+ "en": "Panda Version",
1504
+ "da": "Panda-version",
1505
+ "fi": "Pandaversio",
1506
+ "nb": "Pandaversjon",
1507
+ "sv": "Pandaversion",
1508
+ "pt-br": "Versão panda",
1509
+ "it": "Versione panda",
1510
+ "zh-cn": "熊猫版本",
1511
+ "ru": "Версия панды",
1512
+ "zh-tw": "熊貓版本"
1513
+ },
1514
+ "13755": {
1515
+ "ja": "ディスコフィットネスver.",
1516
+ "ko": "디스코 피트니스 버전",
1517
+ "nl": "Disco-fitness-versie",
1518
+ "fr": "Version Disco-Fitness",
1519
+ "de": "Disco-Fitness-Version",
1520
+ "es": "Versión música y deporte",
1521
+ "en": "Disco Fitness Version",
1522
+ "da": "Discofitness-version",
1523
+ "fi": "Diskofitnessversio",
1524
+ "nb": "Diskotreningsversjon",
1525
+ "sv": "Discoträningsversion",
1526
+ "pt-br": "Versão disco fitness",
1527
+ "it": "Versione disco fitness",
1528
+ "zh-cn": "迪斯科塑身版本",
1529
+ "ru": "Версия для диско-фитнеса",
1530
+ "zh-tw": "迪斯可塑身版本"
1531
+ },
1532
+ "13756": {
1533
+ "ja": "相撲ver.",
1534
+ "ko": "스모 버전",
1535
+ "nl": "Sumo-versie",
1536
+ "fr": "Version Sumo",
1537
+ "de": "Sumo-Version",
1538
+ "es": "Versión sumo",
1539
+ "en": "Sumo Version",
1540
+ "da": "Sumo-version",
1541
+ "fi": "Sumoversio",
1542
+ "nb": "Sumoversjon",
1543
+ "sv": "Sumoversion",
1544
+ "pt-br": "Versão sumô",
1545
+ "it": "Versione sumo",
1546
+ "zh-cn": "相扑版本",
1547
+ "ru": "Версия сумо",
1548
+ "zh-tw": "相撲版本"
1549
+ },
1550
+ "13757": {
1551
+ "ja": "トリオver.",
1552
+ "ko": "3인용 버전",
1553
+ "nl": "Trio-versie",
1554
+ "fr": "Version Trio",
1555
+ "de": "Trio-Version",
1556
+ "es": "Versión trío",
1557
+ "en": "Trio Version",
1558
+ "da": "Trio-version",
1559
+ "fi": "Trioversio",
1560
+ "nb": "Trio-versjon",
1561
+ "sv": "Trioversion",
1562
+ "pt-br": "Versão em trio",
1563
+ "it": "Versione trio",
1564
+ "zh-cn": "三人舞版本",
1565
+ "ru": "Версия для трио",
1566
+ "zh-tw": "三人舞版本"
1567
+ },
1568
+ "13758": {
1569
+ "ja": "ボリウッドver.",
1570
+ "ko": "발리우드 버전",
1571
+ "nl": "Bollywood-versie",
1572
+ "fr": "Version Bollywood",
1573
+ "de": "Bollywood-Version",
1574
+ "es": "Versión Bollywood",
1575
+ "en": "Bollywood Version",
1576
+ "da": "Bollywood-version",
1577
+ "fi": "Bollywood-versio",
1578
+ "nb": "Bollywood-versjon",
1579
+ "sv": "Bollywoodversion",
1580
+ "pt-br": "Versão Bollywood",
1581
+ "it": "Versione Bollywood",
1582
+ "zh-cn": "宝莱坞版本",
1583
+ "ru": "Болливудская версия",
1584
+ "zh-tw": "寶萊塢版本"
1585
+ },
1586
+ "13759": {
1587
+ "ja": "イヤホンver.",
1588
+ "ko": "이어폰 버전",
1589
+ "nl": "Oordopjes-versie",
1590
+ "fr": "Version Écouteurs",
1591
+ "de": "Ohrhörer-Version",
1592
+ "es": "Versión auriculares",
1593
+ "en": "Earphones Version",
1594
+ "da": "Høretelefons-version",
1595
+ "fi": "Kuulokeversio",
1596
+ "nb": "Øretelefonversjon",
1597
+ "sv": "Hörlursversion",
1598
+ "pt-br": "Versão fones de ouvido",
1599
+ "it": "Versione auricolari",
1600
+ "zh-cn": "耳机版本",
1601
+ "ru": "Версия с наушниками",
1602
+ "zh-tw": "耳機版本"
1603
+ },
1604
+ "13760": {
1605
+ "ja": "ファミリーバトルver.",
1606
+ "ko": "패밀리BattleVersion",
1607
+ "nl": "Familiestrijd-versie",
1608
+ "fr": "Version Battle Familiale",
1609
+ "de": "Familienbattle-Version",
1610
+ "es": "Versión batalla familiar",
1611
+ "en": "Family Battle Version",
1612
+ "da": "Familiedyst-version",
1613
+ "fi": "Perhetaisteluversio",
1614
+ "nb": "Familiekampversjon",
1615
+ "sv": "Familjekampsversion",
1616
+ "pt-br": "Versão batalha de família",
1617
+ "it": "Versione battaglia familiare",
1618
+ "zh-cn": "家庭竞赛版本",
1619
+ "ru": "Версия \"Семейный батл\"",
1620
+ "zh-tw": "家庭競賽版本"
1621
+ },
1622
+ "13761": {
1623
+ "ja": "キャンディーver.",
1624
+ "ko": "캔디 버전",
1625
+ "nl": "Snoep-versie",
1626
+ "fr": "Version Bonbon",
1627
+ "de": "Candy-Version",
1628
+ "es": "Versión chuches",
1629
+ "en": "Candy Version",
1630
+ "da": "Slik-version",
1631
+ "fi": "Karkkiversio",
1632
+ "nb": "Godteriversjon",
1633
+ "sv": "Godisversion",
1634
+ "pt-br": "Versão doce",
1635
+ "it": "Versione dolce",
1636
+ "zh-cn": "糖果版本",
1637
+ "ru": "Конфетная версия",
1638
+ "zh-tw": "糖果版本"
1639
+ },
1640
+ "13762": {
1641
+ "ja": "ヘルメットver.",
1642
+ "ko": "헤드기어 버전",
1643
+ "nl": "Helm-versie",
1644
+ "fr": "Version Casque",
1645
+ "de": "Helm-Version",
1646
+ "es": "Versión casco",
1647
+ "en": "Helmet Version",
1648
+ "da": "Hjelm-version",
1649
+ "fi": "Kypäräversio",
1650
+ "nb": "Hjelmversjon",
1651
+ "sv": "Hjälmversion",
1652
+ "pt-br": "Versão capacete",
1653
+ "it": "Versione casco",
1654
+ "zh-cn": "头盔版本",
1655
+ "ru": "Версия со шлемом",
1656
+ "zh-tw": "頭盔版本"
1657
+ },
1658
+ "13763": {
1659
+ "ja": "エクストリームver.",
1660
+ "ko": "익스트림 버전",
1661
+ "nl": "Extreme versie",
1662
+ "fr": "Version Extrême",
1663
+ "de": "Extrem-Version",
1664
+ "es": "Versión Extrema",
1665
+ "en": "Extreme Version",
1666
+ "da": "Ekstrem version",
1667
+ "fi": "Extreme-versio",
1668
+ "nb": "Ekstremversjon",
1669
+ "sv": "Extrem version",
1670
+ "pt-br": "Versão Extrema",
1671
+ "it": "Versione estrema",
1672
+ "zh-cn": "极限版本",
1673
+ "ru": "Экстрим-версия",
1674
+ "zh-tw": "極限版本"
1675
+ },
1676
+ "13765": {
1677
+ "ja": "エクストリームクルーver.",
1678
+ "ko": "익스트림 크루 버전",
1679
+ "nl": "Extreme-crew-versie",
1680
+ "fr": "Version Crew Extrême",
1681
+ "de": "Extrem-Crew-Version",
1682
+ "es": "Versión Extrema en grupo",
1683
+ "en": "Extreme Crew Version",
1684
+ "da": "Ekstrem trup-version",
1685
+ "fi": "Extreme Crew -versio",
1686
+ "nb": "Ekstrembesetning-versjon",
1687
+ "sv": "Extrem gruppversion",
1688
+ "pt-br": "Versão extrema em equipe",
1689
+ "it": "Versione corpo di ballo Extreme",
1690
+ "zh-cn": "极限团队版本",
1691
+ "ru": "Командная экстрим-версия",
1692
+ "zh-tw": "極限團隊版本"
1693
+ },
1694
+ "13788": {
1695
+ "ja": "刀ver.",
1696
+ "ko": "검무 버전",
1697
+ "nl": "Katana-versie",
1698
+ "fr": "Version Katana",
1699
+ "de": "Katana-Version",
1700
+ "es": "Versión katana",
1701
+ "en": "Katana Version",
1702
+ "da": "Katana-version",
1703
+ "fi": "Katanaversio",
1704
+ "nb": "Katana-versjon",
1705
+ "sv": "Katanaversion",
1706
+ "pt-br": "Versão katana",
1707
+ "it": "Versione katana",
1708
+ "zh-cn": "武士刀版本",
1709
+ "ru": "Версия с катаной",
1710
+ "zh-tw": "武士刀版本"
1711
+ },
1712
+ "13813": {
1713
+ "ja": "Electro",
1714
+ "ko": "Electro",
1715
+ "nl": "Electro",
1716
+ "fr": "Électro",
1717
+ "de": "Electro",
1718
+ "es": "Electro",
1719
+ "en": "Electro",
1720
+ "da": "Elektro",
1721
+ "fi": "Electro",
1722
+ "nb": "Elektro",
1723
+ "sv": "Electro",
1724
+ "pt-br": "Electro",
1725
+ "it": "Electro",
1726
+ "zh-cn": "Electro",
1727
+ "ru": "Electro",
1728
+ "zh-tw": "Electro"
1729
+ },
1730
+ "13817": {
1731
+ "ja": "Rock",
1732
+ "ko": "Rock",
1733
+ "nl": "Rock",
1734
+ "fr": "Rock",
1735
+ "de": "Rock",
1736
+ "es": "Rock",
1737
+ "en": "Rock",
1738
+ "da": "Rock",
1739
+ "fi": "Rock",
1740
+ "nb": "Rock",
1741
+ "sv": "Rock",
1742
+ "pt-br": "Rock",
1743
+ "it": "Rock",
1744
+ "zh-cn": "Rock",
1745
+ "ru": "Rock",
1746
+ "zh-tw": "Rock"
1747
+ },
1748
+ "13820": {
1749
+ "ja": "Panda",
1750
+ "ko": "Panda",
1751
+ "nl": "Panda",
1752
+ "fr": "Panda",
1753
+ "de": "Panda",
1754
+ "es": "Panda",
1755
+ "en": "Panda",
1756
+ "da": "Panda",
1757
+ "fi": "Panda",
1758
+ "nb": "Panda",
1759
+ "sv": "Panda",
1760
+ "pt-br": "Panda",
1761
+ "it": "Panda",
1762
+ "zh-cn": "Panda",
1763
+ "ru": "Panda",
1764
+ "zh-tw": "Panda"
1765
+ },
1766
+ "13825": {
1767
+ "ja": "Eurodance",
1768
+ "ko": "Eurodance",
1769
+ "nl": "Eurodance",
1770
+ "fr": "Eurodance",
1771
+ "de": "Eurodance",
1772
+ "es": "Eurodance",
1773
+ "en": "Eurodance",
1774
+ "da": "Eurodance",
1775
+ "fi": "Eurodance",
1776
+ "nb": "Eurodance",
1777
+ "sv": "Eurodance",
1778
+ "pt-br": "Eurodança",
1779
+ "it": "Eurodance",
1780
+ "zh-cn": "Eurodance",
1781
+ "ru": "Eurodance",
1782
+ "zh-tw": "Eurodance"
1783
+ },
1784
+ "13829": {
1785
+ "ja": "Asian",
1786
+ "ko": "Asian",
1787
+ "nl": "Aziatisch",
1788
+ "fr": "Asiatique",
1789
+ "de": "Asiatisch",
1790
+ "es": "Asiática",
1791
+ "en": "Asian",
1792
+ "da": "Asiatisk",
1793
+ "fi": "Aasia",
1794
+ "nb": "Asiatisk",
1795
+ "sv": "Asiatiskt",
1796
+ "pt-br": "Asiático",
1797
+ "it": "Asiatico",
1798
+ "zh-cn": "Asian",
1799
+ "ru": "Asian",
1800
+ "zh-tw": "Asian"
1801
+ },
1802
+ "13831": {
1803
+ "ja": "Sit down",
1804
+ "ko": "Sit down",
1805
+ "nl": "Sit down",
1806
+ "fr": "Assis",
1807
+ "de": "Sitzen",
1808
+ "es": "A sentarse",
1809
+ "en": "Sit down",
1810
+ "da": "Sid ned",
1811
+ "fi": "Istu alas",
1812
+ "nb": "Sitt ned",
1813
+ "sv": "Sitt ner",
1814
+ "pt-br": "Sentar",
1815
+ "it": "Seduti",
1816
+ "zh-cn": "Sit down",
1817
+ "ru": "Sit down",
1818
+ "zh-tw": "Sit down"
1819
+ },
1820
+ "13890": {
1821
+ "ja": "ファンメイドver.",
1822
+ "ko": "팬 제작 버전",
1823
+ "nl": "Fan-versie",
1824
+ "fr": "Version Fan",
1825
+ "de": "Fan-Version",
1826
+ "es": "Versión creada por los fans",
1827
+ "en": "Fan-Made Version",
1828
+ "da": "Fan-version",
1829
+ "fi": "Fanin tekemä versio",
1830
+ "nb": "Fanlaget versjon",
1831
+ "sv": "Spelarskapad version",
1832
+ "pt-br": "Versão dos fãs",
1833
+ "it": "Versione dei fan",
1834
+ "zh-cn": "粉丝制作版本",
1835
+ "ru": "Фанатская версия",
1836
+ "zh-tw": "粉絲製作版本"
1837
+ },
1838
+ "13958": {
1839
+ "ja": "VIPメイドver.",
1840
+ "ko": "VIP 제작 버전",
1841
+ "nl": "Vip-versie",
1842
+ "fr": "Version VIP",
1843
+ "de": "VIP-Version",
1844
+ "es": "Versión creada por los vips",
1845
+ "en": "VIP-Made Version",
1846
+ "da": "VIP-version",
1847
+ "fi": "VIP:n tekemä versio",
1848
+ "nb": "VIP-laget versjon",
1849
+ "sv": "VIP-skapad version",
1850
+ "pt-br": "Versão dos Vips",
1851
+ "it": "Versione dei VIP",
1852
+ "zh-cn": "VIP 制作版本",
1853
+ "ru": "VIP-версия",
1854
+ "zh-tw": "VIP 製作版本"
1855
+ },
1856
+ "13976": {
1857
+ "ja": "バービーver.",
1858
+ "ko": "바비 버전",
1859
+ "nl": "Barbie-versie",
1860
+ "fr": "Version Barbie",
1861
+ "de": "Barbie-Version",
1862
+ "es": "Versión Barbie",
1863
+ "en": "Barbie Version",
1864
+ "da": "Barbie-version",
1865
+ "fi": "Barbie-versio",
1866
+ "nb": "Barbie-versjon",
1867
+ "sv": "Barbie-version",
1868
+ "pt-br": "Versão Barbie",
1869
+ "it": "Versione Barbie",
1870
+ "zh-cn": "芭比版本",
1871
+ "ru": "Версия от Барби",
1872
+ "zh-tw": "芭比版本"
1873
+ },
1874
+ "14002": {
1875
+ "ja": "ABBA: You Can Dance",
1876
+ "ko": "ABBA: You Can Dance",
1877
+ "nl": "ABBA: You Can Dance",
1878
+ "fr": "ABBA: You Can Dance",
1879
+ "de": "ABBA: You Can Dance",
1880
+ "es": "ABBA: You Can Dance",
1881
+ "en": "ABBA: You Can Dance",
1882
+ "da": "ABBA: You Can Dance",
1883
+ "fi": "ABBA: You Can Dance",
1884
+ "nb": "ABBA: You Can Dance",
1885
+ "sv": "ABBA: You Can Dance",
1886
+ "pt-br": "ABBA: You Can Dance",
1887
+ "it": "ABBA: You Can Dance",
1888
+ "zh-cn": "《ABBA: You Can Dance》",
1889
+ "ru": "ABBA: You Can Dance",
1890
+ "zh-tw": "《ABBA: You Can Dance》"
1891
+ },
1892
+ "14520": {
1893
+ "ja": "スタントver.",
1894
+ "ko": "스턴트 버전",
1895
+ "nl": "Stunt-versie",
1896
+ "fr": "Version Cascade",
1897
+ "de": "Stunt-Version",
1898
+ "es": "Versión acrobática",
1899
+ "en": "Stunt Version",
1900
+ "da": "Stuntversion",
1901
+ "fi": "Stunttiversio",
1902
+ "nb": "Stunt-versjon",
1903
+ "sv": "Stuntversion",
1904
+ "pt-br": "Versão acrobacia",
1905
+ "it": "Versione stuntman",
1906
+ "zh-cn": "特技版本",
1907
+ "ru": "Версия с трюками",
1908
+ "zh-tw": "特技版本"
1909
+ },
1910
+ "14522": {
1911
+ "ja": "トマトver.",
1912
+ "ko": "토마토 버전",
1913
+ "nl": "Tomaat-versie",
1914
+ "fr": "Version Tomate",
1915
+ "de": "Tomaten-Version",
1916
+ "es": "Versión tomate",
1917
+ "en": "Tomato Version",
1918
+ "da": "Tomatversion",
1919
+ "fi": "Tomaattiversio",
1920
+ "nb": "Tomatversjon",
1921
+ "sv": "Tomatversion",
1922
+ "pt-br": "Versão tomate",
1923
+ "it": "Versione pomodoro",
1924
+ "zh-cn": "番茄版本",
1925
+ "ru": "Томатная версия",
1926
+ "zh-tw": "番茄版本"
1927
+ },
1928
+ "14524": {
1929
+ "ja": "バブルガムver.",
1930
+ "ko": "풍선껌 버전",
1931
+ "nl": "Kauwgom-versie",
1932
+ "fr": "Version Chewing-gum",
1933
+ "de": "Kaugummi-Version",
1934
+ "es": "Versión chicle",
1935
+ "en": "Bubblegum Version",
1936
+ "da": "Tyggegummiversion",
1937
+ "fi": "Purkkaversio",
1938
+ "nb": "Tyggegummi-versjon",
1939
+ "sv": "Tuggummiversion",
1940
+ "pt-br": "Versão chiclete",
1941
+ "it": "Versione gomma americana",
1942
+ "zh-cn": "口香糖版本",
1943
+ "ru": "Версия со жвачкой",
1944
+ "zh-tw": "口香糖版本"
1945
+ },
1946
+ "14526": {
1947
+ "ja": "サブウェイver.",
1948
+ "ko": "지하철 버전",
1949
+ "nl": "Metro-versie",
1950
+ "fr": "Version Métro",
1951
+ "de": "U-Bahn-Version",
1952
+ "es": "Versión metro",
1953
+ "en": "Subway Version",
1954
+ "da": "Subwayversion",
1955
+ "fi": "Metroversio",
1956
+ "nb": "T-bane-versjon",
1957
+ "sv": "Tunnelbaneversion",
1958
+ "pt-br": "Versão metrô",
1959
+ "it": "Versione metropolitana",
1960
+ "zh-cn": "地铁版本",
1961
+ "ru": "Версия для метро",
1962
+ "zh-tw": "地鐵版本"
1963
+ },
1964
+ "14528": {
1965
+ "ja": "ファイトver.",
1966
+ "ko": "결투 버전",
1967
+ "nl": "Vecht-versie",
1968
+ "fr": "Version Combat",
1969
+ "de": "Kampf-Version",
1970
+ "es": "Versión lucha",
1971
+ "en": "Fight Version",
1972
+ "da": "Kampversion",
1973
+ "fi": "Tappeluversio",
1974
+ "nb": "Kampversjon",
1975
+ "sv": "Kampversion",
1976
+ "pt-br": "Versão luta",
1977
+ "it": "Versione lotta",
1978
+ "zh-cn": "战斗版本",
1979
+ "ru": "Боевая версия",
1980
+ "zh-tw": "戰鬥版本"
1981
+ },
1982
+ "14530": {
1983
+ "ja": "サイクリングver.",
1984
+ "ko": "사이클 버전",
1985
+ "nl": "Fiets-versie",
1986
+ "fr": "Version Cyclisme",
1987
+ "de": "Radfahr-Version",
1988
+ "es": "Versión ciclista",
1989
+ "en": "Cycling Version",
1990
+ "da": "Cykelversion",
1991
+ "fi": "Pyöräilyversio",
1992
+ "nb": "Sykkelversjon",
1993
+ "sv": "Cykelversion",
1994
+ "pt-br": "Versão ciclismo",
1995
+ "it": "Versione bicicletta",
1996
+ "zh-cn": "自行车版本",
1997
+ "ru": "Версия для велосипеда",
1998
+ "zh-tw": "自行車版本"
1999
+ },
2000
+ "14532": {
2001
+ "ja": "フットボールver.",
2002
+ "ko": "축구 버전",
2003
+ "nl": "Voetbal-versie",
2004
+ "fr": "Version Football",
2005
+ "de": "Football-Version",
2006
+ "es": "Versión futbolera",
2007
+ "en": "Football Version",
2008
+ "da": "Fodboldversion",
2009
+ "fi": "Jalkapalloversio",
2010
+ "nb": "Fotballversjon",
2011
+ "sv": "Fotbollsversion",
2012
+ "pt-br": "Versão futebol",
2013
+ "it": "Versione calcio",
2014
+ "zh-cn": "足球版本",
2015
+ "ru": "Футбольная версия",
2016
+ "zh-tw": "足球版本"
2017
+ },
2018
+ "14620": {
2019
+ "ja": "World Cupチャンピオンver.",
2020
+ "ko": "월드컵 챔피언 버전",
2021
+ "nl": "Wereldkampioen-versie",
2022
+ "fr": "Version Champion de la World Cup",
2023
+ "de": "Weltmeister-Version ",
2024
+ "es": "Versión del campeón de la World Cup",
2025
+ "en": "World Cup Champion Version",
2026
+ "da": "World Cup Champion-version",
2027
+ "fi": "World Cup -mestarin versio",
2028
+ "nb": "Verdensmesterversjon",
2029
+ "sv": "VM-mästarversion",
2030
+ "pt-br": "Versão do campeão da Copa do Mundo",
2031
+ "it": "Vers. campione del mondo",
2032
+ "zh-cn": "世界杯冠军版本",
2033
+ "ru": "Версия чемпиона мира",
2034
+ "zh-tw": "世界盃冠軍版本"
2035
+ },
2036
+ "14633": {
2037
+ "ja": "ラビッツピーチver.",
2038
+ "ko": "래비드 피치 버전",
2039
+ "nl": "Rabbid Peach-versie",
2040
+ "fr": "Version Rabbid Peach",
2041
+ "de": "Rabbid Peach-Version",
2042
+ "es": "Versión Rabbid Peach",
2043
+ "en": "Rabbid Peach Version",
2044
+ "da": "Version: Rabbid Peach",
2045
+ "fi": "Rabbid Peach -versio",
2046
+ "nb": "Rabbid Peach-versjon",
2047
+ "sv": "Rabbid Peach-version",
2048
+ "pt-br": "Versão Rabbid Peach",
2049
+ "it": "Versione Rabbid Peach",
2050
+ "zh-cn": "疯兔桃花公主版本",
2051
+ "ru": "Версия от Кролика-Пич",
2052
+ "zh-tw": "瘋兔碧姬公主版本"
2053
+ },
2054
+ "14688": {
2055
+ "ja": "Just Dance 2020",
2056
+ "ko": "Just Dance 2020",
2057
+ "nl": "Just Dance 2020",
2058
+ "fr": "Just Dance 2020",
2059
+ "de": "Just Dance 2020",
2060
+ "es": "Just Dance 2020",
2061
+ "en": "Just Dance 2020",
2062
+ "da": "Just Dance 2020",
2063
+ "fi": "Just Dance 2020",
2064
+ "nb": "Just Dance 2020",
2065
+ "sv": "Just Dance 2020",
2066
+ "pt-br": "Just Dance 2020",
2067
+ "it": "Just Dance 2020",
2068
+ "zh-cn": "《Just Dance 2020》",
2069
+ "ru": "Just Dance 2020",
2070
+ "zh-tw": "《Just Dance 2020》"
2071
+ },
2072
+ "15157": {
2073
+ "ja": "マッドサイエンティストver.",
2074
+ "ko": "정신나간 과학자 버전",
2075
+ "nl": "Gekke professor-versie",
2076
+ "fr": "Version Savant Fou",
2077
+ "de": "Verrückter-Wissenschaftler-Version",
2078
+ "es": "Versión científico loco",
2079
+ "en": "Mad Scientist Version",
2080
+ "da": "Version: Gal videnskabsmand",
2081
+ "fi": "Hullu tiedemies -versio",
2082
+ "nb": "Gal vitenskapsmann-versjon",
2083
+ "sv": "Galen professor-version",
2084
+ "pt-br": "Versão Cientista Maluco",
2085
+ "it": "Versione scienziato pazzo",
2086
+ "zh-cn": "疯狂科学家版本",
2087
+ "ru": "Версия безумного ученого",
2088
+ "zh-tw": "瘋狂科學家版本"
2089
+ },
2090
+ "15158": {
2091
+ "ja": "タンゴver.",
2092
+ "ko": "탱고 버전",
2093
+ "nl": "Tangoversie",
2094
+ "fr": "Version Tango",
2095
+ "de": "Tango-Version",
2096
+ "es": "Versión tango",
2097
+ "en": "Tango Version",
2098
+ "da": "Version: Tango",
2099
+ "fi": "Tangoversio",
2100
+ "nb": "Tangoversjon",
2101
+ "sv": "Tangoversion",
2102
+ "pt-br": "Versão tango",
2103
+ "it": "Versione tango",
2104
+ "zh-cn": "探戈版本",
2105
+ "ru": "Версия танго",
2106
+ "zh-tw": "探戈版本"
2107
+ },
2108
+ "15159": {
2109
+ "ja": "1920年代ver.",
2110
+ "ko": "1920년대 버전",
2111
+ "nl": "Twenties-versie",
2112
+ "fr": "Version Années Folles",
2113
+ "de": "Zwanziger-Jahre-Version",
2114
+ "es": "Versión años 20",
2115
+ "en": "Twenties Version",
2116
+ "da": "20'er-version",
2117
+ "fi": "20-luvun versio",
2118
+ "nb": "Tjuetalls-versjon",
2119
+ "sv": "Tjugotalsversion",
2120
+ "pt-br": "Versão anos 20",
2121
+ "it": "Versione anni '20",
2122
+ "zh-cn": "20 年代版本",
2123
+ "ru": "Версия двадцатых",
2124
+ "zh-tw": "20 年代版本"
2125
+ },
2126
+ "15160": {
2127
+ "ja": "サッシーver.",
2128
+ "ko": "엽기 버전",
2129
+ "nl": "Pittige versie",
2130
+ "fr": "Version Effrontée",
2131
+ "de": "Freche Version",
2132
+ "es": "Versión atrevida",
2133
+ "en": "Sassy Version",
2134
+ "da": "Version: Næsvis",
2135
+ "fi": "Kisailuversio",
2136
+ "nb": "Sassy versjon",
2137
+ "sv": "Kaxig version",
2138
+ "pt-br": "Versão com atitude",
2139
+ "it": "Versione vivace",
2140
+ "zh-cn": "时髦版本",
2141
+ "ru": "Дерзкая версия",
2142
+ "zh-tw": "時髦版本"
2143
+ },
2144
+ "15161": {
2145
+ "ja": "テニスver.",
2146
+ "ko": "테니스 버전",
2147
+ "nl": "Tennisversie",
2148
+ "fr": "Version Tennis",
2149
+ "de": "Tennis-Version",
2150
+ "es": "Versión tenis",
2151
+ "en": "Tennis Version",
2152
+ "da": "Version: Tennis",
2153
+ "fi": "Tennisversio",
2154
+ "nb": "Tennisversjon",
2155
+ "sv": "Tennisversion",
2156
+ "pt-br": "Versão tênis",
2157
+ "it": "Versione tennis",
2158
+ "zh-cn": "网球版本",
2159
+ "ru": "Версия для тенниса",
2160
+ "zh-tw": "網球版本"
2161
+ },
2162
+ "15162": {
2163
+ "ja": "かくれんぼver.",
2164
+ "ko": "숨바꼭질 버전",
2165
+ "nl": "Verstoppertje-versie",
2166
+ "fr": "Version Cache-cache",
2167
+ "de": "Verstecken-Version",
2168
+ "es": "Versión escondite",
2169
+ "en": "Hide-And-Seek Version",
2170
+ "da": "Version: Gemmeleg",
2171
+ "fi": "Piilosilla-versio",
2172
+ "nb": "Gjemsel-versjon",
2173
+ "sv": "Kurragömmaversion",
2174
+ "pt-br": "Versão esconde-esconde",
2175
+ "it": "Versione nascondino",
2176
+ "zh-cn": "捉迷藏版本",
2177
+ "ru": "Версия для игры в прятки",
2178
+ "zh-tw": "捉迷藏版本"
2179
+ },
2180
+ "15172": {
2181
+ "ja": "Jpop",
2182
+ "ko": "Jpop",
2183
+ "nl": "Jpop",
2184
+ "fr": "Jpop",
2185
+ "de": "Jpop",
2186
+ "es": "JPop",
2187
+ "en": "Jpop",
2188
+ "da": "Jpop",
2189
+ "fi": "J-pop",
2190
+ "nb": "Jpop",
2191
+ "sv": "J-pop",
2192
+ "pt-br": "Jpop",
2193
+ "it": "Jpop",
2194
+ "zh-cn": "Jpop",
2195
+ "ru": "Jpop",
2196
+ "zh-tw": "Jpop"
2197
+ },
2198
+ "15173": {
2199
+ "ja": "Hip-hop",
2200
+ "ko": "Hip-hop",
2201
+ "nl": "Hiphop",
2202
+ "fr": "Hiphop",
2203
+ "de": "Hiphop",
2204
+ "es": "Hiphop",
2205
+ "en": "Hip-hop",
2206
+ "da": "Hiphop",
2207
+ "fi": "Hiphop",
2208
+ "nb": "Hiphop",
2209
+ "sv": "Hiphop",
2210
+ "pt-br": "Hiphop",
2211
+ "it": "Hip hop",
2212
+ "zh-cn": "Hip-Hop",
2213
+ "ru": "Hiphop",
2214
+ "zh-tw": "Hip-Hop"
2215
+ },
2216
+ "15174": {
2217
+ "ja": "Pop",
2218
+ "ko": "Pop",
2219
+ "nl": "Pop",
2220
+ "fr": "Pop",
2221
+ "de": "Pop",
2222
+ "es": "Pop",
2223
+ "en": "Pop",
2224
+ "da": "Pop",
2225
+ "fi": "Pop",
2226
+ "nb": "Pop",
2227
+ "sv": "Pop",
2228
+ "pt-br": "Pop",
2229
+ "it": "Pop",
2230
+ "zh-cn": "Pop",
2231
+ "ru": "Pop",
2232
+ "zh-tw": "Pop"
2233
+ },
2234
+ "15175": {
2235
+ "ja": "Dancehall",
2236
+ "ko": "Dancehall",
2237
+ "nl": "Dancehall",
2238
+ "fr": "Dancehall",
2239
+ "de": "Dancehall",
2240
+ "es": "Dancehall",
2241
+ "en": "Dancehall",
2242
+ "da": "Dancehall",
2243
+ "fi": "Dancehall",
2244
+ "nb": "Dansesal",
2245
+ "sv": "Dancehall",
2246
+ "pt-br": "Dancehall",
2247
+ "it": "Dancehall",
2248
+ "zh-cn": "Dancehall",
2249
+ "ru": "Dancehall",
2250
+ "zh-tw": "Dancehall"
2251
+ },
2252
+ "15176": {
2253
+ "ja": "Country",
2254
+ "ko": "Country",
2255
+ "nl": "Country",
2256
+ "fr": "Country",
2257
+ "de": "Country",
2258
+ "es": "Country",
2259
+ "en": "Country",
2260
+ "da": "Country",
2261
+ "fi": "Country",
2262
+ "nb": "Country",
2263
+ "sv": "Country",
2264
+ "pt-br": "Country",
2265
+ "it": "Country",
2266
+ "zh-cn": "Country",
2267
+ "ru": "Country",
2268
+ "zh-tw": "Country"
2269
+ },
2270
+ "15177": {
2271
+ "ja": "Middle East",
2272
+ "ko": "Middle East",
2273
+ "nl": "Midden-Oosten",
2274
+ "fr": "Moyen-Orient",
2275
+ "de": "Nahöstlich",
2276
+ "es": "Oriente Medio",
2277
+ "en": "Middle East",
2278
+ "da": "Mellemøsten",
2279
+ "fi": "Lähi-itä",
2280
+ "nb": "Midtøsten",
2281
+ "sv": "Mellanöstern",
2282
+ "pt-br": "Oriente Médio",
2283
+ "it": "Medio Oriente",
2284
+ "zh-cn": "Middle East",
2285
+ "ru": "Middle East",
2286
+ "zh-tw": "Middle East"
2287
+ },
2288
+ "15178": {
2289
+ "ja": "Brazilian",
2290
+ "ko": "Brazilian",
2291
+ "nl": "Braziliaans",
2292
+ "fr": "Brésilien",
2293
+ "de": "Brasilianisch",
2294
+ "es": "Brasileña",
2295
+ "en": "Brazilian",
2296
+ "da": "Brasiliansk",
2297
+ "fi": "Brasilia",
2298
+ "nb": "Brasiliansk",
2299
+ "sv": "Brasilianskt",
2300
+ "pt-br": "Brasileiro",
2301
+ "it": "Brasiliano",
2302
+ "zh-cn": "Brazilian",
2303
+ "ru": "Brazilian",
2304
+ "zh-tw": "Brazilian"
2305
+ },
2306
+ "15179": {
2307
+ "ja": "African",
2308
+ "ko": "African",
2309
+ "nl": "Afrikaans",
2310
+ "fr": "Africain",
2311
+ "de": "Afrikanisch",
2312
+ "es": "Africana",
2313
+ "en": "African",
2314
+ "da": "Afrikansk",
2315
+ "fi": "Afrikka",
2316
+ "nb": "Afrikansk",
2317
+ "sv": "Afrikanskt",
2318
+ "pt-br": "Africano",
2319
+ "it": "Africano",
2320
+ "zh-cn": "African",
2321
+ "ru": "African",
2322
+ "zh-tw": "African"
2323
+ },
2324
+ "15180": {
2325
+ "ja": "Eastern Europe",
2326
+ "ko": "Eastern Europe",
2327
+ "nl": "Oost-Europa",
2328
+ "fr": "Europe de l'Est",
2329
+ "de": "Osteuropäisch",
2330
+ "es": "Europa del Este",
2331
+ "en": "Eastern Europe",
2332
+ "da": "Østeuropa",
2333
+ "fi": "Itä-Eurooppa",
2334
+ "nb": "Øst-Europa",
2335
+ "sv": "Östeuropa",
2336
+ "pt-br": "Leste Europeu",
2337
+ "it": "Europa orientale",
2338
+ "zh-cn": "Eastern Europe",
2339
+ "ru": "Eastern Europe",
2340
+ "zh-tw": "Eastern Europe"
2341
+ },
2342
+ "15181": {
2343
+ "ja": "Alternate",
2344
+ "ko": "Alternate",
2345
+ "nl": "Alternatief",
2346
+ "fr": "Alternative",
2347
+ "de": "Alternativ",
2348
+ "es": "Alternativa",
2349
+ "en": "Alternate",
2350
+ "da": "Alternative",
2351
+ "fi": "Vaihtoehtoinen",
2352
+ "nb": "Alternativ",
2353
+ "sv": "Alternativa",
2354
+ "pt-br": "Alternativa",
2355
+ "it": "Alternativa",
2356
+ "zh-cn": "Alternate",
2357
+ "ru": "Alternate",
2358
+ "zh-tw": "Alternate"
2359
+ },
2360
+ "15182": {
2361
+ "ja": "Sing along",
2362
+ "ko": "Sing Along",
2363
+ "nl": "Meezingen",
2364
+ "fr": "Karaoké",
2365
+ "de": "Mitsingen",
2366
+ "es": "Cantar juntos",
2367
+ "en": "Sing along",
2368
+ "da": "Syng med",
2369
+ "fi": "Yhteislaulu",
2370
+ "nb": "Singalong",
2371
+ "sv": "Sjung med",
2372
+ "pt-br": "Cante junto",
2373
+ "it": "Karaoke",
2374
+ "zh-cn": "Sing Along",
2375
+ "ru": "Sing Along",
2376
+ "zh-tw": "Sing Along"
2377
+ },
2378
+ "15183": {
2379
+ "ja": "Sweat",
2380
+ "ko": "Sweat",
2381
+ "nl": "Sweat",
2382
+ "fr": "Sweat",
2383
+ "de": "Sweat",
2384
+ "es": "Sweat",
2385
+ "en": "Sweat",
2386
+ "da": "Sweat Mode",
2387
+ "fi": "Sweat",
2388
+ "nb": "Sweat",
2389
+ "sv": "Sweat",
2390
+ "pt-br": "Sweat",
2391
+ "it": "Sweat",
2392
+ "zh-cn": "Sweat",
2393
+ "ru": "Sweat",
2394
+ "zh-tw": "Sweat"
2395
+ },
2396
+ "15184": {
2397
+ "ja": "60s",
2398
+ "ko": "60s",
2399
+ "nl": "Jaren 60",
2400
+ "fr": "Années 60",
2401
+ "de": "60er",
2402
+ "es": "Los 60",
2403
+ "en": "60s",
2404
+ "da": "60'erne",
2405
+ "fi": "60-luku",
2406
+ "nb": "60-talls",
2407
+ "sv": "60-tal",
2408
+ "pt-br": "Anos 60",
2409
+ "it": "Anni '60",
2410
+ "zh-cn": "60s",
2411
+ "ru": "60s",
2412
+ "zh-tw": "60s"
2413
+ },
2414
+ "15185": {
2415
+ "ja": "70s",
2416
+ "ko": "70s",
2417
+ "nl": "Jaren 70",
2418
+ "fr": "Années 70",
2419
+ "de": "70er",
2420
+ "es": "Los 70",
2421
+ "en": "70s",
2422
+ "da": "70'erne",
2423
+ "fi": "70-luku",
2424
+ "nb": "70-talls",
2425
+ "sv": "70-tal",
2426
+ "pt-br": "Anos 70",
2427
+ "it": "Anni '70",
2428
+ "zh-cn": "70s",
2429
+ "ru": "70s",
2430
+ "zh-tw": "70s"
2431
+ },
2432
+ "15186": {
2433
+ "ja": "90s",
2434
+ "ko": "90s",
2435
+ "nl": "Jaren 90",
2436
+ "fr": "Années 90",
2437
+ "de": "90er",
2438
+ "es": "Los 90 ",
2439
+ "en": "90s",
2440
+ "da": "90'erne",
2441
+ "fi": "90-luku",
2442
+ "nb": "90-talls",
2443
+ "sv": "90-tal",
2444
+ "pt-br": "Anos 90",
2445
+ "it": "Anni '90",
2446
+ "zh-cn": "90s",
2447
+ "ru": "90s",
2448
+ "zh-tw": "90s"
2449
+ },
2450
+ "15187": {
2451
+ "ja": "2000s",
2452
+ "ko": "2000s",
2453
+ "nl": "Jaren 2000",
2454
+ "fr": "Années 2000",
2455
+ "de": "2000er",
2456
+ "es": "Los 2000",
2457
+ "en": "2000s",
2458
+ "da": "2000'erne",
2459
+ "fi": "2000-luku",
2460
+ "nb": "2000-talls",
2461
+ "sv": "00-tal",
2462
+ "pt-br": "Anos 2000",
2463
+ "it": "2000",
2464
+ "zh-cn": "2000s",
2465
+ "ru": "2000s",
2466
+ "zh-tw": "2000s"
2467
+ },
2468
+ "15188": {
2469
+ "ja": "Oldies",
2470
+ "ko": "Oldies",
2471
+ "nl": "Gouwe ouwe",
2472
+ "fr": "Rétro",
2473
+ "de": "Oldies",
2474
+ "es": "De siempre",
2475
+ "en": "Oldies",
2476
+ "da": "Klassikere",
2477
+ "fi": "Vanhat klassikot",
2478
+ "nb": "Klassikere",
2479
+ "sv": "Gamla godingar",
2480
+ "pt-br": "Antigas",
2481
+ "it": "Vecchie glorie",
2482
+ "zh-cn": "Oldies",
2483
+ "ru": "Oldies",
2484
+ "zh-tw": "Oldies"
2485
+ },
2486
+ "15189": {
2487
+ "ja": "Romantic",
2488
+ "ko": "Romantic",
2489
+ "nl": "Romantisch",
2490
+ "fr": "Romantique",
2491
+ "de": "Romantisch",
2492
+ "es": "Románticas",
2493
+ "en": "Romantic",
2494
+ "da": "Romantisk",
2495
+ "fi": "Romanttinen",
2496
+ "nb": "Romantisk",
2497
+ "sv": "Romantiskt",
2498
+ "pt-br": "Românticas",
2499
+ "it": "Romantici",
2500
+ "zh-cn": "Romantic",
2501
+ "ru": "Romantic",
2502
+ "zh-tw": "Romantic"
2503
+ },
2504
+ "15190": {
2505
+ "ja": "Tribal",
2506
+ "ko": "Tribal",
2507
+ "nl": "Tribaal",
2508
+ "fr": "Tribal",
2509
+ "de": "Stammesmusik",
2510
+ "es": "Tribales",
2511
+ "en": "Tribal",
2512
+ "da": "Stammemusik",
2513
+ "fi": "Heimot",
2514
+ "nb": "Stamme",
2515
+ "sv": "Etno",
2516
+ "pt-br": "Tribais",
2517
+ "it": "Tribali",
2518
+ "zh-cn": "Tribal",
2519
+ "ru": "Tribal",
2520
+ "zh-tw": "Tribal"
2521
+ },
2522
+ "15191": {
2523
+ "ja": "Party",
2524
+ "ko": "Party",
2525
+ "nl": "Party",
2526
+ "fr": "Fête",
2527
+ "de": "Party",
2528
+ "es": "Fiesta",
2529
+ "en": "Party",
2530
+ "da": "Party",
2531
+ "fi": "Bileet",
2532
+ "nb": "Party",
2533
+ "sv": "Fest",
2534
+ "pt-br": "Festa",
2535
+ "it": "Party",
2536
+ "zh-cn": "Party",
2537
+ "ru": "Party",
2538
+ "zh-tw": "Party"
2539
+ },
2540
+ "15192": {
2541
+ "ja": "Family",
2542
+ "ko": "Family",
2543
+ "nl": "Gezin",
2544
+ "fr": "Famille",
2545
+ "de": "Familie",
2546
+ "es": "Familiares",
2547
+ "en": "Family",
2548
+ "da": "Familie",
2549
+ "fi": "Perhe",
2550
+ "nb": "Familie",
2551
+ "sv": "Familj",
2552
+ "pt-br": "Familiares",
2553
+ "it": "Famiglie",
2554
+ "zh-cn": "Family",
2555
+ "ru": "Family",
2556
+ "zh-tw": "Family"
2557
+ },
2558
+ "15193": {
2559
+ "ja": "Historical",
2560
+ "ko": "Historical",
2561
+ "nl": "Historisch",
2562
+ "fr": "Historique",
2563
+ "de": "Historisch",
2564
+ "es": "Históricas",
2565
+ "en": "Historical",
2566
+ "da": "Historisk",
2567
+ "fi": "Historia",
2568
+ "nb": "Historisk",
2569
+ "sv": "Historiskt",
2570
+ "pt-br": "Históricas",
2571
+ "it": "Storici",
2572
+ "zh-cn": "Historical",
2573
+ "ru": "Historical",
2574
+ "zh-tw": "Historical"
2575
+ },
2576
+ "15194": {
2577
+ "ja": "Cartoon",
2578
+ "ko": "Cartoon",
2579
+ "nl": "Tekenfilm",
2580
+ "fr": "Dessin animé",
2581
+ "de": "Zeichentrick",
2582
+ "es": "Dibujos",
2583
+ "en": "Cartoon",
2584
+ "da": "Tegnefilm",
2585
+ "fi": "Piirretyt",
2586
+ "nb": "Tegneserie",
2587
+ "sv": "Tecknat",
2588
+ "pt-br": "Desenhos",
2589
+ "it": "Cartoni animati",
2590
+ "zh-cn": "Cartoon",
2591
+ "ru": "Cartoon",
2592
+ "zh-tw": "Cartoon"
2593
+ },
2594
+ "15195": {
2595
+ "ja": "Food",
2596
+ "ko": "Food",
2597
+ "nl": "Eten",
2598
+ "fr": "Nourriture",
2599
+ "de": "Lebensmittel",
2600
+ "es": "Comida",
2601
+ "en": "Food",
2602
+ "da": "Mad",
2603
+ "fi": "Ruoka",
2604
+ "nb": "Mat",
2605
+ "sv": "Mat",
2606
+ "pt-br": "Comida",
2607
+ "it": "Cibo",
2608
+ "zh-cn": "Food",
2609
+ "ru": "Food",
2610
+ "zh-tw": "Food"
2611
+ },
2612
+ "15196": {
2613
+ "ja": "Wacky",
2614
+ "ko": "Wacky",
2615
+ "nl": "Grappig",
2616
+ "fr": "Délire",
2617
+ "de": "Verrückt",
2618
+ "es": "Absurdas",
2619
+ "en": "Wacky",
2620
+ "da": "Skørt",
2621
+ "fi": "Hauska",
2622
+ "nb": "Sprøtt",
2623
+ "sv": "Tokigt",
2624
+ "pt-br": "Doidinhas",
2625
+ "it": "Stravaganti",
2626
+ "zh-cn": "Wacky",
2627
+ "ru": "Wacky",
2628
+ "zh-tw": "Wacky"
2629
+ },
2630
+ "15197": {
2631
+ "ja": "Artsy",
2632
+ "ko": "Artsy",
2633
+ "nl": "Kunstzinnig",
2634
+ "fr": "Artistique",
2635
+ "de": "Künstlerisch",
2636
+ "es": "Artísticas",
2637
+ "en": "Artsy",
2638
+ "da": "Kunstnerisk",
2639
+ "fi": "Taiteellinen",
2640
+ "nb": "Kunstnerisk",
2641
+ "sv": "Konstnärligt",
2642
+ "pt-br": "Artísticas",
2643
+ "it": "Artistici",
2644
+ "zh-cn": "Artsy",
2645
+ "ru": "Artsy",
2646
+ "zh-tw": "Artsy"
2647
+ },
2648
+ "15198": {
2649
+ "ja": "Cute",
2650
+ "ko": "Cute",
2651
+ "nl": "Schattig",
2652
+ "fr": "Mignon",
2653
+ "de": "Süß",
2654
+ "es": "Chulas",
2655
+ "en": "Cute",
2656
+ "da": "Sødt",
2657
+ "fi": "Söpö",
2658
+ "nb": "Søtt",
2659
+ "sv": "Gulligt",
2660
+ "pt-br": "Fofas",
2661
+ "it": "Teneri",
2662
+ "zh-cn": "Cute",
2663
+ "ru": "Cute",
2664
+ "zh-tw": "Cute"
2665
+ },
2666
+ "15275": {
2667
+ "ja": "Solo",
2668
+ "ko": "Solo",
2669
+ "nl": "Solo",
2670
+ "fr": "Solo",
2671
+ "de": "Solo",
2672
+ "es": "Solo",
2673
+ "en": "Solo",
2674
+ "da": "Solo",
2675
+ "fi": "Soolo",
2676
+ "nb": "Solo",
2677
+ "sv": "Solo",
2678
+ "pt-br": "Solo",
2679
+ "it": "Assolo",
2680
+ "zh-cn": "Solo",
2681
+ "ru": "Solo",
2682
+ "zh-tw": "Solo"
2683
+ },
2684
+ "15276": {
2685
+ "ja": "Duet",
2686
+ "ko": "Duet",
2687
+ "nl": "Duet",
2688
+ "fr": "Duo",
2689
+ "de": "Duett",
2690
+ "es": "Dueto",
2691
+ "en": "Duet",
2692
+ "da": "Duet",
2693
+ "fi": "Duetto",
2694
+ "nb": "Duett",
2695
+ "sv": "Duett",
2696
+ "pt-br": "Dueto",
2697
+ "it": "Duetto",
2698
+ "zh-cn": "Duet",
2699
+ "ru": "Duet",
2700
+ "zh-tw": "Duet"
2701
+ },
2702
+ "15277": {
2703
+ "ja": "Trio",
2704
+ "ko": "Trio",
2705
+ "nl": "Trio",
2706
+ "fr": "Trio",
2707
+ "de": "Trio",
2708
+ "es": "Trío",
2709
+ "en": "Trio",
2710
+ "da": "Trio",
2711
+ "fi": "Trio",
2712
+ "nb": "Trio",
2713
+ "sv": "Trio",
2714
+ "pt-br": "Trio",
2715
+ "it": "Trio",
2716
+ "zh-cn": "Trio",
2717
+ "ru": "Trio",
2718
+ "zh-tw": "Trio"
2719
+ },
2720
+ "15278": {
2721
+ "ja": "Quartet",
2722
+ "ko": "Quartet",
2723
+ "nl": "Kwartet",
2724
+ "fr": "Quatuor",
2725
+ "de": "Quartett",
2726
+ "es": "Cuarteto",
2727
+ "en": "Quartet",
2728
+ "da": "Kvartet",
2729
+ "fi": "Kvartetti",
2730
+ "nb": "Kvartett",
2731
+ "sv": "Kvartett",
2732
+ "pt-br": "Quarteto",
2733
+ "it": "Quartetto",
2734
+ "zh-cn": "Quartet",
2735
+ "ru": "Quartet",
2736
+ "zh-tw": "Quartet"
2737
+ },
2738
+ "15284": {
2739
+ "ja": "Kpop",
2740
+ "ko": "Kpop",
2741
+ "nl": "Kpop",
2742
+ "fr": "Kpop",
2743
+ "de": "K-Pop",
2744
+ "es": "Kpop",
2745
+ "en": "Kpop",
2746
+ "da": "Kpop",
2747
+ "fi": "K-pop",
2748
+ "nb": "Kpop",
2749
+ "sv": "K-pop",
2750
+ "pt-br": "Kpop",
2751
+ "it": "Kpop",
2752
+ "zh-cn": "Kpop",
2753
+ "ru": "Kpop",
2754
+ "zh-tw": "Kpop"
2755
+ },
2756
+ "15285": {
2757
+ "ja": "Easy",
2758
+ "ko": "Easy",
2759
+ "nl": "Makkelijk",
2760
+ "fr": "Facile",
2761
+ "de": "Leicht",
2762
+ "es": "Fácil",
2763
+ "en": "Easy",
2764
+ "da": "Let",
2765
+ "fi": "Helppo",
2766
+ "nb": "Lett",
2767
+ "sv": "Lätt",
2768
+ "pt-br": "Fácil",
2769
+ "it": "Facile",
2770
+ "zh-cn": "Easy",
2771
+ "ru": "Easy",
2772
+ "zh-tw": "Easy"
2773
+ },
2774
+ "15286": {
2775
+ "ja": "Medium",
2776
+ "ko": "Medium",
2777
+ "nl": "Medium",
2778
+ "fr": "Moyen",
2779
+ "de": "Mittel",
2780
+ "es": "Normal",
2781
+ "en": "Medium",
2782
+ "da": "Medium",
2783
+ "fi": "Keskitaso",
2784
+ "nb": "Middels",
2785
+ "sv": "Medel",
2786
+ "pt-br": "Média",
2787
+ "it": "Normale",
2788
+ "zh-cn": "Medium",
2789
+ "ru": "Medium",
2790
+ "zh-tw": "Medium"
2791
+ },
2792
+ "15287": {
2793
+ "ja": "Hard",
2794
+ "ko": "Hard",
2795
+ "nl": "Moeilijk",
2796
+ "fr": "Difficile",
2797
+ "de": "Schwer",
2798
+ "es": "Difícil",
2799
+ "en": "Hard",
2800
+ "da": "Svær",
2801
+ "fi": "Vaikea",
2802
+ "nb": "Vanskelig",
2803
+ "sv": "Svårt",
2804
+ "pt-br": "Difícil",
2805
+ "it": "Difficile",
2806
+ "zh-cn": "Hard",
2807
+ "ru": "Hard",
2808
+ "zh-tw": "Hard"
2809
+ },
2810
+ "15288": {
2811
+ "ja": "Extreme",
2812
+ "ko": "Extreme",
2813
+ "nl": "Extreem",
2814
+ "fr": "Extrême",
2815
+ "de": "Extrem",
2816
+ "es": "Extrema",
2817
+ "en": "Extreme",
2818
+ "da": "Ekstrem",
2819
+ "fi": "Extreme",
2820
+ "nb": "Ekstremt",
2821
+ "sv": "Extremt",
2822
+ "pt-br": "Extrema",
2823
+ "it": "Estremo",
2824
+ "zh-cn": "Extreme",
2825
+ "ru": "Extreme",
2826
+ "zh-tw": "Extreme"
2827
+ },
2828
+ "15289": {
2829
+ "ja": "Low",
2830
+ "ko": "Low",
2831
+ "nl": "Laag",
2832
+ "fr": "Faible",
2833
+ "de": "Niedrig",
2834
+ "es": "Baja",
2835
+ "en": "Low",
2836
+ "da": "Lav",
2837
+ "fi": "Matala",
2838
+ "nb": "Lav",
2839
+ "sv": "Låg",
2840
+ "pt-br": "Baixo",
2841
+ "it": "Bassa",
2842
+ "zh-cn": "Low",
2843
+ "ru": "Low",
2844
+ "zh-tw": "Low"
2845
+ },
2846
+ "15290": {
2847
+ "ja": "Moderate",
2848
+ "ko": "Moderate",
2849
+ "nl": "Gemiddeld",
2850
+ "fr": "Modéré",
2851
+ "de": "Moderat",
2852
+ "es": "Moderada",
2853
+ "en": "Moderate",
2854
+ "da": "Moderat",
2855
+ "fi": "Keskitaso",
2856
+ "nb": "Moderat",
2857
+ "sv": "Medel",
2858
+ "pt-br": "Moderado",
2859
+ "it": "Moderata",
2860
+ "zh-cn": "Moderate",
2861
+ "ru": "Moderate",
2862
+ "zh-tw": "Moderate"
2863
+ },
2864
+ "15291": {
2865
+ "ja": "Intense",
2866
+ "ko": "Intense",
2867
+ "nl": "Intens",
2868
+ "fr": "Intense",
2869
+ "de": "Intensiv",
2870
+ "es": "Intensa",
2871
+ "en": "Intense",
2872
+ "da": "Intens",
2873
+ "fi": "Rankka",
2874
+ "nb": "Intens",
2875
+ "sv": "Intensivt",
2876
+ "pt-br": "Intenso",
2877
+ "it": "Intensa",
2878
+ "zh-cn": "Intense",
2879
+ "ru": "Intense",
2880
+ "zh-tw": "Intense"
2881
+ },
2882
+ "15299": {
2883
+ "ja": "Fresh",
2884
+ "ko": "Fresh",
2885
+ "nl": "Cool",
2886
+ "fr": "Stylé",
2887
+ "de": "Fresh",
2888
+ "es": "Desenfadadas",
2889
+ "en": "Fresh",
2890
+ "da": "Cool",
2891
+ "fi": "Freesi",
2892
+ "nb": "Ferskt",
2893
+ "sv": "Coolt",
2894
+ "pt-br": "Maneiro",
2895
+ "it": "Stile",
2896
+ "zh-cn": "Fresh",
2897
+ "ru": "Fresh",
2898
+ "zh-tw": "Fresh"
2899
+ },
2900
+ "15300": {
2901
+ "ja": "Drama",
2902
+ "ko": "Drama",
2903
+ "nl": "Drama",
2904
+ "fr": "Émotion",
2905
+ "de": "Drama",
2906
+ "es": "Emotivas",
2907
+ "en": "Drama",
2908
+ "da": "Drama",
2909
+ "fi": "Draama",
2910
+ "nb": "Drama",
2911
+ "sv": "Dramatiskt",
2912
+ "pt-br": "Dramático",
2913
+ "it": "Drammatico",
2914
+ "zh-cn": "Drama",
2915
+ "ru": "Drama",
2916
+ "zh-tw": "Drama"
2917
+ },
2918
+ "15453": {
2919
+ "ja": "オルタネイトver.",
2920
+ "ko": "대체 안무 버전",
2921
+ "nl": "Alternatieve versie",
2922
+ "fr": "Version Alternative",
2923
+ "de": "Alternativ-Version",
2924
+ "es": "Versión Alternativa",
2925
+ "en": "Alternate Version",
2926
+ "da": "Alternativ version",
2927
+ "fi": "Vaihtoehtoinen versio",
2928
+ "nb": "Alternativ versjon",
2929
+ "sv": "Alternativ version",
2930
+ "pt-br": "Versão Alternativa",
2931
+ "it": "Versione alternativa",
2932
+ "zh-cn": "另类版本",
2933
+ "ru": "Альтернативная версия",
2934
+ "zh-tw": "另類版本"
2935
+ },
2936
+ "15490": {
2937
+ "ja": "合唱",
2938
+ "ko": "따라 부르기",
2939
+ "nl": "Meezingen",
2940
+ "fr": "Karaoké",
2941
+ "de": "Mitsingen",
2942
+ "es": "Cantar juntos",
2943
+ "en": "Sing-Along",
2944
+ "da": "Syng med",
2945
+ "fi": "Yhteislaulu",
2946
+ "nb": "Singalong",
2947
+ "sv": "Sjung med",
2948
+ "pt-br": "Cante junto",
2949
+ "it": "Karaoke",
2950
+ "zh-cn": "Sing Along",
2951
+ "ru": "На подпевках",
2952
+ "zh-tw": "Sing Along"
2953
+ },
2954
+ "20000514": {
2955
+ "ja": "スネークver.",
2956
+ "ko": "뱀 버전",
2957
+ "nl": "Slangenversie",
2958
+ "fr": "Version Serpent",
2959
+ "de": "Schlangen-Version",
2960
+ "es": "Versión serpiente",
2961
+ "en": "Snake Version",
2962
+ "da": "Slangeversion",
2963
+ "fi": "Käärmeversio",
2964
+ "nb": "Slangeversjon",
2965
+ "sv": "Ormversion",
2966
+ "pt-br": "Versão serpente",
2967
+ "it": "Versione serpente",
2968
+ "zh-cn": "蛇版本",
2969
+ "ru": "Змеиная версия",
2970
+ "zh-tw": "蛇版本"
2971
+ },
2972
+ "20000515": {
2973
+ "ja": "ヴォーギングver.",
2974
+ "ko": "슈퍼 모델 버전",
2975
+ "nl": "Trendversie",
2976
+ "fr": "Version Vogue",
2977
+ "de": "Voguing-Version",
2978
+ "es": "Versión vogue",
2979
+ "en": "Voguing Version",
2980
+ "da": "Vogue-version",
2981
+ "fi": "Voguing-versio",
2982
+ "nb": "Vogue-versjon",
2983
+ "sv": "Modeversion",
2984
+ "pt-br": "Versão vogue",
2985
+ "it": "Versione voguing",
2986
+ "zh-cn": "Voguing 版本",
2987
+ "ru": "Версия для подиума",
2988
+ "zh-tw": "Voguing 版本"
2989
+ },
2990
+ "20000516": {
2991
+ "ja": "女神ver.",
2992
+ "ko": "여신 버전",
2993
+ "nl": "Godinnenversie",
2994
+ "fr": "Version Déesse",
2995
+ "de": "Göttinnen-Version",
2996
+ "es": "Versión diosa",
2997
+ "en": "Goddess Version",
2998
+ "da": "Gudindeversion",
2999
+ "fi": "Jumalatarversio",
3000
+ "nb": "Gudinneversjon",
3001
+ "sv": "Gudinneversion",
3002
+ "pt-br": "Versão Deusa",
3003
+ "it": "Versione dea",
3004
+ "zh-cn": "女神版本",
3005
+ "ru": "Божественная версия",
3006
+ "zh-tw": "女神版本"
3007
+ },
3008
+ "20000517": {
3009
+ "ja": "ケイブマンver.",
3010
+ "ko": "원시인 버전",
3011
+ "nl": "Holbewonerversie",
3012
+ "fr": "Version Homme des cavernes",
3013
+ "de": "Höhlenmensch-Version",
3014
+ "es": "Versión cavernícola",
3015
+ "en": "Caveman Version",
3016
+ "da": "Caveman-version",
3017
+ "fi": "Luolamiesversio",
3018
+ "nb": "Huleboerversjon",
3019
+ "sv": "Grottversion",
3020
+ "pt-br": "Versão Homem das Cavernas",
3021
+ "it": "Versione cavernicolo",
3022
+ "zh-cn": "洞穴人版本",
3023
+ "ru": "Пещерная версия",
3024
+ "zh-tw": "洞穴人版本"
3025
+ },
3026
+ "20000882": {
3027
+ "ja": "ラインダンスver.",
3028
+ "ko": "라인 댄스 버전",
3029
+ "nl": "Linedance-versie",
3030
+ "fr": "Version Square Dance",
3031
+ "de": "Line-Dance-Version",
3032
+ "es": "Versión baile en línea",
3033
+ "en": "Line Dance Version",
3034
+ "da": "Linjedansversion",
3035
+ "fi": "Rivitanssiversio",
3036
+ "nb": "Linedance-versjon",
3037
+ "sv": "Linedanceversion",
3038
+ "pt-br": "Versão trenzinho",
3039
+ "it": "Versione line dance",
3040
+ "zh-cn": "排舞版本",
3041
+ "ru": "Версия для танца в линию",
3042
+ "zh-tw": "排舞版本"
3043
+ },
3044
+ "20000910": {
3045
+ "ja": "Geek",
3046
+ "ko": "Geek",
3047
+ "nl": "Geek",
3048
+ "fr": "Geek",
3049
+ "de": "Computerfreak",
3050
+ "es": "Raritos",
3051
+ "en": "Geek",
3052
+ "da": "Nørd",
3053
+ "fi": "Nörtti",
3054
+ "nb": "Nerd",
3055
+ "sv": "Nörd",
3056
+ "pt-br": "Geek",
3057
+ "it": "Geek",
3058
+ "zh-cn": "Geek",
3059
+ "ru": "Geek",
3060
+ "zh-tw": "Geek"
3061
+ },
3062
+ "20000911": {
3063
+ "ja": "Monster",
3064
+ "ko": "Monster",
3065
+ "nl": "Monster",
3066
+ "fr": "Monstre",
3067
+ "de": "Monster",
3068
+ "es": "Monstruo",
3069
+ "en": "Monster",
3070
+ "da": "Monster",
3071
+ "fi": "Hirviö",
3072
+ "nb": "Monster",
3073
+ "sv": "Monster",
3074
+ "pt-br": "Monstro",
3075
+ "it": "Mostri",
3076
+ "zh-cn": "Monster",
3077
+ "ru": "Monster",
3078
+ "zh-tw": "Monster"
3079
+ },
3080
+ "20000912": {
3081
+ "ja": "Vegetable",
3082
+ "ko": "Vegetable",
3083
+ "nl": "Groenten",
3084
+ "fr": "Légume",
3085
+ "de": "Gemüse",
3086
+ "es": "Verdura",
3087
+ "en": "Vegetable",
3088
+ "da": "Grøntsag",
3089
+ "fi": "Vihannes",
3090
+ "nb": "Grønnsak",
3091
+ "sv": "Grönsaker",
3092
+ "pt-br": "Vegetal",
3093
+ "it": "Verdura",
3094
+ "zh-cn": "Vegetable",
3095
+ "ru": "Vegetable",
3096
+ "zh-tw": "Vegetable"
3097
+ },
3098
+ "20001959": {
3099
+ "ja": "Robot",
3100
+ "ko": "Robot",
3101
+ "nl": "Robot",
3102
+ "fr": "Robot",
3103
+ "de": "Roboter",
3104
+ "es": "Robot",
3105
+ "en": "Robot",
3106
+ "da": "Robot",
3107
+ "fi": "Robotti",
3108
+ "nb": "Robot",
3109
+ "sv": "Robot",
3110
+ "pt-br": "Robô",
3111
+ "it": "Robot",
3112
+ "zh-cn": "Robot",
3113
+ "ru": "Robot",
3114
+ "zh-tw": "Robot"
3115
+ },
3116
+ "20001960": {
3117
+ "ja": "Countryside",
3118
+ "ko": "Countryside",
3119
+ "nl": "Landelijk",
3120
+ "fr": "Campagne",
3121
+ "de": "Natur",
3122
+ "es": "El campo",
3123
+ "en": "Countryside",
3124
+ "da": "På landet",
3125
+ "fi": "Maaseutu",
3126
+ "nb": "Bygda",
3127
+ "sv": "Landsbygd",
3128
+ "pt-br": "Interior",
3129
+ "it": "Campagna",
3130
+ "zh-cn": "Countryside",
3131
+ "ru": "Countryside",
3132
+ "zh-tw": "Countryside"
3133
+ },
3134
+ "20001963": {
3135
+ "ja": "City",
3136
+ "ko": "City",
3137
+ "nl": "Stad",
3138
+ "fr": "Ville",
3139
+ "de": "Stadt",
3140
+ "es": "Ciudad",
3141
+ "en": "City",
3142
+ "da": "By",
3143
+ "fi": "Kaupunki",
3144
+ "nb": "By",
3145
+ "sv": "Stad",
3146
+ "pt-br": "Cidade",
3147
+ "it": "Città",
3148
+ "zh-cn": "City",
3149
+ "ru": "City",
3150
+ "zh-tw": "City"
3151
+ },
3152
+ "20001982": {
3153
+ "ja": "Just Dance 2019",
3154
+ "ko": "Just Dance 2019",
3155
+ "nl": "Just Dance 2019",
3156
+ "fr": "Just Dance 2019",
3157
+ "de": "Just Dance 2019",
3158
+ "es": "Just Dance 2019",
3159
+ "en": "Just Dance 2019",
3160
+ "da": "Just Dance 2019",
3161
+ "fi": "Just Dance 2019",
3162
+ "nb": "Just Dance 2019",
3163
+ "sv": "Just Dance 2019",
3164
+ "pt-br": "Just Dance 2019",
3165
+ "it": "Just Dance 2019",
3166
+ "zh-cn": "Just Dance 2019",
3167
+ "ru": "Just Dance 2019",
3168
+ "zh-tw": "Just Dance 2019"
3169
+ },
3170
+ "20002121": {
3171
+ "ja": "ビリーver.",
3172
+ "ko": "Billie 버전",
3173
+ "nl": "Billie-versie",
3174
+ "fr": "Version Billie",
3175
+ "de": "Billie-Version",
3176
+ "es": "Versión Billie",
3177
+ "en": "Billie Version",
3178
+ "da": "Billie-version",
3179
+ "fi": "Billie-versio",
3180
+ "nb": "Billie-versjon",
3181
+ "sv": "Billie-version",
3182
+ "pt-br": "Versão Billie",
3183
+ "it": "Versione Billie",
3184
+ "zh-cn": "Billie 版本",
3185
+ "ru": "Версия от Billie",
3186
+ "zh-tw": "Billie 版本"
3187
+ },
3188
+ "20002261": {
3189
+ "ja": "Just Dance 2021",
3190
+ "ko": "Just Dance 2021",
3191
+ "nl": "Just Dance 2021",
3192
+ "fr": "Just Dance 2021",
3193
+ "de": "Just Dance 2021",
3194
+ "es": "Just Dance 2021",
3195
+ "en": "Just Dance 2021",
3196
+ "da": "Just Dance 2021",
3197
+ "fi": "Just Dance 2021",
3198
+ "nb": "Just Dance 2021",
3199
+ "sv": "Just Dance 2021",
3200
+ "pt-br": "Just Dance 2021",
3201
+ "it": "Just Dance 2021",
3202
+ "zh-cn": "Just Dance 2021",
3203
+ "ru": "Just Dance 2021",
3204
+ "zh-tw": "Just Dance 2021"
3205
+ },
3206
+ "20002277": {
3207
+ "ja": "Kids mode",
3208
+ "ko": "Kids mode",
3209
+ "nl": "Kids-modus",
3210
+ "fr": "Mode Kids",
3211
+ "de": "Kids-Modus",
3212
+ "es": "Modo Kids",
3213
+ "en": "Kids mode",
3214
+ "da": "Kids-spiltype",
3215
+ "fi": "Kids-tila",
3216
+ "nb": "Kids-modus",
3217
+ "sv": "Kids-läge",
3218
+ "pt-br": "Modo Kids",
3219
+ "it": "Modalità Kids",
3220
+ "zh-cn": "Kids mode",
3221
+ "ru": "Kids mode",
3222
+ "zh-tw": "Kids mode"
3223
+ },
3224
+ "20002715": {
3225
+ "ja": "サンバver.",
3226
+ "ko": "삼바 버전",
3227
+ "nl": "Samba-versie",
3228
+ "fr": "Version Samba",
3229
+ "de": "Samba-Version",
3230
+ "es": "Versión Samba",
3231
+ "en": "Samba Version",
3232
+ "da": "Samba-version",
3233
+ "fi": "Sambaversio",
3234
+ "nb": "Sambaversjon",
3235
+ "sv": "Sambaversion",
3236
+ "pt-br": "Versão samba",
3237
+ "it": "Versione samba",
3238
+ "zh-cn": "桑巴版本",
3239
+ "ru": "Самба-версия",
3240
+ "zh-tw": "森巴版本"
3241
+ },
3242
+ "20002716": {
3243
+ "ja": "フェアリーver.",
3244
+ "ko": "요정 버전",
3245
+ "nl": "Elfachtige versie",
3246
+ "fr": "Version Féerique",
3247
+ "de": "Märchen-Version",
3248
+ "es": "Versión Hada",
3249
+ "en": "Fairy Version",
3250
+ "da": "Fe-version",
3251
+ "fi": "Keijukaisversio",
3252
+ "nb": "Feversjon",
3253
+ "sv": "Feversion",
3254
+ "pt-br": "Versão fada",
3255
+ "it": "Versione fatata",
3256
+ "zh-cn": "童话版本",
3257
+ "ru": "Сказочная версия",
3258
+ "zh-tw": "仙子版本"
3259
+ },
3260
+ "20002717": {
3261
+ "ja": "ヤミーver.",
3262
+ "ko": "냠냠 버전",
3263
+ "nl": "Jammie-versie",
3264
+ "fr": "Version Gourmande",
3265
+ "de": "Njam njam-Version",
3266
+ "es": "Versión Jugosa",
3267
+ "en": "Yummy Version",
3268
+ "da": "Namnam-version",
3269
+ "fi": "Namiversio",
3270
+ "nb": "Nam-nam-versjon",
3271
+ "sv": "Smarrig version",
3272
+ "pt-br": "Versão apetitosa",
3273
+ "it": "Versione golosa",
3274
+ "zh-cn": "美味版本",
3275
+ "ru": "Вкусная версия",
3276
+ "zh-tw": "美味版本"
3277
+ },
3278
+ "20002836": {
3279
+ "ja": "Flying Steps Danceによる限定コレオのVIPメイド",
3280
+ "ko": "VIP 버전 - Flying Steps Dance에서 창작한 전용 안무",
3281
+ "nl": "Speciaal gemaakt met exclusieve choreografie van Flying Steps Dance",
3282
+ "fr": "Version VIP avec la choré exclusive de Flying Steps Dance",
3283
+ "de": "VIP-Version mit exklusiver Choreo von Flying Steps Dance",
3284
+ "es": "Creada por los vips con coreografía exclusiva de Flying Steps Dance",
3285
+ "en": "VIP-made with exclusive choreo from Flying Steps Dance",
3286
+ "da": "VIP-kreeret med eksklusiv koreografi fra Flying Steps Dance",
3287
+ "fi": "VIP-versio Flying Steps Dance -ryhmän upealla koreografialla",
3288
+ "nb": "VIP-innhold med eksklusiv koreografi av Flying Steps Dance",
3289
+ "sv": "VIP-skapad, med en exklusiv koreografi av Flying Steps Dance",
3290
+ "pt-br": "VIP-Com coreografia exclusiva por Flying Steps Dance",
3291
+ "it": "Versione VIP con coreografia esclusiva dei Flying Steps Dance",
3292
+ "zh-cn": "VIP制作,Flying Steps Dance独家舞蹈",
3293
+ "ru": "VIP-версия с эксклюзивной хореографией от Flying Steps Dance",
3294
+ "zh-tw": "搭配 Flying Steps Dance 獨家編舞的 VIP 特製內容"
3295
+ }
3296
+ }
justdanceonline-main/local_settings/pages/dancerprofile.json ADDED
@@ -0,0 +1,220 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "__class": "JD_CarouselContent",
3
+ "categories": [
4
+ {
5
+ "__class": "Category",
6
+ "title": "Dancer Cards",
7
+ "act": "ui_carousel",
8
+ "isc": "grp_row",
9
+ "items": [
10
+ {
11
+ "__class": "Item",
12
+ "offlineRequest": {
13
+ "__class": "JD_CarouselDancerCardRequest",
14
+ "isSaveItem": true,
15
+ "uuid": "f02934b9-647d-46b3-9d8f-d9983e7cfd7d",
16
+ "actions": []
17
+ }
18
+ },
19
+ {
20
+ "__class": "Item",
21
+ "offlineRequest": {
22
+ "__class": "JD_CarouselDancerCardRequest",
23
+ "main": true,
24
+ "uuid": "0ff6ad3b-a0fb-4253-b12a-ef01e813874f",
25
+ "actions": [
26
+ {
27
+ "__class": "Action",
28
+ "bannerType": "dancer",
29
+ "title": "Change Avatar",
30
+ "type": "change-avatar"
31
+ },
32
+ {
33
+ "__class": "Action",
34
+ "bannerType": "dancer",
35
+ "title": "Change Skin",
36
+ "type": "change-skin"
37
+ },
38
+ {
39
+ "__class": "Action",
40
+ "bannerType": "dancer",
41
+ "title": "Edit Nickname",
42
+ "type": "edit-nickname"
43
+ }
44
+ ]
45
+ }
46
+ },
47
+ {
48
+ "__class": "Item",
49
+ "offlineRequest": {
50
+ "__class": "JD_CarouselDancerCardRequest",
51
+ "uuid": "a22c81fd-4e56-439c-a42d-74d17c55a6c0",
52
+ "actions": [
53
+ {
54
+ "__class": "Action",
55
+ "bannerType": "dancer",
56
+ "title": "Set as Active",
57
+ "type": "set-as-main"
58
+ },
59
+ {
60
+ "__class": "Action",
61
+ "bannerType": "dancer",
62
+ "title": "Change Avatar",
63
+ "type": "change-avatar"
64
+ },
65
+ {
66
+ "__class": "Action",
67
+ "bannerType": "dancer",
68
+ "title": "Change Skin",
69
+ "type": "change-skin"
70
+ },
71
+ {
72
+ "__class": "Action",
73
+ "bannerType": "dancer",
74
+ "title": "Edit Nickname",
75
+ "type": "edit-nickname"
76
+ },
77
+ {
78
+ "__class": "Action",
79
+ "bannerType": "dancer",
80
+ "title": "Delete",
81
+ "type": "delete-dancer-card"
82
+ }
83
+ ]
84
+ }
85
+ },
86
+ {
87
+ "__class": "Item",
88
+ "offlineRequest": {
89
+ "__class": "JD_CarouselDancerCardRequest",
90
+ "create": true,
91
+ "uuid": "69478a6a-20ad-47ee-9cfa-c42af702984a",
92
+ "actions": [
93
+ {
94
+ "__class": "Action",
95
+ "bannerContext": "CONTEXT_ADD",
96
+ "bannerType": "dancer",
97
+ "title": "New Dancer Card",
98
+ "type": "create-dancer-card"
99
+ }
100
+ ]
101
+ }
102
+ }
103
+ ]
104
+ },
105
+ {
106
+ "__class": "Category",
107
+ "title": "Friends",
108
+ "act": "ui_carousel",
109
+ "isc": "grp_row",
110
+ "items": []
111
+ },
112
+ {
113
+ "__class": "Category",
114
+ "title": "Autodances",
115
+ "act": "ui_carousel",
116
+ "isc": "grp_row_wide",
117
+ "order": "ugc-time",
118
+ "items": [
119
+ {
120
+ "__class": "Item",
121
+ "offlineRequest": {
122
+ "__class": "JD_CarouselUgcRequest",
123
+ "actionListNameSelf": "localautodance",
124
+ "actionListNameUpsell": "upsell",
125
+ "display": "ugc",
126
+ "maxCount": 30,
127
+ "offline": true,
128
+ "type": "ad",
129
+ "uuid": "7f6445f1-f8fa-4a58-b3a6-e5f4fe4e337a",
130
+ "actions": [
131
+ {
132
+ "__class": "Action",
133
+ "bannerType": "AUTODANCE_LOCAL",
134
+ "title": "Share to Video Galleries",
135
+ "type": "share-autodance-jdtv"
136
+ },
137
+ {
138
+ "__class": "Action",
139
+ "bannerType": "AUTODANCE_LOCAL",
140
+ "title": "Share to Facebook & JDTV",
141
+ "type": "share-autodance-jdtv-facebook"
142
+ },
143
+ {
144
+ "__class": "Action",
145
+ "bannerType": "AUTODANCE_LOCAL",
146
+ "title": "Delete",
147
+ "type": "delete-autodance"
148
+ }
149
+ ]
150
+ }
151
+ }
152
+ ]
153
+ },
154
+ {
155
+ "__class": "Category",
156
+ "title": "Just Dance Machine",
157
+ "act": "ui_carousel",
158
+ "isc": "grp_row_wide",
159
+ "order": "ugc-time",
160
+ "items": [
161
+ {
162
+ "__class": "Item",
163
+ "offlineRequest": {
164
+ "__class": "JD_CarouselUgcRequest",
165
+ "actionListNameSelf": "localdancemachine",
166
+ "actionListNameUpsell": "upsell",
167
+ "display": "ugc",
168
+ "maxCount": 30,
169
+ "offline": true,
170
+ "playerPid": true,
171
+ "type": "dm",
172
+ "uuid": "ca68227e-4b0b-4703-8421-f33d1cae5df2",
173
+ "actions": [
174
+ {
175
+ "__class": "Action",
176
+ "bannerType": "autodance_jdm_local",
177
+ "title": "Share to Video Galleries",
178
+ "type": "share-autodance-jdtv"
179
+ },
180
+ {
181
+ "__class": "Action",
182
+ "bannerType": "autodance_jdm_local",
183
+ "title": "Share to Facebook & JDTV",
184
+ "type": "share-autodance-jdtv-facebook"
185
+ },
186
+ {
187
+ "__class": "Action",
188
+ "bannerType": "autodance_jdm_local",
189
+ "title": "Delete",
190
+ "type": "delete-autodance"
191
+ }
192
+ ]
193
+ }
194
+ }
195
+ ]
196
+ },
197
+ {
198
+ "__class": "Category",
199
+ "title": "Photos",
200
+ "act": "ui_carousel",
201
+ "isc": "grp_row",
202
+ "items": [
203
+ {
204
+ "__class": "Item",
205
+ "offlineRequest": {
206
+ "__class": "JD_CarouselPhotoRequest",
207
+ "actions": [
208
+ {
209
+ "__class": "Action",
210
+ "bannerType": "PHOTO",
211
+ "title": "Delete photo",
212
+ "type": "photo-delete"
213
+ }
214
+ ]
215
+ }
216
+ }
217
+ ]
218
+ }
219
+ ]
220
+ }
justdanceonline-main/local_settings/pages/ftue.json ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "__class": "JD_CarouselContent",
3
+ "categories": [{
4
+ "__class": "Category",
5
+ "title": "Just Dance 2018",
6
+ "act": "ui_carousel",
7
+ "isc": "grp_row",
8
+ "items": [{
9
+ "__class": "Item",
10
+ "offlineRequest": {
11
+ "__class": "JD_CarouselMapRequest",
12
+ "actionListName": "ftue",
13
+ "actionListNameUpsell": "_None",
14
+ "excludedTags": ["Alternate", "DOUBLESCORING", "KidsOnly"],
15
+ "includedTags": ["Main"],
16
+ "offline": true,
17
+ "order": "title",
18
+ "originalJDVersion": 2018,
19
+ "uuid": "20159b9f-c439-4745-965f-a56c19e43c00"
20
+ }
21
+ }]
22
+ }, {
23
+ "__class": "Category",
24
+ "title": "Coming up next!",
25
+ "act": "ui_carousel",
26
+ "isc": "grp_row",
27
+ "items": [{
28
+ "__class": "Item",
29
+ "offlineRequest": {
30
+ "__class": "JD_CarouselItemRequest",
31
+ "itemList": "teaser_ftue",
32
+ "offline": true,
33
+ "uuid": "80846f30-94d0-41e1-ad14-8b91565e6140"
34
+ }
35
+ }]
36
+ }],
37
+ "actionLists": {
38
+ "ftue": {
39
+ "__class": "ActionList",
40
+ "actions": [{
41
+ "__class": "Action",
42
+ "bannerContext": "family_rival",
43
+ "bannerTheme": "DEFAULT",
44
+ "bannerType": "song",
45
+ "title": "Dance",
46
+ "type": "play-song"
47
+ }],
48
+ "itemType": "map"
49
+ },
50
+ "teaser_ftue": {
51
+ "__class": "ActionList",
52
+ "actions": [{
53
+ "__class": "Action",
54
+ "bannerType": "TEASER",
55
+ "title": "",
56
+ "type": "teaser"
57
+ }],
58
+ "itemType": "map"
59
+ }
60
+ },
61
+ "songItemLists": {
62
+ "teaser_ftue": {
63
+ "__class": "SongItemList",
64
+ "actionListName": "teaser_ftue",
65
+ "list": [{
66
+ "__class": "SongItem",
67
+ "act": "ui_component_base",
68
+ "isc": "teaser_item"
69
+ }]
70
+ }
71
+ }
72
+ }
justdanceonline-main/local_settings/pages/jdtv.json ADDED
The diff for this file is too large to render. See raw diff
 
justdanceonline-main/local_settings/pages/kids.json ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "__class": "JD_CarouselContent",
3
+ "categories": [{
4
+ "__class": "Category",
5
+ "title": "Kids JD2019",
6
+ "act": "kids_carousel",
7
+ "isc": "grp_kids_row",
8
+ "items": []
9
+ }],
10
+ "actionLists": {
11
+ "kidsMap": {
12
+ "__class": "ActionList",
13
+ "actions": [{
14
+ "__class": "Action",
15
+ "bannerContext": "kids",
16
+ "bannerTheme": "DEFAULT",
17
+ "bannerType": "song",
18
+ "title": "Dance",
19
+ "type": "play-song"
20
+ }],
21
+ "itemType": "map"
22
+ },
23
+ "NonStop": {
24
+ "__class": "ActionList",
25
+ "actions": [{
26
+ "__class": "Action",
27
+ "bannerType": "SHUFFLE",
28
+ "title": "Dance",
29
+ "type": "start-rowPlaylist"
30
+ }],
31
+ "itemType": "map"
32
+ }
33
+ },
34
+ "songItemLists": {}
35
+ }
justdanceonline-main/local_settings/pages/quests.json ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "__class": "JD_CarouselContent",
3
+ "categories": [
4
+ {
5
+ "__class": "Category",
6
+ "title": "Just Dance 2017",
7
+ "act": "quest_carousel",
8
+ "isc": "quest_row",
9
+ "items": [
10
+ {
11
+ "__class": "Item",
12
+ "offlineRequest": {
13
+ "__class": "JD_CarouselQuestRequest",
14
+ "offline": true,
15
+ "uuid": "c5a89b10-6130-45f7-b259-b50202e375a0",
16
+ "actionListName": "questUnlocked"
17
+ }
18
+ }
19
+ ]
20
+ },
21
+ {
22
+ "__class": "Category",
23
+ "title": "Just Dance Best",
24
+ "act": "quest_carousel",
25
+ "isc": "quest_row_unlimited",
26
+ "items": [
27
+ {
28
+ "__class": "Item",
29
+ "isc": "quest_item",
30
+ "act": "ui_component_base",
31
+ "components": [
32
+ {
33
+ "__class": "JD_CarouselContentComponent_Quest",
34
+ "questId": "23888482"
35
+ }
36
+ ],
37
+ "actionList": "questUnlocked"
38
+ }
39
+ ]
40
+ }
41
+ ],
42
+ "actionLists": {
43
+ "questUnlocked": {
44
+ "__class": "ActionList",
45
+ "actions": [
46
+ {
47
+ "__class": "Action",
48
+ "title": "Dance",
49
+ "type": "start-quest"
50
+ }
51
+ ],
52
+ "itemType": "quest"
53
+ },
54
+ "questLocked": {
55
+ "__class": "ActionList",
56
+ "actions": [
57
+ {
58
+ "__class": "Action",
59
+ "title": "Dance",
60
+ "type": "display-upsell-quest"
61
+ }
62
+ ],
63
+ "itemType": "quest"
64
+ }
65
+ },
66
+ "songItemLists": {}
67
+ }
justdanceonline-main/local_settings/pages/recap-autodance.json ADDED
The diff for this file is too large to render. See raw diff
 
justdanceonline-main/local_settings/pages/upsell-videos.json ADDED
@@ -0,0 +1,419 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "__class": "JD_CarouselContent",
3
+ "categories": [{
4
+ "__class": "Category",
5
+ "title": "Upsell Videos",
6
+ "act": "ui_carousel",
7
+ "isc": "grp_row",
8
+ "items": [{
9
+ "__class": "Item",
10
+ "isc": "grp_cover",
11
+ "act": "ui_component_base",
12
+ "components": [{
13
+ "__class": "JD_CarouselContentComponent_Song",
14
+ "mapName": "BestSongEver"
15
+ }, {
16
+ "__class": "JD_CarouselContentComponent_Metadata",
17
+ "recommendationSource": "4"
18
+ }
19
+ ],
20
+ "actionList": "_None"
21
+ }, {
22
+ "__class": "Item",
23
+ "isc": "grp_cover",
24
+ "act": "ui_component_base",
25
+ "components": [{
26
+ "__class": "JD_CarouselContentComponent_Song",
27
+ "mapName": "WhiteNoise"
28
+ }, {
29
+ "__class": "JD_CarouselContentComponent_Metadata",
30
+ "recommendationSource": "4"
31
+ }
32
+ ],
33
+ "actionList": "_None"
34
+ }, {
35
+ "__class": "Item",
36
+ "isc": "grp_cover",
37
+ "act": "ui_component_base",
38
+ "components": [{
39
+ "__class": "JD_CarouselContentComponent_Song",
40
+ "mapName": "Crayon"
41
+ }, {
42
+ "__class": "JD_CarouselContentComponent_Metadata",
43
+ "recommendationSource": "4"
44
+ }
45
+ ],
46
+ "actionList": "_None"
47
+ }, {
48
+ "__class": "Item",
49
+ "isc": "grp_cover",
50
+ "act": "ui_component_base",
51
+ "components": [{
52
+ "__class": "JD_CarouselContentComponent_Song",
53
+ "mapName": "LaRespuesta"
54
+ }, {
55
+ "__class": "JD_CarouselContentComponent_Metadata",
56
+ "recommendationSource": "4"
57
+ }
58
+ ],
59
+ "actionList": "_None"
60
+ }, {
61
+ "__class": "Item",
62
+ "isc": "grp_cover",
63
+ "act": "ui_component_base",
64
+ "components": [{
65
+ "__class": "JD_CarouselContentComponent_Song",
66
+ "mapName": "Hype"
67
+ }, {
68
+ "__class": "JD_CarouselContentComponent_Metadata",
69
+ "recommendationSource": "4"
70
+ }
71
+ ],
72
+ "actionList": "_None"
73
+ }, {
74
+ "__class": "Item",
75
+ "isc": "grp_cover",
76
+ "act": "ui_component_base",
77
+ "components": [{
78
+ "__class": "JD_CarouselContentComponent_Song",
79
+ "mapName": "NewWorldALT"
80
+ }, {
81
+ "__class": "JD_CarouselContentComponent_Metadata",
82
+ "recommendationSource": "4"
83
+ }
84
+ ],
85
+ "actionList": "_None"
86
+ }, {
87
+ "__class": "Item",
88
+ "isc": "grp_cover",
89
+ "act": "ui_component_base",
90
+ "components": [{
91
+ "__class": "JD_CarouselContentComponent_Song",
92
+ "mapName": "BoysALT"
93
+ }, {
94
+ "__class": "JD_CarouselContentComponent_Metadata",
95
+ "recommendationSource": "4"
96
+ }
97
+ ],
98
+ "actionList": "_None"
99
+ }, {
100
+ "__class": "Item",
101
+ "isc": "grp_cover",
102
+ "act": "ui_component_base",
103
+ "components": [{
104
+ "__class": "JD_CarouselContentComponent_Song",
105
+ "mapName": "HoldMyHand"
106
+ }
107
+ ],
108
+ "actionList": "partyMap"
109
+ }, {
110
+ "__class": "Item",
111
+ "isc": "grp_cover",
112
+ "act": "ui_component_base",
113
+ "components": [{
114
+ "__class": "JD_CarouselContentComponent_Song",
115
+ "mapName": "AmIWrong"
116
+ }
117
+ ],
118
+ "actionList": "partyMap"
119
+ }, {
120
+ "__class": "Item",
121
+ "isc": "grp_cover",
122
+ "act": "ui_component_base",
123
+ "components": [{
124
+ "__class": "JD_CarouselContentComponent_Song",
125
+ "mapName": "GetUgly"
126
+ }
127
+ ],
128
+ "actionList": "partyMap"
129
+ }, {
130
+ "__class": "Item",
131
+ "isc": "grp_cover",
132
+ "act": "ui_component_base",
133
+ "components": [{
134
+ "__class": "JD_CarouselContentComponent_Song",
135
+ "mapName": "ShutUp"
136
+ }
137
+ ],
138
+ "actionList": "partyMap"
139
+ }, {
140
+ "__class": "Item",
141
+ "isc": "grp_cover",
142
+ "act": "ui_component_base",
143
+ "components": [{
144
+ "__class": "JD_CarouselContentComponent_Song",
145
+ "mapName": "BetterWhen"
146
+ }
147
+ ],
148
+ "actionList": "partyMap"
149
+ }, {
150
+ "__class": "Item",
151
+ "isc": "grp_cover",
152
+ "act": "ui_component_base",
153
+ "components": [{
154
+ "__class": "JD_CarouselContentComponent_Song",
155
+ "mapName": "Cheerleader"
156
+ }
157
+ ],
158
+ "actionList": "partyMap"
159
+ }, {
160
+ "__class": "Item",
161
+ "isc": "grp_cover",
162
+ "act": "ui_component_base",
163
+ "components": [{
164
+ "__class": "JD_CarouselContentComponent_Song",
165
+ "mapName": "GangnamStyleDLC"
166
+ }
167
+ ],
168
+ "actionList": "partyMap"
169
+ }, {
170
+ "__class": "Item",
171
+ "isc": "grp_cover",
172
+ "act": "ui_component_base",
173
+ "components": [{
174
+ "__class": "JD_CarouselContentComponent_Song",
175
+ "mapName": "LetItGo"
176
+ }
177
+ ],
178
+ "actionList": "partyMap"
179
+ }, {
180
+ "__class": "Item",
181
+ "isc": "grp_cover",
182
+ "act": "ui_component_base",
183
+ "components": [{
184
+ "__class": "JD_CarouselContentComponent_Song",
185
+ "mapName": "Happy"
186
+ }
187
+ ],
188
+ "actionList": "partyMap"
189
+ }, {
190
+ "__class": "Item",
191
+ "isc": "grp_cover",
192
+ "act": "ui_component_base",
193
+ "components": [{
194
+ "__class": "JD_CarouselContentComponent_Song",
195
+ "mapName": "BeautyAndABeatDLC"
196
+ }
197
+ ],
198
+ "actionList": "partyMap"
199
+ }, {
200
+ "__class": "Item",
201
+ "isc": "grp_cover",
202
+ "act": "ui_component_base",
203
+ "components": [{
204
+ "__class": "JD_CarouselContentComponent_Song",
205
+ "mapName": "SexyAndIKnowItDLC"
206
+ }
207
+ ],
208
+ "actionList": "partyMap"
209
+ }, {
210
+ "__class": "Item",
211
+ "isc": "grp_cover",
212
+ "act": "ui_component_base",
213
+ "components": [{
214
+ "__class": "JD_CarouselContentComponent_Song",
215
+ "mapName": "BlurredLines"
216
+ }
217
+ ],
218
+ "actionList": "partyMap"
219
+ }, {
220
+ "__class": "Item",
221
+ "isc": "grp_cover",
222
+ "act": "ui_component_base",
223
+ "components": [{
224
+ "__class": "JD_CarouselContentComponent_Song",
225
+ "mapName": "Starships"
226
+ }
227
+ ],
228
+ "actionList": "partyMap"
229
+ }, {
230
+ "__class": "Item",
231
+ "isc": "grp_cover",
232
+ "act": "ui_component_base",
233
+ "components": [{
234
+ "__class": "JD_CarouselContentComponent_Song",
235
+ "mapName": "JustDance"
236
+ }
237
+ ],
238
+ "actionList": "partyMap"
239
+ }, {
240
+ "__class": "Item",
241
+ "isc": "grp_cover",
242
+ "act": "ui_component_base",
243
+ "components": [{
244
+ "__class": "JD_CarouselContentComponent_Song",
245
+ "mapName": "GoodFeeling"
246
+ }
247
+ ],
248
+ "actionList": "partyMap"
249
+ }, {
250
+ "__class": "Item",
251
+ "isc": "grp_cover",
252
+ "act": "ui_component_base",
253
+ "components": [{
254
+ "__class": "JD_CarouselContentComponent_Song",
255
+ "mapName": "Rasputin"
256
+ }
257
+ ],
258
+ "actionList": "partyMap"
259
+ }, {
260
+ "__class": "Item",
261
+ "isc": "grp_cover",
262
+ "act": "ui_component_base",
263
+ "components": [{
264
+ "__class": "JD_CarouselContentComponent_Song",
265
+ "mapName": "MovesLikeDLC"
266
+ }
267
+ ],
268
+ "actionList": "partyMap"
269
+ }, {
270
+ "__class": "Item",
271
+ "isc": "grp_cover",
272
+ "act": "ui_component_base",
273
+ "components": [{
274
+ "__class": "JD_CarouselContentComponent_Song",
275
+ "mapName": "BuiltForThis"
276
+ }
277
+ ],
278
+ "actionList": "partyMap"
279
+ }
280
+ ]
281
+ }, {
282
+ "__class": "Category",
283
+ "title": "Upsell Videos Kids",
284
+ "act": "ui_carousel",
285
+ "isc": "grp_row",
286
+ "items": [{
287
+ "__class": "Item",
288
+ "isc": "grp_cover",
289
+ "act": "ui_component_base",
290
+ "components": [{
291
+ "__class": "JD_CarouselContentComponent_Song",
292
+ "mapName": "LetItGo"
293
+ }
294
+ ],
295
+ "actionList": "kidsMap"
296
+ }, {
297
+ "__class": "Item",
298
+ "isc": "grp_cover",
299
+ "act": "ui_component_base",
300
+ "components": [{
301
+ "__class": "JD_CarouselContentComponent_Song",
302
+ "mapName": "AngryBirds"
303
+ }
304
+ ],
305
+ "actionList": "kidsMap"
306
+ }, {
307
+ "__class": "Item",
308
+ "isc": "grp_cover",
309
+ "act": "ui_component_base",
310
+ "components": [{
311
+ "__class": "JD_CarouselContentComponent_Song",
312
+ "mapName": "PrinceAli"
313
+ }
314
+ ],
315
+ "actionList": "kidsMap"
316
+ }, {
317
+ "__class": "Item",
318
+ "isc": "grp_cover",
319
+ "act": "ui_component_base",
320
+ "components": [{
321
+ "__class": "JD_CarouselContentComponent_Song",
322
+ "mapName": "Cmon"
323
+ }
324
+ ],
325
+ "actionList": "kidsMap"
326
+ }, {
327
+ "__class": "Item",
328
+ "isc": "grp_cover",
329
+ "act": "ui_component_base",
330
+ "components": [{
331
+ "__class": "JD_CarouselContentComponent_Song",
332
+ "mapName": "Ghostbusters"
333
+ }
334
+ ],
335
+ "actionList": "kidsMap"
336
+ }, {
337
+ "__class": "Item",
338
+ "isc": "grp_cover",
339
+ "act": "ui_component_base",
340
+ "components": [{
341
+ "__class": "JD_CarouselContentComponent_Song",
342
+ "mapName": "UnderTheSea"
343
+ }
344
+ ],
345
+ "actionList": "kidsMap"
346
+ }, {
347
+ "__class": "Item",
348
+ "isc": "grp_cover",
349
+ "act": "ui_component_base",
350
+ "components": [{
351
+ "__class": "JD_CarouselContentComponent_Song",
352
+ "mapName": "CopaCabana"
353
+ }
354
+ ],
355
+ "actionList": "kidsMap"
356
+ }
357
+ ]
358
+ }, {
359
+ "__class": "Category",
360
+ "title": "WhatsNew Videos",
361
+ "act": "avatar_carousel",
362
+ "isc": "avatar_row",
363
+ "items": []
364
+ }
365
+ ],
366
+ "actionLists": {
367
+ "kidsMap": {
368
+ "__class": "ActionList",
369
+ "actions": [{
370
+ "__class": "Action",
371
+ "bannerContext": "kids",
372
+ "bannerTheme": "DEFAULT",
373
+ "bannerType": "song",
374
+ "title": "Dance",
375
+ "type": "play-song"
376
+ }
377
+ ],
378
+ "itemType": "map"
379
+ },
380
+ "_None": {
381
+ "__class": "ActionList",
382
+ "actions": [{
383
+ "__class": "Action",
384
+ "title": "None",
385
+ "type": "do-nothing"
386
+ }
387
+ ],
388
+ "itemType": "map"
389
+ },
390
+ "partyMap": {
391
+ "__class": "ActionList",
392
+ "actions": [{
393
+ "__class": "Action",
394
+ "bannerContext": "family_rival",
395
+ "bannerTheme": "DEFAULT",
396
+ "bannerType": "song",
397
+ "title": "Dance",
398
+ "type": "play-song"
399
+ }, {
400
+ "__class": "Action",
401
+ "bannerContext": "family_rival",
402
+ "bannerTheme": "DEFAULT",
403
+ "bannerType": "song_leaderboard",
404
+ "title": "Leaderboard",
405
+ "type": "leaderboard"
406
+ }, {
407
+ "__class": "Action",
408
+ "bannerContext": "family_rival",
409
+ "bannerTheme": "DEFAULT",
410
+ "bannerType": "song_licensing",
411
+ "title": "Credits",
412
+ "type": "credits"
413
+ }
414
+ ],
415
+ "itemType": "map"
416
+ }
417
+ },
418
+ "songItemLists": {}
419
+ }
justdanceonline-main/local_settings/paths.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "avatars": "itemdb/avatars.json",
3
+ "portraitBorders": "itemdb/portraitBorders.json",
4
+ "skins": "itemdb/skins.json",
5
+ "specificMaps": "songdb/specificMaps.json",
6
+ "localisation": "localisation/localisation.json",
7
+ "aliases": "aliases/aliases.json",
8
+ "favorites": "carousel/favorites.json",
9
+ "search": "carousel/search.json",
10
+ "songitemlists": "carousel/songItemLists.json",
11
+ "actionlist": "carousel/actionLists.json",
12
+ "online-bosses": "wdf/online-bosses.json",
13
+ "quests": "questdb/quests.json"
14
+ }
justdanceonline-main/local_settings/playlistdb/playlists.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "__class": "JD_CarouselContent",
3
+ "categories": [],
4
+ "actionLists": {
5
+ "_None": {
6
+ "__class": "ActionList",
7
+ "actions": [{
8
+ "__class": "Action",
9
+ "title": "None",
10
+ "type": "do-nothing"
11
+ }
12
+ ],
13
+ "itemType": "map"
14
+ }
15
+ },
16
+ "songItemLists": {}
17
+ }
justdanceonline-main/local_settings/questdb/quests.json ADDED
@@ -0,0 +1,427 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "__class": "OnlineQuest",
4
+ "assetUrls": {
5
+ "phoneImageURL": "https://jd-s3.akamaized.net/public/quests/28/quest_logo.png/24d1ec60e83494e05969e83ed7d4e74d.png",
6
+ "coverImageURL": "https://jd-s3.akamaized.net/public/quests/28/pc/quest_cover.tga.ckd/9b879d2b3207d89c32cc0fc0baaf3baf.ckd",
7
+ "logoImageURL": "https://jd-s3.akamaized.net/public/quests/28/pc/quest_logo.tga.ckd/7d11df956cb40aae9f30666a640aed95.ckd",
8
+ "logoShadedImageURL": "https://jd-s3.akamaized.net/public/quests/28/pc/quest_logo_shaded.tga.ckd/95a627e06ae3e962f713367014815524.ckd"
9
+ },
10
+ "id": "28",
11
+ "locked": 0,
12
+ "playlist": [
13
+ "BreakFreeDLC",
14
+ "KaboomPow",
15
+ "HowDeep"
16
+ ],
17
+ "title": "Comics"
18
+ },
19
+ {
20
+ "__class": "OnlineQuest",
21
+ "assetUrls": {
22
+ "phoneImageURL": "https://jd-s3.akamaized.net/public/quests/27/quest_logo.png/bf3cec27e8de577f657208cfd51d932e.png",
23
+ "coverImageURL": "https://jd-s3.akamaized.net/public/quests/27/pc/quest_cover.tga.ckd/7091424e7cbb1da6b736bb7ffea9ff34.ckd",
24
+ "logoImageURL": "https://jd-s3.akamaized.net/public/quests/27/pc/quest_logo.tga.ckd/82b818785da971cbba0d262da0cd1a73.ckd",
25
+ "logoShadedImageURL": "https://jd-s3.akamaized.net/public/quests/27/pc/quest_logo_shaded.tga.ckd/ce1e9c6e49a146ff5222082d112e6b24.ckd"
26
+ },
27
+ "id": "27",
28
+ "locked": 0,
29
+ "playlist": [
30
+ "AintMy",
31
+ "Aquarius",
32
+ "MrSaxobeat"
33
+ ],
34
+ "title": "Surfboard"
35
+ },
36
+ {
37
+ "__class": "OnlineQuest",
38
+ "assetUrls": {
39
+ "phoneImageURL": "https://jd-s3.akamaized.net/public/quests/26/quest_logo.png/df5720ad8387c4852d848af60994820b.png",
40
+ "coverImageURL": "https://jd-s3.akamaized.net/public/quests/26/pc/quest_cover.tga.ckd/a11a110c3d6e00324bfc1dbd90828b7f.ckd",
41
+ "logoImageURL": "https://jd-s3.akamaized.net/public/quests/26/pc/quest_logo.tga.ckd/a7e54eed42f69369a15750b470413582.ckd",
42
+ "logoShadedImageURL": "https://jd-s3.akamaized.net/public/quests/26/pc/quest_logo_shaded.tga.ckd/0c5c79972355cd0a97855132016f5125.ckd"
43
+ },
44
+ "id": "26",
45
+ "locked": 0,
46
+ "playlist": [
47
+ "DontLet",
48
+ "RockNRollDLC",
49
+ "TurnUpTheLoveALT"
50
+ ],
51
+ "title": "Origami"
52
+ },
53
+ {
54
+ "__class": "OnlineQuest",
55
+ "assetUrls": {
56
+ "phoneImageURL": "https://jd-s3.akamaized.net/public/quests/25/quest_logo.png/816427293e03aea07ae754fb359e76df.png",
57
+ "coverImageURL": "https://jd-s3.akamaized.net/public/quests/25/pc/quest_cover.tga.ckd/b514e9fabbc39152d2ee9362437a1fb2.ckd",
58
+ "logoImageURL": "https://jd-s3.akamaized.net/public/quests/25/pc/quest_logo.tga.ckd/9c6630baf9b2ab30e8fd75b0699f2cc8.ckd",
59
+ "logoShadedImageURL": "https://jd-s3.akamaized.net/public/quests/25/pc/quest_logo_shaded.tga.ckd/aa100767755dfc65ce74708dc09b94c7.ckd"
60
+ },
61
+ "id": "25",
62
+ "locked": 0,
63
+ "playlist": [
64
+ "HandClap",
65
+ "JailHouse",
66
+ "AmericanGirlDLC"
67
+ ],
68
+ "title": "Cactus"
69
+ },
70
+ {
71
+ "__class": "OnlineQuest",
72
+ "assetUrls": {
73
+ "phoneImageURL": "https://jd-s3.akamaized.net/public/quests/24/quest_logo.png/f9bf9b9dea0a07aead88872148ee7e9d.png",
74
+ "coverImageURL": "https://jd-s3.akamaized.net/public/quests/24/pc/quest_cover.tga.ckd/c64c4a33421a5d48e6715f38dfe623f7.ckd",
75
+ "logoImageURL": "https://jd-s3.akamaized.net/public/quests/24/pc/quest_logo.tga.ckd/ed7d9fb1d2b327069f61d5505d22c2d6.ckd",
76
+ "logoShadedImageURL": "https://jd-s3.akamaized.net/public/quests/24/pc/quest_logo_shaded.tga.ckd/d32ef16e1b5c06c89cfa4b0db38b8d16.ckd"
77
+ },
78
+ "id": "24",
79
+ "locked": 0,
80
+ "playlist": [
81
+ "MeToo",
82
+ "LoveIsAll",
83
+ "SomethinStupid"
84
+ ],
85
+ "title": "Kiss"
86
+ },
87
+ {
88
+ "__class": "OnlineQuest",
89
+ "assetUrls": {
90
+ "phoneImageURL": "https://jd-s3.akamaized.net/public/quests/23/quest_logo.png/7628092640bc7f0e1461e6dcf807d2fa.png",
91
+ "coverImageURL": "https://jd-s3.akamaized.net/public/quests/23/pc/quest_cover.tga.ckd/c03b910b00cb2d61a21a83a2bf7ede47.ckd",
92
+ "logoImageURL": "https://jd-s3.akamaized.net/public/quests/23/pc/quest_logo.tga.ckd/1100664f144f0b5024091e4d29977b95.ckd",
93
+ "logoShadedImageURL": "https://jd-s3.akamaized.net/public/quests/23/pc/quest_logo_shaded.tga.ckd/440d9fbb0feef0f19c1662f886586172.ckd"
94
+ },
95
+ "id": "23",
96
+ "locked": 0,
97
+ "playlist": [
98
+ "DontWorryMadcon",
99
+ "Gigolo",
100
+ "GotMeDancing"
101
+ ],
102
+ "title": "Dandy"
103
+ },
104
+ {
105
+ "__class": "OnlineQuest",
106
+ "assetUrls": {
107
+ "phoneImageURL": "https://jd-s3.akamaized.net/public/quests/21/quest_logo.png/53e8b57342a6b5ed488714feb9accd28.png",
108
+ "coverImageURL": "https://jd-s3.akamaized.net/public/quests/21/pc/quest_cover.tga.ckd/caf1e9f1c011e5740f03dac55f956799.ckd",
109
+ "logoImageURL": "https://jd-s3.akamaized.net/public/quests/21/pc/quest_logo.tga.ckd/611dfe4496f37be09ff25783fbe88749.ckd",
110
+ "logoShadedImageURL": "https://jd-s3.akamaized.net/public/quests/21/pc/quest_logo_shaded.tga.ckd/bf9db0ef763fc0375abfa942c3636113.ckd"
111
+ },
112
+ "id": "21",
113
+ "locked": 0,
114
+ "playlist": [
115
+ "TheGreatest",
116
+ "CaliforniaGurls",
117
+ "WantUBack"
118
+ ],
119
+ "title": "Unicorn"
120
+ },
121
+ {
122
+ "__class": "OnlineQuest",
123
+ "assetUrls": {
124
+ "phoneImageURL": "https://jd-s3.akamaized.net/public/quests/20/quest_logo.png/cae9fe5093b162228e249d0ac951f923.png",
125
+ "coverImageURL": "https://jd-s3.akamaized.net/public/quests/20/pc/quest_cover.tga.ckd/b930b1cf962639524ce2a7871630c676.ckd",
126
+ "logoImageURL": "https://jd-s3.akamaized.net/public/quests/20/pc/quest_logo.tga.ckd/7faa506e28513e297720559ec2380fe9.ckd",
127
+ "logoShadedImageURL": "https://jd-s3.akamaized.net/public/quests/20/pc/quest_logo_shaded.tga.ckd/afd285b2a524a077ad439f06708ec88b.ckd"
128
+ },
129
+ "id": "20",
130
+ "locked": 0,
131
+ "playlist": [
132
+ "TimeWarpQUAT",
133
+ "MonsterMash",
134
+ "Youth"
135
+ ],
136
+ "title": "Zombi"
137
+ },
138
+ {
139
+ "__class": "OnlineQuest",
140
+ "assetUrls": {
141
+ "phoneImageURL": "https://jd-s3.akamaized.net/public/quests/19/quest_logo.png/5e68281231e324dd8c15476e612332a3.png",
142
+ "coverImageURL": "https://jd-s3.akamaized.net/public/quests/19/pc/quest_cover.tga.ckd/9ecc4616494ebf59eacab34d22be4d1f.ckd",
143
+ "logoImageURL": "https://jd-s3.akamaized.net/public/quests/19/pc/quest_logo.tga.ckd/9a86fa38b320607040a1d25dbfa743a2.ckd",
144
+ "logoShadedImageURL": "https://jd-s3.akamaized.net/public/quests/19/pc/quest_logo_shaded.tga.ckd/58b4949cfb2782fec097c008ad925326.ckd"
145
+ },
146
+ "id": "19",
147
+ "locked": 0,
148
+ "playlist": [
149
+ "Summer",
150
+ "KetchupSong",
151
+ "TheWorldDLC"
152
+ ],
153
+ "title": "Summer"
154
+ },
155
+ {
156
+ "__class": "OnlineQuest",
157
+ "assetUrls": {
158
+ "phoneImageURL": "https://jd-s3.akamaized.net/public/quests/18/quest_logo.png/b1986839a0d5c6a55de4621194b8686c.png",
159
+ "coverImageURL": "https://jd-s3.akamaized.net/public/quests/18/pc/quest_cover.tga.ckd/b77701a7d8e3637b22a206cf6f77d738.ckd",
160
+ "logoImageURL": "https://jd-s3.akamaized.net/public/quests/18/pc/quest_logo.tga.ckd/87600b39ff5f8aad2c4afac0ceb417cb.ckd",
161
+ "logoShadedImageURL": "https://jd-s3.akamaized.net/public/quests/18/pc/quest_logo_shaded.tga.ckd/2bc36ac5414da2f024f793eb466aeffa.ckd"
162
+ },
163
+ "id": "18",
164
+ "locked": 0,
165
+ "playlist": [
166
+ "Birthday",
167
+ "Lollipop",
168
+ "OhNo"
169
+ ],
170
+ "title": "Lollipop"
171
+ },
172
+ {
173
+ "__class": "OnlineQuest",
174
+ "assetUrls": {
175
+ "phoneImageURL": "https://jd-s3.akamaized.net/public/quests/17/quest_logo.png/d2b910447666d0f7ad02996c5b1a927a.png",
176
+ "coverImageURL": "https://jd-s3.akamaized.net/public/quests/17/pc/quest_cover.tga.ckd/dcb3d330a657f4dda87cc1a9bf3a438f.ckd",
177
+ "logoImageURL": "https://jd-s3.akamaized.net/public/quests/17/pc/quest_logo.tga.ckd/8de883906eeef3163662aba2d4c621fc.ckd",
178
+ "logoShadedImageURL": "https://jd-s3.akamaized.net/public/quests/17/pc/quest_logo_shaded.tga.ckd/97a218cad6ecf28e1b5c98b21e3e9191.ckd"
179
+ },
180
+ "id": "17",
181
+ "locked": 0,
182
+ "playlist": [
183
+ "Maneater",
184
+ "HoldMyHand",
185
+ "BeautyAndABeatDLC"
186
+ ],
187
+ "title": "Grimoire"
188
+ },
189
+ {
190
+ "__class": "OnlineQuest",
191
+ "assetUrls": {
192
+ "phoneImageURL": "https://jd-s3.akamaized.net/public/quests/16/quest_logo.png/c36e933fa8144f76be1f5ebbbebbf698.png",
193
+ "coverImageURL": "https://jd-s3.akamaized.net/public/quests/16/pc/quest_cover.tga.ckd/fbc1ab6e28738917420548852154e336.ckd",
194
+ "logoImageURL": "https://jd-s3.akamaized.net/public/quests/16/pc/quest_logo.tga.ckd/95cfb9df65b01ded7438396879fe5457.ckd",
195
+ "logoShadedImageURL": "https://jd-s3.akamaized.net/public/quests/16/pc/quest_logo_shaded.tga.ckd/34eb7a055d4a61d4bfe1e392b40a9f96.ckd"
196
+ },
197
+ "id": "16",
198
+ "locked": 0,
199
+ "playlist": [
200
+ "Domino",
201
+ "Luftballons",
202
+ "LoveYouLike"
203
+ ],
204
+ "title": "Lily of the Valley"
205
+ },
206
+ {
207
+ "__class": "OnlineQuest",
208
+ "assetUrls": {
209
+ "phoneImageURL": "https://jd-s3.akamaized.net/public/quests/15/quest_logo.png/635664f2aa6021ce9df498bc0b7b9406.png",
210
+ "coverImageURL": "https://jd-s3.akamaized.net/public/quests/15/pc/quest_cover.tga.ckd/489ec14fed3e6e705d766617cca6c7c3.ckd",
211
+ "logoImageURL": "https://jd-s3.akamaized.net/public/quests/15/pc/quest_logo.tga.ckd/fc600396b9a8d67475fb8d9146e076c7.ckd",
212
+ "logoShadedImageURL": "https://jd-s3.akamaized.net/public/quests/15/pc/quest_logo_shaded.tga.ckd/47d40401a61b3562e402fc3e1db2e702.ckd"
213
+ },
214
+ "id": "15",
215
+ "locked": 0,
216
+ "playlist": [
217
+ "Balance",
218
+ "AmIWrong",
219
+ "Gentleman"
220
+ ],
221
+ "title": "Cupcake"
222
+ },
223
+ {
224
+ "__class": "OnlineQuest",
225
+ "assetUrls": {
226
+ "phoneImageURL": "https://jd-s3.akamaized.net/public/quests/14/quest_logo.png/c0a65c3ee3f1deed33ea802cf6258573.png",
227
+ "coverImageURL": "https://jd-s3.akamaized.net/public/quests/14/pc/quest_cover.tga.ckd/0cc249321525cc309424af91273e8d95.ckd",
228
+ "logoImageURL": "https://jd-s3.akamaized.net/public/quests/14/pc/quest_logo.tga.ckd/851972c6213a1d0afd95b0e9349edc4a.ckd",
229
+ "logoShadedImageURL": "https://jd-s3.akamaized.net/public/quests/14/pc/quest_logo_shaded.tga.ckd/eae358efcd2fa9b63e40fdd57c789689.ckd"
230
+ },
231
+ "id": "14",
232
+ "locked": 0,
233
+ "playlist": [
234
+ "BlurredLines",
235
+ "DontYouWorryDLC",
236
+ "DynamiteQUAT"
237
+ ],
238
+ "title": "Mushroom"
239
+ },
240
+ {
241
+ "__class": "OnlineQuest",
242
+ "assetUrls": {
243
+ "phoneImageURL": "https://jd-s3.akamaized.net/public/quests/13/quest_logo.png/74f502356412b40a623d7b95660ae76f.png",
244
+ "coverImageURL": "https://jd-s3.akamaized.net/public/quests/13/pc/quest_cover.tga.ckd/8149d51dca9a7b9a321547e8100de201.ckd",
245
+ "logoImageURL": "https://jd-s3.akamaized.net/public/quests/13/pc/quest_logo.tga.ckd/aaf7d376b312436abaf8d762e793ca6c.ckd",
246
+ "logoShadedImageURL": "https://jd-s3.akamaized.net/public/quests/13/pc/quest_logo_shaded.tga.ckd/fbeb1f5454ef05ad9d0dc5038cf8de0c.ckd"
247
+ },
248
+ "id": "13",
249
+ "locked": 0,
250
+ "playlist": [
251
+ "BreakFreeDLC",
252
+ "PartyRock",
253
+ "IndiaWaale"
254
+ ],
255
+ "title": "Special Easter"
256
+ },
257
+ {
258
+ "__class": "OnlineQuest",
259
+ "assetUrls": {
260
+ "phoneImageURL": "https://jd-s3.akamaized.net/public/quests/12/quest_logo.png/5311d0135ede4c0f8347e423047b9778.png",
261
+ "coverImageURL": "https://jd-s3.akamaized.net/public/quests/12/pc/quest_cover.tga.ckd/db1a9316ef932e95729b707fa0deddaf.ckd",
262
+ "logoImageURL": "https://jd-s3.akamaized.net/public/quests/12/pc/quest_logo.tga.ckd/de582030f36091eabc583d8af3c4c41f.ckd",
263
+ "logoShadedImageURL": "https://jd-s3.akamaized.net/public/quests/12/pc/quest_logo_shaded.tga.ckd/7baef08ecbf787edd8fbe3eceecf38d7.ckd"
264
+ },
265
+ "id": "12",
266
+ "locked": 0,
267
+ "playlist": [
268
+ "SexyAndIKnowItDLC",
269
+ "TasteTheFeeling",
270
+ "Wild"
271
+ ],
272
+ "title": "Lucky"
273
+ },
274
+ {
275
+ "__class": "OnlineQuest",
276
+ "assetUrls": {
277
+ "phoneImageURL": "https://jd-s3.akamaized.net/public/quests/11/quest_logo.png/abbefb0ab56600e7917e3ba522d2c59b.png",
278
+ "coverImageURL": "https://jd-s3.akamaized.net/public/quests/11/jd2016-pc-all/quest_cover.tga.ckd/c567b0c89d8ae453e281dadc8e6308aa.ckd",
279
+ "logoImageURL": "https://jd-s3.akamaized.net/public/quests/11/jd2016-pc-all/quest_logo.tga.ckd/57be10a1e786909f8a7127976ae20ac8.ckd",
280
+ "logoShadedImageURL": "https://jd-s3.akamaized.net/public/quests/11/jd2016-pc-all/quest_logo_shaded.tga.ckd/a2f662a8933e61706dcc08c49fd3851a.ckd"
281
+ },
282
+ "id": "11",
283
+ "locked": 0,
284
+ "playlist": [
285
+ "BoomClapDLC",
286
+ "YouReTheFirst",
287
+ "FindYou"
288
+ ],
289
+ "title": "Special Valentine"
290
+ },
291
+ {
292
+ "__class": "OnlineQuest",
293
+ "assetUrls": {
294
+ "phoneImageURL": "https://jd-s3.akamaized.net/public/quests/9/quest_logo.png/02234d2f68340f5803c995be4369c7d0.png",
295
+ "coverImageURL": "https://jd-s3.akamaized.net/public/quests/9/jd2016-pc-all/quest_cover.tga.ckd/e9ad251548b89569b26d874e35b4995e.ckd",
296
+ "logoImageURL": "https://jd-s3.akamaized.net/public/quests/9/jd2016-pc-all/quest_logo.tga.ckd/0ba02470475bdfb34868398bfcd637a4.ckd",
297
+ "logoShadedImageURL": "https://jd-s3.akamaized.net/public/quests/9/jd2016-pc-all/quest_logo_shaded.tga.ckd/dd695d93c4f213aacbe94b0ee60d6c3c.ckd"
298
+ },
299
+ "id": "9",
300
+ "locked": 0,
301
+ "playlist": [
302
+ "LetItGo",
303
+ "Xmas",
304
+ "Rasputin"
305
+ ],
306
+ "title": "Special New Year"
307
+ },
308
+ {
309
+ "__class": "OnlineQuest",
310
+ "assetUrls": {
311
+ "phoneImageURL": "https://jd-s3.akamaized.net/public/quests/8/quest_logo.png/7cffa3bfde67292fc6db4b6d71135216.png",
312
+ "coverImageURL": "https://jd-s3.akamaized.net/public/quests/8/jd2016-pc-all/quest_cover.tga.ckd/53f073649fa623de7a2ce9c2068fee8e.ckd",
313
+ "logoImageURL": "https://jd-s3.akamaized.net/public/quests/8/jd2016-pc-all/quest_logo.tga.ckd/83edfd18c0170287bf4f53ca021632a8.ckd",
314
+ "logoShadedImageURL": "https://jd-s3.akamaized.net/public/quests/8/jd2016-pc-all/quest_logo_shaded.tga.ckd/77c9195cbc07a065cf2bb4f651eed324.ckd"
315
+ },
316
+ "id": "8",
317
+ "locked": 0,
318
+ "playlist": [
319
+ "MovesLikeDLC",
320
+ "ShutUp",
321
+ "TurnUpTheLove"
322
+ ],
323
+ "title": "Royal Key"
324
+ },
325
+ {
326
+ "__class": "OnlineQuest",
327
+ "assetUrls": {
328
+ "phoneImageURL": "https://jd-s3.akamaized.net/public/quests/7/quest_logo.png/10e2e3fa08edae8efebd021f06350cdf.png",
329
+ "coverImageURL": "https://jd-s3.akamaized.net/public/quests/7/jd2016-pc-all/quest_cover.tga.ckd/24677a442f399f91b3f940a87b15b247.ckd",
330
+ "logoImageURL": "https://jd-s3.akamaized.net/public/quests/7/jd2016-pc-all/quest_logo.tga.ckd/898de48f6d617d1f416735e0c44e2b70.ckd",
331
+ "logoShadedImageURL": "https://jd-s3.akamaized.net/public/quests/7/jd2016-pc-all/quest_logo_shaded.tga.ckd/533c9c7f5bfc0df7198dd084275d2e94.ckd"
332
+ },
333
+ "id": "7",
334
+ "locked": 0,
335
+ "playlist": [
336
+ "Mad",
337
+ "HeyYa",
338
+ "BetterWhen"
339
+ ],
340
+ "title": "Castle"
341
+ },
342
+ {
343
+ "__class": "OnlineQuest",
344
+ "assetUrls": {
345
+ "phoneImageURL": "https://jd-s3.akamaized.net/public/quests/6/quest_logo.png/6751c7a26488a99c3fa1a3f68744e658.png",
346
+ "coverImageURL": "https://jd-s3.akamaized.net/public/quests/6/jd2016-pc-all/quest_cover.tga.ckd/f1a42d8cd25b5ffb9246d19e1bb9c2c9.ckd",
347
+ "logoImageURL": "https://jd-s3.akamaized.net/public/quests/6/jd2016-pc-all/quest_logo.tga.ckd/f6a9aefdc0ea779f745d717c3ac2dc5f.ckd",
348
+ "logoShadedImageURL": "https://jd-s3.akamaized.net/public/quests/6/jd2016-pc-all/quest_logo_shaded.tga.ckd/6e21cbba14f40d5294bfd700818a2a9e.ckd"
349
+ },
350
+ "id": "6",
351
+ "locked": 0,
352
+ "playlist": [
353
+ "GoodFeeling",
354
+ "IDidItAgainQUAT",
355
+ "BuiltForThis"
356
+ ],
357
+ "title": "Royal"
358
+ },
359
+ {
360
+ "__class": "OnlineQuest",
361
+ "assetUrls": {
362
+ "phoneImageURL": "https://jd-s3.akamaized.net/public/quests/5/quest_logo.png/809c25c0e6f365305c15cd47c9a6bb6b.png",
363
+ "coverImageURL": "https://jd-s3.akamaized.net/public/quests/5/jd2016-pc-all/quest_cover.tga.ckd/b0a7fbe83595de3ccd1e3b582f18bb51.ckd",
364
+ "logoImageURL": "https://jd-s3.akamaized.net/public/quests/5/jd2016-pc-all/quest_logo.tga.ckd/4a5431acf99c575761caf4f298ebc010.ckd",
365
+ "logoShadedImageURL": "https://jd-s3.akamaized.net/public/quests/5/jd2016-pc-all/quest_logo_shaded.tga.ckd/081b5061adc87f66e2b01381ad7cceba.ckd"
366
+ },
367
+ "id": "5",
368
+ "locked": 0,
369
+ "playlist": [
370
+ "HalloweenQUAT",
371
+ "IWillSurvive",
372
+ "Ghostbusters"
373
+ ],
374
+ "title": "Special Halloween"
375
+ },
376
+ {
377
+ "__class": "OnlineQuest",
378
+ "assetUrls": {
379
+ "phoneImageURL": "https://jd-s3.akamaized.net/public/quests/4/quest_logo.png/fb7b37c10b5527a8b202a94575725295.png",
380
+ "coverImageURL": "https://jd-s3.akamaized.net/public/quests/4/jd2016-pc-all/quest_cover.tga.ckd/c7f1e3ffa46db464491b14735803eb13.ckd",
381
+ "logoImageURL": "https://jd-s3.akamaized.net/public/quests/4/jd2016-pc-all/quest_logo.tga.ckd/a90165516797cfbe16b6d258ba2c14ba.ckd",
382
+ "logoShadedImageURL": "https://jd-s3.akamaized.net/public/quests/4/jd2016-pc-all/quest_logo_shaded.tga.ckd/0d461a70699fe07db316c47e0fe7156d.ckd"
383
+ },
384
+ "id": "4",
385
+ "locked": 0,
386
+ "playlist": [
387
+ "Happy",
388
+ "Cmon",
389
+ "PoundTheAlarm"
390
+ ],
391
+ "title": "Ring"
392
+ },
393
+ {
394
+ "__class": "OnlineQuest",
395
+ "assetUrls": {
396
+ "phoneImageURL": "https://jd-s3.akamaized.net/public/quests/3/quest_logo.png/4ddd43c50a3fc4a625e75712541e304d.png",
397
+ "coverImageURL": "https://jd-s3.akamaized.net/public/quests/3/jd2016-pc-all/quest_cover.tga.ckd/4f50e3e612b389ecfd6a86ddd94c89b1.ckd",
398
+ "logoImageURL": "https://jd-s3.akamaized.net/public/quests/3/jd2016-pc-all/quest_logo.tga.ckd/37a776c63bd96a87d21fd3bbb4b2af68.ckd",
399
+ "logoShadedImageURL": "https://jd-s3.akamaized.net/public/quests/3/jd2016-pc-all/quest_logo_shaded.tga.ckd/0d89016437bdfca9e0082a3a89acd889.ckd"
400
+ },
401
+ "id": "3",
402
+ "locked": 0,
403
+ "playlist": [
404
+ "JustDance",
405
+ "Americano",
406
+ "ThatPower"
407
+ ],
408
+ "title": "Scepter"
409
+ },
410
+ {
411
+ "__class": "OnlineQuest",
412
+ "assetUrls": {
413
+ "phoneImageURL": "https://jd-s3.akamaized.net/public/quests/2/quest_logo.png/451367e761e147544cbbd7a7f25e777f.png",
414
+ "coverImageURL": "https://jd-s3.akamaized.net/public/quests/2/jd2016-pc-all/quest_cover.tga.ckd/658bb292c680d3b4aaf552e070442de4.ckd",
415
+ "logoImageURL": "https://jd-s3.akamaized.net/public/quests/2/jd2016-pc-all/quest_logo.tga.ckd/d66ff52e888ca3a47a9c43efc29bfb6b.ckd",
416
+ "logoShadedImageURL": "https://jd-s3.akamaized.net/public/quests/2/jd2016-pc-all/quest_logo_shaded.tga.ckd/dbc4f4818f1055c566307367784fcb6e.ckd"
417
+ },
418
+ "id": "2",
419
+ "locked": 0,
420
+ "playlist": [
421
+ "GangnamStyleDLC",
422
+ "Cheerleader",
423
+ "BadRomance"
424
+ ],
425
+ "title": "Throne"
426
+ }
427
+ ]
justdanceonline-main/local_settings/songdb/specificMaps.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {}
justdanceonline-main/local_settings/wdf/online-bosses.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "__class": "OnlineBossDb",
3
+ "bosses": {
4
+ "ArcherOfLove": {
5
+ "__class": "OnlineBoss",
6
+ "bossId": "ArcherOfLove",
7
+ "logo": "https://jd-s3.akamaized.net/public/wdf-bosses/ArcherOfLove/nx/logo.png/180863c7c26934f902e01b049af96f5c.png",
8
+ "newsFeedPictureUrl": "https://jd-s3.akamaized.net/public/wdf-bosses/ArcherOfLove/nx/ArcherOfLove.png/54d10b1d60e6216b027c859dd301adf7.png",
9
+ "packages": {
10
+ "bossContent": "ArcherOfLove_bossContent"
11
+ }
12
+ },
13
+ "TheLovelyGift": {
14
+ "__class": "OnlineBoss",
15
+ "bossId": "TheLovelyGift",
16
+ "logo": "https://jd-s3.akamaized.net/public/wdf-bosses/TheLovelyGift/nx/logo.png/45da7b3cd7599c8836986bc07f0c4f7a.png",
17
+ "newsFeedPictureUrl": "https://jd-s3.akamaized.net/public/wdf-bosses/TheLovelyGift/nx/TheLovelyGift.png/d159cc99843b1a5cddbfe6b27d9bf63a.png",
18
+ "packages": {
19
+ "bossContent": "TheLovelyGift_bossContent"
20
+ }
21
+ },
22
+ "TheRedQueen": {
23
+ "__class": "OnlineBoss",
24
+ "bossId": "TheRedQueen",
25
+ "logo": "https://jd-s3.akamaized.net/public/wdf-bosses/TheRedQueen/nx/logo.png/aa3566c16809b2be9e18604903ebb9fb.png",
26
+ "newsFeedPictureUrl": "https://jd-s3.akamaized.net/public/wdf-bosses/TheRedQueen/nx/TheRedQueen.png/69bead63709ce11cf310846a47f7f04c.png",
27
+ "packages": {
28
+ "bossContent": "TheRedQueen_bossContent"
29
+ }
30
+ }
31
+ }
32
+ }
justdanceonline-main/maps/10000Lucht.json ADDED
@@ -0,0 +1,110 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "artist": "K3",
3
+ "assets": {
4
+ "default": {
5
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/10000Lucht/ps4/10000Lucht_banner_bkg.tga.ckd/e087ad4483dea2883fa8ec5bc525ffdb.ckd",
6
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/10000Lucht/ps4/10000Lucht_Coach_1.tga.ckd/0699612d6e7faefc4edae44e0f115ad4.ckd",
7
+ "coach2ImageUrl": "https://jd-s3.akamaized.net/public/map/10000Lucht/ps4/10000Lucht_Coach_2.tga.ckd/2331f0b0b324b962b9ff0d753cc07b19.ckd",
8
+ "coach3ImageUrl": "https://jd-s3.akamaized.net/public/map/10000Lucht/ps4/10000Lucht_Coach_3.tga.ckd/3f91b11ba6a9a6709405fb959f3756b0.ckd",
9
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/10000Lucht/ps4/10000Lucht_Cover_Generic.tga.ckd/600b61e498083777ab63eadff549f50c.ckd",
10
+ "cover_1024ImageUrl": "https://jd-s3.akamaized.net/public/map/10000Lucht/10000Lucht_Cover_1024.png/e4196d244eef947687c1f574e72d1d1f.png",
11
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/10000Lucht/ps4/10000Lucht_Cover_Online.tga.ckd/2a72998818027f08daaad70b031b4c21.ckd",
12
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/10000Lucht/ps4/10000Lucht_Cover_AlbumBkg.tga.ckd/7dd83ce2a526e97696800d5ab4fe354b.ckd",
13
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/10000Lucht/ps4/10000Lucht_Cover_AlbumCoach.tga.ckd/b84a3901af64add9a69b4db595457f6d.ckd",
14
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/10000Lucht/10000Lucht_Coach_1_Phone.png/0b06c3f9c88e662414439b7c0534231e.png",
15
+ "phoneCoach2ImageUrl": "https://jd-s3.akamaized.net/public/map/10000Lucht/10000Lucht_Coach_2_Phone.png/2d1c00ae864cd9c95fe905b41b222993.png",
16
+ "phoneCoach3ImageUrl": "https://jd-s3.akamaized.net/public/map/10000Lucht/10000Lucht_Coach_3_Phone.png/0c58b99baa08e84403e9340ab2d846f9.png",
17
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/10000Lucht/10000Lucht_Cover_Phone.jpg/f06612216b15bd5338467e6b7c4bb8e3.jpg",
18
+ "videoPreviewVideoURL": "https://jd-s3.akamaized.net/public/map/10000Lucht/10000Lucht_VideoPreview.webm/c19b96c447f3074c0675c3ded0c3cb9d.webm",
19
+ "map_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/10000Lucht/ps4/10000Lucht_map_bkg.tga.ckd/137b1508cbcbffdb1a6a7545825bb958.ckd"
20
+ },
21
+ "nx": {
22
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/10000Lucht/nx/10000Lucht_banner_bkg.tga.ckd/d84746c55705e74bedbb0370174ac1bc.ckd",
23
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/10000Lucht/nx/10000Lucht_Coach_1.tga.ckd/351bfa8ffc884ec5423805bde0598459.ckd",
24
+ "coach2ImageUrl": "https://jd-s3.akamaized.net/public/map/10000Lucht/nx/10000Lucht_Coach_2.tga.ckd/6f57152f60542341b6a53d6e1a291ddc.ckd",
25
+ "coach3ImageUrl": "https://jd-s3.akamaized.net/public/map/10000Lucht/nx/10000Lucht_Coach_3.tga.ckd/d526e4e815ea78d8a5272ee4e41e2b82.ckd",
26
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/10000Lucht/nx/10000Lucht_Cover_Generic.tga.ckd/7fcada646cb1ef963ee96b388abb816f.ckd",
27
+ "cover_1024ImageUrl": "https://jd-s3.akamaized.net/public/map/10000Lucht/10000Lucht_Cover_1024.png/e4196d244eef947687c1f574e72d1d1f.png",
28
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/10000Lucht/nx/10000Lucht_Cover_Online.tga.ckd/33f7c281e61532b80d748434afe1a047.ckd",
29
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/10000Lucht/nx/10000Lucht_Cover_AlbumBkg.tga.ckd/cf9aa184d33115b2f73bf89631089fbc.ckd",
30
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/10000Lucht/nx/10000Lucht_Cover_AlbumCoach.tga.ckd/d5c3967fd8a4cc0cdb40025cbc29af2e.ckd",
31
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/10000Lucht/10000Lucht_Coach_1_Phone.png/0b06c3f9c88e662414439b7c0534231e.png",
32
+ "phoneCoach2ImageUrl": "https://jd-s3.akamaized.net/public/map/10000Lucht/10000Lucht_Coach_2_Phone.png/2d1c00ae864cd9c95fe905b41b222993.png",
33
+ "phoneCoach3ImageUrl": "https://jd-s3.akamaized.net/public/map/10000Lucht/10000Lucht_Coach_3_Phone.png/0c58b99baa08e84403e9340ab2d846f9.png",
34
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/10000Lucht/10000Lucht_Cover_Phone.jpg/f06612216b15bd5338467e6b7c4bb8e3.jpg",
35
+ "videoPreviewVideoURL": "https://jd-s3.akamaized.net/public/map/10000Lucht/10000Lucht_VideoPreview.webm/c19b96c447f3074c0675c3ded0c3cb9d.webm",
36
+ "map_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/10000Lucht/nx/10000Lucht_map_bkg.tga.ckd/9c59caa299300be19ad0b96440f1adda.ckd"
37
+ }
38
+ },
39
+ "audioPreviewData": "{\"__class\":\"MusicTrackData\",\"structure\":{\"__class\":\"MusicTrackStructure\",\"markers\":[0,26916,53832,80748,107664,134580,161495,188411,215327,242243,269159,296075,322991,349907,376823,403738,430654,457570,484486,511402,538318,565234,592150,619066,645981,672897,699813,726729,753645,780561,807477,834393,861309,888224,915140,942056,968972,995888,1022804,1049720,1076636,1103552,1130467,1157383,1184299,1211215,1238131,1265047,1291963,1318879,1345795,1372710,1399626,1426542],\"signatures\":[{\"__class\":\"MusicSignature\",\"marker\":0,\"beats\":4}],\"startBeat\":-2,\"endBeat\":380,\"fadeStartBeat\":0,\"useFadeStartBeat\":false,\"fadeEndBeat\":0,\"useFadeEndBeat\":false,\"videoStartTime\":0,\"previewEntry\":0,\"previewLoopStart\":0,\"previewLoopEnd\":53,\"volume\":0,\"fadeInDuration\":0,\"fadeInType\":0,\"fadeOutDuration\":0,\"fadeOutType\":0},\"path\":\"\",\"url\":\"jmcs://jd-contents/10000lucht/10000lucht_AudioPreview.ogg\"}",
40
+ "coachCount": 3,
41
+ "credits": "Just Dance Best is an online mod made by Just Dance Alliance. We are not affiliated with Ubisoft nor own any rights over their copyrighted content and trademark. Written and composed by Alain Vande Putte, Miguel Wiels and Peter Gillis. Published by Studio 100 nv. Courtesy of Studio 100 nv. All rights of the producer and other rightholders to the recorded work reserved. Unless otherwise authorized, the duplication, rental, loan, exchange or use of this video game for public performance, broadcasting and online distribution to the public are prohibited.",
42
+ "difficulty": 1,
43
+ "doubleScoringType": -1,
44
+ "jdmAttributes": [],
45
+ "lyricsColor": "B50055FF",
46
+ "lyricsType": 0,
47
+ "mainCoach": -1,
48
+ "mapLength": 214.72299999999998,
49
+ "mapName": "10000Lucht",
50
+ "mapPreviewMpd": "<?xml version=\"1.0\"?>\r\n<MPD xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"urn:mpeg:DASH:schema:MPD:2011\" xsi:schemaLocation=\"urn:mpeg:DASH:schema:MPD:2011\" type=\"static\" mediaPresentationDuration=\"PT30S\" minBufferTime=\"PT1S\" profiles=\"urn:webm:dash:profile:webm-on-demand:2012\">\r\n\t<Period id=\"0\" start=\"PT0S\" duration=\"PT30S\">\r\n\t\t<AdaptationSet id=\"0\" mimeType=\"video/webm\" codecs=\"vp8\" lang=\"eng\" maxWidth=\"720\" maxHeight=\"370\" subsegmentAlignment=\"true\" subsegmentStartsWithSAP=\"1\" bitstreamSwitching=\"true\">\r\n\t\t\t<Representation id=\"0\" bandwidth=\"497630\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/10000Lucht/10000Lucht_MapPreviewNoSoundCrop_LOW.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"617-1106\">\r\n\t\t\t\t\t<Initialization range=\"0-617\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"1\" bandwidth=\"1482148\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/10000Lucht/10000Lucht_MapPreviewNoSoundCrop_MID.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"618-1108\">\r\n\t\t\t\t\t<Initialization range=\"0-618\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"2\" bandwidth=\"2827627\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/10000Lucht/10000Lucht_MapPreviewNoSoundCrop_HIGH.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"618-1108\">\r\n\t\t\t\t\t<Initialization range=\"0-618\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"3\" bandwidth=\"2953636\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/10000Lucht/10000Lucht_MapPreviewNoSoundCrop_ULTRA.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"618-1108\">\r\n\t\t\t\t\t<Initialization range=\"0-618\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t</AdaptationSet>\r\n\t</Period>\r\n</MPD>\r\n",
51
+ "mode": 6,
52
+ "originalJDVersion": 2020,
53
+ "packages": {
54
+ "mapContent": "10000Lucht_mapContent"
55
+ },
56
+ "parentMapName": "10000Lucht",
57
+ "skuIds": [],
58
+ "songColors": {
59
+ "songColor_1A": "166593FF",
60
+ "songColor_1B": "1D023FFF",
61
+ "songColor_2A": "F21EFFFF",
62
+ "songColor_2B": "005A7FFF"
63
+ },
64
+ "status": 3,
65
+ "sweatDifficulty": 1,
66
+ "tags": [
67
+ "Main",
68
+ "subscribedSong"
69
+ ],
70
+ "title": "10.000 Luchtballonnen",
71
+ "urls": {
72
+ "jmcs://jd-contents/10000Lucht/10000Lucht_AudioPreview.ogg": "https://jd-s3.akamaized.net/public/map/10000Lucht/10000Lucht_AudioPreview.ogg/a4111d7fa9455356623aefed0cceca4f.ogg",
73
+ "jmcs://jd-contents/10000Lucht/10000Lucht_MapPreviewNoSoundCrop_HIGH.vp8.webm": "https://jd-s3.akamaized.net/public/map/10000Lucht/10000Lucht_MapPreviewNoSoundCrop_HIGH.vp8.webm/826c29864c6effbe6941335a79d6761f.webm",
74
+ "jmcs://jd-contents/10000Lucht/10000Lucht_MapPreviewNoSoundCrop_HIGH.vp9.webm": "https://jd-s3.akamaized.net/public/map/10000Lucht/10000Lucht_MapPreviewNoSoundCrop_HIGH.vp9.webm/4f02dd2bd9dd5f4ff8561e2d91926a09.webm",
75
+ "jmcs://jd-contents/10000Lucht/10000Lucht_MapPreviewNoSoundCrop_LOW.vp8.webm": "https://jd-s3.akamaized.net/public/map/10000Lucht/10000Lucht_MapPreviewNoSoundCrop_LOW.vp8.webm/427ffda3e61225037db3752f3d63bdc9.webm",
76
+ "jmcs://jd-contents/10000Lucht/10000Lucht_MapPreviewNoSoundCrop_LOW.vp9.webm": "https://jd-s3.akamaized.net/public/map/10000Lucht/10000Lucht_MapPreviewNoSoundCrop_LOW.vp9.webm/114250066f05154e03b3230b0f83bcdb.webm",
77
+ "jmcs://jd-contents/10000Lucht/10000Lucht_MapPreviewNoSoundCrop_MID.vp8.webm": "https://jd-s3.akamaized.net/public/map/10000Lucht/10000Lucht_MapPreviewNoSoundCrop_MID.vp8.webm/3c4c320e30723a71c7936dfc747eaede.webm",
78
+ "jmcs://jd-contents/10000Lucht/10000Lucht_MapPreviewNoSoundCrop_MID.vp9.webm": "https://jd-s3.akamaized.net/public/map/10000Lucht/10000Lucht_MapPreviewNoSoundCrop_MID.vp9.webm/47db2057cb52aa67b4ec1b072a5993d5.webm",
79
+ "jmcs://jd-contents/10000Lucht/10000Lucht_MapPreviewNoSoundCrop_ULTRA.vp8.webm": "https://jd-s3.akamaized.net/public/map/10000Lucht/10000Lucht_MapPreviewNoSoundCrop_ULTRA.vp8.webm/4bc689b1f7b724d9d117b65ddd3e996f.webm",
80
+ "jmcs://jd-contents/10000Lucht/10000Lucht_MapPreviewNoSoundCrop_ULTRA.vp9.webm": "https://jd-s3.akamaized.net/public/map/10000Lucht/10000Lucht_MapPreviewNoSoundCrop_ULTRA.vp9.webm/9c4054114d79034b323b3060a13dcbfc.webm"
81
+ },
82
+ "serverChangelist": 455481,
83
+ "skupackages": {
84
+ "orbis": {
85
+ "md5": "c5c613a0c80212828c78c62ec486c47d",
86
+ "storageType": 0,
87
+ "url": "https://jd-s3.akamaized.net/public/map/10000Lucht/ps4/10000Lucht_MAIN_SCENE_ORBIS.zip/c5c613a0c80212828c78c62ec486c47d.zip",
88
+ "version": 37
89
+ },
90
+ "nx": {
91
+ "md5": "bc01678a4e68623a1e32c8327eb22b55",
92
+ "storageType": 0,
93
+ "url": "https://jd-s3.akamaized.net/public/map/10000Lucht/nx/10000Lucht_MAIN_SCENE_NX.zip/bc01678a4e68623a1e32c8327eb22b55.zip",
94
+ "version": 37
95
+ },
96
+ "pc": {
97
+ "md5": "2824204eddc9081660d5e0ff0492392c",
98
+ "storageType": 0,
99
+ "url": "https://jd-s3.akamaized.net/public/map/10000Lucht/pc/10000Lucht_MAIN_SCENE_PC.zip/2824204eddc9081660d5e0ff0492392c.zip",
100
+ "version": 26
101
+ },
102
+ "wiiu": {
103
+ "md5": "0727099340d65e2eae2353f5012eb037",
104
+ "storageType": 0,
105
+ "url": "https://jd-s3.akamaized.net/public/map/10000Lucht/wiiu/10000Lucht_MAIN_SCENE_WIIU.zip/0727099340d65e2eae2353f5012eb037.zip",
106
+ "version": 22
107
+ }
108
+ },
109
+ "mapType": "jdu"
110
+ }
justdanceonline-main/maps/1999.json ADDED
@@ -0,0 +1,106 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "artist": "Charli XCX & Troye Sivan",
3
+ "assets": {
4
+ "default": {
5
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/1999/ps4/1999_banner_bkg.tga.ckd/a148d982bc6a50edbe9c4caacbd585c0.ckd",
6
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/1999/ps4/1999_Coach_1.tga.ckd/1f922041369573d0f3c88060fa5988f1.ckd",
7
+ "coach2ImageUrl": "https://jd-s3.akamaized.net/public/map/1999/ps4/1999_Coach_2.tga.ckd/047c9fafcf120b3eb678acec36304f93.ckd",
8
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/1999/ps4/1999_Cover_Generic.tga.ckd/f26540295874883f9118f7b28ebceefe.ckd",
9
+ "cover_1024ImageUrl": "https://jd-s3.akamaized.net/public/map/1999/1999_Cover_1024.png/f885f236ca076fb6b87b3a4648113e62.png",
10
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/1999/ps4/1999_Cover_Online.tga.ckd/2fc2d13026199b1eebb5a058b8ade4b6.ckd",
11
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/1999/ps4/1999_Cover_AlbumBkg.tga.ckd/3dc7626608d2919a93a5171f3845a48f.ckd",
12
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/1999/ps4/1999_Cover_AlbumCoach.tga.ckd/a76b2dfcdd206e1902f3e939a33aa042.ckd",
13
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/1999/1999_Coach_1_Phone.png/f643a873dd544ec5453ff23248c43ed0.png",
14
+ "phoneCoach2ImageUrl": "https://jd-s3.akamaized.net/public/map/1999/1999_Coach_2_Phone.png/3a91dab5a9a44b457ac88de682ba695b.png",
15
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/1999/1999_Cover_Phone.jpg/516ffa16d6f565e6bba66a8664761453.jpg",
16
+ "videoPreviewVideoURL": "https://jd-s3.akamaized.net/public/map/1999/1999_VideoPreview.webm/6c8bb28e9eb03f164989df32ffed5799.webm",
17
+ "map_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/1999/ps4/1999_map_bkg.tga.ckd/0563ccabe2b3bed6699880713bc8c318.ckd"
18
+ },
19
+ "nx": {
20
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/1999/nx/1999_banner_bkg.tga.ckd/622f8444f50b2c86928378073e924128.ckd",
21
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/1999/nx/1999_Coach_1.tga.ckd/a8a263d0f117ca32d8e0dc3cacfcb15d.ckd",
22
+ "coach2ImageUrl": "https://jd-s3.akamaized.net/public/map/1999/nx/1999_Coach_2.tga.ckd/2aa9764bd6486612951eec96fbaec9df.ckd",
23
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/1999/nx/1999_Cover_Generic.tga.ckd/cabdafb8c6983674da2a14291d209632.ckd",
24
+ "cover_1024ImageUrl": "https://jd-s3.akamaized.net/public/map/1999/1999_Cover_1024.png/f885f236ca076fb6b87b3a4648113e62.png",
25
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/1999/nx/1999_Cover_Online.tga.ckd/1eb0db45c7422f68f33fe576704c0282.ckd",
26
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/1999/nx/1999_Cover_AlbumBkg.tga.ckd/251d4fd337b3d32ebd345ee5375941f3.ckd",
27
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/1999/nx/1999_Cover_AlbumCoach.tga.ckd/d3d6ab167f1e7205b86042e018b97ac2.ckd",
28
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/1999/1999_Coach_1_Phone.png/f643a873dd544ec5453ff23248c43ed0.png",
29
+ "phoneCoach2ImageUrl": "https://jd-s3.akamaized.net/public/map/1999/1999_Coach_2_Phone.png/3a91dab5a9a44b457ac88de682ba695b.png",
30
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/1999/1999_Cover_Phone.jpg/516ffa16d6f565e6bba66a8664761453.jpg",
31
+ "videoPreviewVideoURL": "https://jd-s3.akamaized.net/public/map/1999/1999_VideoPreview.webm/6c8bb28e9eb03f164989df32ffed5799.webm",
32
+ "map_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/1999/nx/1999_map_bkg.tga.ckd/b5da3e64049f069f44fcd21dce11cff4.ckd"
33
+ }
34
+ },
35
+ "audioPreviewData": "{\"__class\":\"MusicTrackData\",\"structure\":{\"__class\":\"MusicTrackStructure\",\"markers\":[0,23226,46452,69678,92904,116129,139355,162581,185807,209033,232258,255484,278710,301936,325162,348388,371613,394839,418065,441291,464517,487742,510968,534194,557420,580646,603871,627097,650323,673549,696775,720000,743226,766452,789678,812904,836129,859355,882581,905807,929033,952258,975484,998710,1021936,1045162,1068388,1091613,1114839,1138065,1161291,1184517,1207742,1230968,1254194,1277420,1300646,1323871,1347097,1370323,1393549,1416775],\"signatures\":[{\"__class\":\"MusicSignature\",\"marker\":0,\"beats\":4}],\"startBeat\":-8,\"endBeat\":394,\"fadeStartBeat\":0,\"useFadeStartBeat\":false,\"fadeEndBeat\":0,\"useFadeEndBeat\":false,\"videoStartTime\":0,\"previewEntry\":0,\"previewLoopStart\":0,\"previewLoopEnd\":61,\"volume\":0,\"fadeInDuration\":0,\"fadeInType\":0,\"fadeOutDuration\":0,\"fadeOutType\":0},\"path\":\"\",\"url\":\"jmcs://jd-contents/1999/1999_AudioPreview.ogg\"}",
36
+ "coachCount": 2,
37
+ "credits": "Just Dance Best is an online mod made by Just Dance Alliance. We are not affiliated with Ubisoft nor own any rights over their copyrighted content and trademark. Written by Charlotte Aitchison, Troye Sivan Mellet, Oscar Thomas Holter, Brett McLaughlin and Noonie Bao. Published by Stellar Songs Ltd. (PRS), Bob Ochoa’s Homemade Salsa (ASCAP), EMI Music Publishing Scandinavia AB (STIM). / Universal/MCA Music Ltd. / Wolf Cousins (STIM) and Warner/Chappell Music Scandinavia AB (STIM). All rights on behalf of Wolf Cousins and Warner/Chappell Music Scandinavia AB administered by WB Music Corp. All rights reserved. Used with permission. Courtesy of East West Records UK Ltd. By arrangement with Warner Music Group Film & TV Licensing. All rights of the producer and other rightholders to the recorded work reserved. Unless otherwise authorized, the duplication, rental, loan, exchange or use of this video game for public performance, broadcasting and online distribution to the public are prohibited.",
38
+ "difficulty": 2,
39
+ "doubleScoringType": -1,
40
+ "jdmAttributes": [],
41
+ "lyricsColor": "FF78C4FF",
42
+ "lyricsType": 0,
43
+ "mainCoach": -1,
44
+ "mapLength": 194.516,
45
+ "mapName": "1999",
46
+ "mapPreviewMpd": "<?xml version=\"1.0\"?>\r\n<MPD xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"urn:mpeg:DASH:schema:MPD:2011\" xsi:schemaLocation=\"urn:mpeg:DASH:schema:MPD:2011\" type=\"static\" mediaPresentationDuration=\"PT30S\" minBufferTime=\"PT1S\" profiles=\"urn:webm:dash:profile:webm-on-demand:2012\">\r\n\t<Period id=\"0\" start=\"PT0S\" duration=\"PT30S\">\r\n\t\t<AdaptationSet id=\"0\" mimeType=\"video/webm\" codecs=\"vp8\" lang=\"eng\" maxWidth=\"720\" maxHeight=\"370\" subsegmentAlignment=\"true\" subsegmentStartsWithSAP=\"1\" bitstreamSwitching=\"true\">\r\n\t\t\t<Representation id=\"0\" bandwidth=\"497923\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/1999/1999_MapPreviewNoSoundCrop_LOW.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"604-1093\">\r\n\t\t\t\t\t<Initialization range=\"0-604\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"1\" bandwidth=\"1484048\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/1999/1999_MapPreviewNoSoundCrop_MID.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"605-1095\">\r\n\t\t\t\t\t<Initialization range=\"0-605\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"2\" bandwidth=\"2948062\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/1999/1999_MapPreviewNoSoundCrop_HIGH.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"605-1095\">\r\n\t\t\t\t\t<Initialization range=\"0-605\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"3\" bandwidth=\"5804584\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/1999/1999_MapPreviewNoSoundCrop_ULTRA.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"605-1102\">\r\n\t\t\t\t\t<Initialization range=\"0-605\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t</AdaptationSet>\r\n\t</Period>\r\n</MPD>\r\n",
47
+ "mode": 6,
48
+ "originalJDVersion": 2020,
49
+ "packages": {
50
+ "mapContent": "1999_mapContent"
51
+ },
52
+ "parentMapName": "1999",
53
+ "skuIds": [],
54
+ "songColors": {
55
+ "songColor_1A": "048C57FF",
56
+ "songColor_1B": "005635FF",
57
+ "songColor_2A": "FF8A17FF",
58
+ "songColor_2B": "AC3D00FF"
59
+ },
60
+ "status": 3,
61
+ "sweatDifficulty": 2,
62
+ "tags": [
63
+ "Main",
64
+ "subscribedSong"
65
+ ],
66
+ "title": "1999",
67
+ "urls": {
68
+ "jmcs://jd-contents/1999/1999_AudioPreview.ogg": "https://jd-s3.akamaized.net/public/map/1999/1999_AudioPreview.ogg/4fadb8cee1ca5937ce8636eafbb0beec.ogg",
69
+ "jmcs://jd-contents/1999/1999_MapPreviewNoSoundCrop_HIGH.vp8.webm": "https://jd-s3.akamaized.net/public/map/1999/1999_MapPreviewNoSoundCrop_HIGH.vp8.webm/098eac031a0a27e542df9fa994ef6b62.webm",
70
+ "jmcs://jd-contents/1999/1999_MapPreviewNoSoundCrop_HIGH.vp9.webm": "https://jd-s3.akamaized.net/public/map/1999/1999_MapPreviewNoSoundCrop_HIGH.vp9.webm/4b94d4b03bc5b6afb4f8afa65187b784.webm",
71
+ "jmcs://jd-contents/1999/1999_MapPreviewNoSoundCrop_LOW.vp8.webm": "https://jd-s3.akamaized.net/public/map/1999/1999_MapPreviewNoSoundCrop_LOW.vp8.webm/6e1c9104fe5e28e9f22b7d313b01ac92.webm",
72
+ "jmcs://jd-contents/1999/1999_MapPreviewNoSoundCrop_LOW.vp9.webm": "https://jd-s3.akamaized.net/public/map/1999/1999_MapPreviewNoSoundCrop_LOW.vp9.webm/00a2a64b415ec7cadceaef378c426c6d.webm",
73
+ "jmcs://jd-contents/1999/1999_MapPreviewNoSoundCrop_MID.vp8.webm": "https://jd-s3.akamaized.net/public/map/1999/1999_MapPreviewNoSoundCrop_MID.vp8.webm/d8e50ad1ed5cf4407d9fddca73dff6e8.webm",
74
+ "jmcs://jd-contents/1999/1999_MapPreviewNoSoundCrop_MID.vp9.webm": "https://jd-s3.akamaized.net/public/map/1999/1999_MapPreviewNoSoundCrop_MID.vp9.webm/a32d53d65ff3b5bfa782136238bca091.webm",
75
+ "jmcs://jd-contents/1999/1999_MapPreviewNoSoundCrop_ULTRA.vp8.webm": "https://jd-s3.akamaized.net/public/map/1999/1999_MapPreviewNoSoundCrop_ULTRA.vp8.webm/aa327669d9319c06cf7e062be30a019f.webm",
76
+ "jmcs://jd-contents/1999/1999_MapPreviewNoSoundCrop_ULTRA.vp9.webm": "https://jd-s3.akamaized.net/public/map/1999/1999_MapPreviewNoSoundCrop_ULTRA.vp9.webm/1e7b5cb4b2405ca7bfbda04ed11e245f.webm"
77
+ },
78
+ "serverChangelist": 455481,
79
+ "skupackages": {
80
+ "orbis": {
81
+ "md5": "cb6e08b81802321e743d7c632bf3ac94",
82
+ "storageType": 0,
83
+ "url": "https://jd-s3.akamaized.net/public/map/1999/ps4/1999_MAIN_SCENE_ORBIS.zip/cb6e08b81802321e743d7c632bf3ac94.zip",
84
+ "version": 24
85
+ },
86
+ "nx": {
87
+ "md5": "511e6da97b820566bcae49843141fdaf",
88
+ "storageType": 0,
89
+ "url": "https://jd-s3.akamaized.net/public/map/1999/nx/1999_MAIN_SCENE_NX.zip/511e6da97b820566bcae49843141fdaf.zip",
90
+ "version": 25
91
+ },
92
+ "pc": {
93
+ "md5": "d9815016ae5d4698fec55fbf7f6812e5",
94
+ "storageType": 0,
95
+ "url": "https://jd-s3.akamaized.net/public/map/1999/pc/1999_MAIN_SCENE_PC.zip/d9815016ae5d4698fec55fbf7f6812e5.zip",
96
+ "version": 8
97
+ },
98
+ "wiiu": {
99
+ "md5": "56ed462798593bfe98b8297265e49e08",
100
+ "storageType": 0,
101
+ "url": "https://jd-s3.akamaized.net/public/map/1999/wiiu/1999_MAIN_SCENE_WIIU.zip/56ed462798593bfe98b8297265e49e08.zip",
102
+ "version": 14
103
+ }
104
+ },
105
+ "mapType": "jdu"
106
+ }
justdanceonline-main/maps/8BitRetake.json ADDED
@@ -0,0 +1,123 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "artist": "Dancing Bros.",
3
+ "assets": {
4
+ "default": {
5
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/8BitRetake/8BitRetake_banner_bkg.tga.ckd/632c94e4ad66392c869b0578ff614cc1.ckd",
6
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/8BitRetake/8BitRetake_Coach_1.tga.ckd/cb2c22780fe167b09ff27d67465583ea.ckd",
7
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/8BitRetake/8BitRetake_Cover_Generic.tga.ckd/9b2b0fa28a89df1810b4478db31171e0.ckd",
8
+ "cover_1024ImageUrl": "https://jd-s3.akamaized.net/public/map/8BitRetake/8BitRetake_Cover_1024.png/fab90ea4f62fc379ac967155f11b6e48.png",
9
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/8BitRetake/8BitRetake_Cover_Online.tga.ckd/9cf1ef6cad17dfa7ae796655e883f93f.ckd",
10
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/8BitRetake/8BitRetake_Cover_AlbumBkg.tga.ckd/c35181f02fd1705fbb694e17fb346c32.ckd",
11
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/8BitRetake/8BitRetake_Cover_AlbumCoach.tga.ckd/a12420f36e417310a0cdd585f7871edc.ckd",
12
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/8BitRetake/8BitRetake_Coach_1_Phone.png/bcae1ef7c878e33a4116f53afa21a5b3.png",
13
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/8BitRetake/8BitRetake_Cover_Phone.jpg/d1a47cbf0f03d1a733542e38f4fc5bbe.jpg",
14
+ "videoPreviewVideoURL": "https://jd-s3.akamaized.net/public/map/8BitRetake/8BitRetake_VideoPreview.webm/1fa882b1f1d44b336045414431b972f0.webm",
15
+ "map_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/8BitRetake/ps4/8BitRetake_map_bkg.tga.ckd/1480cdc70f00bcd63a08279a480f7982.ckd"
16
+ },
17
+ "nx": {
18
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/8BitRetake/8BitRetake_banner_bkg.tga.ckd/3a9442c13f93c7d1e546966c26d96179.ckd",
19
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/8BitRetake/8BitRetake_Coach_1.tga.ckd/9ca0e400c346d6adcc3927880e977352.ckd",
20
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/8BitRetake/8BitRetake_Cover_Generic.tga.ckd/332d8c5e26edb690115193683b95953e.ckd",
21
+ "cover_1024ImageUrl": "https://jd-s3.akamaized.net/public/map/8BitRetake/8BitRetake_Cover_1024.png/fab90ea4f62fc379ac967155f11b6e48.png",
22
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/8BitRetake/8BitRetake_Cover_Online.tga.ckd/46abafc40412ab98e03e8fe6d258a340.ckd",
23
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/8BitRetake/8BitRetake_Cover_AlbumBkg.tga.ckd/530171bb926a2c0e986df733c7728573.ckd",
24
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/8BitRetake/8BitRetake_Cover_AlbumCoach.tga.ckd/b4217a37c1e291094f45aa3a8d1fa382.ckd",
25
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/8BitRetake/8BitRetake_Coach_1_Phone.png/bcae1ef7c878e33a4116f53afa21a5b3.png",
26
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/8BitRetake/8BitRetake_Cover_Phone.jpg/d1a47cbf0f03d1a733542e38f4fc5bbe.jpg",
27
+ "videoPreviewVideoURL": "https://jd-s3.akamaized.net/public/map/8BitRetake/8BitRetake_VideoPreview.webm/1fa882b1f1d44b336045414431b972f0.webm",
28
+ "map_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/8BitRetake/nx/8BitRetake_map_bkg.tga.ckd/4a82179fe7e435ef88b7446a13c28455.ckd"
29
+ },
30
+ "wiiu": {
31
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/8BitRetake/8BitRetake_banner_bkg.tga.ckd/15e0e0053bac48f88b1d54e1dc782c69.ckd",
32
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/8BitRetake/8BitRetake_Coach_1.tga.ckd/b42b81e79d42f7fde3c75c358a594469.ckd",
33
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/8BitRetake/8BitRetake_Cover_Generic.tga.ckd/afbabca20c36d5a37aba4b2c6066f406.ckd",
34
+ "cover_1024ImageUrl": "https://jd-s3.akamaized.net/public/map/8BitRetake/8BitRetake_Cover_1024.png/fab90ea4f62fc379ac967155f11b6e48.png",
35
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/8BitRetake/8BitRetake_Cover_Online.tga.ckd/83ca00eee376b2182a5b1bbb4ad17e4d.ckd",
36
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/8BitRetake/8BitRetake_Cover_AlbumBkg.tga.ckd/3cffa13fb97d78ad3274f5dc24e85ebe.ckd",
37
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/8BitRetake/8BitRetake_Cover_AlbumCoach.tga.ckd/1259498b2abca96393872e36366b3fa1.ckd",
38
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/8BitRetake/8BitRetake_Coach_1_Phone.png/bcae1ef7c878e33a4116f53afa21a5b3.png",
39
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/8BitRetake/8BitRetake_Cover_Phone.jpg/d1a47cbf0f03d1a733542e38f4fc5bbe.jpg",
40
+ "videoPreviewVideoURL": "https://jd-s3.akamaized.net/public/map/8BitRetake/8BitRetake_VideoPreview.webm/1fa882b1f1d44b336045414431b972f0.webm"
41
+ }
42
+ },
43
+ "audioPreviewData": "{\"__class\":\"MusicTrackData\",\"structure\":{\"__class\":\"MusicTrackStructure\",\"markers\":[0,20544,41136,61728,82272,102864,123408,144000,164544,185136,205728,226272,246864,267408,288000,308544,329136,349728,370272,390864,411408,432000,452544,473136,493728,514272,534864,555408,576000,596544,617136,637728,658272,677472,696672,715872,735072,754272,773472,792672,811872,831072,850272,869472,888672,907872,927072,946272,965472,984672,1003872,1023072,1042272,1061472,1080672,1099872,1119072,1138272,1157472,1176672,1195872,1215072,1234272,1253472,1272672,1290672,1308672,1326672,1344672,1362672,1380672,1398672,1416672,1434672],\"signatures\":[{\"__class\":\"MusicSignature\",\"marker\":0,\"beats\":4}],\"startBeat\":-8,\"endBeat\":309,\"fadeStartBeat\":0,\"useFadeStartBeat\":false,\"fadeEndBeat\":0,\"useFadeEndBeat\":false,\"videoStartTime\":0,\"previewEntry\":0,\"previewLoopStart\":0,\"previewLoopEnd\":73,\"volume\":0,\"fadeInDuration\":0,\"fadeInType\":0,\"fadeOutDuration\":0,\"fadeOutType\":0},\"path\":\"\",\"url\":\"jmcs://jd-contents/8bitretake/8bitretake_AudioPreview.ogg\"}",
44
+ "coachCount": 1,
45
+ "credits": "Just Dance Best is an online mod made by Just Dance Alliance. We are not affiliated with Ubisoft nor own any rights over their copyrighted content and trademark. Produced, Performed, Engineered and Mixed by Steve Ouimette. Published by Ubisoft Music Publishing. Courtesy of Ubisoft Music. All rights of the producer and other rightholders to the recorded work reserved. Unless otherwise authorized, the duplication, rental, loan, exchange or use of this video game for public performance, broadcasting and online distribution to the public are prohibited.",
46
+ "difficulty": 2,
47
+ "doubleScoringType": -1,
48
+ "jdmAttributes": [],
49
+ "lyricsColor": "FF0000FF",
50
+ "lyricsType": 0,
51
+ "mainCoach": -1,
52
+ "mapLength": 158.45,
53
+ "mapName": "8BitRetake",
54
+ "mapPreviewMpd": "<?xml version=\"1.0\"?>\r\n<MPD xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"urn:mpeg:DASH:schema:MPD:2011\" xsi:schemaLocation=\"urn:mpeg:DASH:schema:MPD:2011\" type=\"static\" mediaPresentationDuration=\"PT30S\" minBufferTime=\"PT1S\" profiles=\"urn:webm:dash:profile:webm-on-demand:2012\">\r\n\t<Period id=\"0\" start=\"PT0S\" duration=\"PT30S\">\r\n\t\t<AdaptationSet id=\"0\" mimeType=\"video/webm\" codecs=\"vp8\" lang=\"eng\" maxWidth=\"720\" maxHeight=\"370\" subsegmentAlignment=\"true\" subsegmentStartsWithSAP=\"1\" bitstreamSwitching=\"true\">\r\n\t\t\t<Representation id=\"0\" bandwidth=\"496210\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/8BitRetake/8BitRetake_MapPreviewNoSoundCrop_LOW.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"627-1116\">\r\n\t\t\t\t\t<Initialization range=\"0-627\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"1\" bandwidth=\"1473119\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/8BitRetake/8BitRetake_MapPreviewNoSoundCrop_MID.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"628-1118\">\r\n\t\t\t\t\t<Initialization range=\"0-628\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"2\" bandwidth=\"2582922\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/8BitRetake/8BitRetake_MapPreviewNoSoundCrop_HIGH.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"628-1118\">\r\n\t\t\t\t\t<Initialization range=\"0-628\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"3\" bandwidth=\"2607502\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/8BitRetake/8BitRetake_MapPreviewNoSoundCrop_ULTRA.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"628-1118\">\r\n\t\t\t\t\t<Initialization range=\"0-628\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t</AdaptationSet>\r\n\t</Period>\r\n</MPD>\r\n",
55
+ "mode": 6,
56
+ "originalJDVersion": 2018,
57
+ "packages": {
58
+ "mapContent": "8BitRetake_mapContent"
59
+ },
60
+ "parentMapName": "8BitRetake",
61
+ "skuIds": [
62
+ "jd2018-nx-all",
63
+ "jd2018-ps4-scea",
64
+ "jd2018-ps4-scee",
65
+ "jd2018-wiiu-noa",
66
+ "jd2018-wiiu-noe",
67
+ "jd2018-xone-emea",
68
+ "jd2018-xone-ncsa"
69
+ ],
70
+ "songColors": {
71
+ "songColor_1A": "E60000FF",
72
+ "songColor_1B": "210101FF",
73
+ "songColor_2A": "1AC6FEFF",
74
+ "songColor_2B": "094501FF"
75
+ },
76
+ "status": 3,
77
+ "sweatDifficulty": 3,
78
+ "tags": [
79
+ "Main",
80
+ "subscribedSong",
81
+ "CnUnlimited2018"
82
+ ],
83
+ "title": "In The Hall Of The Pixel King",
84
+ "urls": {
85
+ "jmcs://jd-contents/8BitRetake/8BitRetake_AudioPreview.ogg": "https://jd-s3.akamaized.net/public/map/8BitRetake/8BitRetake_AudioPreview.ogg/e5c22fe9b867287747ba440de4d424dc.ogg",
86
+ "jmcs://jd-contents/8BitRetake/8BitRetake_MapPreviewNoSoundCrop_HIGH.vp8.webm": "https://jd-s3.akamaized.net/public/map/8BitRetake/8BitRetake_MapPreviewNoSoundCrop_HIGH.vp8.webm/dbfc0de340d2d3a79c94c5e1b985a332.webm",
87
+ "jmcs://jd-contents/8BitRetake/8BitRetake_MapPreviewNoSoundCrop_HIGH.vp9.webm": "https://jd-s3.akamaized.net/public/map/8BitRetake/8BitRetake_MapPreviewNoSoundCrop_HIGH.vp9.webm/3b272233762d23787ce8b13e58deb8e2.webm",
88
+ "jmcs://jd-contents/8BitRetake/8BitRetake_MapPreviewNoSoundCrop_LOW.vp8.webm": "https://jd-s3.akamaized.net/public/map/8BitRetake/8BitRetake_MapPreviewNoSoundCrop_LOW.vp8.webm/549edffa3e191e079aa5f093feb6c4a8.webm",
89
+ "jmcs://jd-contents/8BitRetake/8BitRetake_MapPreviewNoSoundCrop_LOW.vp9.webm": "https://jd-s3.akamaized.net/public/map/8BitRetake/8BitRetake_MapPreviewNoSoundCrop_LOW.vp9.webm/d6baba1fd3bbdf7805756ffd13e3750b.webm",
90
+ "jmcs://jd-contents/8BitRetake/8BitRetake_MapPreviewNoSoundCrop_MID.vp8.webm": "https://jd-s3.akamaized.net/public/map/8BitRetake/8BitRetake_MapPreviewNoSoundCrop_MID.vp8.webm/c8b69b5c03ecd2cf88bc7047d3478355.webm",
91
+ "jmcs://jd-contents/8BitRetake/8BitRetake_MapPreviewNoSoundCrop_MID.vp9.webm": "https://jd-s3.akamaized.net/public/map/8BitRetake/8BitRetake_MapPreviewNoSoundCrop_MID.vp9.webm/66efbccd601476d182e9fa229ef5b032.webm",
92
+ "jmcs://jd-contents/8BitRetake/8BitRetake_MapPreviewNoSoundCrop_ULTRA.vp8.webm": "https://jd-s3.akamaized.net/public/map/8BitRetake/8BitRetake_MapPreviewNoSoundCrop_ULTRA.vp8.webm/e34366015653261ad2f3ba2f1763e467.webm",
93
+ "jmcs://jd-contents/8BitRetake/8BitRetake_MapPreviewNoSoundCrop_ULTRA.vp9.webm": "https://jd-s3.akamaized.net/public/map/8BitRetake/8BitRetake_MapPreviewNoSoundCrop_ULTRA.vp9.webm/5d2d35c002dcbd0e74c271cf8eea71cc.webm"
94
+ },
95
+ "serverChangelist": 455481,
96
+ "skupackages": {
97
+ "orbis": {
98
+ "md5": "113d0bca513f9389c5ffeae4c10579b5",
99
+ "storageType": 0,
100
+ "url": "https://jd-s3.akamaized.net/public/map/8BitRetake/8BitRetake_MAIN_SCENE_ORBIS.zip/113d0bca513f9389c5ffeae4c10579b5.zip",
101
+ "version": 6
102
+ },
103
+ "nx": {
104
+ "md5": "a110de1cee429b704cfa5185af1ef8e9",
105
+ "storageType": 0,
106
+ "url": "https://jd-s3.akamaized.net/public/map/8BitRetake/8BitRetake_MAIN_SCENE_NX.zip/a110de1cee429b704cfa5185af1ef8e9.zip",
107
+ "version": 5
108
+ },
109
+ "pc": {
110
+ "md5": "fdb504153d9fe5b0ce0ba756faeab225",
111
+ "storageType": 0,
112
+ "url": "https://jd-s3.akamaized.net/public/map/8BitRetake/pc/8BitRetake_MAIN_SCENE_PC.zip/fdb504153d9fe5b0ce0ba756faeab225.zip",
113
+ "version": 2
114
+ },
115
+ "wiiu": {
116
+ "md5": "8b6276f804eede27a730b9e16e6b836b",
117
+ "storageType": 0,
118
+ "url": "https://jd-s3.akamaized.net/public/map/8BitRetake/8BitRetake_MAIN_SCENE_WIIU.zip/8b6276f804eede27a730b9e16e6b836b.zip",
119
+ "version": 6
120
+ }
121
+ },
122
+ "mapType": "jdu"
123
+ }
justdanceonline-main/maps/AboutThatBass.json ADDED
@@ -0,0 +1,114 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "artist": "Meghan Trainor",
3
+ "assets": {
4
+ "default": {
5
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBass/AboutThatBass_banner_bkg.jpg/c470fe7231bf38d92d8c6b1c9b926b7f.jpg",
6
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBass/AboutThatBass_Coach_1.png/84ae20bfa225e99361b702bae948e8d2.png",
7
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBass/AboutThatBass_Cover_Generic.jpg/f64a26aa4f08c80ed42243d916ba2cdd.jpg",
8
+ "cover_1024ImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBass/AboutThatBass_Cover_1024.png/5124c387687c2aa1557e0a788842efab.png",
9
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBass/AboutThatBass_Cover_Online.jpg/b8f2bbb5eda030df35fd0239f52ff797.jpg",
10
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBass/AboutThatBass_Cover_AlbumBkg.jpg/acccbd35f4148ed7a6a709d1c4b009d3.jpg",
11
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBass/AboutThatBass_Cover_AlbumCoach.png/cedc92e569bc9b24b9631d1eae5e2385.png",
12
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBass/AboutThatBass_Coach_1_Phone.png/3d9643daba8abf3741adf96c3d137b7e.png",
13
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBass/AboutThatBass_Cover_Phone.jpg/b8f2bbb5eda030df35fd0239f52ff797.jpg",
14
+ "videoPreviewVideoURL": "https://jd-s3.akamaized.net/public/map/AboutThatBass/AboutThatBass_VideoPreview.webm/93ac284dd958bf0d432699d5b2cdf22e.webm"
15
+ },
16
+ "nx": {
17
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBass/AboutThatBass_banner_bkg.jpg/c470fe7231bf38d92d8c6b1c9b926b7f.jpg",
18
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBass/AboutThatBass_Coach_1.png/84ae20bfa225e99361b702bae948e8d2.png",
19
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBass/AboutThatBass_Cover_Generic.jpg/f64a26aa4f08c80ed42243d916ba2cdd.jpg",
20
+ "cover_1024ImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBass/AboutThatBass_Cover_1024.png/5124c387687c2aa1557e0a788842efab.png",
21
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBass/AboutThatBass_Cover_Online.jpg/b8f2bbb5eda030df35fd0239f52ff797.jpg",
22
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBass/AboutThatBass_Cover_AlbumBkg.jpg/acccbd35f4148ed7a6a709d1c4b009d3.jpg",
23
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBass/AboutThatBass_Cover_AlbumCoach.png/cedc92e569bc9b24b9631d1eae5e2385.png",
24
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBass/AboutThatBass_Coach_1_Phone.png/3d9643daba8abf3741adf96c3d137b7e.png",
25
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBass/AboutThatBass_Cover_Phone.jpg/b8f2bbb5eda030df35fd0239f52ff797.jpg",
26
+ "videoPreviewVideoURL": "https://jd-s3.akamaized.net/public/map/AboutThatBass/AboutThatBass_VideoPreview.webm/93ac284dd958bf0d432699d5b2cdf22e.webm"
27
+ },
28
+ "wiiu": {
29
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBass/wiiu/AboutThatBass_banner_bkg.tga.ckd/6ff6336f0da9e85c0a7a062d5730945f.ckd",
30
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBass/wiiu/AboutThatBass_Coach_1.tga.ckd/5088873c9ef5b680d10f50ec42442c83.ckd",
31
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBass/wiiu/AboutThatBass_Cover_Generic.tga.ckd/30e44b5469f02192321f4da06284073c.ckd",
32
+ "cover_1024ImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBass/AboutThatBass_Cover_1024.png/5124c387687c2aa1557e0a788842efab.png",
33
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBass/wiiu/AboutThatBass_Cover_Online.tga.ckd/05ae8378226976948255f24530438285.ckd",
34
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBass/wiiu/AboutThatBass_Cover_AlbumBkg.tga.ckd/27536ce3feff787eb641c016b8d09cf6.ckd",
35
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBass/wiiu/AboutThatBass_Cover_AlbumCoach.tga.ckd/7bb66aed08ebd7dfddb35f8db266e598.ckd",
36
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBass/AboutThatBass_Coach_1_Phone.png/3d9643daba8abf3741adf96c3d137b7e.png",
37
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBass/AboutThatBass_Cover_Phone.jpg/b8f2bbb5eda030df35fd0239f52ff797.jpg",
38
+ "videoPreviewVideoURL": "https://jd-s3.akamaized.net/public/map/AboutThatBass/AboutThatBass_VideoPreview.webm/93ac284dd958bf0d432699d5b2cdf22e.webm"
39
+ }
40
+ },
41
+ "audioPreviewData": "{\"__class\":\"MusicTrackData\",\"structure\":{\"__class\":\"MusicTrackStructure\",\"markers\":[0,21504,43008,64464,85968,107472,128976,150432,171936,193439,214943,236399,257903,279407,300911,322415,343871,365375,386879,408383,429839,451343,472847,494351,515807,537311,558815,580319,601775,623279,644783,666287,687743,709247,730751,752255,773759,795215,816719,838222,859726,881182,902686,924190,945694,967150,988654,1010158,1031662,1053118,1074622,1096126,1117630,1139086,1160590,1182094,1203598,1225054,1246558,1268062,1289566,1311070,1332526,1354030,1375534,1397038,1418494,1439998],\"signatures\":[{\"__class\":\"MusicSignature\",\"marker\":0,\"beats\":4}],\"startBeat\":-2,\"endBeat\":422,\"fadeStartBeat\":0,\"useFadeStartBeat\":false,\"fadeEndBeat\":0,\"useFadeEndBeat\":false,\"videoStartTime\":0,\"previewEntry\":0,\"previewLoopStart\":0,\"previewLoopEnd\":67,\"volume\":0,\"fadeInDuration\":0,\"fadeInType\":0,\"fadeOutDuration\":0,\"fadeOutType\":0},\"path\":\"\",\"url\":\"jmcs://jd-contents/aboutthatbass/aboutthatbass_AudioPreview.ogg\"}",
42
+ "coachCount": 1,
43
+ "credits": "Just Dance Best is an online mod made by Just Dance Alliance. We are not affiliated with Ubisoft nor own any rights over their copyrighted content and trademark. All rights of the producer and other rightholders to the recorded work reserved. Unless otherwise authorized, the duplication, rental, loan, exchange or use of this video game for public performance, broadcasting and online distribution to the public are prohibited.",
44
+ "difficulty": 2,
45
+ "doubleScoringType": -1,
46
+ "jdmAttributes": [],
47
+ "lyricsColor": "6F46F0FF",
48
+ "lyricsType": 0,
49
+ "mainCoach": -1,
50
+ "mapLength": 189.852,
51
+ "mapName": "AboutThatBass",
52
+ "mapPreviewMpd": "<?xml version=\"1.0\"?>\r\n<MPD xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"urn:mpeg:DASH:schema:MPD:2011\" xsi:schemaLocation=\"urn:mpeg:DASH:schema:MPD:2011\" type=\"static\" mediaPresentationDuration=\"PT30S\" minBufferTime=\"PT1S\" profiles=\"urn:webm:dash:profile:webm-on-demand:2012\">\r\n\t<Period id=\"0\" start=\"PT0S\" duration=\"PT30S\">\r\n\t\t<AdaptationSet id=\"0\" mimeType=\"video/webm\" codecs=\"vp8\" lang=\"eng\" maxWidth=\"720\" maxHeight=\"370\" subsegmentAlignment=\"true\" subsegmentStartsWithSAP=\"1\" bitstreamSwitching=\"true\">\r\n\t\t\t<Representation id=\"0\" bandwidth=\"495785\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/AboutThatBass/AboutThatBass_MapPreviewNoSoundCrop_LOW.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"632-1121\">\r\n\t\t\t\t\t<Initialization range=\"0-632\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"1\" bandwidth=\"1159754\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/AboutThatBass/AboutThatBass_MapPreviewNoSoundCrop_MID.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"633-1123\">\r\n\t\t\t\t\t<Initialization range=\"0-633\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"2\" bandwidth=\"1160789\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/AboutThatBass/AboutThatBass_MapPreviewNoSoundCrop_HIGH.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"633-1123\">\r\n\t\t\t\t\t<Initialization range=\"0-633\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"3\" bandwidth=\"1160778\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/AboutThatBass/AboutThatBass_MapPreviewNoSoundCrop_ULTRA.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"633-1123\">\r\n\t\t\t\t\t<Initialization range=\"0-633\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t</AdaptationSet>\r\n\t</Period>\r\n</MPD>\r\n",
53
+ "mode": 6,
54
+ "originalJDVersion": 2016,
55
+ "packages": {
56
+ "mapContent": "AboutThatBass_mapContent"
57
+ },
58
+ "parentMapName": "AboutThatBass",
59
+ "skuIds": [
60
+ "jd2017-pc-ww"
61
+ ],
62
+ "songColors": {
63
+ "songColor_1A": "FFC052FF",
64
+ "songColor_1B": "CE6F2FFF",
65
+ "songColor_2A": "8669FFFF",
66
+ "songColor_2B": "30006CFF"
67
+ },
68
+ "status": 5,
69
+ "sweatDifficulty": 1,
70
+ "tags": [
71
+ "Main",
72
+ "freeSong"
73
+ ],
74
+ "title": "All About That Bass",
75
+ "urls": {
76
+ "jmcs://jd-contents/AboutThatBass/AboutThatBass_AudioPreview.ogg": "https://jd-s3.akamaized.net/public/map/AboutThatBass/AboutThatBass_AudioPreview.ogg/4dde4e8e7aa25c84516d6771803d79c1.ogg",
77
+ "jmcs://jd-contents/AboutThatBass/AboutThatBass_MapPreviewNoSoundCrop_HIGH.vp8.webm": "https://jd-s3.akamaized.net/public/map/AboutThatBass/AboutThatBass_MapPreviewNoSoundCrop_HIGH.vp8.webm/2ed6da87c34e2105035df171372c5192.webm",
78
+ "jmcs://jd-contents/AboutThatBass/AboutThatBass_MapPreviewNoSoundCrop_HIGH.vp9.webm": "https://jd-s3.akamaized.net/public/map/AboutThatBass/AboutThatBass_MapPreviewNoSoundCrop_HIGH.vp9.webm/635368ac17f788cb5be79e75f8a59fff.webm",
79
+ "jmcs://jd-contents/AboutThatBass/AboutThatBass_MapPreviewNoSoundCrop_LOW.vp8.webm": "https://jd-s3.akamaized.net/public/map/AboutThatBass/AboutThatBass_MapPreviewNoSoundCrop_LOW.vp8.webm/94ee4ccf8bfa84fd3fc0eb721d5581a7.webm",
80
+ "jmcs://jd-contents/AboutThatBass/AboutThatBass_MapPreviewNoSoundCrop_LOW.vp9.webm": "https://jd-s3.akamaized.net/public/map/AboutThatBass/AboutThatBass_MapPreviewNoSoundCrop_LOW.vp9.webm/2a2be34cb365aececbc355ed7d9b1ea6.webm",
81
+ "jmcs://jd-contents/AboutThatBass/AboutThatBass_MapPreviewNoSoundCrop_MID.vp8.webm": "https://jd-s3.akamaized.net/public/map/AboutThatBass/AboutThatBass_MapPreviewNoSoundCrop_MID.vp8.webm/6f6abc7150ff35863d6703321195bac7.webm",
82
+ "jmcs://jd-contents/AboutThatBass/AboutThatBass_MapPreviewNoSoundCrop_MID.vp9.webm": "https://jd-s3.akamaized.net/public/map/AboutThatBass/AboutThatBass_MapPreviewNoSoundCrop_MID.vp9.webm/0b750d0d89bca7a9ab750091f3ebf5a1.webm",
83
+ "jmcs://jd-contents/AboutThatBass/AboutThatBass_MapPreviewNoSoundCrop_ULTRA.vp8.webm": "https://jd-s3.akamaized.net/public/map/AboutThatBass/AboutThatBass_MapPreviewNoSoundCrop_ULTRA.vp8.webm/374ac0e5d8a4147b665b9e70062056e4.webm",
84
+ "jmcs://jd-contents/AboutThatBass/AboutThatBass_MapPreviewNoSoundCrop_ULTRA.vp9.webm": "https://jd-s3.akamaized.net/public/map/AboutThatBass/AboutThatBass_MapPreviewNoSoundCrop_ULTRA.vp9.webm/d1361612d5ef1b6680518528867b79b7.webm"
85
+ },
86
+ "serverChangelist": 455481,
87
+ "skupackages": {
88
+ "orbis": {
89
+ "md5": "15ac7a8c910ed3b1c1786762a0348230",
90
+ "storageType": 0,
91
+ "url": "https://jd-s3.akamaized.net/public/map/AboutThatBass/ps4/AboutThatBass_MAIN_SCENE_ORBIS.zip/15ac7a8c910ed3b1c1786762a0348230.zip",
92
+ "version": 5
93
+ },
94
+ "pc": {
95
+ "md5": "4c5356f788dddc5058e65f116dc533e4",
96
+ "storageType": 0,
97
+ "url": "https://jd-s3.akamaized.net/public/map/AboutThatBass/pc/AboutThatBass_MAIN_SCENE_PC.zip/4c5356f788dddc5058e65f116dc533e4.zip",
98
+ "version": 3
99
+ },
100
+ "wiiu": {
101
+ "md5": "bdf1548251a85d46a07ba630e5e807a3",
102
+ "storageType": 0,
103
+ "url": "https://jd-s3.akamaized.net/public/map/AboutThatBass/wiiu/AboutThatBass_MAIN_SCENE_WIIU.zip/bdf1548251a85d46a07ba630e5e807a3.zip",
104
+ "version": 5
105
+ },
106
+ "nx": {
107
+ "md5": "a73539e5249323896ab628c2612a74ae",
108
+ "storageType": 0,
109
+ "url": "https://jd-s3.akamaized.net/public/map/AboutThatBass/nx/AboutThatBass_MAIN_SCENE_NX.zip/a73539e5249323896ab628c2612a74ae.zip",
110
+ "version": 4
111
+ }
112
+ },
113
+ "mapType": "jdu"
114
+ }
justdanceonline-main/maps/AboutThatBassALT.json ADDED
@@ -0,0 +1,118 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "artist": "Meghan Trainor",
3
+ "assets": {
4
+ "default": {
5
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBassALT/AboutThatBassALT_banner_bkg.jpg/e0ac1830f2f5d886a9190e11748f7150.jpg",
6
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBassALT/AboutThatBassALT_Coach_1.png/6867f555fe5732aae6763d12f318bdff.png",
7
+ "coach2ImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBassALT/AboutThatBassALT_Coach_2.png/67d1c3265eb2b24e92cdd437ca80abdb.png",
8
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBassALT/AboutThatBassALT_Cover_Generic.jpg/4b35834e6be83f603bc9f99aada09dbc.jpg",
9
+ "cover_1024ImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBassALT/AboutThatBassALT_Cover_1024.png/7fbe7b4cf520d37088b04cf2e03ce9ef.png",
10
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBassALT/AboutThatBassALT_Cover_Online.jpg/55b1a12eae0d628f73211f8aa2b415f6.jpg",
11
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBassALT/AboutThatBassALT_Cover_AlbumBkg.jpg/25a676086eddfbc4c6ccf26b9b9d57c9.jpg",
12
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBassALT/AboutThatBassALT_Cover_AlbumCoach.png/6d7fd51887bb8a7550c181457fc773f1.png",
13
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBassALT/AboutThatBassALT_Coach_1_Phone.png/068927a15b6094993e128e748448a181.png",
14
+ "phoneCoach2ImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBassALT/AboutThatBassALT_Coach_2_Phone.png/27a4c9dc896e02aeaffe28bbdf1e68b5.png",
15
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBassALT/AboutThatBassALT_Cover_Phone.jpg/55b1a12eae0d628f73211f8aa2b415f6.jpg"
16
+ },
17
+ "nx": {
18
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBassALT/AboutThatBassALT_banner_bkg.jpg/e0ac1830f2f5d886a9190e11748f7150.jpg",
19
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBassALT/AboutThatBassALT_Coach_1.png/6867f555fe5732aae6763d12f318bdff.png",
20
+ "coach2ImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBassALT/AboutThatBassALT_Coach_2.png/67d1c3265eb2b24e92cdd437ca80abdb.png",
21
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBassALT/AboutThatBassALT_Cover_Generic.jpg/4b35834e6be83f603bc9f99aada09dbc.jpg",
22
+ "cover_1024ImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBassALT/AboutThatBassALT_Cover_1024.png/7fbe7b4cf520d37088b04cf2e03ce9ef.png",
23
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBassALT/AboutThatBassALT_Cover_Online.jpg/55b1a12eae0d628f73211f8aa2b415f6.jpg",
24
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBassALT/AboutThatBassALT_Cover_AlbumBkg.jpg/25a676086eddfbc4c6ccf26b9b9d57c9.jpg",
25
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBassALT/AboutThatBassALT_Cover_AlbumCoach.png/6d7fd51887bb8a7550c181457fc773f1.png",
26
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBassALT/AboutThatBassALT_Coach_1_Phone.png/068927a15b6094993e128e748448a181.png",
27
+ "phoneCoach2ImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBassALT/AboutThatBassALT_Coach_2_Phone.png/27a4c9dc896e02aeaffe28bbdf1e68b5.png",
28
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBassALT/AboutThatBassALT_Cover_Phone.jpg/55b1a12eae0d628f73211f8aa2b415f6.jpg"
29
+ },
30
+ "wiiu": {
31
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBassALT/wiiu/AboutThatBassALT_banner_bkg.tga.ckd/53ef806864395907adf49f0eea3325f3.ckd",
32
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBassALT/wiiu/AboutThatBassALT_Coach_1.tga.ckd/a2b72a03db5941df61b0b92fc48660f7.ckd",
33
+ "coach2ImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBassALT/wiiu/AboutThatBassALT_Coach_2.tga.ckd/5d49d2543dc051b05c3e6791b349bf05.ckd",
34
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBassALT/wiiu/AboutThatBassALT_Cover_Generic.tga.ckd/0074d47b8ab89d1eb3a1edb12729915b.ckd",
35
+ "cover_1024ImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBassALT/AboutThatBassALT_Cover_1024.png/7fbe7b4cf520d37088b04cf2e03ce9ef.png",
36
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBassALT/wiiu/AboutThatBassALT_Cover_Online.tga.ckd/1ec456a26b0219da02fdad321b47624d.ckd",
37
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBassALT/wiiu/AboutThatBassALT_Cover_AlbumBkg.tga.ckd/96218cee07d1ab1e41b64d072e18b7e6.ckd",
38
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBassALT/wiiu/AboutThatBassALT_Cover_AlbumCoach.tga.ckd/f595f799db6ecfaf18816a34d59a57f7.ckd",
39
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBassALT/AboutThatBassALT_Coach_1_Phone.png/068927a15b6094993e128e748448a181.png",
40
+ "phoneCoach2ImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBassALT/AboutThatBassALT_Coach_2_Phone.png/27a4c9dc896e02aeaffe28bbdf1e68b5.png",
41
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/AboutThatBassALT/AboutThatBassALT_Cover_Phone.jpg/55b1a12eae0d628f73211f8aa2b415f6.jpg"
42
+ }
43
+ },
44
+ "audioPreviewData": "{\"__class\":\"MusicTrackData\",\"structure\":{\"__class\":\"MusicTrackStructure\",\"markers\":[0,21504,43008,64464,85968,107472,128976,150432,171936,193439,214943,236399,257903,279407,300911,322415,343871,365375,386879,408383,429839,451343,472847,494351,515807,537311,558815,580319,601775,623279,644783,666287,687743,709247,730751,752255,773759,795215,816719,838222,859726,881182,902686,924190,945694,967150,988654,1010158,1031662,1053118,1074622,1096126,1117630,1139086,1160590,1182094,1203598,1225054,1246558,1268062,1289566,1311070,1332526,1354030,1375534,1397038,1418494,1439998],\"signatures\":[{\"__class\":\"MusicSignature\",\"marker\":0,\"beats\":4}],\"startBeat\":-15,\"endBeat\":423,\"fadeStartBeat\":0,\"useFadeStartBeat\":false,\"fadeEndBeat\":0,\"useFadeEndBeat\":false,\"videoStartTime\":0,\"previewEntry\":0,\"previewLoopStart\":0,\"previewLoopEnd\":67,\"volume\":0,\"fadeInDuration\":0,\"fadeInType\":0,\"fadeOutDuration\":0,\"fadeOutType\":0},\"path\":\"\",\"url\":\"jmcs://jd-contents/aboutthatbassalt/aboutthatbassalt_AudioPreview.ogg\"}",
45
+ "coachCount": 2,
46
+ "credits": "Just Dance Best is an online mod made by Just Dance Alliance. We are not affiliated with Ubisoft nor own any rights over their copyrighted content and trademark. All rights of the producer and other rightholders to the recorded work reserved. Unless otherwise authorized, the duplication, rental, loan, exchange or use of this video game for public performance, broadcasting and online distribution to the public are prohibited.",
47
+ "difficulty": 2,
48
+ "doubleScoringType": -1,
49
+ "jdmAttributes": [],
50
+ "lyricsColor": "C97AFAFF",
51
+ "lyricsType": 0,
52
+ "mainCoach": -1,
53
+ "mapLength": 196.119,
54
+ "mapName": "AboutThatBassALT",
55
+ "mapPreviewMpd": "<?xml version=\"1.0\"?>\r\n<MPD xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"urn:mpeg:DASH:schema:MPD:2011\" xsi:schemaLocation=\"urn:mpeg:DASH:schema:MPD:2011\" type=\"static\" mediaPresentationDuration=\"PT30S\" minBufferTime=\"PT1S\" profiles=\"urn:webm:dash:profile:webm-on-demand:2012\">\r\n\t<Period id=\"0\" start=\"PT0S\" duration=\"PT30S\">\r\n\t\t<AdaptationSet id=\"0\" mimeType=\"video/webm\" codecs=\"vp8\" lang=\"eng\" maxWidth=\"720\" maxHeight=\"370\" subsegmentAlignment=\"true\" subsegmentStartsWithSAP=\"1\" bitstreamSwitching=\"true\">\r\n\t\t\t<Representation id=\"0\" bandwidth=\"497799\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/AboutThatBassALT/AboutThatBassALT_MapPreviewNoSoundCrop_LOW.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"614-1103\">\r\n\t\t\t\t\t<Initialization range=\"0-614\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"1\" bandwidth=\"1482740\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/AboutThatBassALT/AboutThatBassALT_MapPreviewNoSoundCrop_MID.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"615-1105\">\r\n\t\t\t\t\t<Initialization range=\"0-615\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"2\" bandwidth=\"2644315\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/AboutThatBassALT/AboutThatBassALT_MapPreviewNoSoundCrop_HIGH.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"615-1105\">\r\n\t\t\t\t\t<Initialization range=\"0-615\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"3\" bandwidth=\"2711277\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/AboutThatBassALT/AboutThatBassALT_MapPreviewNoSoundCrop_ULTRA.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"615-1105\">\r\n\t\t\t\t\t<Initialization range=\"0-615\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t</AdaptationSet>\r\n\t</Period>\r\n</MPD>\r\n",
56
+ "mode": 6,
57
+ "originalJDVersion": 2016,
58
+ "packages": {
59
+ "mapContent": "AboutThatBassALT_mapContent"
60
+ },
61
+ "parentMapName": "AboutThatBassALT",
62
+ "skuIds": [
63
+ "jd2017-pc-ww"
64
+ ],
65
+ "songColors": {
66
+ "songColor_1A": "4DDBD2FF",
67
+ "songColor_1B": "255687FF",
68
+ "songColor_2A": "A8CA09FF",
69
+ "songColor_2B": "004930FF"
70
+ },
71
+ "status": 5,
72
+ "sweatDifficulty": 1,
73
+ "tags": [
74
+ "Main",
75
+ "freeSong"
76
+ ],
77
+ "title": "All About That Bass",
78
+ "urls": {
79
+ "jmcs://jd-contents/AboutThatBassALT/AboutThatBassALT_AudioPreview.ogg": "https://jd-s3.akamaized.net/public/map/AboutThatBassALT/AboutThatBassALT_AudioPreview.ogg/744035e1cc69297d7ccc3b8b81630f15.ogg",
80
+ "jmcs://jd-contents/AboutThatBassALT/AboutThatBassALT_MapPreviewNoSoundCrop_HIGH.vp8.webm": "https://jd-s3.akamaized.net/public/map/AboutThatBassALT/AboutThatBassALT_MapPreviewNoSoundCrop_HIGH.vp8.webm/7058170d585d26fd98d312d991cef363.webm",
81
+ "jmcs://jd-contents/AboutThatBassALT/AboutThatBassALT_MapPreviewNoSoundCrop_HIGH.vp9.webm": "https://jd-s3.akamaized.net/public/map/AboutThatBassALT/AboutThatBassALT_MapPreviewNoSoundCrop_HIGH.vp9.webm/e8005e1cdd7993071da0eb7f24d6a21a.webm",
82
+ "jmcs://jd-contents/AboutThatBassALT/AboutThatBassALT_MapPreviewNoSoundCrop_LOW.vp8.webm": "https://jd-s3.akamaized.net/public/map/AboutThatBassALT/AboutThatBassALT_MapPreviewNoSoundCrop_LOW.vp8.webm/0282146314622a6acec405b9befca83c.webm",
83
+ "jmcs://jd-contents/AboutThatBassALT/AboutThatBassALT_MapPreviewNoSoundCrop_LOW.vp9.webm": "https://jd-s3.akamaized.net/public/map/AboutThatBassALT/AboutThatBassALT_MapPreviewNoSoundCrop_LOW.vp9.webm/1a99a2aa08dd991a7c1d1d57bcdef57b.webm",
84
+ "jmcs://jd-contents/AboutThatBassALT/AboutThatBassALT_MapPreviewNoSoundCrop_MID.vp8.webm": "https://jd-s3.akamaized.net/public/map/AboutThatBassALT/AboutThatBassALT_MapPreviewNoSoundCrop_MID.vp8.webm/5185901b502e3bde25d22108035fc2c8.webm",
85
+ "jmcs://jd-contents/AboutThatBassALT/AboutThatBassALT_MapPreviewNoSoundCrop_MID.vp9.webm": "https://jd-s3.akamaized.net/public/map/AboutThatBassALT/AboutThatBassALT_MapPreviewNoSoundCrop_MID.vp9.webm/fa69f27aa468f70f30027f77e105e84d.webm",
86
+ "jmcs://jd-contents/AboutThatBassALT/AboutThatBassALT_MapPreviewNoSoundCrop_ULTRA.vp8.webm": "https://jd-s3.akamaized.net/public/map/AboutThatBassALT/AboutThatBassALT_MapPreviewNoSoundCrop_ULTRA.vp8.webm/627892d401860c1412f2e5080ba8266c.webm",
87
+ "jmcs://jd-contents/AboutThatBassALT/AboutThatBassALT_MapPreviewNoSoundCrop_ULTRA.vp9.webm": "https://jd-s3.akamaized.net/public/map/AboutThatBassALT/AboutThatBassALT_MapPreviewNoSoundCrop_ULTRA.vp9.webm/7bfdc5f7df59b20d59818219b809206c.webm"
88
+ },
89
+ "serverChangelist": 455481,
90
+ "skupackages": {
91
+ "orbis": {
92
+ "md5": "d14b97d6df480efd3985ea2674cdf975",
93
+ "storageType": 0,
94
+ "url": "https://jd-s3.akamaized.net/public/map/AboutThatBassALT/ps4/AboutThatBassALT_MAIN_SCENE_ORBIS.zip/d14b97d6df480efd3985ea2674cdf975.zip",
95
+ "version": 14
96
+ },
97
+ "pc": {
98
+ "md5": "4ff3ba8d33c54ec7ca766c6626b66626",
99
+ "storageType": 0,
100
+ "url": "https://jd-s3.akamaized.net/public/map/AboutThatBassALT/pc/AboutThatBassALT_MAIN_SCENE_PC.zip/4ff3ba8d33c54ec7ca766c6626b66626.zip",
101
+ "version": 8
102
+ },
103
+ "wiiu": {
104
+ "md5": "2a23fd3a2ca823f7afbb513d506edbd3",
105
+ "storageType": 0,
106
+ "url": "https://jd-s3.akamaized.net/public/map/AboutThatBassALT/wiiu/AboutThatBassALT_MAIN_SCENE_WIIU.zip/2a23fd3a2ca823f7afbb513d506edbd3.zip",
107
+ "version": 12
108
+ },
109
+ "nx": {
110
+ "md5": "3dbbd3103c117fc5cb271164604ed2ed",
111
+ "storageType": 0,
112
+ "url": "https://jd-s3.akamaized.net/public/map/AboutThatBassALT/nx/AboutThatBassALT_MAIN_SCENE_NX.zip/3dbbd3103c117fc5cb271164604ed2ed.zip",
113
+ "version": 10
114
+ }
115
+ },
116
+ "mapType": "jdu",
117
+ "customTypeNameId": 12619
118
+ }
justdanceonline-main/maps/AddictedToYou.json ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "artist": "Avicii",
3
+ "assets": {
4
+ "default": {
5
+ "banner_bkgImageUrl": "https://jdbest-cdn.s3.amazonaws.com/public/map/AddictedToYou/textures/AddictedToYou_banner_bkg.png",
6
+ "coach1ImageUrl": "https://jdbest-cdn.s3.amazonaws.com/public/map/AddictedToYou/textures/AddictedToYou_Coach_1.png",
7
+ "coverImageUrl": "https://jdbest-cdn.s3.amazonaws.com/public/map/AddictedToYou/textures/AddictedToYou_Cover_Generic.png",
8
+ "cover_1024ImageUrl": "https://jdbest-cdn.s3.amazonaws.com/public/map/AddictedToYou/textures/AddictedToYou_Cover_1024.png",
9
+ "cover_smallImageUrl": "https://jdbest-cdn.s3.amazonaws.com/public/map/AddictedToYou/textures/AddictedToYou_Cover_Generic.png",
10
+ "expandBkgImageUrl": "https://jdbest-cdn.s3.amazonaws.com/public/map/AddictedToYou/textures/AddictedToYou_Cover_AlbumBkg.png",
11
+ "expandCoachImageUrl": "https://jdbest-cdn.s3.amazonaws.com/public/map/AddictedToYou/textures/AddictedToYou_Cover_AlbumCoach.png",
12
+ "phoneCoach1ImageUrl": "https://jdbest-cdn.s3.amazonaws.com/public/map/AddictedToYou/textures/AddictedToYou_Coach_1.png",
13
+ "phoneCoverImageUrl": "https://jdbest-cdn.s3.amazonaws.com/public/map/AddictedToYou/textures/AddictedToYou_Cover_Generic.png",
14
+ "videoPreviewVideoURL": "https://jdbest-cdn.s3.amazonaws.com/public/map/AddictedToYou/textures/AddictedToYou_VideoPreview.webm",
15
+ "map_bkgImageUrl": "https://jdbest-cdn.s3.amazonaws.com/public/map/AddictedToYou/textures/AddictedToYou_map_bkg.png"
16
+ },
17
+ "nx": {
18
+ "banner_bkgImageUrl": "https://jdbest-cdn.s3.amazonaws.com/public/map/AddictedToYou/textures/AddictedToYou_banner_bkg.png",
19
+ "coach1ImageUrl": "https://jdbest-cdn.s3.amazonaws.com/public/map/AddictedToYou/textures/AddictedToYou_Coach_1.png",
20
+ "coverImageUrl": "https://jdbest-cdn.s3.amazonaws.com/public/map/AddictedToYou/textures/AddictedToYou_Cover_Generic.png",
21
+ "cover_1024ImageUrl": "https://jdbest-cdn.s3.amazonaws.com/public/map/AddictedToYou/textures/AddictedToYou_Cover_1024.png",
22
+ "cover_smallImageUrl": "https://jdbest-cdn.s3.amazonaws.com/public/map/AddictedToYou/textures/AddictedToYou_Cover_Generic.png",
23
+ "expandBkgImageUrl": "https://jdbest-cdn.s3.amazonaws.com/public/map/AddictedToYou/textures/AddictedToYou_Cover_AlbumBkg.png",
24
+ "expandCoachImageUrl": "https://jdbest-cdn.s3.amazonaws.com/public/map/AddictedToYou/textures/AddictedToYou_Cover_AlbumCoach.png",
25
+ "phoneCoach1ImageUrl": "https://jdbest-cdn.s3.amazonaws.com/public/map/AddictedToYou/textures/AddictedToYou_Coach_1.png",
26
+ "phoneCoverImageUrl": "https://jdbest-cdn.s3.amazonaws.com/public/map/AddictedToYou/textures/AddictedToYou_Cover_Generic.png",
27
+ "videoPreviewVideoURL": "https://jdbest-cdn.s3.amazonaws.com/public/map/AddictedToYou/textures/AddictedToYou_VideoPreview.webm",
28
+ "map_bkgImageUrl": "https://jdbest-cdn.s3.amazonaws.com/public/map/AddictedToYou/textures/AddictedToYou_map_bkg.png"
29
+ }
30
+ },
31
+ "audioPreviewData": "{\"__class\":\"MusicTrackData\",\"structure\":{\"__class\":\"MusicTrackStructure\",\"markers\":[0,22511,45023,67487,89999,112511,135023,157487,179999,202511,225023,247487,269999,292511,315023,337487,359999,382511,405023,427487,449999,472511,495023,517487,539999,562511,585023,607486,629998,652510,675022,697486,719998,742510,765022,787486,809998,832510,855022,877486,899998,922510,945022,967486,989998,1012510,1035022,1057486,1079998,1102510,1125022,1147486,1169998,1192510,1215021,1237485,1259997,1282509,1305021,1327485,1349997,1372509],\"signatures\":[{\"__class\":\"MusicSignature\",\"marker\":0,\"beats\":4}],\"startBeat\":0,\"endBeat\":322,\"fadeStartBeat\":0,\"useFadeStartBeat\":false,\"fadeEndBeat\":0,\"useFadeEndBeat\":false,\"videoStartTime\":0,\"previewEntry\":0,\"previewLoopStart\":0,\"previewLoopEnd\":62,\"volume\":0,\"fadeInDuration\":0,\"fadeInType\":0,\"fadeOutDuration\":0,\"fadeOutType\":0},\"path\":\"\",\"url\":\"jmcs://jd-contents/AddictedToYou/AddictedToYou_AudioPreview.ogg\"}",
32
+ "coachCount": 1,
33
+ "credits": "Just Dance Best is an online mod made by Just Dance Alliance. We are not affiliated with Ubisoft nor own any rights over their copyrighted content and trademark. All rights of the producer and other rightholders to the recorded work reserved. Unless otherwise authorized, the duplication, rental, loan, exchange or use of this video game for public performance, broadcasting and online distribution to the public are prohibited.",
34
+ "difficulty": 2,
35
+ "doubleScoringType": -1,
36
+ "jdmAttributes": [],
37
+ "lyricsColor": "44D4D2FF",
38
+ "lyricsType": 0,
39
+ "mainCoach": -1,
40
+ "mapLength": 322,
41
+ "mapName": "AddictedToYou",
42
+ "mapPreviewMpd": "<?xml version=\"1.0\"?>\r\n<MPD xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"urn:mpeg:DASH:schema:MPD:2011\" xsi:schemaLocation=\"urn:mpeg:DASH:schema:MPD:2011\" type=\"static\" mediaPresentationDuration=\"PT30S\" minBufferTime=\"PT1S\" profiles=\"urn:webm:dash:profile:webm-on-demand:2012\">\r\n\t<Period id=\"0\" start=\"PT0S\" duration=\"PT30S\">\r\n\t\t<AdaptationSet id=\"0\" mimeType=\"video/webm\" codecs=\"vp9\" lang=\"eng\" maxWidth=\"720\" maxHeight=\"370\" subsegmentAlignment=\"true\" subsegmentStartsWithSAP=\"1\" bitstreamSwitching=\"true\">\r\n\t\t\t<Representation id=\"0\" bandwidth=\"648877\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/AddictedToYou/AddictedToYou_MapPreviewNoSoundCrop_LOW.vp9.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"641-1131\">\r\n\t\t\t\t\t<Initialization range=\"0-641\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"1\" bandwidth=\"1493834\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/AddictedToYou/AddictedToYou_MapPreviewNoSoundCrop_MID.vp9.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"641-1131\">\r\n\t\t\t\t\t<Initialization range=\"0-641\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"2\" bandwidth=\"2984420\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/AddictedToYou/AddictedToYou_MapPreviewNoSoundCrop_HIGH.vp9.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"641-1131\">\r\n\t\t\t\t\t<Initialization range=\"0-641\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"3\" bandwidth=\"5932938\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/AddictedToYou/AddictedToYou_MapPreviewNoSoundCrop_ULTRA.vp9.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"641-1138\">\r\n\t\t\t\t\t<Initialization range=\"0-641\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t</AdaptationSet>\r\n\t</Period>\r\n</MPD>\r\n",
43
+ "mode": 6,
44
+ "originalJDVersion": 2015,
45
+ "packages": {
46
+ "mapContent": "AddictedToYou_mapContent"
47
+ },
48
+ "parentMapName": "AddictedToYou",
49
+ "skuIds": [
50
+ "jd2017-pc-ww"
51
+ ],
52
+ "songColors": {
53
+ "songColor_1A": "EBA80EFF",
54
+ "songColor_1B": "631200FF",
55
+ "songColor_2A": "5902BFFF",
56
+ "songColor_2B": "101010FF"
57
+ },
58
+ "status": 5,
59
+ "sweatDifficulty": 1,
60
+ "tags": [
61
+ "Main"
62
+ ],
63
+ "title": "Addicted To You",
64
+ "urls": {
65
+ "jmcs://jd-contents/AddictedToYou/AddictedToYou_AudioPreview.ogg": "https://jdbest-cdn.s3.amazonaws.com/public/map/AddictedToYou/AddictedToYou_AudioPreview.ogg",
66
+ "jmcs://jd-contents/AddictedToYou/AddictedToYou_MapPreviewNoSoundCrop_HIGH.vp8.webm": "https://jdbest-cdn.s3.amazonaws.com/public/map/AddictedToYou/nx/AddictedToYou_VideoPreview.vp9.webm",
67
+ "jmcs://jd-contents/AddictedToYou/AddictedToYou_MapPreviewNoSoundCrop_HIGH.vp9.webm": "https://jdbest-cdn.s3.amazonaws.com/public/map/AddictedToYou/nx/AddictedToYou_VideoPreview.vp9.webm",
68
+ "jmcs://jd-contents/AddictedToYou/AddictedToYou_MapPreviewNoSoundCrop_LOW.vp8.webm": "https://jdbest-cdn.s3.amazonaws.com/public/map/AddictedToYou/nx/AddictedToYou_VideoPreview.vp9.webm",
69
+ "jmcs://jd-contents/AddictedToYou/AddictedToYou_MapPreviewNoSoundCrop_LOW.vp9.webm": "https://jdbest-cdn.s3.amazonaws.com/public/map/AddictedToYou/nx/AddictedToYou_VideoPreview.vp9.webm",
70
+ "jmcs://jd-contents/AddictedToYou/AddictedToYou_MapPreviewNoSoundCrop_MID.vp8.webm": "https://jdbest-cdn.s3.amazonaws.com/public/map/AddictedToYou/nx/AddictedToYou_VideoPreview.vp9.webm",
71
+ "jmcs://jd-contents/AddictedToYou/AddictedToYou_MapPreviewNoSoundCrop_MID.vp9.webm": "https://jdbest-cdn.s3.amazonaws.com/public/map/AddictedToYou/nx/AddictedToYou_VideoPreview.vp9.webm",
72
+ "jmcs://jd-contents/AddictedToYou/AddictedToYou_MapPreviewNoSoundCrop_ULTRA.vp8.webm": "https://jdbest-cdn.s3.amazonaws.com/public/map/AddictedToYou/nx/AddictedToYou_VideoPreview.vp9.webm",
73
+ "jmcs://jd-contents/AddictedToYou/AddictedToYou_MapPreviewNoSoundCrop_ULTRA.vp9.webm": "https://jdbest-cdn.s3.amazonaws.com/public/map/AddictedToYou/nx/AddictedToYou_VideoPreview.vp9.webm"
74
+ },
75
+ "serverChangelist": 455481,
76
+ "skupackages": {
77
+ "pc": {
78
+ "md5": "3efda6f18166ad3ad52faba988529e3e",
79
+ "storageType": 0,
80
+ "url": "https://jdbest-cdn.s3.amazonaws.com/public/map/AddictedToYou/pc/3efda6f18166ad3ad52faba988529e3e.zip",
81
+ "version": 1
82
+ },
83
+ "orbis": {
84
+ "md5": "06a06cc1484fe0223b8306cf3b95e21c",
85
+ "storageType": 0,
86
+ "url": "https://jdbest-cdn.s3.amazonaws.com/public/map/AddictedToYou/ps4/06a06cc1484fe0223b8306cf3b95e21c.zip",
87
+ "version": 1
88
+ },
89
+ "nx": {
90
+ "md5": "b8ef9db767b9b289bcb86c0a2d4a81e9",
91
+ "storageType": 0,
92
+ "url": "https://jdbest-cdn.s3.amazonaws.com/public/map/AddictedToYou/nx/b8ef9db767b9b289bcb86c0a2d4a81e9.zip",
93
+ "version": 1
94
+ }
95
+ },
96
+ "mapType": "custom"
97
+ }
justdanceonline-main/maps/Adeyyo.json ADDED
@@ -0,0 +1,119 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "artist": "Ece Seçkin",
3
+ "assets": {
4
+ "default": {
5
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/Adeyyo/ps4/Adeyyo_banner_bkg.tga.ckd/ca298f1048d7bd306e728fd505fee6b0.ckd",
6
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/Adeyyo/ps4/Adeyyo_Coach_1.tga.ckd/744987608a290d2616b413c9c70e6e6d.ckd",
7
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/Adeyyo/ps4/Adeyyo_Cover_Generic.tga.ckd/9ad6533384a2bf8d39cbb4e38aaf8960.ckd",
8
+ "cover_1024ImageUrl": "https://jd-s3.akamaized.net/public/map/Adeyyo/Adeyyo_Cover_1024.png/08a00a0139d849c6b60773936f2a65fd.png",
9
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/Adeyyo/ps4/Adeyyo_Cover_Online.tga.ckd/832572296b07d0c707f06f8bc3f70029.ckd",
10
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/Adeyyo/ps4/Adeyyo_Cover_AlbumBkg.tga.ckd/e4d851feb4ff984e7ec887745a0e255f.ckd",
11
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/Adeyyo/ps4/Adeyyo_Cover_AlbumCoach.tga.ckd/7a6e2f0f1539a20a2c3f3b49bc5df63b.ckd",
12
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/Adeyyo/Adeyyo_Coach_1_Phone.png/46005183903b8e9e661779f2b080c0c9.png",
13
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/Adeyyo/Adeyyo_Cover_Phone.jpg/9e25608813d888a169d4c5ff1a58e521.jpg",
14
+ "map_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/Adeyyo/ps4/Adeyyo_map_bkg.tga.ckd/676003cdfd2ae3ea4638fc7251f1a365.ckd"
15
+ },
16
+ "nx": {
17
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/Adeyyo/nx/Adeyyo_banner_bkg.tga.ckd/1357e48abee2b1bab3883f318f746738.ckd",
18
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/Adeyyo/nx/Adeyyo_Coach_1.tga.ckd/9dc17125858947a1edd8d1166813633e.ckd",
19
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/Adeyyo/nx/Adeyyo_Cover_Generic.tga.ckd/7bdec2eb4063836568fc888cce1e5215.ckd",
20
+ "cover_1024ImageUrl": "https://jd-s3.akamaized.net/public/map/Adeyyo/Adeyyo_Cover_1024.png/08a00a0139d849c6b60773936f2a65fd.png",
21
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/Adeyyo/nx/Adeyyo_Cover_Online.tga.ckd/667fa53f7b5d39e17ad68eb5a017c121.ckd",
22
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/Adeyyo/nx/Adeyyo_Cover_AlbumBkg.tga.ckd/1b68f7d9910be3f5e08847f53f11bf2b.ckd",
23
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/Adeyyo/nx/Adeyyo_Cover_AlbumCoach.tga.ckd/728cb47d295e74c83466e593b4cfd8ea.ckd",
24
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/Adeyyo/Adeyyo_Coach_1_Phone.png/46005183903b8e9e661779f2b080c0c9.png",
25
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/Adeyyo/Adeyyo_Cover_Phone.jpg/9e25608813d888a169d4c5ff1a58e521.jpg",
26
+ "map_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/Adeyyo/nx/Adeyyo_map_bkg.tga.ckd/4c709223152b129d44969a6adcec1cb9.ckd"
27
+ },
28
+ "wiiu": {
29
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/Adeyyo/Adeyyo_banner_bkg.jpg/cb0133b2ce1d48c02f05a2dfec03fb85.jpg",
30
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/Adeyyo/Adeyyo_Coach_1.png/28a0216b9dca3a6ac696814e0f944757.png",
31
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/Adeyyo/Adeyyo_Cover_Generic.jpg/eb0519d0cec562ddd81a59454b3a1920.jpg",
32
+ "cover_1024ImageUrl": "https://jd-s3.akamaized.net/public/map/Adeyyo/Adeyyo_Cover_1024.png/08a00a0139d849c6b60773936f2a65fd.png",
33
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/Adeyyo/Adeyyo_Cover_Online.jpg/9e25608813d888a169d4c5ff1a58e521.jpg",
34
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/Adeyyo/Adeyyo_Cover_AlbumBkg.jpg/fd98e5509f6d354e276dd37027f26fa5.jpg",
35
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/Adeyyo/Adeyyo_Cover_AlbumCoach.png/76166943148421490de48f710787e02e.png",
36
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/Adeyyo/Adeyyo_Coach_1_Phone.png/46005183903b8e9e661779f2b080c0c9.png",
37
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/Adeyyo/Adeyyo_Cover_Phone.jpg/9e25608813d888a169d4c5ff1a58e521.jpg"
38
+ }
39
+ },
40
+ "audioPreviewData": "{\"__class\":\"MusicTrackData\",\"structure\":{\"__class\":\"MusicTrackStructure\",\"markers\":[0,30288,60624,90960,121248,151584,181872,212208,242496,272832,303168,333456,363792,394080,424416,454752,485040,515376,545664,576001,606289,636625,666961,697249,727585,757873,788209,818497,848833,879169,909457,939793,970081,1000417,1030753,1061041,1091378,1121666,1152002,1182290,1212626,1242962,1273250,1303586,1333874,1364210,1394498,1424834],\"signatures\":[{\"__class\":\"MusicSignature\",\"marker\":0,\"beats\":4}],\"startBeat\":-4,\"endBeat\":363,\"fadeStartBeat\":0,\"useFadeStartBeat\":false,\"fadeEndBeat\":0,\"useFadeEndBeat\":false,\"videoStartTime\":0,\"previewEntry\":0,\"previewLoopStart\":0,\"previewLoopEnd\":47,\"volume\":0,\"fadeInDuration\":0,\"fadeInType\":0,\"fadeOutDuration\":0,\"fadeOutType\":0},\"path\":\"\",\"url\":\"jmcs://jd-contents/adeyyo/adeyyo_AudioPreview.ogg\"}",
41
+ "coachCount": 1,
42
+ "credits": "Just Dance Best is an online mod made by Just Dance Alliance. We are not affiliated with Ubisoft nor own any rights over their copyrighted content and trademark. Written by Aysen Şimşekyay, Kemal Şimşekyay and arranged by Ozan Doğulu. Published by DMC & PRM. Courtesy of DGL. All rights of the producer and other rightholders to the recorded work reserved. Unless otherwise authorized, the duplication, rental, loan, exchange or use of this video game for public performance, broadcasting and online distribution to the public are prohibited.",
43
+ "difficulty": 1,
44
+ "doubleScoringType": -1,
45
+ "jdmAttributes": [],
46
+ "lyricsColor": "6FFFB6FF",
47
+ "lyricsType": 0,
48
+ "mainCoach": -1,
49
+ "mapLength": 231.78799999999998,
50
+ "mapName": "Adeyyo",
51
+ "mapPreviewMpd": "<?xml version=\"1.0\"?>\r\n<MPD xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"urn:mpeg:DASH:schema:MPD:2011\" xsi:schemaLocation=\"urn:mpeg:DASH:schema:MPD:2011\" type=\"static\" mediaPresentationDuration=\"PT30S\" minBufferTime=\"PT1S\" profiles=\"urn:webm:dash:profile:webm-on-demand:2012\">\r\n\t<Period id=\"0\" start=\"PT0S\" duration=\"PT30S\">\r\n\t\t<AdaptationSet id=\"0\" mimeType=\"video/webm\" codecs=\"vp8\" lang=\"eng\" maxWidth=\"720\" maxHeight=\"370\" subsegmentAlignment=\"true\" subsegmentStartsWithSAP=\"1\" bitstreamSwitching=\"true\">\r\n\t\t\t<Representation id=\"0\" bandwidth=\"494515\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/Adeyyo/Adeyyo_MapPreviewNoSoundCrop_LOW.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"616-1105\">\r\n\t\t\t\t\t<Initialization range=\"0-616\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"1\" bandwidth=\"1479108\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/Adeyyo/Adeyyo_MapPreviewNoSoundCrop_MID.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"617-1107\">\r\n\t\t\t\t\t<Initialization range=\"0-617\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"2\" bandwidth=\"2941218\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/Adeyyo/Adeyyo_MapPreviewNoSoundCrop_HIGH.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"617-1107\">\r\n\t\t\t\t\t<Initialization range=\"0-617\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"3\" bandwidth=\"4363527\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/Adeyyo/Adeyyo_MapPreviewNoSoundCrop_ULTRA.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"617-1107\">\r\n\t\t\t\t\t<Initialization range=\"0-617\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t</AdaptationSet>\r\n\t</Period>\r\n</MPD>\r\n",
52
+ "mode": 6,
53
+ "originalJDVersion": 2019,
54
+ "packages": {
55
+ "mapContent": "Adeyyo_mapContent"
56
+ },
57
+ "parentMapName": "Adeyyo",
58
+ "skuIds": [
59
+ "jd2019-demo-nx-all",
60
+ "jd2019-demo-ps4-scea",
61
+ "jd2019-demo-ps4-scee",
62
+ "jd2019-demo-wiiu-noa",
63
+ "jd2019-demo-wiiu-noe",
64
+ "jd2019-demo-xone-all",
65
+ "jd2019-nx-all",
66
+ "jd2019-ps4-scea",
67
+ "jd2019-ps4-scee",
68
+ "jd2019-wiiu-noa",
69
+ "jd2019-wiiu-noe",
70
+ "jd2019-xone-all"
71
+ ],
72
+ "songColors": {
73
+ "songColor_1A": "010342FF",
74
+ "songColor_1B": "411554FF",
75
+ "songColor_2A": "97FAFCFF",
76
+ "songColor_2B": "11B7C6FF"
77
+ },
78
+ "status": 3,
79
+ "sweatDifficulty": 1,
80
+ "tags": [
81
+ "Main",
82
+ "subscribedSong",
83
+ "CnUnlimited2019"
84
+ ],
85
+ "title": "Adeyyo",
86
+ "urls": {
87
+ "jmcs://jd-contents/Adeyyo/Adeyyo_AudioPreview.ogg": "https://jd-s3.akamaized.net/public/map/Adeyyo/Adeyyo_AudioPreview.ogg/02f14559419c919b5045e67afe886bbb.ogg",
88
+ "jmcs://jd-contents/Adeyyo/Adeyyo_MapPreviewNoSoundCrop_HIGH.vp8.webm": "https://jd-s3.akamaized.net/public/map/Adeyyo/Adeyyo_MapPreviewNoSoundCrop_HIGH.vp8.webm/87bafe50891e3c2f7b464e9a9a3642a5.webm",
89
+ "jmcs://jd-contents/Adeyyo/Adeyyo_MapPreviewNoSoundCrop_HIGH.vp9.webm": "https://jd-s3.akamaized.net/public/map/Adeyyo/Adeyyo_MapPreviewNoSoundCrop_HIGH.vp9.webm/4ee523e060d3883f767e44b65bad323c.webm",
90
+ "jmcs://jd-contents/Adeyyo/Adeyyo_MapPreviewNoSoundCrop_LOW.vp8.webm": "https://jd-s3.akamaized.net/public/map/Adeyyo/Adeyyo_MapPreviewNoSoundCrop_LOW.vp8.webm/26926b2960299c40c8215868089a5b55.webm",
91
+ "jmcs://jd-contents/Adeyyo/Adeyyo_MapPreviewNoSoundCrop_LOW.vp9.webm": "https://jd-s3.akamaized.net/public/map/Adeyyo/Adeyyo_MapPreviewNoSoundCrop_LOW.vp9.webm/d00e6861667de214d68f20dd986bb7fb.webm",
92
+ "jmcs://jd-contents/Adeyyo/Adeyyo_MapPreviewNoSoundCrop_MID.vp8.webm": "https://jd-s3.akamaized.net/public/map/Adeyyo/Adeyyo_MapPreviewNoSoundCrop_MID.vp8.webm/45dbf07161ea6463297bb717c7fc2672.webm",
93
+ "jmcs://jd-contents/Adeyyo/Adeyyo_MapPreviewNoSoundCrop_MID.vp9.webm": "https://jd-s3.akamaized.net/public/map/Adeyyo/Adeyyo_MapPreviewNoSoundCrop_MID.vp9.webm/67fa7ca6a1f356d4aea7bfc42249c9e1.webm",
94
+ "jmcs://jd-contents/Adeyyo/Adeyyo_MapPreviewNoSoundCrop_ULTRA.vp8.webm": "https://jd-s3.akamaized.net/public/map/Adeyyo/Adeyyo_MapPreviewNoSoundCrop_ULTRA.vp8.webm/bf622b44f199afe46706f33c67a407f9.webm",
95
+ "jmcs://jd-contents/Adeyyo/Adeyyo_MapPreviewNoSoundCrop_ULTRA.vp9.webm": "https://jd-s3.akamaized.net/public/map/Adeyyo/Adeyyo_MapPreviewNoSoundCrop_ULTRA.vp9.webm/80a0a6ef57ad80e3ad2d6a305299ee8c.webm"
96
+ },
97
+ "serverChangelist": 455481,
98
+ "skupackages": {
99
+ "orbis": {
100
+ "md5": "6e7eb1b6f253eb3dc63b0d23cc44c463",
101
+ "storageType": 0,
102
+ "url": "https://jd-s3.akamaized.net/public/map/Adeyyo/ps4/Adeyyo_MAIN_SCENE_ORBIS.zip/6e7eb1b6f253eb3dc63b0d23cc44c463.zip",
103
+ "version": 2
104
+ },
105
+ "nx": {
106
+ "md5": "aa87529a784bf1cc6a14b2d4d1e1eb60",
107
+ "storageType": 0,
108
+ "url": "https://jd-s3.akamaized.net/public/map/Adeyyo/nx/Adeyyo_MAIN_SCENE_NX.zip/aa87529a784bf1cc6a14b2d4d1e1eb60.zip",
109
+ "version": 2
110
+ },
111
+ "pc": {
112
+ "md5": "218f16387e152f77a083e7c87ef80f62",
113
+ "storageType": 0,
114
+ "url": "https://cdn.glitch.com/a9ec9cff-2a9f-4de5-bc2a-76a573caf0b3/adeyyo_main_scene_pc.zip",
115
+ "version": 1
116
+ }
117
+ },
118
+ "mapType": "jdu"
119
+ }
justdanceonline-main/maps/AdoreYou.json ADDED
@@ -0,0 +1,90 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "artist": "Harry Styles",
3
+ "assets": {
4
+ "default": {
5
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/AdoreYou/AdoreYou_banner_bkg.jpg/67f5a2862f6672f87c9197f394c548e9.jpg",
6
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/AdoreYou/AdoreYou_Coach_1.png/e101a6e696bb2c21e7e44d569280352c.png",
7
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/AdoreYou/AdoreYou_Cover_Generic.jpg/f3591d299acb3edecd1a84d873001d72.jpg",
8
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/AdoreYou/AdoreYou_Cover_Online.jpg/77ed3d788151996c0056494e794f3521.jpg",
9
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/AdoreYou/AdoreYou_Cover_AlbumBkg.jpg/10b99f2aa1c4d04a1a3d5a1b4a2ec858.jpg",
10
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/AdoreYou/AdoreYou_Cover_AlbumCoach.png/80c0fa4cd3e62f94d9bb1120c561bcf3.png",
11
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/AdoreYou/AdoreYou_Coach_1_Phone.png/131e255581356b22b80d78f23727bbc2.png",
12
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/AdoreYou/AdoreYou_Cover_Phone.jpg/77ed3d788151996c0056494e794f3521.jpg"
13
+ },
14
+ "nx": {
15
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/AdoreYou/AdoreYou_banner_bkg.jpg/67f5a2862f6672f87c9197f394c548e9.jpg",
16
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/AdoreYou/AdoreYou_Coach_1.png/e101a6e696bb2c21e7e44d569280352c.png",
17
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/AdoreYou/AdoreYou_Cover_Generic.jpg/f3591d299acb3edecd1a84d873001d72.jpg",
18
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/AdoreYou/AdoreYou_Cover_Online.jpg/77ed3d788151996c0056494e794f3521.jpg",
19
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/AdoreYou/AdoreYou_Cover_AlbumBkg.jpg/10b99f2aa1c4d04a1a3d5a1b4a2ec858.jpg",
20
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/AdoreYou/AdoreYou_Cover_AlbumCoach.png/80c0fa4cd3e62f94d9bb1120c561bcf3.png",
21
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/AdoreYou/AdoreYou_Coach_1_Phone.png/131e255581356b22b80d78f23727bbc2.png",
22
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/AdoreYou/AdoreYou_Cover_Phone.jpg/77ed3d788151996c0056494e794f3521.jpg"
23
+ }
24
+ },
25
+ "audioPreviewData": "{\"__class\":\"MusicTrackData\",\"structure\":{\"__class\":\"MusicTrackStructure\",\"markers\":[0,29091,58182,87272,116363,145454,174545,203636,232727,261818,290909,320000,349091,378182,407272,436363,465454,494545,523636,552727,581818,610909,640000,669091,698182,727272,756363,785454,814545,843636,872727,901818,930909,960000,989091,1018182,1047272,1076363,1105454,1134545,1163636,1192727,1221818,1250909,1280000,1309091,1338182,1367272,1396363,1425454],\"signatures\":[{\"__class\":\"MusicSignature\",\"marker\":0,\"beats\":4}],\"startBeat\":-3,\"endBeat\":344,\"fadeStartBeat\":0,\"useFadeStartBeat\":false,\"fadeEndBeat\":0,\"useFadeEndBeat\":false,\"videoStartTime\":0,\"previewEntry\":0,\"previewLoopStart\":0,\"previewLoopEnd\":49,\"volume\":0,\"fadeInDuration\":0,\"fadeInType\":0,\"fadeOutDuration\":0,\"fadeOutType\":0},\"path\":\"\",\"url\":\"jmcs://jd-contents/adoreyou/adoreyou_AudioPreview.ogg\"}",
26
+ "coachCount": 1,
27
+ "credits": "Just Dance Best is an online mod made by Just Dance Alliance. We are not affiliated with Ubisoft nor own any rights over their copyrighted content and trademark. Written by Harry Edward Styles, Thomas Edward Percy Hull, Amy Allen and Tyler Sam Johnson. Published by Universal Music Publishing Canada on behalf of Universal Music Publishing Ltd. and HSA Publishing Ltd. / LiveMadLove (ASCAP) / Artist Publishing Group West (ASCAP). Administered by Kobalt Music Publishing America, Inc. / One Year Yesterday Publishing / Pulse. Administered by Concord. Courtesy of Columbia Records. By arrangement with Sony Music Entertainment.",
28
+ "difficulty": 1,
29
+ "doubleScoringType": -1,
30
+ "jdmAttributes": [],
31
+ "lyricsColor": "8A0BCDFF",
32
+ "lyricsType": 0,
33
+ "mainCoach": -1,
34
+ "mapLength": 210.303,
35
+ "mapName": "AdoreYou",
36
+ "mapPreviewMpd": "<?xml version=\"1.0\"?>\r\n<MPD xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"urn:mpeg:DASH:schema:MPD:2011\" xsi:schemaLocation=\"urn:mpeg:DASH:schema:MPD:2011\" type=\"static\" mediaPresentationDuration=\"PT30S\" minBufferTime=\"PT1S\" profiles=\"urn:webm:dash:profile:webm-on-demand:2012\">\r\n\t<Period id=\"0\" start=\"PT0S\" duration=\"PT30S\">\r\n\t\t<AdaptationSet id=\"0\" mimeType=\"video/webm\" codecs=\"vp8\" lang=\"eng\" maxWidth=\"720\" maxHeight=\"370\" subsegmentAlignment=\"true\" subsegmentStartsWithSAP=\"1\" bitstreamSwitching=\"true\">\r\n\t\t\t<Representation id=\"0\" bandwidth=\"493977\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/AdoreYou/AdoreYou_MapPreviewNoSoundCrop_LOW.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"642-1131\">\r\n\t\t\t\t\t<Initialization range=\"0-642\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"1\" bandwidth=\"1444752\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/AdoreYou/AdoreYou_MapPreviewNoSoundCrop_MID.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"643-1133\">\r\n\t\t\t\t\t<Initialization range=\"0-643\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"2\" bandwidth=\"2684917\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/AdoreYou/AdoreYou_MapPreviewNoSoundCrop_HIGH.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"643-1133\">\r\n\t\t\t\t\t<Initialization range=\"0-643\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"3\" bandwidth=\"2810176\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/AdoreYou/AdoreYou_MapPreviewNoSoundCrop_ULTRA.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"643-1133\">\r\n\t\t\t\t\t<Initialization range=\"0-643\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t</AdaptationSet>\r\n\t</Period>\r\n</MPD>\r\n",
37
+ "mode": 6,
38
+ "originalJDVersion": 2021,
39
+ "packages": {
40
+ "mapContent": "AdoreYou_mapContent"
41
+ },
42
+ "parentMapName": "AdoreYou",
43
+ "skuIds": [],
44
+ "songColors": {
45
+ "songColor_1A": "155187FF",
46
+ "songColor_1B": "B33AACFF",
47
+ "songColor_2A": "D3E1EBFF",
48
+ "songColor_2B": "71B1D3FF"
49
+ },
50
+ "status": 3,
51
+ "sweatDifficulty": 1,
52
+ "tags": [
53
+ "Main",
54
+ "subscribedSong"
55
+ ],
56
+ "title": "Adore You",
57
+ "serverChangelist": 455481,
58
+ "skupackages": {
59
+ "orbis": {
60
+ "md5": "59f0f226fd5e8635dcdb4655cfbe33fc",
61
+ "storageType": 0,
62
+ "url": "https://jdcn-console.cdn.ubisoft.cn/public/map/AdoreYou/ps4/AdoreYou_MAIN_SCENE_ORBIS.zip/59f0f226fd5e8635dcdb4655cfbe33fc.zip",
63
+ "version": 1
64
+ },
65
+ "nx": {
66
+ "md5": "f20959d3f51454a2c5e43459a2d194c3",
67
+ "storageType": 0,
68
+ "url": "https://jdcn-console.cdn.ubisoft.cn/public/map/AdoreYou/nx/AdoreYou_MAIN_SCENE_NX.zip/f20959d3f51454a2c5e43459a2d194c3.zip",
69
+ "version": 2
70
+ },
71
+ "pc": {
72
+ "md5": "b52a5b2bf572aa906afa8df7757f727e",
73
+ "storageType": 0,
74
+ "url": "https://jdbest-cdn.s3.amazonaws.com/public/map/AdoreYou/pc/b52a5b2bf572aa906afa8df7757f727e.zip",
75
+ "version": 1
76
+ }
77
+ },
78
+ "mapType": "jdu",
79
+ "urls": {
80
+ "jmcs://jd-contents/AdoreYou/AdoreYou_AudioPreview.ogg": "https://jdcn-console.cdn.ubisoft.cn/public/map/AdoreYou/AdoreYou_AudioPreview.ogg/2401ae5991cddf17f28afded3d8f88ee.ogg",
81
+ "jmcs://jd-contents/AdoreYou/AdoreYou_MapPreviewNoSoundCrop_HIGH.vp8.webm": "https://jdcn-console.cdn.ubisoft.cn/public/map/AdoreYou/AdoreYou_MapPreviewNoSoundCrop_HIGH.vp8.webm/2c88d82ec749cc22d4b5763595c76e41.webm",
82
+ "jmcs://jd-contents/AdoreYou/AdoreYou_MapPreviewNoSoundCrop_HIGH.vp9.webm": "https://jdcn-console.cdn.ubisoft.cn/public/map/AdoreYou/AdoreYou_MapPreviewNoSoundCrop_HIGH.vp9.webm/f3ec33898c552277814a510cd2df00cc.webm",
83
+ "jmcs://jd-contents/AdoreYou/AdoreYou_MapPreviewNoSoundCrop_LOW.vp8.webm": "https://jdcn-console.cdn.ubisoft.cn/public/map/AdoreYou/AdoreYou_MapPreviewNoSoundCrop_LOW.vp8.webm/27a0039094185bb53022b3e8384e931a.webm",
84
+ "jmcs://jd-contents/AdoreYou/AdoreYou_MapPreviewNoSoundCrop_LOW.vp9.webm": "https://jdcn-console.cdn.ubisoft.cn/public/map/AdoreYou/AdoreYou_MapPreviewNoSoundCrop_LOW.vp9.webm/eb374e7af87e6c656be54f5f9788e887.webm",
85
+ "jmcs://jd-contents/AdoreYou/AdoreYou_MapPreviewNoSoundCrop_MID.vp8.webm": "https://jdcn-console.cdn.ubisoft.cn/public/map/AdoreYou/AdoreYou_MapPreviewNoSoundCrop_MID.vp8.webm/74eda5bd3514d6b9f7c4539db94ac640.webm",
86
+ "jmcs://jd-contents/AdoreYou/AdoreYou_MapPreviewNoSoundCrop_MID.vp9.webm": "https://jdcn-console.cdn.ubisoft.cn/public/map/AdoreYou/AdoreYou_MapPreviewNoSoundCrop_MID.vp9.webm/04d82e978bc25514833ea6a42c79b7c8.webm",
87
+ "jmcs://jd-contents/AdoreYou/AdoreYou_MapPreviewNoSoundCrop_ULTRA.vp8.webm": "https://jdcn-console.cdn.ubisoft.cn/public/map/AdoreYou/AdoreYou_MapPreviewNoSoundCrop_ULTRA.vp8.webm/99030e59fcd5b7152ecaac16972c0825.webm",
88
+ "jmcs://jd-contents/AdoreYou/AdoreYou_MapPreviewNoSoundCrop_ULTRA.vp9.webm": "https://jdcn-console.cdn.ubisoft.cn/public/map/AdoreYou/AdoreYou_MapPreviewNoSoundCrop_ULTRA.vp9.webm/71e2ed959390fb839f46480119d6a2a2.webm"
89
+ }
90
+ }
justdanceonline-main/maps/Alexandrie.json ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "artist": "Jérôme Francis",
3
+ "assets": {
4
+ "default": {
5
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/Alexandrie/Alexandrie_banner_bkg.jpg/34989c603f7c07032fb2ce2ce1ad1b21.jpg",
6
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/Alexandrie/Alexandrie_Coach_1.png/ff559945a46c23867e6d102532437d44.png",
7
+ "coach2ImageUrl": "https://jd-s3.akamaized.net/public/map/Alexandrie/Alexandrie_Coach_2.png/9376f5a5a1b4d44a8dd35b583c16e30e.png",
8
+ "coach3ImageUrl": "https://jd-s3.akamaized.net/public/map/Alexandrie/Alexandrie_Coach_3.png/7e10e216edef553ee9c502cedcf9a5d2.png",
9
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/Alexandrie/Alexandrie_Cover_Generic.jpg/a8cb940102cd4a04873c47475ed75efd.jpg",
10
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/Alexandrie/Alexandrie_Cover_Online.jpg/16e3272df3d4157554644dea308b371e.jpg",
11
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/Alexandrie/Alexandrie_Cover_AlbumBkg.jpg/387b4d2fb5959ea99e1731c9951dbaed.jpg",
12
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/Alexandrie/Alexandrie_Cover_AlbumCoach.png/ca20ce917bd35def1667621ed536997f.png",
13
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/Alexandrie/Alexandrie_Coach_1_Phone.png/eb448852c4dda0733659eaa503a0b266.png",
14
+ "phoneCoach2ImageUrl": "https://jd-s3.akamaized.net/public/map/Alexandrie/Alexandrie_Coach_2_Phone.png/27276701e551ecc30c1aff5c73719c01.png",
15
+ "phoneCoach3ImageUrl": "https://jd-s3.akamaized.net/public/map/Alexandrie/Alexandrie_Coach_3_Phone.png/179bd26b0bd1a2dda338d4263e82375b.png",
16
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/Alexandrie/Alexandrie_Cover_Phone.jpg/16e3272df3d4157554644dea308b371e.jpg"
17
+ },
18
+ "nx": {
19
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/Alexandrie/Alexandrie_banner_bkg.jpg/34989c603f7c07032fb2ce2ce1ad1b21.jpg",
20
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/Alexandrie/Alexandrie_Coach_1.png/ff559945a46c23867e6d102532437d44.png",
21
+ "coach2ImageUrl": "https://jd-s3.akamaized.net/public/map/Alexandrie/Alexandrie_Coach_2.png/9376f5a5a1b4d44a8dd35b583c16e30e.png",
22
+ "coach3ImageUrl": "https://jd-s3.akamaized.net/public/map/Alexandrie/Alexandrie_Coach_3.png/7e10e216edef553ee9c502cedcf9a5d2.png",
23
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/Alexandrie/Alexandrie_Cover_Generic.jpg/a8cb940102cd4a04873c47475ed75efd.jpg",
24
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/Alexandrie/Alexandrie_Cover_Online.jpg/16e3272df3d4157554644dea308b371e.jpg",
25
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/Alexandrie/Alexandrie_Cover_AlbumBkg.jpg/387b4d2fb5959ea99e1731c9951dbaed.jpg",
26
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/Alexandrie/Alexandrie_Cover_AlbumCoach.png/ca20ce917bd35def1667621ed536997f.png",
27
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/Alexandrie/Alexandrie_Coach_1_Phone.png/eb448852c4dda0733659eaa503a0b266.png",
28
+ "phoneCoach2ImageUrl": "https://jd-s3.akamaized.net/public/map/Alexandrie/Alexandrie_Coach_2_Phone.png/27276701e551ecc30c1aff5c73719c01.png",
29
+ "phoneCoach3ImageUrl": "https://jd-s3.akamaized.net/public/map/Alexandrie/Alexandrie_Coach_3_Phone.png/179bd26b0bd1a2dda338d4263e82375b.png",
30
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/Alexandrie/Alexandrie_Cover_Phone.jpg/16e3272df3d4157554644dea308b371e.jpg"
31
+ }
32
+ },
33
+ "audioPreviewData": "{\"__class\":\"MusicTrackData\",\"structure\":{\"__class\":\"MusicTrackStructure\",\"markers\":[0,22836,45671,68506,91342,114177,137013,159848,182683,205519,228354,251190,274025,296860,319696,342531,365367,388202,411037,433873,456708,479544,502379,525214,548050,570885,593721,616556,639391,662227,685062,707898,730733,753568,776404,799239,822075,844910,867745,890581,913416,936251,959087,981922,1004758,1027593,1050428,1073264,1096099,1118935,1141770,1164605,1187441,1210276,1233112,1255947,1278782,1301618,1324453,1347289,1370124,1392959,1415795,1438630],\"signatures\":[{\"__class\":\"MusicSignature\",\"marker\":0,\"beats\":4}],\"startBeat\":-4,\"endBeat\":481,\"fadeStartBeat\":0,\"useFadeStartBeat\":false,\"fadeEndBeat\":0,\"useFadeEndBeat\":false,\"videoStartTime\":0,\"previewEntry\":0,\"previewLoopStart\":0,\"previewLoopEnd\":63,\"volume\":0,\"fadeInDuration\":0,\"fadeInType\":0,\"fadeOutDuration\":0,\"fadeOutType\":0},\"path\":\"\",\"url\":\"jmcs://jd-contents/alexandrie/alexandrie_AudioPreview.ogg\"}",
34
+ "coachCount": 3,
35
+ "credits": "Just Dance Best is an online mod made by Just Dance Alliance. We are not affiliated with Ubisoft nor own any rights over their copyrighted content and trademark. Written by J. P Bourtayre, C. François and E.Roda Gil. Published by Jeune Musique. Produced, engineered and mixed by Steve Ouimette. Lead vocals - Bastien Remy Background vocals - Virginie and Laurent Comtat. Strings - Pete Whitfield. Drums - Anthony Mora. Bass, guitar, programming & synths – Steve Ouimette. Additional programming and sounds – Cat Gray. Courtesy of Ubisoft Music.",
36
+ "difficulty": 2,
37
+ "doubleScoringType": -1,
38
+ "jdmAttributes": [],
39
+ "lyricsColor": "08FFCEFF",
40
+ "lyricsType": 0,
41
+ "mainCoach": -1,
42
+ "mapLength": 230.73299999999998,
43
+ "mapName": "Alexandrie",
44
+ "mapPreviewMpd": "<?xml version=\"1.0\"?>\r\n<MPD xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"urn:mpeg:DASH:schema:MPD:2011\" xsi:schemaLocation=\"urn:mpeg:DASH:schema:MPD:2011\" type=\"static\" mediaPresentationDuration=\"PT30S\" minBufferTime=\"PT1S\" profiles=\"urn:webm:dash:profile:webm-on-demand:2012\">\r\n\t<Period id=\"0\" start=\"PT0S\" duration=\"PT30S\">\r\n\t\t<AdaptationSet id=\"0\" mimeType=\"video/webm\" codecs=\"vp8\" lang=\"eng\" maxWidth=\"720\" maxHeight=\"370\" subsegmentAlignment=\"true\" subsegmentStartsWithSAP=\"1\" bitstreamSwitching=\"true\">\r\n\t\t\t<Representation id=\"0\" bandwidth=\"497674\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/Alexandrie/Alexandrie_MapPreviewNoSoundCrop_LOW.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"646-1135\">\r\n\t\t\t\t\t<Initialization range=\"0-646\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"1\" bandwidth=\"1483937\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/Alexandrie/Alexandrie_MapPreviewNoSoundCrop_MID.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"647-1137\">\r\n\t\t\t\t\t<Initialization range=\"0-647\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"2\" bandwidth=\"2948287\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/Alexandrie/Alexandrie_MapPreviewNoSoundCrop_HIGH.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"647-1137\">\r\n\t\t\t\t\t<Initialization range=\"0-647\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"3\" bandwidth=\"3898382\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/Alexandrie/Alexandrie_MapPreviewNoSoundCrop_ULTRA.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"647-1137\">\r\n\t\t\t\t\t<Initialization range=\"0-647\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t</AdaptationSet>\r\n\t</Period>\r\n</MPD>\r\n",
45
+ "mode": 6,
46
+ "originalJDVersion": 2021,
47
+ "packages": {
48
+ "mapContent": "Alexandrie_mapContent"
49
+ },
50
+ "parentMapName": "Alexandrie",
51
+ "skuIds": [],
52
+ "songColors": {
53
+ "songColor_1A": "3EDBCEFF",
54
+ "songColor_1B": "EFC575FF",
55
+ "songColor_2A": "523170FF",
56
+ "songColor_2B": "A75A62FF"
57
+ },
58
+ "status": 3,
59
+ "sweatDifficulty": 2,
60
+ "tags": [
61
+ "Main",
62
+ "subscribedSong"
63
+ ],
64
+ "title": "Alexandrie Alexandra",
65
+ "serverChangelist": 455481,
66
+ "skupackages": {
67
+ "orbis": {
68
+ "md5": "cd2e3f8828d6b1657571ea2aac467269",
69
+ "storageType": 0,
70
+ "url": "https://jdcn-console.cdn.ubisoft.cn/public/map/Alexandrie/ps4/Alexandrie_MAIN_SCENE_ORBIS.zip/cd2e3f8828d6b1657571ea2aac467269.zip",
71
+ "version": 1
72
+ },
73
+ "nx": {
74
+ "md5": "9fc71bcab13ed4df254abc06268b92eb",
75
+ "storageType": 0,
76
+ "url": "https://jdcn-console.cdn.ubisoft.cn/public/map/Alexandrie/nx/Alexandrie_MAIN_SCENE_NX.zip/9fc71bcab13ed4df254abc06268b92eb.zip",
77
+ "version": 1
78
+ },
79
+ "pc": {
80
+ "md5": "e8697b6080cea819b3304b75bf311aea",
81
+ "storageType": 0,
82
+ "url": "https://jdbest-cdn.s3.amazonaws.com/public/map/Alexandrie/pc/e8697b6080cea819b3304b75bf311aea.zip",
83
+ "version": 1
84
+ }
85
+ },
86
+ "mapType": "jdu",
87
+ "urls": {
88
+ "jmcs://jd-contents/Alexandrie/Alexandrie_AudioPreview.ogg": "https://jdcn-console.cdn.ubisoft.cn/public/map/Alexandrie/Alexandrie_AudioPreview.ogg/f93d96d4daa7e41c3491955d59a7cf95.ogg",
89
+ "jmcs://jd-contents/Alexandrie/Alexandrie_MapPreviewNoSoundCrop_HIGH.vp8.webm": "https://jdcn-console.cdn.ubisoft.cn/public/map/Alexandrie/Alexandrie_MapPreviewNoSoundCrop_HIGH.vp8.webm/6e3bef6ad0bd232f9de88727aae981f2.webm",
90
+ "jmcs://jd-contents/Alexandrie/Alexandrie_MapPreviewNoSoundCrop_HIGH.vp9.webm": "https://jdcn-console.cdn.ubisoft.cn/public/map/Alexandrie/Alexandrie_MapPreviewNoSoundCrop_HIGH.vp9.webm/4be052ef2f2a7c82e39ea811540fdec6.webm",
91
+ "jmcs://jd-contents/Alexandrie/Alexandrie_MapPreviewNoSoundCrop_LOW.vp8.webm": "https://jdcn-console.cdn.ubisoft.cn/public/map/Alexandrie/Alexandrie_MapPreviewNoSoundCrop_LOW.vp8.webm/4b03c8437236223b7312d082889fb490.webm",
92
+ "jmcs://jd-contents/Alexandrie/Alexandrie_MapPreviewNoSoundCrop_LOW.vp9.webm": "https://jdcn-console.cdn.ubisoft.cn/public/map/Alexandrie/Alexandrie_MapPreviewNoSoundCrop_LOW.vp9.webm/ab4e02fbabdfc46e7000245a6e589896.webm",
93
+ "jmcs://jd-contents/Alexandrie/Alexandrie_MapPreviewNoSoundCrop_MID.vp8.webm": "https://jdcn-console.cdn.ubisoft.cn/public/map/Alexandrie/Alexandrie_MapPreviewNoSoundCrop_MID.vp8.webm/fe04acb5cbafae65465ef7c64a62f73a.webm",
94
+ "jmcs://jd-contents/Alexandrie/Alexandrie_MapPreviewNoSoundCrop_MID.vp9.webm": "https://jdcn-console.cdn.ubisoft.cn/public/map/Alexandrie/Alexandrie_MapPreviewNoSoundCrop_MID.vp9.webm/9501ed98a97e338b4c9a6b70c84a2a64.webm",
95
+ "jmcs://jd-contents/Alexandrie/Alexandrie_MapPreviewNoSoundCrop_ULTRA.vp8.webm": "https://jdcn-console.cdn.ubisoft.cn/public/map/Alexandrie/Alexandrie_MapPreviewNoSoundCrop_ULTRA.vp8.webm/94d9fc97824d441618833119859ee988.webm",
96
+ "jmcs://jd-contents/Alexandrie/Alexandrie_MapPreviewNoSoundCrop_ULTRA.vp9.webm": "https://jdcn-console.cdn.ubisoft.cn/public/map/Alexandrie/Alexandrie_MapPreviewNoSoundCrop_ULTRA.vp9.webm/f27c101178ab3c1731975cae06657782.webm"
97
+ }
98
+ }
justdanceonline-main/maps/AllTheGoodGirls.json ADDED
@@ -0,0 +1,90 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "artist": "Billie Eilish",
3
+ "assets": {
4
+ "default": {
5
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/AllTheGoodGirls/AllTheGoodGirls_banner_bkg.jpg/d8b9ea4d9778ab376d6c898ad4c060aa.jpg",
6
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/AllTheGoodGirls/AllTheGoodGirls_Coach_1.png/256a31387506ad18753696b8da17615d.png",
7
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/AllTheGoodGirls/AllTheGoodGirls_Cover_Generic.jpg/0e1c16efd5bf403497844a408c6c0e77.jpg",
8
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/AllTheGoodGirls/AllTheGoodGirls_Cover_Online.jpg/40e1a9cef0c2560070b43fa795dced3a.jpg",
9
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/AllTheGoodGirls/AllTheGoodGirls_Cover_AlbumBkg.jpg/6677251cad5390db3dbb516dea56443a.jpg",
10
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/AllTheGoodGirls/AllTheGoodGirls_Cover_AlbumCoach.png/4fc0d8ba4bc0765fb2c22f7696f2100a.png",
11
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/AllTheGoodGirls/AllTheGoodGirls_Coach_1_Phone.png/f5ab1e2dabb89e85f09589885187af50.png",
12
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/AllTheGoodGirls/AllTheGoodGirls_Cover_Phone.jpg/40e1a9cef0c2560070b43fa795dced3a.jpg"
13
+ },
14
+ "nx": {
15
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/AllTheGoodGirls/AllTheGoodGirls_banner_bkg.jpg/d8b9ea4d9778ab376d6c898ad4c060aa.jpg",
16
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/AllTheGoodGirls/AllTheGoodGirls_Coach_1.png/256a31387506ad18753696b8da17615d.png",
17
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/AllTheGoodGirls/AllTheGoodGirls_Cover_Generic.jpg/0e1c16efd5bf403497844a408c6c0e77.jpg",
18
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/AllTheGoodGirls/AllTheGoodGirls_Cover_Online.jpg/40e1a9cef0c2560070b43fa795dced3a.jpg",
19
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/AllTheGoodGirls/AllTheGoodGirls_Cover_AlbumBkg.jpg/6677251cad5390db3dbb516dea56443a.jpg",
20
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/AllTheGoodGirls/AllTheGoodGirls_Cover_AlbumCoach.png/4fc0d8ba4bc0765fb2c22f7696f2100a.png",
21
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/AllTheGoodGirls/AllTheGoodGirls_Coach_1_Phone.png/f5ab1e2dabb89e85f09589885187af50.png",
22
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/AllTheGoodGirls/AllTheGoodGirls_Cover_Phone.jpg/40e1a9cef0c2560070b43fa795dced3a.jpg"
23
+ }
24
+ },
25
+ "audioPreviewData": "{\"__class\":\"MusicTrackData\",\"structure\":{\"__class\":\"MusicTrackStructure\",\"markers\":[0,31135,62270,93406,124541,155676,186811,217946,249081,280216,311352,342487,373622,404757,435892,467027,498162,529297,560433,591568,622703,653838,684973,716108,747243,778379,809514,840649,871784,902919,934054,965189,996325,1027460,1058595,1089730,1120865,1152000,1183135,1214270,1245406,1276541,1307676,1338811,1369946,1401081,1432216],\"signatures\":[{\"__class\":\"MusicSignature\",\"marker\":0,\"beats\":4}],\"startBeat\":-1,\"endBeat\":255,\"fadeStartBeat\":0,\"useFadeStartBeat\":false,\"fadeEndBeat\":0,\"useFadeEndBeat\":false,\"videoStartTime\":0,\"previewEntry\":0,\"previewLoopStart\":0,\"previewLoopEnd\":46,\"volume\":0,\"fadeInDuration\":0,\"fadeInType\":0,\"fadeOutDuration\":0,\"fadeOutType\":0},\"path\":\"\",\"url\":\"jmcs://jd-contents/allthegoodgirls/allthegoodgirls_AudioPreview.ogg\"}",
26
+ "coachCount": 1,
27
+ "credits": "Just Dance Best is an online mod made by Just Dance Alliance. We are not affiliated with Ubisoft nor own any rights over their copyrighted content and trademark. Written by Billie Eilish O'Connell and Finneas O’Connell. Published by Last Frontier (ASCAP). Administered by Kobalt Music Publishing America, Inc. / Universal Music Publishing Canada on behalf of DRUP and Universal Music Corp. Courtesy of Interscope Records under license from Universal Music Enterprises.",
28
+ "difficulty": 2,
29
+ "doubleScoringType": -1,
30
+ "jdmAttributes": [],
31
+ "lyricsColor": "38C4FDFF",
32
+ "lyricsType": 0,
33
+ "mainCoach": -1,
34
+ "mapLength": 166.054,
35
+ "mapName": "AllTheGoodGirls",
36
+ "mapPreviewMpd": "<?xml version=\"1.0\"?>\r\n<MPD xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"urn:mpeg:DASH:schema:MPD:2011\" xsi:schemaLocation=\"urn:mpeg:DASH:schema:MPD:2011\" type=\"static\" mediaPresentationDuration=\"PT30S\" minBufferTime=\"PT1S\" profiles=\"urn:webm:dash:profile:webm-on-demand:2012\">\r\n\t<Period id=\"0\" start=\"PT0S\" duration=\"PT30S\">\r\n\t\t<AdaptationSet id=\"0\" mimeType=\"video/webm\" codecs=\"vp8\" lang=\"eng\" maxWidth=\"720\" maxHeight=\"370\" subsegmentAlignment=\"true\" subsegmentStartsWithSAP=\"1\" bitstreamSwitching=\"true\">\r\n\t\t\t<Representation id=\"0\" bandwidth=\"494835\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/AllTheGoodGirls/AllTheGoodGirls_MapPreviewNoSoundCrop_LOW.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"656-1145\">\r\n\t\t\t\t\t<Initialization range=\"0-656\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"1\" bandwidth=\"1476192\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/AllTheGoodGirls/AllTheGoodGirls_MapPreviewNoSoundCrop_MID.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"657-1147\">\r\n\t\t\t\t\t<Initialization range=\"0-657\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"2\" bandwidth=\"2594682\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/AllTheGoodGirls/AllTheGoodGirls_MapPreviewNoSoundCrop_HIGH.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"657-1147\">\r\n\t\t\t\t\t<Initialization range=\"0-657\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"3\" bandwidth=\"2885560\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/AllTheGoodGirls/AllTheGoodGirls_MapPreviewNoSoundCrop_ULTRA.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"657-1147\">\r\n\t\t\t\t\t<Initialization range=\"0-657\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t</AdaptationSet>\r\n\t</Period>\r\n</MPD>\r\n",
37
+ "mode": 6,
38
+ "originalJDVersion": 2021,
39
+ "packages": {
40
+ "mapContent": "AllTheGoodGirls_mapContent"
41
+ },
42
+ "parentMapName": "AllTheGoodGirls",
43
+ "skuIds": [],
44
+ "songColors": {
45
+ "songColor_1A": "0095EAFF",
46
+ "songColor_1B": "1F2499FF",
47
+ "songColor_2A": "E90042FF",
48
+ "songColor_2B": "311670FF"
49
+ },
50
+ "status": 3,
51
+ "sweatDifficulty": 2,
52
+ "tags": [
53
+ "Main",
54
+ "subscribedSong"
55
+ ],
56
+ "title": "All the good girls go to hell",
57
+ "serverChangelist": 455481,
58
+ "skupackages": {
59
+ "orbis": {
60
+ "md5": "1f3ba8a1e2ebc6d1a7762e1ee49ba700",
61
+ "storageType": 0,
62
+ "url": "https://jdcn-console.cdn.ubisoft.cn/public/map/AllTheGoodGirls/ps4/AllTheGoodGirls_MAIN_SCENE_ORBIS.zip/1f3ba8a1e2ebc6d1a7762e1ee49ba700.zip",
63
+ "version": 1
64
+ },
65
+ "nx": {
66
+ "md5": "b3333a75c5d8f5cac579f568f41128c6",
67
+ "storageType": 0,
68
+ "url": "https://jdcn-console.cdn.ubisoft.cn/public/map/AllTheGoodGirls/nx/AllTheGoodGirls_MAIN_SCENE_NX.zip/b3333a75c5d8f5cac579f568f41128c6.zip",
69
+ "version": 1
70
+ },
71
+ "pc": {
72
+ "md5": "5fecec9f2a93fd3ecd1f4b08e53e7639",
73
+ "storageType": 0,
74
+ "url": "https://jdbest-cdn.s3.amazonaws.com/public/map/AllTheGoodGirls/pc/5fecec9f2a93fd3ecd1f4b08e53e7639.zip",
75
+ "version": 1
76
+ }
77
+ },
78
+ "mapType": "jdu",
79
+ "urls": {
80
+ "jmcs://jd-contents/AllTheGoodGirls/AllTheGoodGirls_AudioPreview.ogg": "https://jdcn-console.cdn.ubisoft.cn/public/map/AllTheGoodGirls/AllTheGoodGirls_AudioPreview.ogg/8561313c4ef61b340752e3012df7b9d7.ogg",
81
+ "jmcs://jd-contents/AllTheGoodGirls/AllTheGoodGirls_MapPreviewNoSoundCrop_HIGH.vp8.webm": "https://jdcn-console.cdn.ubisoft.cn/public/map/AllTheGoodGirls/AllTheGoodGirls_MapPreviewNoSoundCrop_HIGH.vp8.webm/54af2bfc20485d5f567ce6fbad55ad79.webm",
82
+ "jmcs://jd-contents/AllTheGoodGirls/AllTheGoodGirls_MapPreviewNoSoundCrop_HIGH.vp9.webm": "https://jdcn-console.cdn.ubisoft.cn/public/map/AllTheGoodGirls/AllTheGoodGirls_MapPreviewNoSoundCrop_HIGH.vp9.webm/bdf74cdb2881d6f69584a1869dcb9b8f.webm",
83
+ "jmcs://jd-contents/AllTheGoodGirls/AllTheGoodGirls_MapPreviewNoSoundCrop_LOW.vp8.webm": "https://jdcn-console.cdn.ubisoft.cn/public/map/AllTheGoodGirls/AllTheGoodGirls_MapPreviewNoSoundCrop_LOW.vp8.webm/2bf081b71f9390b283235b11824f765a.webm",
84
+ "jmcs://jd-contents/AllTheGoodGirls/AllTheGoodGirls_MapPreviewNoSoundCrop_LOW.vp9.webm": "https://jdcn-console.cdn.ubisoft.cn/public/map/AllTheGoodGirls/AllTheGoodGirls_MapPreviewNoSoundCrop_LOW.vp9.webm/ef73e663d088bf86336644611065c5d4.webm",
85
+ "jmcs://jd-contents/AllTheGoodGirls/AllTheGoodGirls_MapPreviewNoSoundCrop_MID.vp8.webm": "https://jdcn-console.cdn.ubisoft.cn/public/map/AllTheGoodGirls/AllTheGoodGirls_MapPreviewNoSoundCrop_MID.vp8.webm/ff6d5ab603e7bad29e418a561c5d796f.webm",
86
+ "jmcs://jd-contents/AllTheGoodGirls/AllTheGoodGirls_MapPreviewNoSoundCrop_MID.vp9.webm": "https://jdcn-console.cdn.ubisoft.cn/public/map/AllTheGoodGirls/AllTheGoodGirls_MapPreviewNoSoundCrop_MID.vp9.webm/5f5e0310a34c524e9e1dd30b1ddef5b9.webm",
87
+ "jmcs://jd-contents/AllTheGoodGirls/AllTheGoodGirls_MapPreviewNoSoundCrop_ULTRA.vp8.webm": "https://jdcn-console.cdn.ubisoft.cn/public/map/AllTheGoodGirls/AllTheGoodGirls_MapPreviewNoSoundCrop_ULTRA.vp8.webm/7b79692dfe978831db6537d3d9baa57d.webm",
88
+ "jmcs://jd-contents/AllTheGoodGirls/AllTheGoodGirls_MapPreviewNoSoundCrop_ULTRA.vp9.webm": "https://jdcn-console.cdn.ubisoft.cn/public/map/AllTheGoodGirls/AllTheGoodGirls_MapPreviewNoSoundCrop_ULTRA.vp9.webm/a589579a4064c6af72081d82b1a5e679.webm"
89
+ }
90
+ }
justdanceonline-main/maps/AllYouGotta.json ADDED
@@ -0,0 +1,125 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "artist": "舞力全开乐队",
3
+ "assets": {
4
+ "default": {
5
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/AllYouGotta/ps4/AllYouGotta_banner_bkg.tga.ckd/4cf66415f6d322e0fba32333c711ba67.ckd",
6
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/AllYouGotta/ps4/AllYouGotta_Coach_1.tga.ckd/204ece47e503cd377a9ec0c6c4b1936f.ckd",
7
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/AllYouGotta/ps4/AllYouGotta_Cover_Generic.tga.ckd/fe12c837eef42b14b5119da74deae1d1.ckd",
8
+ "cover_1024ImageUrl": "https://jd-s3.akamaized.net/public/map/AllYouGotta/AllYouGotta_Cover_1024.png/b22867526fac1bceb16b9673b480626f.png",
9
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/AllYouGotta/ps4/AllYouGotta_Cover_Online.tga.ckd/06b28fa2d5c7e65d450613acba461a93.ckd",
10
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/AllYouGotta/ps4/AllYouGotta_Cover_AlbumBkg.tga.ckd/a012c104dff49862c4f3300ea77d7f60.ckd",
11
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/AllYouGotta/ps4/AllYouGotta_Cover_AlbumCoach.tga.ckd/42980f9e8aa3a98ad10e59f6be5c5929.ckd",
12
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/AllYouGotta/AllYouGotta_Coach_1_Phone.png/50856586c64f29b49f83fe789aad80d4.png",
13
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/AllYouGotta/AllYouGotta_Cover_Phone.jpg/72905fe3705f067f7655136a9ad2ac49.jpg",
14
+ "videoPreviewVideoURL": "https://jd-s3.akamaized.net/public/map/AllYouGotta/AllYouGotta_VideoPreview.webm/5b399c61f13d9ac3b63fe6b7ae5cc87c.webm",
15
+ "map_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/AllYouGotta/ps4/AllYouGotta_map_bkg.tga.ckd/592324a09d85aa413eecdda6a5dd63c4.ckd"
16
+ },
17
+ "nx": {
18
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/AllYouGotta/nx/AllYouGotta_banner_bkg.tga.ckd/42e0e86513afe337c4094b8c2c117321.ckd",
19
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/AllYouGotta/nx/AllYouGotta_Coach_1.tga.ckd/b530723e49487ac7bf4fdce87bc6829d.ckd",
20
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/AllYouGotta/nx/AllYouGotta_Cover_Generic.tga.ckd/74715c66c44613f201e249c1d1f4c464.ckd",
21
+ "cover_1024ImageUrl": "https://jd-s3.akamaized.net/public/map/AllYouGotta/AllYouGotta_Cover_1024.png/b22867526fac1bceb16b9673b480626f.png",
22
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/AllYouGotta/nx/AllYouGotta_Cover_Online.tga.ckd/54607158c6e73d07091b3a09105a8058.ckd",
23
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/AllYouGotta/nx/AllYouGotta_Cover_AlbumBkg.tga.ckd/c32e8a9675a11be4dce1c6a47886a21e.ckd",
24
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/AllYouGotta/nx/AllYouGotta_Cover_AlbumCoach.tga.ckd/84e9d6ebd1cc530d9d282fefb7c88700.ckd",
25
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/AllYouGotta/AllYouGotta_Coach_1_Phone.png/50856586c64f29b49f83fe789aad80d4.png",
26
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/AllYouGotta/AllYouGotta_Cover_Phone.jpg/72905fe3705f067f7655136a9ad2ac49.jpg",
27
+ "videoPreviewVideoURL": "https://jd-s3.akamaized.net/public/map/AllYouGotta/AllYouGotta_VideoPreview.webm/5b399c61f13d9ac3b63fe6b7ae5cc87c.webm",
28
+ "map_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/AllYouGotta/nx/AllYouGotta_map_bkg.tga.ckd/8e22c28045f57d83514749b854c980c7.ckd"
29
+ },
30
+ "wiiu": {
31
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/AllYouGotta/wiiu/AllYouGotta_banner_bkg.tga.ckd/ed405cffa858f62a140a9d9868985772.ckd",
32
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/AllYouGotta/wiiu/AllYouGotta_Coach_1.tga.ckd/bac00b885ffe1941e0dd465db57231fb.ckd",
33
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/AllYouGotta/wiiu/AllYouGotta_Cover_Generic.tga.ckd/9b1d1ade3885542570022dde157c3e22.ckd",
34
+ "cover_1024ImageUrl": "https://jd-s3.akamaized.net/public/map/AllYouGotta/AllYouGotta_Cover_1024.png/b22867526fac1bceb16b9673b480626f.png",
35
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/AllYouGotta/wiiu/AllYouGotta_Cover_Online.tga.ckd/64c8a6edc2f7889d589fa3c9edfe8fd2.ckd",
36
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/AllYouGotta/wiiu/AllYouGotta_Cover_AlbumBkg.tga.ckd/310d794cf252cbe5fabea4efe47db4c1.ckd",
37
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/AllYouGotta/wiiu/AllYouGotta_Cover_AlbumCoach.tga.ckd/3b5d096795967d4b872ebd1c13d1842a.ckd",
38
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/AllYouGotta/AllYouGotta_Coach_1_Phone.png/50856586c64f29b49f83fe789aad80d4.png",
39
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/AllYouGotta/AllYouGotta_Cover_Phone.jpg/72905fe3705f067f7655136a9ad2ac49.jpg",
40
+ "videoPreviewVideoURL": "https://jd-s3.akamaized.net/public/map/AllYouGotta/AllYouGotta_VideoPreview.webm/5b399c61f13d9ac3b63fe6b7ae5cc87c.webm"
41
+ }
42
+ },
43
+ "audioPreviewData": "{\"__class\":\"MusicTrackData\",\"structure\":{\"__class\":\"MusicTrackStructure\",\"markers\":[0,24000,48000,72000,96000,120000,144000,168000,192000,216000,240000,264000,288000,312000,336000,360000,384000,408000,432000,456000,480000,504000,528000,552000,576000,600000,624000,647999,672000,696000,720000,744000,768000,792000,816000,840000,863999,888000,912000,936000,959999,984000,1008000,1032000,1056000,1080000,1104000,1128000,1152000,1175999,1200000,1224000,1248000,1271999,1296000,1320000,1344000,1368000,1392000,1416000],\"signatures\":[{\"__class\":\"MusicSignature\",\"marker\":0,\"beats\":4}],\"startBeat\":-5,\"endBeat\":443,\"fadeStartBeat\":0,\"useFadeStartBeat\":false,\"fadeEndBeat\":443,\"useFadeEndBeat\":true,\"videoStartTime\":0,\"previewEntry\":0,\"previewLoopStart\":0,\"previewLoopEnd\":59,\"volume\":0,\"fadeInDuration\":0,\"fadeInType\":0,\"fadeOutDuration\":0,\"fadeOutType\":0},\"path\":\"\",\"url\":\"jmcs://jd-contents/allyougotta/allyougotta_AudioPreview.ogg\"}",
44
+ "coachCount": 1,
45
+ "credits": "Just Dance Best is an online mod made by Just Dance Alliance. We are not affiliated with Ubisoft nor own any rights over their copyrighted content and trademark. Written by Benjamin ‘Oktavian’ Samana and Tom Salta. Produced and Mixed by Tom Salta. Published by Ubisoft Music Publishing. Vocals by Oktavian and Missi Hale. Crowd Voices: Liza Salta, TJ Salta, Tom Salta, Greg Rivera, Sherri Rivera, JR Rivera, Dean Rivera, Anastasia Rivera, Lena Booth, Alec Booth, Ray Vogt, Cathy Vogt, Zachary Vogt, Gregory Vogt, Matt Vogt, Vincent Forte, Raquel Reilly, Alison Reilly, Samantha Baiocco, Don Reilly, Zachary Bartley, Isabella Jakab, Maria Ceceilia, Megan Lombardo, Beatrice Mante, Colleen Canron, Edwin Gregory, Gabriella Frabrizio, Jaclyn Zerrusen, Jenna Zerrusen, Tyler Tarver, Milani Leite, Makayla Leite, Meghan Debes, Lisa Moretti, Ava Pils, Tyler Pils, Kaitlin Conrad, Katherine Plath , Patrick D'Arinzo. Additional Guitar: Paul Castelluzzo. Music Supervision – Manu Bachet. Courtesy of Ubisoft Music. All rights of the producer and other rightholders to the recorded work reserved. Unless otherwise authorized, the duplication, rental, loan, exchange or use of this video game for public performance, broadcasting and online distribution to the public are prohibited.",
46
+ "difficulty": 1,
47
+ "doubleScoringType": -1,
48
+ "jdmAttributes": [],
49
+ "lyricsColor": "F203A7FF",
50
+ "lyricsType": 0,
51
+ "mainCoach": -1,
52
+ "mapLength": 224,
53
+ "mapName": "AllYouGotta",
54
+ "mapPreviewMpd": "<?xml version=\"1.0\"?>\r\n<MPD xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"urn:mpeg:DASH:schema:MPD:2011\" xsi:schemaLocation=\"urn:mpeg:DASH:schema:MPD:2011\" type=\"static\" mediaPresentationDuration=\"PT30S\" minBufferTime=\"PT1S\" profiles=\"urn:webm:dash:profile:webm-on-demand:2012\">\r\n\t<Period id=\"0\" start=\"PT0S\" duration=\"PT30S\">\r\n\t\t<AdaptationSet id=\"0\" mimeType=\"video/webm\" codecs=\"vp8\" lang=\"eng\" maxWidth=\"720\" maxHeight=\"370\" subsegmentAlignment=\"true\" subsegmentStartsWithSAP=\"1\" bitstreamSwitching=\"true\">\r\n\t\t\t<Representation id=\"0\" bandwidth=\"496572\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/AllYouGotta/AllYouGotta_MapPreviewNoSoundCrop_LOW.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"629-1118\">\r\n\t\t\t\t\t<Initialization range=\"0-629\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"1\" bandwidth=\"1474484\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/AllYouGotta/AllYouGotta_MapPreviewNoSoundCrop_MID.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"630-1120\">\r\n\t\t\t\t\t<Initialization range=\"0-630\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"2\" bandwidth=\"2911879\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/AllYouGotta/AllYouGotta_MapPreviewNoSoundCrop_HIGH.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"630-1120\">\r\n\t\t\t\t\t<Initialization range=\"0-630\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"3\" bandwidth=\"3230251\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/AllYouGotta/AllYouGotta_MapPreviewNoSoundCrop_ULTRA.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"630-1120\">\r\n\t\t\t\t\t<Initialization range=\"0-630\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t</AdaptationSet>\r\n\t</Period>\r\n</MPD>\r\n",
55
+ "mode": 6,
56
+ "originalJDVersion": 2018,
57
+ "packages": {
58
+ "mapContent": "AllYouGotta_mapContent"
59
+ },
60
+ "parentMapName": "AllYouGotta",
61
+ "skuIds": [
62
+ "jd2018-nx-all",
63
+ "jd2018-ps4-scea",
64
+ "jd2018-ps4-scee",
65
+ "jd2018-wiiu-noa",
66
+ "jd2018-wiiu-noe",
67
+ "jd2018-xone-emea",
68
+ "jd2018-xone-ncsa"
69
+ ],
70
+ "songColors": {
71
+ "songColor_1A": "7FF4B0FF",
72
+ "songColor_1B": "046B69FF",
73
+ "songColor_2A": "0077FFFF",
74
+ "songColor_2B": "020A4FFF"
75
+ },
76
+ "status": 9,
77
+ "sweatDifficulty": 1,
78
+ "tags": [
79
+ "Main",
80
+ "freeSong",
81
+ "HallOfFame",
82
+ "NoArtist",
83
+ "CnUnlimited2018"
84
+ ],
85
+ "title": "舞力全开 (Wu Li Quan Kai)",
86
+ "urls": {
87
+ "jmcs://jd-contents/AllYouGotta/AllYouGotta_AudioPreview.ogg": "https://jd-s3.akamaized.net/public/map/AllYouGotta/AllYouGotta_AudioPreview.ogg/9bfb232c475d4d6e9b7ec9f867ff6035.ogg",
88
+ "jmcs://jd-contents/AllYouGotta/AllYouGotta_MapPreviewNoSoundCrop_HIGH.vp8.webm": "https://jd-s3.akamaized.net/public/map/AllYouGotta/AllYouGotta_MapPreviewNoSoundCrop_HIGH.vp8.webm/fc847e23a45530827e75359b65e3e147.webm",
89
+ "jmcs://jd-contents/AllYouGotta/AllYouGotta_MapPreviewNoSoundCrop_HIGH.vp9.webm": "https://jd-s3.akamaized.net/public/map/AllYouGotta/AllYouGotta_MapPreviewNoSoundCrop_HIGH.vp9.webm/653768415a71ae0a104fb944257f5493.webm",
90
+ "jmcs://jd-contents/AllYouGotta/AllYouGotta_MapPreviewNoSoundCrop_LOW.vp8.webm": "https://jd-s3.akamaized.net/public/map/AllYouGotta/AllYouGotta_MapPreviewNoSoundCrop_LOW.vp8.webm/540ee93825ea038b39e8a93211d579cf.webm",
91
+ "jmcs://jd-contents/AllYouGotta/AllYouGotta_MapPreviewNoSoundCrop_LOW.vp9.webm": "https://jd-s3.akamaized.net/public/map/AllYouGotta/AllYouGotta_MapPreviewNoSoundCrop_LOW.vp9.webm/6b5082833603912baf46a0df287d391c.webm",
92
+ "jmcs://jd-contents/AllYouGotta/AllYouGotta_MapPreviewNoSoundCrop_MID.vp8.webm": "https://jd-s3.akamaized.net/public/map/AllYouGotta/AllYouGotta_MapPreviewNoSoundCrop_MID.vp8.webm/c91aa011fd8ce1ee2216174c9a73b587.webm",
93
+ "jmcs://jd-contents/AllYouGotta/AllYouGotta_MapPreviewNoSoundCrop_MID.vp9.webm": "https://jd-s3.akamaized.net/public/map/AllYouGotta/AllYouGotta_MapPreviewNoSoundCrop_MID.vp9.webm/22d6a59b252473e9821e42d241874231.webm",
94
+ "jmcs://jd-contents/AllYouGotta/AllYouGotta_MapPreviewNoSoundCrop_ULTRA.vp8.webm": "https://jd-s3.akamaized.net/public/map/AllYouGotta/AllYouGotta_MapPreviewNoSoundCrop_ULTRA.vp8.webm/72b05000f8bf6736215da54454efe50c.webm",
95
+ "jmcs://jd-contents/AllYouGotta/AllYouGotta_MapPreviewNoSoundCrop_ULTRA.vp9.webm": "https://jd-s3.akamaized.net/public/map/AllYouGotta/AllYouGotta_MapPreviewNoSoundCrop_ULTRA.vp9.webm/32186a646eacaa56bed1dcae631d353f.webm"
96
+ },
97
+ "serverChangelist": 455481,
98
+ "skupackages": {
99
+ "orbis": {
100
+ "md5": "a846550947d7816483cce5fd92114f8c",
101
+ "storageType": 0,
102
+ "url": "https://jd-s3.akamaized.net/public/map/AllYouGotta/ps4/AllYouGotta_MAIN_SCENE_ORBIS.zip/a846550947d7816483cce5fd92114f8c.zip",
103
+ "version": 3
104
+ },
105
+ "nx": {
106
+ "md5": "e74eca0581fed6f71bb45be326e18cd5",
107
+ "storageType": 0,
108
+ "url": "https://jd-s3.akamaized.net/public/map/AllYouGotta/nx/AllYouGotta_MAIN_SCENE_NX.zip/e74eca0581fed6f71bb45be326e18cd5.zip",
109
+ "version": 3
110
+ },
111
+ "pc": {
112
+ "md5": "4d56170b2489268161c1f1b434e8c7fc",
113
+ "storageType": 0,
114
+ "url": "https://jdbest-cdn.s3.amazonaws.com/public/map/AllYouGotta/pc/4d56170b2489268161c1f1b434e8c7fc.zip",
115
+ "version": 1
116
+ },
117
+ "wiiu": {
118
+ "md5": "cc54f308e1416ff6c817372e7f132fda",
119
+ "storageType": 0,
120
+ "url": "https://jd-s3.akamaized.net/public/map/AllYouGotta/wiiu/AllYouGotta_MAIN_SCENE_WIIU.zip/cc54f308e1416ff6c817372e7f132fda.zip",
121
+ "version": 3
122
+ }
123
+ },
124
+ "mapType": "jdu"
125
+ }
justdanceonline-main/maps/AngryBirds.json ADDED
@@ -0,0 +1,132 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "artist": "Angry Birds",
3
+ "assets": {
4
+ "default": {
5
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/AngryBirds/AngryBirds_banner_bkg.jpg/7a3e25c6278a1df2318a1c58c4d76d8e.jpg",
6
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/AngryBirds/AngryBirds_Coach_1.png/7131c0ebd6c93aaf2b3c1f2458f39fa4.png",
7
+ "coach2ImageUrl": "https://jd-s3.akamaized.net/public/map/AngryBirds/AngryBirds_Coach_2.png/dd0b88f112bd575936c96115e327ccf8.png",
8
+ "coach3ImageUrl": "https://jd-s3.akamaized.net/public/map/AngryBirds/AngryBirds_Coach_3.png/d55beeb0cf57c121e77473f2576fe5a4.png",
9
+ "coach4ImageUrl": "https://jd-s3.akamaized.net/public/map/AngryBirds/AngryBirds_Coach_4.png/7e77bcdc98e03d25808cc6c0e756b005.png",
10
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/AngryBirds/AngryBirds_Cover_Generic.jpg/4d4966caa68e6145e8bb7cb0855648a8.jpg",
11
+ "cover_1024ImageUrl": "https://jd-s3.akamaized.net/public/map/AngryBirds/AngryBirds_Cover_1024.png/b66e307fb424341f1d0bca44833ea5b2.png",
12
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/AngryBirds/AngryBirds_Cover_Online.jpg/c41c94d9559cedd5a89c172826c35390.jpg",
13
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/AngryBirds/AngryBirds_Cover_AlbumBkg.jpg/0f27903af6a417bcce2a789ee7b3a45c.jpg",
14
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/AngryBirds/AngryBirds_Cover_AlbumCoach.png/1c8daf64b174a5993da8cb833cbb344e.png",
15
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/AngryBirds/AngryBirds_Coach_1_Phone.png/5959efc1b20ed6aa6c41b921d860864b.png",
16
+ "phoneCoach2ImageUrl": "https://jd-s3.akamaized.net/public/map/AngryBirds/AngryBirds_Coach_2_Phone.png/2ef2e1c63baae9ec44da327d8639c611.png",
17
+ "phoneCoach3ImageUrl": "https://jd-s3.akamaized.net/public/map/AngryBirds/AngryBirds_Coach_3_Phone.png/05dc53de8ba1c28162c50a35c009d2d5.png",
18
+ "phoneCoach4ImageUrl": "https://jd-s3.akamaized.net/public/map/AngryBirds/AngryBirds_Coach_4_Phone.png/b35cd6ef6cad4f6212433eaae26da50f.png",
19
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/AngryBirds/AngryBirds_Cover_Phone.jpg/c41c94d9559cedd5a89c172826c35390.jpg",
20
+ "videoPreviewVideoURL": "https://jd-s3.akamaized.net/public/map/AngryBirds/AngryBirds_VideoPreview.webm/7b831518c906516acb05eda2168ccd6f.webm"
21
+ },
22
+ "nx": {
23
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/AngryBirds/AngryBirds_banner_bkg.jpg/7a3e25c6278a1df2318a1c58c4d76d8e.jpg",
24
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/AngryBirds/AngryBirds_Coach_1.png/7131c0ebd6c93aaf2b3c1f2458f39fa4.png",
25
+ "coach2ImageUrl": "https://jd-s3.akamaized.net/public/map/AngryBirds/AngryBirds_Coach_2.png/dd0b88f112bd575936c96115e327ccf8.png",
26
+ "coach3ImageUrl": "https://jd-s3.akamaized.net/public/map/AngryBirds/AngryBirds_Coach_3.png/d55beeb0cf57c121e77473f2576fe5a4.png",
27
+ "coach4ImageUrl": "https://jd-s3.akamaized.net/public/map/AngryBirds/AngryBirds_Coach_4.png/7e77bcdc98e03d25808cc6c0e756b005.png",
28
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/AngryBirds/AngryBirds_Cover_Generic.jpg/4d4966caa68e6145e8bb7cb0855648a8.jpg",
29
+ "cover_1024ImageUrl": "https://jd-s3.akamaized.net/public/map/AngryBirds/AngryBirds_Cover_1024.png/b66e307fb424341f1d0bca44833ea5b2.png",
30
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/AngryBirds/AngryBirds_Cover_Online.jpg/c41c94d9559cedd5a89c172826c35390.jpg",
31
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/AngryBirds/AngryBirds_Cover_AlbumBkg.jpg/0f27903af6a417bcce2a789ee7b3a45c.jpg",
32
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/AngryBirds/AngryBirds_Cover_AlbumCoach.png/1c8daf64b174a5993da8cb833cbb344e.png",
33
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/AngryBirds/AngryBirds_Coach_1_Phone.png/5959efc1b20ed6aa6c41b921d860864b.png",
34
+ "phoneCoach2ImageUrl": "https://jd-s3.akamaized.net/public/map/AngryBirds/AngryBirds_Coach_2_Phone.png/2ef2e1c63baae9ec44da327d8639c611.png",
35
+ "phoneCoach3ImageUrl": "https://jd-s3.akamaized.net/public/map/AngryBirds/AngryBirds_Coach_3_Phone.png/05dc53de8ba1c28162c50a35c009d2d5.png",
36
+ "phoneCoach4ImageUrl": "https://jd-s3.akamaized.net/public/map/AngryBirds/AngryBirds_Coach_4_Phone.png/b35cd6ef6cad4f6212433eaae26da50f.png",
37
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/AngryBirds/AngryBirds_Cover_Phone.jpg/c41c94d9559cedd5a89c172826c35390.jpg",
38
+ "videoPreviewVideoURL": "https://jd-s3.akamaized.net/public/map/AngryBirds/AngryBirds_VideoPreview.webm/7b831518c906516acb05eda2168ccd6f.webm"
39
+ },
40
+ "wiiu": {
41
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/AngryBirds/wiiu/AngryBirds_banner_bkg.tga.ckd/60825edc0e1c29754b97b47616821767.ckd",
42
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/AngryBirds/wiiu/AngryBirds_Coach_1.tga.ckd/5e3d6c9c6601d9f00ebed6e7bfa500e9.ckd",
43
+ "coach2ImageUrl": "https://jd-s3.akamaized.net/public/map/AngryBirds/wiiu/AngryBirds_Coach_2.tga.ckd/9cccb9c0bdceaf457d8688d2790644b0.ckd",
44
+ "coach3ImageUrl": "https://jd-s3.akamaized.net/public/map/AngryBirds/wiiu/AngryBirds_Coach_3.tga.ckd/8b72d64a44fd2e7ebeac32809055d63d.ckd",
45
+ "coach4ImageUrl": "https://jd-s3.akamaized.net/public/map/AngryBirds/wiiu/AngryBirds_Coach_4.tga.ckd/32ea55c09d1ab893e9a910c6b9d3f69d.ckd",
46
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/AngryBirds/wiiu/AngryBirds_Cover_Generic.tga.ckd/3dcbe07d2aacd6e9d19c49fead2019e6.ckd",
47
+ "cover_1024ImageUrl": "https://jd-s3.akamaized.net/public/map/AngryBirds/AngryBirds_Cover_1024.png/b66e307fb424341f1d0bca44833ea5b2.png",
48
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/AngryBirds/wiiu/AngryBirds_Cover_Online.tga.ckd/2bc2f2d526ac05d6b638477ddf37aa24.ckd",
49
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/AngryBirds/wiiu/AngryBirds_Cover_AlbumBkg.tga.ckd/1c003b407d5b2b88a75abdd706230225.ckd",
50
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/AngryBirds/wiiu/AngryBirds_Cover_AlbumCoach.tga.ckd/a7800ca825057360b5ca50e182584593.ckd",
51
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/AngryBirds/AngryBirds_Coach_1_Phone.png/5959efc1b20ed6aa6c41b921d860864b.png",
52
+ "phoneCoach2ImageUrl": "https://jd-s3.akamaized.net/public/map/AngryBirds/AngryBirds_Coach_2_Phone.png/2ef2e1c63baae9ec44da327d8639c611.png",
53
+ "phoneCoach3ImageUrl": "https://jd-s3.akamaized.net/public/map/AngryBirds/AngryBirds_Coach_3_Phone.png/05dc53de8ba1c28162c50a35c009d2d5.png",
54
+ "phoneCoach4ImageUrl": "https://jd-s3.akamaized.net/public/map/AngryBirds/AngryBirds_Coach_4_Phone.png/b35cd6ef6cad4f6212433eaae26da50f.png",
55
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/AngryBirds/AngryBirds_Cover_Phone.jpg/c41c94d9559cedd5a89c172826c35390.jpg",
56
+ "videoPreviewVideoURL": "https://jd-s3.akamaized.net/public/map/AngryBirds/AngryBirds_VideoPreview.webm/7b831518c906516acb05eda2168ccd6f.webm"
57
+ }
58
+ },
59
+ "audioPreviewData": "{\"__class\":\"MusicTrackData\",\"structure\":{\"__class\":\"MusicTrackStructure\",\"markers\":[0,24000,48000,72000,96000,120000,144000,168000,192000,215999,239999,263999,287999,311999,335999,359999,383999,407999,431999,455999,479999,503999,527999,551999,575999,599999,623998,647998,671998,695998,719998,743998,767998,791998,815998,839998,863998,887998,911998,935998,959998,983998,1007997,1031997,1055997,1079997,1103997,1127997,1151997,1175997,1199997,1223997,1247997,1271997,1295997,1319997,1343997,1367997,1391997,1415996,1439996],\"signatures\":[{\"__class\":\"MusicSignature\",\"marker\":0,\"beats\":4}],\"startBeat\":-19,\"endBeat\":299,\"fadeStartBeat\":0,\"useFadeStartBeat\":false,\"fadeEndBeat\":0,\"useFadeEndBeat\":false,\"videoStartTime\":0,\"previewEntry\":0,\"previewLoopStart\":0,\"previewLoopEnd\":60,\"volume\":0,\"fadeInDuration\":0,\"fadeInType\":0,\"fadeOutDuration\":0,\"fadeOutType\":0},\"path\":\"\",\"url\":\"jmcs://jd-contents/angrybirds/angrybirds_AudioPreview.ogg\"}",
60
+ "coachCount": 4,
61
+ "credits": "Just Dance Best is an online mod made by Just Dance Alliance. We are not affiliated with Ubisoft nor own any rights over their copyrighted content and trademark. All rights of the producer and other rightholders to the recorded work reserved. Unless otherwise authorized, the duplication, rental, loan, exchange or use of this video game for public performance, broadcasting and online distribution to the public are prohibited.",
62
+ "difficulty": 1,
63
+ "doubleScoringType": -1,
64
+ "jdmAttributes": [],
65
+ "lyricsColor": "FF0000FF",
66
+ "lyricsType": 0,
67
+ "mainCoach": -1,
68
+ "mapLength": 157.373,
69
+ "mapName": "AngryBirds",
70
+ "mapPreviewMpd": "<?xml version=\"1.0\"?>\r\n<MPD xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"urn:mpeg:DASH:schema:MPD:2011\" xsi:schemaLocation=\"urn:mpeg:DASH:schema:MPD:2011\" type=\"static\" mediaPresentationDuration=\"PT30S\" minBufferTime=\"PT1S\" profiles=\"urn:webm:dash:profile:webm-on-demand:2012\">\r\n\t<Period id=\"0\" start=\"PT0S\" duration=\"PT30S\">\r\n\t\t<AdaptationSet id=\"0\" mimeType=\"video/webm\" codecs=\"vp8\" lang=\"eng\" maxWidth=\"720\" maxHeight=\"370\" subsegmentAlignment=\"true\" subsegmentStartsWithSAP=\"1\" bitstreamSwitching=\"true\">\r\n\t\t\t<Representation id=\"0\" bandwidth=\"497108\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/AngryBirds/AngryBirds_MapPreviewNoSoundCrop_LOW.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"623-1112\">\r\n\t\t\t\t\t<Initialization range=\"0-623\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"1\" bandwidth=\"1479176\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/AngryBirds/AngryBirds_MapPreviewNoSoundCrop_MID.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"624-1114\">\r\n\t\t\t\t\t<Initialization range=\"0-624\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"2\" bandwidth=\"2677473\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/AngryBirds/AngryBirds_MapPreviewNoSoundCrop_HIGH.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"624-1114\">\r\n\t\t\t\t\t<Initialization range=\"0-624\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"3\" bandwidth=\"2732364\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/AngryBirds/AngryBirds_MapPreviewNoSoundCrop_ULTRA.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"624-1114\">\r\n\t\t\t\t\t<Initialization range=\"0-624\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t</AdaptationSet>\r\n\t</Period>\r\n</MPD>\r\n",
71
+ "mode": 6,
72
+ "originalJDVersion": 2016,
73
+ "packages": {
74
+ "mapContent": "AngryBirds_mapContent"
75
+ },
76
+ "parentMapName": "AngryBirds",
77
+ "skuIds": [
78
+ "jd2017-pc-ww"
79
+ ],
80
+ "songColors": {
81
+ "songColor_1A": "00A8DDFF",
82
+ "songColor_1B": "004E5AFF",
83
+ "songColor_2A": "89D105FF",
84
+ "songColor_2B": "2FA20CFF"
85
+ },
86
+ "status": 5,
87
+ "sweatDifficulty": 1,
88
+ "tags": [
89
+ "Main",
90
+ "freeSong"
91
+ ],
92
+ "title": "Balkan Blast Remix",
93
+ "urls": {
94
+ "jmcs://jd-contents/AngryBirds/AngryBirds_AudioPreview.ogg": "https://jd-s3.akamaized.net/public/map/AngryBirds/AngryBirds_AudioPreview.ogg/cd416dc05b98770fea6dd458a929e2f3.ogg",
95
+ "jmcs://jd-contents/AngryBirds/AngryBirds_MapPreviewNoSoundCrop_HIGH.vp8.webm": "https://jd-s3.akamaized.net/public/map/AngryBirds/AngryBirds_MapPreviewNoSoundCrop_HIGH.vp8.webm/1c3faeea4699a04d322c9c999ddf80d6.webm",
96
+ "jmcs://jd-contents/AngryBirds/AngryBirds_MapPreviewNoSoundCrop_HIGH.vp9.webm": "https://jd-s3.akamaized.net/public/map/AngryBirds/AngryBirds_MapPreviewNoSoundCrop_HIGH.vp9.webm/6e71b4b1a60bbba23a74d9400b3607a7.webm",
97
+ "jmcs://jd-contents/AngryBirds/AngryBirds_MapPreviewNoSoundCrop_LOW.vp8.webm": "https://jd-s3.akamaized.net/public/map/AngryBirds/AngryBirds_MapPreviewNoSoundCrop_LOW.vp8.webm/b2bc3da0222c1f9f3a17651aef62696e.webm",
98
+ "jmcs://jd-contents/AngryBirds/AngryBirds_MapPreviewNoSoundCrop_LOW.vp9.webm": "https://jd-s3.akamaized.net/public/map/AngryBirds/AngryBirds_MapPreviewNoSoundCrop_LOW.vp9.webm/f943f35b797e58a15cb5132bf949b8bd.webm",
99
+ "jmcs://jd-contents/AngryBirds/AngryBirds_MapPreviewNoSoundCrop_MID.vp8.webm": "https://jd-s3.akamaized.net/public/map/AngryBirds/AngryBirds_MapPreviewNoSoundCrop_MID.vp8.webm/92209302e0d6f572cec86cd8121df86a.webm",
100
+ "jmcs://jd-contents/AngryBirds/AngryBirds_MapPreviewNoSoundCrop_MID.vp9.webm": "https://jd-s3.akamaized.net/public/map/AngryBirds/AngryBirds_MapPreviewNoSoundCrop_MID.vp9.webm/26a46cd3bba349c575b3a778bee28adb.webm",
101
+ "jmcs://jd-contents/AngryBirds/AngryBirds_MapPreviewNoSoundCrop_ULTRA.vp8.webm": "https://jd-s3.akamaized.net/public/map/AngryBirds/AngryBirds_MapPreviewNoSoundCrop_ULTRA.vp8.webm/ceeaa3101112abbe340cb68c4612ab0e.webm",
102
+ "jmcs://jd-contents/AngryBirds/AngryBirds_MapPreviewNoSoundCrop_ULTRA.vp9.webm": "https://jd-s3.akamaized.net/public/map/AngryBirds/AngryBirds_MapPreviewNoSoundCrop_ULTRA.vp9.webm/38e3d0adeea546c7d0612984f9d83c4d.webm"
103
+ },
104
+ "serverChangelist": 455481,
105
+ "skupackages": {
106
+ "orbis": {
107
+ "md5": "7176620c16ce63f93beda4f049bf389a",
108
+ "storageType": 0,
109
+ "url": "https://jd-s3.akamaized.net/public/map/AngryBirds/ps4/AngryBirds_MAIN_SCENE_ORBIS.zip/7176620c16ce63f93beda4f049bf389a.zip",
110
+ "version": 7
111
+ },
112
+ "pc": {
113
+ "md5": "3d5e7b46588e6cdacd36fa6a36e0e2c6",
114
+ "storageType": 0,
115
+ "url": "https://jd-s3.akamaized.net/public/map/AngryBirds/pc/AngryBirds_MAIN_SCENE_PC.zip/3d5e7b46588e6cdacd36fa6a36e0e2c6.zip",
116
+ "version": 4
117
+ },
118
+ "wiiu": {
119
+ "md5": "cfb556350313dfd21a476d99dd9cccd5",
120
+ "storageType": 0,
121
+ "url": "https://jd-s3.akamaized.net/public/map/AngryBirds/wiiu/AngryBirds_MAIN_SCENE_WIIU.zip/cfb556350313dfd21a476d99dd9cccd5.zip",
122
+ "version": 7
123
+ },
124
+ "nx": {
125
+ "md5": "de712decd4e82a572bbe4b852e044ea2",
126
+ "storageType": 0,
127
+ "url": "https://jd-s3.akamaized.net/public/map/AngryBirds/nx/AngryBirds_MAIN_SCENE_NX.zip/de712decd4e82a572bbe4b852e044ea2.zip",
128
+ "version": 3
129
+ }
130
+ },
131
+ "mapType": "jdu"
132
+ }
justdanceonline-main/maps/Animals.json ADDED
@@ -0,0 +1,120 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "artist": "Martin Garrix",
3
+ "assets": {
4
+ "default": {
5
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/Animals/Animals_banner_bkg.jpg/b457443dd6166a84201ebf4d21fea7d5.jpg",
6
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/Animals/Animals_Coach_1.png/759859504cdd893fdfa06efa2b46afd0.png",
7
+ "coach2ImageUrl": "https://jd-s3.akamaized.net/public/map/Animals/Animals_Coach_2.png/03305724fe1737d3f39f9ae000429436.png",
8
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/Animals/Animals_Cover_Generic.jpg/14a505d858d7934ba6bea5690495c3ab.jpg",
9
+ "cover_1024ImageUrl": "https://jd-s3.akamaized.net/public/map/Animals/Animals_Cover_1024.png/cc34ed874b0af6c743108de75c85ded2.png",
10
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/Animals/Animals_Cover_Online.jpg/4a9ed66f966f95508a01bba4a14cbf35.jpg",
11
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/Animals/Animals_Cover_AlbumBkg.jpg/c4fff42dbece4d5ea7828ddf7f02b7d7.jpg",
12
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/Animals/Animals_Cover_AlbumCoach.png/45a240c6e73bb3d93b48e051a50f4ebc.png",
13
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/Animals/Animals_Coach_1_Phone.png/9576ae2db41a86e3c34e94111be8bec8.png",
14
+ "phoneCoach2ImageUrl": "https://jd-s3.akamaized.net/public/map/Animals/Animals_Coach_2_Phone.png/942b4c14a0e68e4adc71a7ad319c218b.png",
15
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/Animals/Animals_Cover_Phone.jpg/4a9ed66f966f95508a01bba4a14cbf35.jpg",
16
+ "videoPreviewVideoURL": "https://jd-s3.akamaized.net/public/map/Animals/Animals_VideoPreview.webm/d6a5a404c8a2829dd1acf46a4307f775.webm"
17
+ },
18
+ "nx": {
19
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/Animals/Animals_banner_bkg.jpg/b457443dd6166a84201ebf4d21fea7d5.jpg",
20
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/Animals/Animals_Coach_1.png/759859504cdd893fdfa06efa2b46afd0.png",
21
+ "coach2ImageUrl": "https://jd-s3.akamaized.net/public/map/Animals/Animals_Coach_2.png/03305724fe1737d3f39f9ae000429436.png",
22
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/Animals/Animals_Cover_Generic.jpg/14a505d858d7934ba6bea5690495c3ab.jpg",
23
+ "cover_1024ImageUrl": "https://jd-s3.akamaized.net/public/map/Animals/Animals_Cover_1024.png/cc34ed874b0af6c743108de75c85ded2.png",
24
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/Animals/Animals_Cover_Online.jpg/4a9ed66f966f95508a01bba4a14cbf35.jpg",
25
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/Animals/Animals_Cover_AlbumBkg.jpg/c4fff42dbece4d5ea7828ddf7f02b7d7.jpg",
26
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/Animals/Animals_Cover_AlbumCoach.png/45a240c6e73bb3d93b48e051a50f4ebc.png",
27
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/Animals/Animals_Coach_1_Phone.png/9576ae2db41a86e3c34e94111be8bec8.png",
28
+ "phoneCoach2ImageUrl": "https://jd-s3.akamaized.net/public/map/Animals/Animals_Coach_2_Phone.png/942b4c14a0e68e4adc71a7ad319c218b.png",
29
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/Animals/Animals_Cover_Phone.jpg/4a9ed66f966f95508a01bba4a14cbf35.jpg",
30
+ "videoPreviewVideoURL": "https://jd-s3.akamaized.net/public/map/Animals/Animals_VideoPreview.webm/d6a5a404c8a2829dd1acf46a4307f775.webm"
31
+ },
32
+ "wiiu": {
33
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/Animals/wiiu/Animals_banner_bkg.tga.ckd/1ef93d00f896811110d90221bb3a12a2.ckd",
34
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/Animals/wiiu/Animals_Coach_1.tga.ckd/d417cf9524930e0202f2ed1391569edc.ckd",
35
+ "coach2ImageUrl": "https://jd-s3.akamaized.net/public/map/Animals/wiiu/Animals_Coach_2.tga.ckd/65184d7b7828a3463e51c979acd94c76.ckd",
36
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/Animals/wiiu/Animals_Cover_Generic.tga.ckd/7a40cc96abc0b29498f90b609e5fbba0.ckd",
37
+ "cover_1024ImageUrl": "https://jd-s3.akamaized.net/public/map/Animals/Animals_Cover_1024.png/cc34ed874b0af6c743108de75c85ded2.png",
38
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/Animals/wiiu/Animals_Cover_Online.tga.ckd/12ad291305ea2f36159cc0afe1e3b943.ckd",
39
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/Animals/wiiu/Animals_Cover_AlbumBkg.tga.ckd/b790dc2eb60c2563dd5755279166f96f.ckd",
40
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/Animals/wiiu/Animals_Cover_AlbumCoach.tga.ckd/e92f12aad05cb39f8f9df67dae5bf818.ckd",
41
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/Animals/Animals_Coach_1_Phone.png/9576ae2db41a86e3c34e94111be8bec8.png",
42
+ "phoneCoach2ImageUrl": "https://jd-s3.akamaized.net/public/map/Animals/Animals_Coach_2_Phone.png/942b4c14a0e68e4adc71a7ad319c218b.png",
43
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/Animals/Animals_Cover_Phone.jpg/4a9ed66f966f95508a01bba4a14cbf35.jpg",
44
+ "videoPreviewVideoURL": "https://jd-s3.akamaized.net/public/map/Animals/Animals_VideoPreview.webm/d6a5a404c8a2829dd1acf46a4307f775.webm"
45
+ }
46
+ },
47
+ "audioPreviewData": "{\"__class\":\"MusicTrackData\",\"structure\":{\"__class\":\"MusicTrackStructure\",\"markers\":[0,22512,45023,67488,90000,112512,135023,157488,180000,202512,225023,247488,270000,292512,315023,337488,360000,382512,405023,427488,450000,472512,495024,517488,540000,562512,585024,607488,630000,652512,675023,697487,720000,742512,765023,787488,810000,832512,855024,877488,900000,922511,945024,967488,990000,1012511,1035023,1057488,1080000,1102512,1125024,1147488,1170000,1192512,1215024,1237488,1260000,1282511,1305023,1327487,1350000,1372511,1395024,1417487],\"signatures\":[{\"__class\":\"MusicSignature\",\"marker\":0,\"beats\":4}],\"startBeat\":-3,\"endBeat\":376,\"fadeStartBeat\":0,\"useFadeStartBeat\":false,\"fadeEndBeat\":0,\"useFadeEndBeat\":false,\"videoStartTime\":0,\"previewEntry\":0,\"previewLoopStart\":0,\"previewLoopEnd\":63,\"volume\":0,\"fadeInDuration\":0,\"fadeInType\":0,\"fadeOutDuration\":0,\"fadeOutType\":0},\"path\":\"\",\"url\":\"jmcs://jd-contents/animals/animals_AudioPreview.ogg\"}",
48
+ "coachCount": 2,
49
+ "credits": "Just Dance Best is an online mod made by Just Dance Alliance. We are not affiliated with Ubisoft nor own any rights over their copyrighted content and trademark. All rights of the producer and other rightholders to the recorded work reserved. Unless otherwise authorized, the duplication, rental, loan, exchange or use of this video game for public performance, broadcasting and online distribution to the public are prohibited.",
50
+ "difficulty": 3,
51
+ "doubleScoringType": -1,
52
+ "jdmAttributes": [],
53
+ "lyricsColor": "0CFBBAFF",
54
+ "lyricsType": 0,
55
+ "mainCoach": -1,
56
+ "mapLength": 177.656,
57
+ "mapName": "Animals",
58
+ "mapPreviewMpd": "<?xml version=\"1.0\"?>\r\n<MPD xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"urn:mpeg:DASH:schema:MPD:2011\" xsi:schemaLocation=\"urn:mpeg:DASH:schema:MPD:2011\" type=\"static\" mediaPresentationDuration=\"PT30S\" minBufferTime=\"PT1S\" profiles=\"urn:webm:dash:profile:webm-on-demand:2012\">\r\n\t<Period id=\"0\" start=\"PT0S\" duration=\"PT30S\">\r\n\t\t<AdaptationSet id=\"0\" mimeType=\"video/webm\" codecs=\"vp8\" lang=\"eng\" maxWidth=\"720\" maxHeight=\"370\" subsegmentAlignment=\"true\" subsegmentStartsWithSAP=\"1\" bitstreamSwitching=\"true\">\r\n\t\t\t<Representation id=\"0\" bandwidth=\"496276\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/Animals/Animals_MapPreviewNoSoundCrop_LOW.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"617-1106\">\r\n\t\t\t\t\t<Initialization range=\"0-617\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"1\" bandwidth=\"1474898\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/Animals/Animals_MapPreviewNoSoundCrop_MID.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"618-1108\">\r\n\t\t\t\t\t<Initialization range=\"0-618\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"2\" bandwidth=\"2437033\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/Animals/Animals_MapPreviewNoSoundCrop_HIGH.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"618-1108\">\r\n\t\t\t\t\t<Initialization range=\"0-618\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"3\" bandwidth=\"2611318\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/Animals/Animals_MapPreviewNoSoundCrop_ULTRA.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"618-1108\">\r\n\t\t\t\t\t<Initialization range=\"0-618\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t</AdaptationSet>\r\n\t</Period>\r\n</MPD>\r\n",
59
+ "mode": 6,
60
+ "originalJDVersion": 2016,
61
+ "packages": {
62
+ "mapContent": "Animals_mapContent"
63
+ },
64
+ "parentMapName": "Animals",
65
+ "skuIds": [
66
+ "jd2017-pc-ww"
67
+ ],
68
+ "songColors": {
69
+ "songColor_1A": "A42AFFFF",
70
+ "songColor_1B": "0E0113FF",
71
+ "songColor_2A": "016ABDFF",
72
+ "songColor_2B": "040C1BFF"
73
+ },
74
+ "status": 5,
75
+ "sweatDifficulty": 1,
76
+ "tags": [
77
+ "Main",
78
+ "freeSong"
79
+ ],
80
+ "title": "Animals",
81
+ "urls": {
82
+ "jmcs://jd-contents/Animals/Animals_AudioPreview.ogg": "https://jd-s3.akamaized.net/public/map/Animals/Animals_AudioPreview.ogg/653e2a8541a736cccc6f134cdac98d3b.ogg",
83
+ "jmcs://jd-contents/Animals/Animals_MapPreviewNoSoundCrop_HIGH.vp8.webm": "https://jd-s3.akamaized.net/public/map/Animals/Animals_MapPreviewNoSoundCrop_HIGH.vp8.webm/341e61c734f587deb39f3dacceaba6e5.webm",
84
+ "jmcs://jd-contents/Animals/Animals_MapPreviewNoSoundCrop_HIGH.vp9.webm": "https://jd-s3.akamaized.net/public/map/Animals/Animals_MapPreviewNoSoundCrop_HIGH.vp9.webm/99a2c64da5dfb05e9308e904ac751ffa.webm",
85
+ "jmcs://jd-contents/Animals/Animals_MapPreviewNoSoundCrop_LOW.vp8.webm": "https://jd-s3.akamaized.net/public/map/Animals/Animals_MapPreviewNoSoundCrop_LOW.vp8.webm/5c512a405ff4bd5b8ff1a93859fbea10.webm",
86
+ "jmcs://jd-contents/Animals/Animals_MapPreviewNoSoundCrop_LOW.vp9.webm": "https://jd-s3.akamaized.net/public/map/Animals/Animals_MapPreviewNoSoundCrop_LOW.vp9.webm/e4bde5d49d37c9b201eb65a6b3e94566.webm",
87
+ "jmcs://jd-contents/Animals/Animals_MapPreviewNoSoundCrop_MID.vp8.webm": "https://jd-s3.akamaized.net/public/map/Animals/Animals_MapPreviewNoSoundCrop_MID.vp8.webm/22ef9dc6f5ced4a96afe393b46d90c11.webm",
88
+ "jmcs://jd-contents/Animals/Animals_MapPreviewNoSoundCrop_MID.vp9.webm": "https://jd-s3.akamaized.net/public/map/Animals/Animals_MapPreviewNoSoundCrop_MID.vp9.webm/13266c28a30dac9ad91fc6d3a408264c.webm",
89
+ "jmcs://jd-contents/Animals/Animals_MapPreviewNoSoundCrop_ULTRA.vp8.webm": "https://jd-s3.akamaized.net/public/map/Animals/Animals_MapPreviewNoSoundCrop_ULTRA.vp8.webm/55e664d1c6766520e8bcf0c360e883da.webm",
90
+ "jmcs://jd-contents/Animals/Animals_MapPreviewNoSoundCrop_ULTRA.vp9.webm": "https://jd-s3.akamaized.net/public/map/Animals/Animals_MapPreviewNoSoundCrop_ULTRA.vp9.webm/f47f38bde0f967cc5b9387068fc71af7.webm"
91
+ },
92
+ "serverChangelist": 455481,
93
+ "skupackages": {
94
+ "orbis": {
95
+ "md5": "ad6ab26b4ca10cffd5c40058edac08a3",
96
+ "storageType": 0,
97
+ "url": "https://jd-s3.akamaized.net/public/map/Animals/ps4/Animals_MAIN_SCENE_ORBIS.zip/ad6ab26b4ca10cffd5c40058edac08a3.zip",
98
+ "version": 11
99
+ },
100
+ "pc": {
101
+ "md5": "ac3dbefbdbcedf1edc6d6bd9da1dbda5",
102
+ "storageType": 0,
103
+ "url": "https://jd-s3.akamaized.net/public/map/Animals/pc/Animals_MAIN_SCENE_PC.zip/ac3dbefbdbcedf1edc6d6bd9da1dbda5.zip",
104
+ "version": 6
105
+ },
106
+ "wiiu": {
107
+ "md5": "2aafd5a23009c7e514f8193a2f3cfc62",
108
+ "storageType": 0,
109
+ "url": "https://jd-s3.akamaized.net/public/map/Animals/wiiu/Animals_MAIN_SCENE_WIIU.zip/2aafd5a23009c7e514f8193a2f3cfc62.zip",
110
+ "version": 11
111
+ },
112
+ "nx": {
113
+ "md5": "b1d25c5611f94c87adf430cd06525ac0",
114
+ "storageType": 0,
115
+ "url": "https://jd-s3.akamaized.net/public/map/Animals/nx/Animals_MAIN_SCENE_NX.zip/b1d25c5611f94c87adf430cd06525ac0.zip",
116
+ "version": 7
117
+ }
118
+ },
119
+ "mapType": "jdu"
120
+ }
justdanceonline-main/maps/AnotherOne.json ADDED
@@ -0,0 +1,142 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "artist": "Queen",
3
+ "assets": {
4
+ "default": {
5
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOne/ps4/AnotherOne_banner_bkg.tga.ckd/5d82896aeb3c9084798413d7321eb6ba.ckd",
6
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOne/ps4/AnotherOne_Coach_1.tga.ckd/a82d8e78ca09754e7c82734990bb5c45.ckd",
7
+ "coach2ImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOne/ps4/AnotherOne_Coach_2.tga.ckd/521030c4c95cbed1f53bdbbf488b7388.ckd",
8
+ "coach3ImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOne/ps4/AnotherOne_Coach_3.tga.ckd/9b822ade94f74523cfd33010adf66a24.ckd",
9
+ "coach4ImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOne/ps4/AnotherOne_Coach_4.tga.ckd/34eb0bdbe141385eb5bcdaefd84f2776.ckd",
10
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOne/ps4/AnotherOne_Cover_Generic.tga.ckd/244ce3354a9323c5442065c4024b6ac4.ckd",
11
+ "cover_1024ImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOne/AnotherOne_Cover_1024.png/e6181d09aef21cf2d59f207145858587.png",
12
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOne/ps4/AnotherOne_Cover_Online.tga.ckd/d6861ae00e01eacf4baa285bc721eae2.ckd",
13
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOne/ps4/AnotherOne_Cover_AlbumBkg.tga.ckd/14776b8d094961e6dabbce8ebd191f56.ckd",
14
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOne/ps4/AnotherOne_Cover_AlbumCoach.tga.ckd/ed64e5b376f3c2ddbd91fed16dc20e60.ckd",
15
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOne/AnotherOne_Coach_1_Phone.png/d74fb7b2258195d3a8d0c3313830e838.png",
16
+ "phoneCoach2ImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOne/AnotherOne_Coach_2_Phone.png/3f49feda394e46441a9513e9244b2e86.png",
17
+ "phoneCoach3ImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOne/AnotherOne_Coach_3_Phone.png/c271f48785eb89870b8d3b10f796f17e.png",
18
+ "phoneCoach4ImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOne/AnotherOne_Coach_4_Phone.png/17332f9e24cc9dd7dcde9a1278022ffc.png",
19
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOne/AnotherOne_Cover_Phone.jpg/f9608d581900d8c8fd62ec64400b8f8c.jpg",
20
+ "videoPreviewVideoURL": "https://jd-s3.akamaized.net/public/map/AnotherOne/AnotherOne_VideoPreview.webm/3dcef8edbcabb590740df7547114b343.webm",
21
+ "map_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOne/ps4/AnotherOne_map_bkg.tga.ckd/85a93db7107642887a2a4d414553b559.ckd"
22
+ },
23
+ "nx": {
24
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOne/nx/AnotherOne_banner_bkg.tga.ckd/60b0166e67f739ff9edf8748255197b8.ckd",
25
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOne/nx/AnotherOne_Coach_1.tga.ckd/b29605e2ad58171e0792b7e8dc017bae.ckd",
26
+ "coach2ImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOne/nx/AnotherOne_Coach_2.tga.ckd/deb528c299675207c2098e1b6c8274ed.ckd",
27
+ "coach3ImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOne/nx/AnotherOne_Coach_3.tga.ckd/b086268d1a0f85323f09007905a6fbf8.ckd",
28
+ "coach4ImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOne/nx/AnotherOne_Coach_4.tga.ckd/5c31c8a310c72014947e558a385b5dbf.ckd",
29
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOne/nx/AnotherOne_Cover_Generic.tga.ckd/a9fb7dcd96864b6d70fbc527270b955a.ckd",
30
+ "cover_1024ImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOne/AnotherOne_Cover_1024.png/e6181d09aef21cf2d59f207145858587.png",
31
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOne/nx/AnotherOne_Cover_Online.tga.ckd/12e4e9be8f557c07c72cc1777314e8fe.ckd",
32
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOne/nx/AnotherOne_Cover_AlbumBkg.tga.ckd/0735154a4fa4b89ec5d26eea69554050.ckd",
33
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOne/nx/AnotherOne_Cover_AlbumCoach.tga.ckd/687830a4819ada88731596ca9dc83f67.ckd",
34
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOne/AnotherOne_Coach_1_Phone.png/d74fb7b2258195d3a8d0c3313830e838.png",
35
+ "phoneCoach2ImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOne/AnotherOne_Coach_2_Phone.png/3f49feda394e46441a9513e9244b2e86.png",
36
+ "phoneCoach3ImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOne/AnotherOne_Coach_3_Phone.png/c271f48785eb89870b8d3b10f796f17e.png",
37
+ "phoneCoach4ImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOne/AnotherOne_Coach_4_Phone.png/17332f9e24cc9dd7dcde9a1278022ffc.png",
38
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOne/AnotherOne_Cover_Phone.jpg/f9608d581900d8c8fd62ec64400b8f8c.jpg",
39
+ "videoPreviewVideoURL": "https://jd-s3.akamaized.net/public/map/AnotherOne/AnotherOne_VideoPreview.webm/3dcef8edbcabb590740df7547114b343.webm",
40
+ "map_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOne/nx/AnotherOne_map_bkg.tga.ckd/4175ec745f3d0502c80c9c9c9a92bc26.ckd"
41
+ },
42
+ "wiiu": {
43
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOne/wiiu/AnotherOne_banner_bkg.tga.ckd/7d138e916aecd6d7ee4fb63fc990b339.ckd",
44
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOne/wiiu/AnotherOne_Coach_1.tga.ckd/e7b7f4f026511fb75e1c82d77776ceaa.ckd",
45
+ "coach2ImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOne/wiiu/AnotherOne_Coach_2.tga.ckd/7883f8e4dcb50788f8541790e63178b9.ckd",
46
+ "coach3ImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOne/wiiu/AnotherOne_Coach_3.tga.ckd/ab4660d5d78bbadf1a2ecce15b54c63c.ckd",
47
+ "coach4ImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOne/wiiu/AnotherOne_Coach_4.tga.ckd/4a5a89b1b074c0c05df71fd5a3d306e1.ckd",
48
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOne/wiiu/AnotherOne_Cover_Generic.tga.ckd/1294ef05e9949b1c98b25f78f05ea437.ckd",
49
+ "cover_1024ImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOne/AnotherOne_Cover_1024.png/e6181d09aef21cf2d59f207145858587.png",
50
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOne/wiiu/AnotherOne_Cover_Online.tga.ckd/2301a7457fa1ad3176b45272456f883f.ckd",
51
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOne/wiiu/AnotherOne_Cover_AlbumBkg.tga.ckd/94bbebba6af1c3ee21edc2ecc7159e2d.ckd",
52
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOne/wiiu/AnotherOne_Cover_AlbumCoach.tga.ckd/adeed79827d1f54f323db4907fd6700e.ckd",
53
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOne/AnotherOne_Coach_1_Phone.png/d74fb7b2258195d3a8d0c3313830e838.png",
54
+ "phoneCoach2ImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOne/AnotherOne_Coach_2_Phone.png/3f49feda394e46441a9513e9244b2e86.png",
55
+ "phoneCoach3ImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOne/AnotherOne_Coach_3_Phone.png/c271f48785eb89870b8d3b10f796f17e.png",
56
+ "phoneCoach4ImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOne/AnotherOne_Coach_4_Phone.png/17332f9e24cc9dd7dcde9a1278022ffc.png",
57
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOne/AnotherOne_Cover_Phone.jpg/f9608d581900d8c8fd62ec64400b8f8c.jpg",
58
+ "videoPreviewVideoURL": "https://jd-s3.akamaized.net/public/map/AnotherOne/AnotherOne_VideoPreview.webm/3dcef8edbcabb590740df7547114b343.webm"
59
+ }
60
+ },
61
+ "audioPreviewData": "{\"__class\":\"MusicTrackData\",\"structure\":{\"__class\":\"MusicTrackStructure\",\"markers\":[0,26160,52368,78528,104688,130896,157056,183216,209376,235584,261793,288001,314161,340369,366577,392785,418993,445201,471409,497617,523825,550033,576241,602449,628657,654865,681265,707665,734017,760417,786817,813169,839569,865969,892177,918433,944689,970945,997153,1023409,1049665,1075921,1102177,1128385,1154641,1180897,1207153,1233361,1259617,1285873,1312129,1338385,1364593,1390849,1417105],\"signatures\":[{\"__class\":\"MusicSignature\",\"marker\":0,\"beats\":4}],\"startBeat\":-4,\"endBeat\":392,\"fadeStartBeat\":0,\"useFadeStartBeat\":false,\"fadeEndBeat\":0,\"useFadeEndBeat\":false,\"videoStartTime\":0,\"previewEntry\":0,\"previewLoopStart\":0,\"previewLoopEnd\":54,\"volume\":0,\"fadeInDuration\":0,\"fadeInType\":0,\"fadeOutDuration\":0,\"fadeOutType\":0},\"path\":\"\",\"url\":\"jmcs://jd-contents/anotherone/anotherone_AudioPreview.ogg\"}",
62
+ "coachCount": 4,
63
+ "credits": "Just Dance Best is an online mod made by Just Dance Alliance. We are not affiliated with Ubisoft nor own any rights over their copyrighted content and trademark. Written by John Deacon. Published by Queen Music Ltd. (PRS). All rights reserved. Used with permission. Courtesy of Hollywood Records, Inc. and Mercury Records UK, under license from Universal Music Canada Inc. All rights of the producer and other rightholders to the recorded work reserved. Unless otherwise authorized, the duplication, rental, loan, exchange or use of this video game for public performance, broadcasting and online distribution to the public are prohibited.",
64
+ "difficulty": 1,
65
+ "doubleScoringType": -1,
66
+ "jdmAttributes": [],
67
+ "lyricsColor": "FF8B16FF",
68
+ "lyricsType": 0,
69
+ "mainCoach": -1,
70
+ "mapLength": 216.398,
71
+ "mapName": "AnotherOne",
72
+ "mapPreviewMpd": "<?xml version=\"1.0\"?>\r\n<MPD xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"urn:mpeg:DASH:schema:MPD:2011\" xsi:schemaLocation=\"urn:mpeg:DASH:schema:MPD:2011\" type=\"static\" mediaPresentationDuration=\"PT30S\" minBufferTime=\"PT1S\" profiles=\"urn:webm:dash:profile:webm-on-demand:2012\">\r\n\t<Period id=\"0\" start=\"PT0S\" duration=\"PT30S\">\r\n\t\t<AdaptationSet id=\"0\" mimeType=\"video/webm\" codecs=\"vp8\" lang=\"eng\" maxWidth=\"720\" maxHeight=\"370\" subsegmentAlignment=\"true\" subsegmentStartsWithSAP=\"1\" bitstreamSwitching=\"true\">\r\n\t\t\t<Representation id=\"0\" bandwidth=\"496836\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/AnotherOne/AnotherOne_MapPreviewNoSoundCrop_LOW.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"626-1115\">\r\n\t\t\t\t\t<Initialization range=\"0-626\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"1\" bandwidth=\"1481942\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/AnotherOne/AnotherOne_MapPreviewNoSoundCrop_MID.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"627-1117\">\r\n\t\t\t\t\t<Initialization range=\"0-627\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"2\" bandwidth=\"2909866\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/AnotherOne/AnotherOne_MapPreviewNoSoundCrop_HIGH.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"627-1117\">\r\n\t\t\t\t\t<Initialization range=\"0-627\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"3\" bandwidth=\"3046037\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/AnotherOne/AnotherOne_MapPreviewNoSoundCrop_ULTRA.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"627-1117\">\r\n\t\t\t\t\t<Initialization range=\"0-627\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t</AdaptationSet>\r\n\t</Period>\r\n</MPD>\r\n",
73
+ "mode": 6,
74
+ "originalJDVersion": 2018,
75
+ "packages": {
76
+ "mapContent": "AnotherOne_mapContent"
77
+ },
78
+ "parentMapName": "AnotherOne",
79
+ "skuIds": [
80
+ "jd2018-nx-all",
81
+ "jd2018-ps4-scea",
82
+ "jd2018-ps4-scee",
83
+ "jd2018-wiiu-noa",
84
+ "jd2018-wiiu-noe",
85
+ "jd2018-xone-emea",
86
+ "jd2018-xone-ncsa"
87
+ ],
88
+ "songColors": {
89
+ "songColor_1A": "3E0098FF",
90
+ "songColor_1B": "000C2FFF",
91
+ "songColor_2A": "FF7100FF",
92
+ "songColor_2B": "501800FF"
93
+ },
94
+ "status": 3,
95
+ "sweatDifficulty": 2,
96
+ "tags": [
97
+ "Main",
98
+ "SWEAT",
99
+ "subscribedSong",
100
+ "CnUnlimited2018"
101
+ ],
102
+ "title": "Another One Bites The Dust",
103
+ "urls": {
104
+ "jmcs://jd-contents/AnotherOne/AnotherOne_AudioPreview.ogg": "https://jd-s3.akamaized.net/public/map/AnotherOne/AnotherOne_AudioPreview.ogg/7e500fa0898f63589dbb812120207bf1.ogg",
105
+ "jmcs://jd-contents/AnotherOne/AnotherOne_MapPreviewNoSoundCrop_HIGH.vp8.webm": "https://jd-s3.akamaized.net/public/map/AnotherOne/AnotherOne_MapPreviewNoSoundCrop_HIGH.vp8.webm/0374fb8a6c1ede6e9847ceef16f08297.webm",
106
+ "jmcs://jd-contents/AnotherOne/AnotherOne_MapPreviewNoSoundCrop_HIGH.vp9.webm": "https://jd-s3.akamaized.net/public/map/AnotherOne/AnotherOne_MapPreviewNoSoundCrop_HIGH.vp9.webm/4445c2983019fcaec16a2e4123edf61c.webm",
107
+ "jmcs://jd-contents/AnotherOne/AnotherOne_MapPreviewNoSoundCrop_LOW.vp8.webm": "https://jd-s3.akamaized.net/public/map/AnotherOne/AnotherOne_MapPreviewNoSoundCrop_LOW.vp8.webm/dd3f4c4b46178c78a8dc97116523d32c.webm",
108
+ "jmcs://jd-contents/AnotherOne/AnotherOne_MapPreviewNoSoundCrop_LOW.vp9.webm": "https://jd-s3.akamaized.net/public/map/AnotherOne/AnotherOne_MapPreviewNoSoundCrop_LOW.vp9.webm/709db7a0216bcb7f0787d89c29a0017f.webm",
109
+ "jmcs://jd-contents/AnotherOne/AnotherOne_MapPreviewNoSoundCrop_MID.vp8.webm": "https://jd-s3.akamaized.net/public/map/AnotherOne/AnotherOne_MapPreviewNoSoundCrop_MID.vp8.webm/8ab1fffc2b75501fb80a4d791e3f3724.webm",
110
+ "jmcs://jd-contents/AnotherOne/AnotherOne_MapPreviewNoSoundCrop_MID.vp9.webm": "https://jd-s3.akamaized.net/public/map/AnotherOne/AnotherOne_MapPreviewNoSoundCrop_MID.vp9.webm/fac3caf0325ecc673f5e5eba7d126b94.webm",
111
+ "jmcs://jd-contents/AnotherOne/AnotherOne_MapPreviewNoSoundCrop_ULTRA.vp8.webm": "https://jd-s3.akamaized.net/public/map/AnotherOne/AnotherOne_MapPreviewNoSoundCrop_ULTRA.vp8.webm/6831481a2284e0b6ce1b8f6bdf1fcfc6.webm",
112
+ "jmcs://jd-contents/AnotherOne/AnotherOne_MapPreviewNoSoundCrop_ULTRA.vp9.webm": "https://jd-s3.akamaized.net/public/map/AnotherOne/AnotherOne_MapPreviewNoSoundCrop_ULTRA.vp9.webm/000d968258509d5f2faa408bbecd968a.webm"
113
+ },
114
+ "serverChangelist": 455481,
115
+ "skupackages": {
116
+ "orbis": {
117
+ "md5": "adf5ce325e6cfc9153bf98efe307b04a",
118
+ "storageType": 0,
119
+ "url": "https://jd-s3.akamaized.net/public/map/AnotherOne/ps4/AnotherOne_MAIN_SCENE_ORBIS.zip/adf5ce325e6cfc9153bf98efe307b04a.zip",
120
+ "version": 3
121
+ },
122
+ "nx": {
123
+ "md5": "516a839c80e0e4c6947b1a5d010a19f7",
124
+ "storageType": 0,
125
+ "url": "https://jd-s3.akamaized.net/public/map/AnotherOne/nx/AnotherOne_MAIN_SCENE_NX.zip/516a839c80e0e4c6947b1a5d010a19f7.zip",
126
+ "version": 3
127
+ },
128
+ "pc": {
129
+ "md5": "c9ead32979d459e7574831379650687a",
130
+ "storageType": 0,
131
+ "url": "https://jdbest-cdn.s3.amazonaws.com/public/map/AnotherOne/pc/c9ead32979d459e7574831379650687a.zip",
132
+ "version": 1
133
+ },
134
+ "wiiu": {
135
+ "md5": "d792f1524349337b43e413f974c888c6",
136
+ "storageType": 0,
137
+ "url": "https://jd-s3.akamaized.net/public/map/AnotherOne/wiiu/AnotherOne_MAIN_SCENE_WIIU.zip/d792f1524349337b43e413f974c888c6.zip",
138
+ "version": 3
139
+ }
140
+ },
141
+ "mapType": "jdu"
142
+ }
justdanceonline-main/maps/AnotherOneALT.json ADDED
@@ -0,0 +1,125 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "artist": "Queen",
3
+ "assets": {
4
+ "default": {
5
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOneALT/ps4/AnotherOneALT_banner_bkg.tga.ckd/bd0fc094b1a347c2060596a1a8277627.ckd",
6
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOneALT/ps4/AnotherOneALT_Coach_1.tga.ckd/c27af786ad0e4f733335bcd149bca668.ckd",
7
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOneALT/ps4/AnotherOneALT_Cover_Generic.tga.ckd/72b71499fbba82683068178477110429.ckd",
8
+ "cover_1024ImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOneALT/AnotherOneALT_Cover_1024.png/7dff228bc633223c13f02092e4be0921.png",
9
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOneALT/ps4/AnotherOneALT_Cover_Online.tga.ckd/5bd0341d5d4fbeb67db0f5030607926a.ckd",
10
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOneALT/ps4/AnotherOneALT_Cover_AlbumBkg.tga.ckd/5858ecfc24b8c2ff4dcc8b907e5476c7.ckd",
11
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOneALT/ps4/AnotherOneALT_Cover_AlbumCoach.tga.ckd/a126f5fdaa469df97dd09316d9acf777.ckd",
12
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOneALT/AnotherOneALT_Coach_1_Phone.png/45f6e0e7938ffebe57190295e3dee02a.png",
13
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOneALT/AnotherOneALT_Cover_Phone.jpg/6559d5982543c8412fa181a5b3079a73.jpg",
14
+ "videoPreviewVideoURL": "https://jd-s3.akamaized.net/public/map/AnotherOneALT/AnotherOneALT_VideoPreview.webm/bc825949b340906ff9360094654a9579.webm",
15
+ "map_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOneALT/ps4/AnotherOneALT_map_bkg.tga.ckd/5a64c1727f44701bda9fa13d03447a35.ckd"
16
+ },
17
+ "nx": {
18
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOneALT/nx/AnotherOneALT_banner_bkg.tga.ckd/64f21dc8969793c93e074483bd2e0945.ckd",
19
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOneALT/nx/AnotherOneALT_Coach_1.tga.ckd/4eb2b83c7c269ea4037e754f7d9f50b3.ckd",
20
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOneALT/nx/AnotherOneALT_Cover_Generic.tga.ckd/1dd71212ef2bacd15452bab966588778.ckd",
21
+ "cover_1024ImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOneALT/AnotherOneALT_Cover_1024.png/7dff228bc633223c13f02092e4be0921.png",
22
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOneALT/nx/AnotherOneALT_Cover_Online.tga.ckd/e9b041db356502b7b0fc26fee7539eea.ckd",
23
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOneALT/nx/AnotherOneALT_Cover_AlbumBkg.tga.ckd/6cc21263ae78a61e0344b88f897956c2.ckd",
24
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOneALT/nx/AnotherOneALT_Cover_AlbumCoach.tga.ckd/be2c6c7fe7d4e021660353136cb63f33.ckd",
25
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOneALT/AnotherOneALT_Coach_1_Phone.png/45f6e0e7938ffebe57190295e3dee02a.png",
26
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOneALT/AnotherOneALT_Cover_Phone.jpg/6559d5982543c8412fa181a5b3079a73.jpg",
27
+ "videoPreviewVideoURL": "https://jd-s3.akamaized.net/public/map/AnotherOneALT/AnotherOneALT_VideoPreview.webm/bc825949b340906ff9360094654a9579.webm",
28
+ "map_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOneALT/nx/AnotherOneALT_map_bkg.tga.ckd/e26c7f4c4ef60a6eea0bf3bd42b68800.ckd"
29
+ },
30
+ "wiiu": {
31
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOneALT/wiiu/AnotherOneALT_banner_bkg.tga.ckd/d745cacff95c25423f10052adb510d31.ckd",
32
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOneALT/wiiu/AnotherOneALT_Coach_1.tga.ckd/5eb5cdb3dafb37c79f2d3a4e572ff6ef.ckd",
33
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOneALT/wiiu/AnotherOneALT_Cover_Generic.tga.ckd/7d96ff3d164e9c8dd05c7579b096be51.ckd",
34
+ "cover_1024ImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOneALT/AnotherOneALT_Cover_1024.png/7dff228bc633223c13f02092e4be0921.png",
35
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOneALT/wiiu/AnotherOneALT_Cover_Online.tga.ckd/4f81314123ef25eec64e9e43cce4ea9e.ckd",
36
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOneALT/wiiu/AnotherOneALT_Cover_AlbumBkg.tga.ckd/2f1db5193ed9c849af56181f968a24a4.ckd",
37
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOneALT/wiiu/AnotherOneALT_Cover_AlbumCoach.tga.ckd/66247b9bb41d78e733125a184d854e17.ckd",
38
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOneALT/AnotherOneALT_Coach_1_Phone.png/45f6e0e7938ffebe57190295e3dee02a.png",
39
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/AnotherOneALT/AnotherOneALT_Cover_Phone.jpg/6559d5982543c8412fa181a5b3079a73.jpg",
40
+ "videoPreviewVideoURL": "https://jd-s3.akamaized.net/public/map/AnotherOneALT/AnotherOneALT_VideoPreview.webm/bc825949b340906ff9360094654a9579.webm"
41
+ }
42
+ },
43
+ "audioPreviewData": "{\"__class\":\"MusicTrackData\",\"structure\":{\"__class\":\"MusicTrackStructure\",\"markers\":[0,26160,52368,78528,104688,130896,157056,183216,209376,235584,261793,288001,314161,340369,366577,392785,418993,445201,471409,497617,523825,550033,576241,602449,628657,654865,681265,707665,734017,760417,786817,813169,839569,865969,892177,918433,944689,970945,997153,1023409,1049665,1075921,1102177,1128385,1154641,1180897,1207153,1233361,1259617,1285873,1312129,1338385,1364593,1390849,1417105],\"signatures\":[{\"__class\":\"MusicSignature\",\"marker\":0,\"beats\":4}],\"startBeat\":-10,\"endBeat\":392,\"fadeStartBeat\":0,\"useFadeStartBeat\":false,\"fadeEndBeat\":0,\"useFadeEndBeat\":false,\"videoStartTime\":0,\"previewEntry\":0,\"previewLoopStart\":0,\"previewLoopEnd\":54,\"volume\":0,\"fadeInDuration\":0,\"fadeInType\":0,\"fadeOutDuration\":0,\"fadeOutType\":0},\"path\":\"\",\"url\":\"jmcs://jd-contents/anotheronealt/anotheronealt_AudioPreview.ogg\"}",
44
+ "coachCount": 1,
45
+ "credits": "Just Dance Best is an online mod made by Just Dance Alliance. We are not affiliated with Ubisoft nor own any rights over their copyrighted content and trademark. Written by John Deacon. Published by Queen Music Ltd. (PRS). All rights reserved. Used with permission. Courtesy of Hollywood Records, Inc. and Mercury Records UK, under license from Universal Music Canada Inc. All rights of the producer and other rightholders to the recorded work reserved. Unless otherwise authorized, the duplication, rental, loan, exchange or use of this video game for public performance, broadcasting and online distribution to the public are prohibited.",
46
+ "difficulty": 3,
47
+ "doubleScoringType": -1,
48
+ "jdmAttributes": [],
49
+ "lyricsColor": "FF66C8FF",
50
+ "lyricsType": 0,
51
+ "mainCoach": -1,
52
+ "mapLength": 219.671,
53
+ "mapName": "AnotherOneALT",
54
+ "mapPreviewMpd": "<?xml version=\"1.0\"?>\r\n<MPD xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"urn:mpeg:DASH:schema:MPD:2011\" xsi:schemaLocation=\"urn:mpeg:DASH:schema:MPD:2011\" type=\"static\" mediaPresentationDuration=\"PT30S\" minBufferTime=\"PT1S\" profiles=\"urn:webm:dash:profile:webm-on-demand:2012\">\r\n\t<Period id=\"0\" start=\"PT0S\" duration=\"PT30S\">\r\n\t\t<AdaptationSet id=\"0\" mimeType=\"video/webm\" codecs=\"vp8\" lang=\"eng\" maxWidth=\"720\" maxHeight=\"370\" subsegmentAlignment=\"true\" subsegmentStartsWithSAP=\"1\" bitstreamSwitching=\"true\">\r\n\t\t\t<Representation id=\"0\" bandwidth=\"496904\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/AnotherOneALT/AnotherOneALT_MapPreviewNoSoundCrop_LOW.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"632-1121\">\r\n\t\t\t\t\t<Initialization range=\"0-632\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"1\" bandwidth=\"1484005\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/AnotherOneALT/AnotherOneALT_MapPreviewNoSoundCrop_MID.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"633-1123\">\r\n\t\t\t\t\t<Initialization range=\"0-633\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"2\" bandwidth=\"2947565\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/AnotherOneALT/AnotherOneALT_MapPreviewNoSoundCrop_HIGH.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"633-1123\">\r\n\t\t\t\t\t<Initialization range=\"0-633\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"3\" bandwidth=\"4557473\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/AnotherOneALT/AnotherOneALT_MapPreviewNoSoundCrop_ULTRA.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"633-1124\">\r\n\t\t\t\t\t<Initialization range=\"0-633\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t</AdaptationSet>\r\n\t</Period>\r\n</MPD>\r\n",
55
+ "mode": 6,
56
+ "originalJDVersion": 2018,
57
+ "packages": {
58
+ "mapContent": "AnotherOneALT_mapContent"
59
+ },
60
+ "parentMapName": "AnotherOne",
61
+ "skuIds": [
62
+ "jd2018-nx-all",
63
+ "jd2018-ps4-scea",
64
+ "jd2018-ps4-scee",
65
+ "jd2018-wiiu-noa",
66
+ "jd2018-wiiu-noe",
67
+ "jd2018-xone-emea",
68
+ "jd2018-xone-ncsa"
69
+ ],
70
+ "songColors": {
71
+ "songColor_1A": "AF7F17FF",
72
+ "songColor_1B": "2E2305FF",
73
+ "songColor_2A": "60CAF1FF",
74
+ "songColor_2B": "001339FF"
75
+ },
76
+ "status": 9,
77
+ "sweatDifficulty": 3,
78
+ "tags": [
79
+ "Alternate",
80
+ "SWEAT",
81
+ "subscribedSong",
82
+ "CnUnlimited2018"
83
+ ],
84
+ "title": "Another One Bites The Dust",
85
+ "urls": {
86
+ "jmcs://jd-contents/AnotherOneALT/AnotherOneALT_AudioPreview.ogg": "https://jd-s3.akamaized.net/public/map/AnotherOneALT/AnotherOneALT_AudioPreview.ogg/600fd745dae87aa778fcd2794b6384c8.ogg",
87
+ "jmcs://jd-contents/AnotherOneALT/AnotherOneALT_MapPreviewNoSoundCrop_HIGH.vp8.webm": "https://jd-s3.akamaized.net/public/map/AnotherOneALT/AnotherOneALT_MapPreviewNoSoundCrop_HIGH.vp8.webm/5cfa517f764082c720790221e7fa2574.webm",
88
+ "jmcs://jd-contents/AnotherOneALT/AnotherOneALT_MapPreviewNoSoundCrop_HIGH.vp9.webm": "https://jd-s3.akamaized.net/public/map/AnotherOneALT/AnotherOneALT_MapPreviewNoSoundCrop_HIGH.vp9.webm/fdfde66ff688f44bbf97623497731056.webm",
89
+ "jmcs://jd-contents/AnotherOneALT/AnotherOneALT_MapPreviewNoSoundCrop_LOW.vp8.webm": "https://jd-s3.akamaized.net/public/map/AnotherOneALT/AnotherOneALT_MapPreviewNoSoundCrop_LOW.vp8.webm/b1d38cbba9eece3abce169799a4f458a.webm",
90
+ "jmcs://jd-contents/AnotherOneALT/AnotherOneALT_MapPreviewNoSoundCrop_LOW.vp9.webm": "https://jd-s3.akamaized.net/public/map/AnotherOneALT/AnotherOneALT_MapPreviewNoSoundCrop_LOW.vp9.webm/2edd5d5690d38f67ed73f9e437186c90.webm",
91
+ "jmcs://jd-contents/AnotherOneALT/AnotherOneALT_MapPreviewNoSoundCrop_MID.vp8.webm": "https://jd-s3.akamaized.net/public/map/AnotherOneALT/AnotherOneALT_MapPreviewNoSoundCrop_MID.vp8.webm/1632cd3015221f488d2d40c2690f85eb.webm",
92
+ "jmcs://jd-contents/AnotherOneALT/AnotherOneALT_MapPreviewNoSoundCrop_MID.vp9.webm": "https://jd-s3.akamaized.net/public/map/AnotherOneALT/AnotherOneALT_MapPreviewNoSoundCrop_MID.vp9.webm/7ebeda4307ceab0824e1af8205f5bddc.webm",
93
+ "jmcs://jd-contents/AnotherOneALT/AnotherOneALT_MapPreviewNoSoundCrop_ULTRA.vp8.webm": "https://jd-s3.akamaized.net/public/map/AnotherOneALT/AnotherOneALT_MapPreviewNoSoundCrop_ULTRA.vp8.webm/ed8cb95efeb7e258cf28687502a9995f.webm",
94
+ "jmcs://jd-contents/AnotherOneALT/AnotherOneALT_MapPreviewNoSoundCrop_ULTRA.vp9.webm": "https://jd-s3.akamaized.net/public/map/AnotherOneALT/AnotherOneALT_MapPreviewNoSoundCrop_ULTRA.vp9.webm/b7dd8e5ae8d0955dcbe0c1883f12e908.webm"
95
+ },
96
+ "serverChangelist": 455481,
97
+ "skupackages": {
98
+ "orbis": {
99
+ "md5": "ea449deaca4427aab1b4c93a1fcb48e6",
100
+ "storageType": 0,
101
+ "url": "https://jd-s3.akamaized.net/public/map/AnotherOneALT/ps4/AnotherOneALT_MAIN_SCENE_ORBIS.zip/ea449deaca4427aab1b4c93a1fcb48e6.zip",
102
+ "version": 3
103
+ },
104
+ "nx": {
105
+ "md5": "d11e8ace7e7e1e9d584dde87a2955191",
106
+ "storageType": 0,
107
+ "url": "https://jd-s3.akamaized.net/public/map/AnotherOneALT/nx/AnotherOneALT_MAIN_SCENE_NX.zip/d11e8ace7e7e1e9d584dde87a2955191.zip",
108
+ "version": 3
109
+ },
110
+ "pc": {
111
+ "md5": "1b264b379e1d9116e617063aa34464a0",
112
+ "storageType": 0,
113
+ "url": "https://jdbest-cdn.s3.amazonaws.com/public/map/AnotherOneALT/pc/1b264b379e1d9116e617063aa34464a0.zip",
114
+ "version": 1
115
+ },
116
+ "wiiu": {
117
+ "md5": "43faa54b35630d6335af16d024409257",
118
+ "storageType": 0,
119
+ "url": "https://jd-s3.akamaized.net/public/map/AnotherOneALT/wiiu/AnotherOneALT_MAIN_SCENE_WIIU.zip/43faa54b35630d6335af16d024409257.zip",
120
+ "version": 3
121
+ }
122
+ },
123
+ "mapType": "jdu",
124
+ "customTypeNameId": 14520
125
+ }
justdanceonline-main/maps/Automaton.json ADDED
@@ -0,0 +1,124 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "artist": "Jamiroquai",
3
+ "assets": {
4
+ "default": {
5
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/Automaton/ps4/Automaton_banner_bkg.tga.ckd/e8094155cd9efdbc6d2d7d873a3e4018.ckd",
6
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/Automaton/ps4/Automaton_Coach_1.tga.ckd/644d5d49ec05f7d8fc874dbb07f737b9.ckd",
7
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/Automaton/ps4/Automaton_Cover_Generic.tga.ckd/cff184db689aa4c2eb5f68b9b1393d38.ckd",
8
+ "cover_1024ImageUrl": "https://jd-s3.akamaized.net/public/map/Automaton/Automaton_Cover_1024.png/5ae784c743b5a8dd28859a41692c932f.png",
9
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/Automaton/ps4/Automaton_Cover_Online.tga.ckd/4752b986e05d1b61144895131ba28d25.ckd",
10
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/Automaton/ps4/Automaton_Cover_AlbumBkg.tga.ckd/09e219af9247934055515e8b94f7dc7b.ckd",
11
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/Automaton/ps4/Automaton_Cover_AlbumCoach.tga.ckd/65ada182c7b17e73daf22713691b89c3.ckd",
12
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/Automaton/Automaton_Coach_1_Phone.png/2ab1956aa99574f18ed46ef5b8f3b650.png",
13
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/Automaton/Automaton_Cover_Phone.jpg/3ec295bf836601dce4129408566857ed.jpg",
14
+ "videoPreviewVideoURL": "https://jd-s3.akamaized.net/public/map/Automaton/Automaton_VideoPreview.webm/c86893d7888ca5f58fd126a4e8bf7f4f.webm",
15
+ "map_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/Automaton/ps4/Automaton_map_bkg.tga.ckd/0a0dfd0af330a5e603805d85cff3b7a4.ckd"
16
+ },
17
+ "nx": {
18
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/Automaton/nx/Automaton_banner_bkg.tga.ckd/88f2181cb44e9de273c1a8b6507c549d.ckd",
19
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/Automaton/nx/Automaton_Coach_1.tga.ckd/77cbe5f62b4da76204448dfc27bad917.ckd",
20
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/Automaton/nx/Automaton_Cover_Generic.tga.ckd/c9cbede263f37c89fb043397a02e5acb.ckd",
21
+ "cover_1024ImageUrl": "https://jd-s3.akamaized.net/public/map/Automaton/Automaton_Cover_1024.png/5ae784c743b5a8dd28859a41692c932f.png",
22
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/Automaton/nx/Automaton_Cover_Online.tga.ckd/789781690a38d4ec73b6d2edd400de92.ckd",
23
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/Automaton/nx/Automaton_Cover_AlbumBkg.tga.ckd/aef1018eb579a1fe509214c323365513.ckd",
24
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/Automaton/nx/Automaton_Cover_AlbumCoach.tga.ckd/3995cb32690078ed22b54b1bcaef6dbd.ckd",
25
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/Automaton/Automaton_Coach_1_Phone.png/2ab1956aa99574f18ed46ef5b8f3b650.png",
26
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/Automaton/Automaton_Cover_Phone.jpg/3ec295bf836601dce4129408566857ed.jpg",
27
+ "videoPreviewVideoURL": "https://jd-s3.akamaized.net/public/map/Automaton/Automaton_VideoPreview.webm/c86893d7888ca5f58fd126a4e8bf7f4f.webm",
28
+ "map_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/Automaton/nx/Automaton_map_bkg.tga.ckd/2fcec476874fe0af892d9cca6823a0dd.ckd"
29
+ },
30
+ "wiiu": {
31
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/Automaton/wiiu/Automaton_banner_bkg.tga.ckd/2f473a1d27d817362afd180bf33e2891.ckd",
32
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/Automaton/wiiu/Automaton_Coach_1.tga.ckd/29e6199012795b4cfc6fba212274da41.ckd",
33
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/Automaton/wiiu/Automaton_Cover_Generic.tga.ckd/7adbd0fee8f4ef42f9260145f78c93a1.ckd",
34
+ "cover_1024ImageUrl": "https://jd-s3.akamaized.net/public/map/Automaton/Automaton_Cover_1024.png/5ae784c743b5a8dd28859a41692c932f.png",
35
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/Automaton/wiiu/Automaton_Cover_Online.tga.ckd/9eb860bce7b4b7784f70a378baf599fa.ckd",
36
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/Automaton/wiiu/Automaton_Cover_AlbumBkg.tga.ckd/5c2fc6da84cb3ffb44e661414b195230.ckd",
37
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/Automaton/wiiu/Automaton_Cover_AlbumCoach.tga.ckd/c8a63700e84153768e8fc0d79a1beb87.ckd",
38
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/Automaton/Automaton_Coach_1_Phone.png/2ab1956aa99574f18ed46ef5b8f3b650.png",
39
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/Automaton/Automaton_Cover_Phone.jpg/3ec295bf836601dce4129408566857ed.jpg",
40
+ "videoPreviewVideoURL": "https://jd-s3.akamaized.net/public/map/Automaton/Automaton_VideoPreview.webm/c86893d7888ca5f58fd126a4e8bf7f4f.webm"
41
+ }
42
+ },
43
+ "audioPreviewData": "{\"__class\":\"MusicTrackData\",\"structure\":{\"__class\":\"MusicTrackStructure\",\"markers\":[0,26688,53328,80016,106656,133344,160032,186672,213360,240000,266688,293328,320016,346656,373344,400032,426672,453360,480000,506688,533327,560015,586655,613343,640031,666671,693359,719999,746687,773327,800015,826655,853343,880031,906671,933359,959999,986687,1013327,1040015,1066655,1093343,1120030,1146670,1173358,1199998,1226686,1253326,1280014,1306654,1333342,1360030,1386670,1413358,1439998],\"signatures\":[{\"__class\":\"MusicSignature\",\"marker\":0,\"beats\":4}],\"startBeat\":-7,\"endBeat\":460,\"fadeStartBeat\":0,\"useFadeStartBeat\":false,\"fadeEndBeat\":460,\"useFadeEndBeat\":true,\"videoStartTime\":0,\"previewEntry\":0,\"previewLoopStart\":0,\"previewLoopEnd\":54,\"volume\":0,\"fadeInDuration\":0,\"fadeInType\":0,\"fadeOutDuration\":0,\"fadeOutType\":0},\"path\":\"\",\"url\":\"jmcs://jd-contents/automaton/automaton_AudioPreview.ogg\"}",
44
+ "coachCount": 1,
45
+ "credits": "Just Dance Best is an online mod made by Just Dance Alliance. We are not affiliated with Ubisoft nor own any rights over their copyrighted content and trademark. Written by Jason Kay and Matthew Johnson. Published by BMG Platinum Songs. All rights administered by BMG Rights Management (US) LLC. Courtesy of Mercury Records Limited under license from Universal Music Enterprises. All rights of the producer and other rightholders to the recorded work reserved. Unless otherwise authorized, the duplication, rental, loan, exchange or use of this video game for public performance, broadcasting and online distribution to the public are prohibited.",
46
+ "difficulty": 2,
47
+ "doubleScoringType": -1,
48
+ "jdmAttributes": [],
49
+ "lyricsColor": "FF10FAFF",
50
+ "lyricsType": 0,
51
+ "mainCoach": -1,
52
+ "mapLength": 259.44399999999996,
53
+ "mapName": "Automaton",
54
+ "mapPreviewMpd": "<?xml version=\"1.0\"?>\r\n<MPD xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"urn:mpeg:DASH:schema:MPD:2011\" xsi:schemaLocation=\"urn:mpeg:DASH:schema:MPD:2011\" type=\"static\" mediaPresentationDuration=\"PT30S\" minBufferTime=\"PT1S\" profiles=\"urn:webm:dash:profile:webm-on-demand:2012\">\r\n\t<Period id=\"0\" start=\"PT0S\" duration=\"PT30S\">\r\n\t\t<AdaptationSet id=\"0\" mimeType=\"video/webm\" codecs=\"vp8\" lang=\"eng\" maxWidth=\"720\" maxHeight=\"370\" subsegmentAlignment=\"true\" subsegmentStartsWithSAP=\"1\" bitstreamSwitching=\"true\">\r\n\t\t\t<Representation id=\"0\" bandwidth=\"497370\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/Automaton/Automaton_MapPreviewNoSoundCrop_LOW.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"624-1113\">\r\n\t\t\t\t\t<Initialization range=\"0-624\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"1\" bandwidth=\"1481736\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/Automaton/Automaton_MapPreviewNoSoundCrop_MID.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"625-1115\">\r\n\t\t\t\t\t<Initialization range=\"0-625\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"2\" bandwidth=\"2936032\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/Automaton/Automaton_MapPreviewNoSoundCrop_HIGH.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"625-1115\">\r\n\t\t\t\t\t<Initialization range=\"0-625\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"3\" bandwidth=\"5509321\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/Automaton/Automaton_MapPreviewNoSoundCrop_ULTRA.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"625-1121\">\r\n\t\t\t\t\t<Initialization range=\"0-625\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t</AdaptationSet>\r\n\t</Period>\r\n</MPD>\r\n",
55
+ "mode": 6,
56
+ "originalJDVersion": 2018,
57
+ "packages": {
58
+ "mapContent": "Automaton_mapContent"
59
+ },
60
+ "parentMapName": "Automaton",
61
+ "skuIds": [
62
+ "jd2018-nx-all",
63
+ "jd2018-ps4-scea",
64
+ "jd2018-ps4-scee",
65
+ "jd2018-wiiu-noa",
66
+ "jd2018-wiiu-noe",
67
+ "jd2018-xone-emea",
68
+ "jd2018-xone-ncsa"
69
+ ],
70
+ "songColors": {
71
+ "songColor_1A": "4EFFC3FF",
72
+ "songColor_1B": "060033FF",
73
+ "songColor_2A": "0085FFFF",
74
+ "songColor_2B": "001D66FF"
75
+ },
76
+ "status": 3,
77
+ "sweatDifficulty": 1,
78
+ "tags": [
79
+ "Main",
80
+ "subscribedSong",
81
+ "HallOfFame",
82
+ "CnUnlimited2018"
83
+ ],
84
+ "title": "Automaton",
85
+ "urls": {
86
+ "jmcs://jd-contents/Automaton/Automaton_AudioPreview.ogg": "https://jd-s3.akamaized.net/public/map/Automaton/Automaton_AudioPreview.ogg/1d2c9402d2398f7f854e6d6789a3488d.ogg",
87
+ "jmcs://jd-contents/Automaton/Automaton_MapPreviewNoSoundCrop_HIGH.vp8.webm": "https://jd-s3.akamaized.net/public/map/Automaton/Automaton_MapPreviewNoSoundCrop_HIGH.vp8.webm/72fc5ba762da310e64a550bc65821185.webm",
88
+ "jmcs://jd-contents/Automaton/Automaton_MapPreviewNoSoundCrop_HIGH.vp9.webm": "https://jd-s3.akamaized.net/public/map/Automaton/Automaton_MapPreviewNoSoundCrop_HIGH.vp9.webm/78cc74cd938545c002a3d6c895c2b01f.webm",
89
+ "jmcs://jd-contents/Automaton/Automaton_MapPreviewNoSoundCrop_LOW.vp8.webm": "https://jd-s3.akamaized.net/public/map/Automaton/Automaton_MapPreviewNoSoundCrop_LOW.vp8.webm/664b13a231ff4724752571dcbc1a31c8.webm",
90
+ "jmcs://jd-contents/Automaton/Automaton_MapPreviewNoSoundCrop_LOW.vp9.webm": "https://jd-s3.akamaized.net/public/map/Automaton/Automaton_MapPreviewNoSoundCrop_LOW.vp9.webm/8f7c4cb12dca6992589788d7254686b3.webm",
91
+ "jmcs://jd-contents/Automaton/Automaton_MapPreviewNoSoundCrop_MID.vp8.webm": "https://jd-s3.akamaized.net/public/map/Automaton/Automaton_MapPreviewNoSoundCrop_MID.vp8.webm/d8338205638eaa59779820ebaab3109e.webm",
92
+ "jmcs://jd-contents/Automaton/Automaton_MapPreviewNoSoundCrop_MID.vp9.webm": "https://jd-s3.akamaized.net/public/map/Automaton/Automaton_MapPreviewNoSoundCrop_MID.vp9.webm/a7184edcf2884d3434e95434135be456.webm",
93
+ "jmcs://jd-contents/Automaton/Automaton_MapPreviewNoSoundCrop_ULTRA.vp8.webm": "https://jd-s3.akamaized.net/public/map/Automaton/Automaton_MapPreviewNoSoundCrop_ULTRA.vp8.webm/ed3ab4ff57a616fb9a00846d0bc5fbba.webm",
94
+ "jmcs://jd-contents/Automaton/Automaton_MapPreviewNoSoundCrop_ULTRA.vp9.webm": "https://jd-s3.akamaized.net/public/map/Automaton/Automaton_MapPreviewNoSoundCrop_ULTRA.vp9.webm/dbceb7d2827c3329b3683b6f66fa6f03.webm"
95
+ },
96
+ "serverChangelist": 455481,
97
+ "skupackages": {
98
+ "orbis": {
99
+ "md5": "60ec484dc265fdcc3012c715e50766ea",
100
+ "storageType": 0,
101
+ "url": "https://jd-s3.akamaized.net/public/map/Automaton/ps4/Automaton_MAIN_SCENE_ORBIS.zip/60ec484dc265fdcc3012c715e50766ea.zip",
102
+ "version": 3
103
+ },
104
+ "nx": {
105
+ "md5": "b0a9cdd00272584d6e2a60a9d2f75284",
106
+ "storageType": 0,
107
+ "url": "https://jd-s3.akamaized.net/public/map/Automaton/nx/Automaton_MAIN_SCENE_NX.zip/b0a9cdd00272584d6e2a60a9d2f75284.zip",
108
+ "version": 3
109
+ },
110
+ "pc": {
111
+ "md5": "511bc57a8f5337b73e81e109ad7ba99b",
112
+ "storageType": 0,
113
+ "url": "https://jdbest-cdn.s3.amazonaws.com/public/map/Automaton/pc/511bc57a8f5337b73e81e109ad7ba99b.zip",
114
+ "version": 1
115
+ },
116
+ "wiiu": {
117
+ "md5": "fa465748ce42befc3433b5e5bb530f67",
118
+ "storageType": 0,
119
+ "url": "https://jd-s3.akamaized.net/public/map/Automaton/wiiu/Automaton_MAIN_SCENE_WIIU.zip/fa465748ce42befc3433b5e5bb530f67.zip",
120
+ "version": 3
121
+ }
122
+ },
123
+ "mapType": "jdu"
124
+ }
justdanceonline-main/maps/BBoomBBoom.json ADDED
@@ -0,0 +1,105 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "artist": "MOMOLAND",
3
+ "assets": {
4
+ "default": {
5
+ "banner_bkgImageUrl": "https://jdbest-cdn.s3.amazonaws.com/public/map/BBoomBBoom/textures/BBoomBBoom_banner_bkg.png",
6
+ "coach1ImageUrl": "https://jdbest-cdn.s3.amazonaws.com/public/map/BBoomBBoom/textures/BBoomBBoom_Coach_1.png",
7
+ "coach2ImageUrl": "https://jdbest-cdn.s3.amazonaws.com/public/map/BBoomBBoom/textures/BBoomBBoom_Coach_2.png",
8
+ "coach3ImageUrl": "https://jdbest-cdn.s3.amazonaws.com/public/map/BBoomBBoom/textures/BBoomBBoom_Coach_3.png",
9
+ "coverImageUrl": "https://jdbest-cdn.s3.amazonaws.com/public/map/BBoomBBoom/textures/BBoomBBoom_Cover_Generic.png",
10
+ "cover_1024ImageUrl": "https://jdbest-cdn.s3.amazonaws.com/public/map/BBoomBBoom/textures/BBoomBBoom_Cover_1024.png",
11
+ "cover_smallImageUrl": "https://jdbest-cdn.s3.amazonaws.com/public/map/BBoomBBoom/textures/BBoomBBoom_Cover_Generic.png",
12
+ "expandBkgImageUrl": "https://jdbest-cdn.s3.amazonaws.com/public/map/BBoomBBoom/textures/BBoomBBoom_Cover_AlbumBkg.png",
13
+ "expandCoachImageUrl": "https://jdbest-cdn.s3.amazonaws.com/public/map/BBoomBBoom/textures/BBoomBBoom_Cover_AlbumCoach.png",
14
+ "phoneCoach1ImageUrl": "https://jdbest-cdn.s3.amazonaws.com/public/map/BBoomBBoom/textures/BBoomBBoom_Coach_1.png",
15
+ "phoneCoach2ImageUrl": "https://jdbest-cdn.s3.amazonaws.com/public/map/BBoomBBoom/textures/BBoomBBoom_Coach_2.png",
16
+ "phoneCoach3ImageUrl": "https://jdbest-cdn.s3.amazonaws.com/public/map/BBoomBBoom/textures/BBoomBBoom_Coach_3.png",
17
+ "phoneCoverImageUrl": "https://jdbest-cdn.s3.amazonaws.com/public/map/BBoomBBoom/textures/BBoomBBoom_Cover_Generic.png",
18
+ "videoPreviewVideoURL": "http://jd-s3.akamaized.net/public/map/BBoomBBoom/BBoomBBoom_VideoPreview.webm/216963580b997a5f2e44b0556df8e36c.webm",
19
+ "map_bkgImageUrl": "https://jdbest-cdn.s3.amazonaws.com/public/map/BBoomBBoom/textures/BBoomBBoom_map_bkg.png"
20
+ },
21
+ "nx": {
22
+ "banner_bkgImageUrl": "https://jdbest-cdn.s3.amazonaws.com/public/map/BBoomBBoom/textures/BBoomBBoom_banner_bkg.png",
23
+ "coach1ImageUrl": "https://jdbest-cdn.s3.amazonaws.com/public/map/BBoomBBoom/textures/BBoomBBoom_Coach_1.png",
24
+ "coach2ImageUrl": "https://jdbest-cdn.s3.amazonaws.com/public/map/BBoomBBoom/textures/BBoomBBoom_Coach_2.png",
25
+ "coach3ImageUrl": "https://jdbest-cdn.s3.amazonaws.com/public/map/BBoomBBoom/textures/BBoomBBoom_Coach_3.png",
26
+ "coverImageUrl": "https://jdbest-cdn.s3.amazonaws.com/public/map/BBoomBBoom/textures/BBoomBBoom_Cover_Generic.png",
27
+ "cover_1024ImageUrl": "https://jdbest-cdn.s3.amazonaws.com/public/map/BBoomBBoom/textures/BBoomBBoom_Cover_1024.png",
28
+ "cover_smallImageUrl": "https://jdbest-cdn.s3.amazonaws.com/public/map/BBoomBBoom/textures/BBoomBBoom_Cover_Generic.png",
29
+ "expandBkgImageUrl": "https://jdbest-cdn.s3.amazonaws.com/public/map/BBoomBBoom/textures/BBoomBBoom_Cover_AlbumBkg.png",
30
+ "expandCoachImageUrl": "https://jdbest-cdn.s3.amazonaws.com/public/map/BBoomBBoom/textures/BBoomBBoom_Cover_AlbumCoach.png",
31
+ "phoneCoach1ImageUrl": "https://jdbest-cdn.s3.amazonaws.com/public/map/BBoomBBoom/textures/BBoomBBoom_Coach_1.png",
32
+ "phoneCoach2ImageUrl": "https://jdbest-cdn.s3.amazonaws.com/public/map/BBoomBBoom/textures/BBoomBBoom_Coach_2.png",
33
+ "phoneCoach3ImageUrl": "https://jdbest-cdn.s3.amazonaws.com/public/map/BBoomBBoom/textures/BBoomBBoom_Coach_3.png",
34
+ "phoneCoverImageUrl": "https://jdbest-cdn.s3.amazonaws.com/public/map/BBoomBBoom/textures/BBoomBBoom_Cover_Generic.png",
35
+ "videoPreviewVideoURL": "http://jd-s3.akamaized.net/public/map/BBoomBBoom/BBoomBBoom_VideoPreview.webm/216963580b997a5f2e44b0556df8e36c.webm",
36
+ "map_bkgImageUrl": "https://jdbest-cdn.s3.amazonaws.com/public/map/BBoomBBoom/textures/BBoomBBoom_map_bkg.png"
37
+ }
38
+ },
39
+ "audioPreviewData": "{\"__class\":\"MusicTrackData\",\"structure\":{\"__class\":\"MusicTrackStructure\",\"markers\":[0,22848,45696,68544,91392,114240,137088,159936,182784,205632,228480,251328,274176,297024,319872,342720,365568,388416,411264,434112,456960,479808,502656,525504,548352,571152,594000,616848,639696,662544,685392,708240,731089,753937,776833,799681,822529,845377,868225,891121,913969,936817,959665,982561,1005409,1028257,1051105,1074001,1096849,1119697,1142545,1165393,1188241,1211137,1233985,1256833,1279681,1302529,1325377,1348225,1371121,1393969,1416817,1439666,1462514],\"signatures\":[{\"__class\":\"MusicSignature\",\"marker\":0,\"beats\":4}],\"startBeat\":-8,\"endBeat\":394,\"fadeStartBeat\":0,\"useFadeStartBeat\":false,\"fadeEndBeat\":0,\"useFadeEndBeat\":false,\"videoStartTime\":0,\"previewEntry\":0,\"previewLoopStart\":0,\"previewLoopEnd\":64,\"volume\":0,\"fadeInDuration\":0,\"fadeInType\":0,\"fadeOutDuration\":0,\"fadeOutType\":0},\"path\":\"\",\"url\":\"jmcs://jd-contents/BBoomBBoom/BBoomBBoom_AudioPreview.ogg\"}\"",
40
+ "coachCount": 3,
41
+ "credits": "Just Dance Best is an online mod made by Just Dance Alliance. We are not affiliated with Ubisoft nor own any rights over their copyrighted content and trademark. All rights of the producer and other rightholders to the recorded work reserved. Unless otherwise authorized, the duplication, rental, loan, exchange or use of this video game for public performance, broadcasting and online distribution to the public are prohibited.",
42
+ "difficulty": 2,
43
+ "doubleScoringType": -1,
44
+ "jdmAttributes": [],
45
+ "lyricsColor": "016EBAFF",
46
+ "lyricsType": 0,
47
+ "mainCoach": -1,
48
+ "mapLength": 100,
49
+ "mapName": "BBoomBBoom",
50
+ "mapPreviewMpd": "<?xml version=\"1.0\"?>\r\n<MPD xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"urn:mpeg:DASH:schema:MPD:2011\" xsi:schemaLocation=\"urn:mpeg:DASH:schema:MPD:2011\" type=\"static\" mediaPresentationDuration=\"PT30S\" minBufferTime=\"PT1S\" profiles=\"urn:webm:dash:profile:webm-on-demand:2012\">\r\n\t<Period id=\"0\" start=\"PT0S\" duration=\"PT30S\">\r\n\t\t<AdaptationSet id=\"0\" mimeType=\"video/webm\" codecs=\"vp8\" lang=\"eng\" maxWidth=\"720\" maxHeight=\"370\" subsegmentAlignment=\"true\" subsegmentStartsWithSAP=\"1\" bitstreamSwitching=\"true\">\r\n\t\t\t<Representation id=\"0\" bandwidth=\"497759\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/BBoomBBoom/BBoomBBoom_MapPreviewNoSoundCrop_LOW.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"630-1119\">\r\n\t\t\t\t\t<Initialization range=\"0-630\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"1\" bandwidth=\"1484234\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/BBoomBBoom/BBoomBBoom_MapPreviewNoSoundCrop_MID.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"631-1121\">\r\n\t\t\t\t\t<Initialization range=\"0-631\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"2\" bandwidth=\"2956729\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/BBoomBBoom/BBoomBBoom_MapPreviewNoSoundCrop_HIGH.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"631-1121\">\r\n\t\t\t\t\t<Initialization range=\"0-631\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"3\" bandwidth=\"5790405\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/BBoomBBoom/BBoomBBoom_MapPreviewNoSoundCrop_ULTRA.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"631-1128\">\r\n\t\t\t\t\t<Initialization range=\"0-631\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t</AdaptationSet>\r\n\t</Period>\r\n</MPD>\r\n",
51
+ "mode": 6,
52
+ "originalJDVersion": 2019,
53
+ "packages": {
54
+ "mapContent": "BBoomBBoom_mapContent"
55
+ },
56
+ "parentMapName": "BBoomBBoom",
57
+ "skuIds": [
58
+ "jd2017-pc-ww"
59
+ ],
60
+ "songColors": {
61
+ "songColor_1A": "076093FF",
62
+ "songColor_1B": "182146FF",
63
+ "songColor_2A": "F4DF03FF",
64
+ "songColor_2B": "D61F1FFF"
65
+ },
66
+ "status": 5,
67
+ "sweatDifficulty": 1,
68
+ "tags": [
69
+ "Main"
70
+ ],
71
+ "title": "BBoom BBoom",
72
+ "urls": {
73
+ "jmcs://jd-contents/BBoomBBoom/BBoomBBoom_AudioPreview.ogg": "https://jdbest-cdn.s3.amazonaws.com/public/map/BBoomBBoom/BBoomBBoom_AudioPreview.ogg",
74
+ "jmcs://jd-contents/BBoomBBoom/BBoomBBoom_MapPreviewNoSoundCrop_HIGH.vp8.webm": "https://jdbest-cdn.s3.amazonaws.com/public/map/BBoomBBoom/nx/BBoomBBoom_VideoPreview.webm",
75
+ "jmcs://jd-contents/BBoomBBoom/BBoomBBoom_MapPreviewNoSoundCrop_HIGH.vp9.webm": "https://jdbest-cdn.s3.amazonaws.com/public/map/BBoomBBoom/nx/BBoomBBoom_VideoPreview.webm",
76
+ "jmcs://jd-contents/BBoomBBoom/BBoomBBoom_MapPreviewNoSoundCrop_LOW.vp8.webm": "https://jdbest-cdn.s3.amazonaws.com/public/map/BBoomBBoom/nx/BBoomBBoom_VideoPreview.webm",
77
+ "jmcs://jd-contents/BBoomBBoom/BBoomBBoom_MapPreviewNoSoundCrop_LOW.vp9.webm": "https://jdbest-cdn.s3.amazonaws.com/public/map/BBoomBBoom/nx/BBoomBBoom_VideoPreview.webm",
78
+ "jmcs://jd-contents/BBoomBBoom/BBoomBBoom_MapPreviewNoSoundCrop_MID.vp8.webm": "https://jdbest-cdn.s3.amazonaws.com/public/map/BBoomBBoom/nx/BBoomBBoom_VideoPreview.webm",
79
+ "jmcs://jd-contents/BBoomBBoom/BBoomBBoom_MapPreviewNoSoundCrop_MID.vp9.webm": "https://jdbest-cdn.s3.amazonaws.com/public/map/BBoomBBoom/nx/BBoomBBoom_VideoPreview.webm",
80
+ "jmcs://jd-contents/BBoomBBoom/BBoomBBoom_MapPreviewNoSoundCrop_ULTRA.vp8.webm": "https://jdbest-cdn.s3.amazonaws.com/public/map/BBoomBBoom/nx/BBoomBBoom_VideoPreview.webm",
81
+ "jmcs://jd-contents/BBoomBBoom/BBoomBBoom_MapPreviewNoSoundCrop_ULTRA.vp9.webm": "https://jdbest-cdn.s3.amazonaws.com/public/map/BBoomBBoom/nx/BBoomBBoom_VideoPreview.webm"
82
+ },
83
+ "serverChangelist": 455481,
84
+ "skupackages": {
85
+ "pc": {
86
+ "md5": "01b9dde86de7c3dacb5808f7285f4e63",
87
+ "storageType": 0,
88
+ "url": "https://jdbest-cdn.s3.amazonaws.com/public/map/BBoomBBoom/pc/01b9dde86de7c3dacb5808f7285f4e63.zip",
89
+ "version": 4
90
+ },
91
+ "orbis": {
92
+ "md5": "0835bd69ed0ee7b4b4824a24b17a48be",
93
+ "storageType": 0,
94
+ "url": "https://jdbest-cdn.s3.amazonaws.com/public/map/BBoomBBoom/ps4/0835bd69ed0ee7b4b4824a24b17a48be.zip",
95
+ "version": 2
96
+ },
97
+ "nx": {
98
+ "md5": "8e85ebff6206887b29b23ff9d4cd5004",
99
+ "storageType": 0,
100
+ "url": "https://jdbest-cdn.s3.amazonaws.com/public/map/BBoomBBoom/nx/8e85ebff6206887b29b23ff9d4cd5004.zip",
101
+ "version": 3
102
+ }
103
+ },
104
+ "mapType": "custom"
105
+ }
justdanceonline-main/maps/BadAssPrincessKids.json ADDED
@@ -0,0 +1,92 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "artist": "Fast Forward Highway",
3
+ "assets": {
4
+ "default": {
5
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/BadAssPrincessKids/BadAssPrincessKids_banner_bkg.jpg/b870780ddf9664c02668e8e93e0453c3.jpg",
6
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/BadAssPrincessKids/BadAssPrincessKids_Coach_1.png/9bce8b189929fe585317ea252ab9e902.png",
7
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/BadAssPrincessKids/BadAssPrincessKids_Cover_Generic.jpg/3f6f46165197241abb3d7a1cdcd2a588.jpg",
8
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/BadAssPrincessKids/BadAssPrincessKids_Cover_Online.jpg/68df9abd7b94a822e7238c7a7bdb8c30.jpg",
9
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/BadAssPrincessKids/BadAssPrincessKids_Cover_AlbumBkg.jpg/09991777d65eff10530b58f6ee2f1e27.jpg",
10
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/BadAssPrincessKids/BadAssPrincessKids_Cover_AlbumCoach.png/07f3c480276a1926d907f6167c26c84d.png",
11
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/BadAssPrincessKids/BadAssPrincessKids_Coach_1_Phone.png/cd5af6fa103fc037d992274101fe57b9.png",
12
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/BadAssPrincessKids/BadAssPrincessKids_Cover_Phone.jpg/68df9abd7b94a822e7238c7a7bdb8c30.jpg"
13
+ },
14
+ "nx": {
15
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/BadAssPrincessKids/BadAssPrincessKids_banner_bkg.jpg/b870780ddf9664c02668e8e93e0453c3.jpg",
16
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/BadAssPrincessKids/BadAssPrincessKids_Coach_1.png/9bce8b189929fe585317ea252ab9e902.png",
17
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/BadAssPrincessKids/BadAssPrincessKids_Cover_Generic.jpg/3f6f46165197241abb3d7a1cdcd2a588.jpg",
18
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/BadAssPrincessKids/BadAssPrincessKids_Cover_Online.jpg/68df9abd7b94a822e7238c7a7bdb8c30.jpg",
19
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/BadAssPrincessKids/BadAssPrincessKids_Cover_AlbumBkg.jpg/09991777d65eff10530b58f6ee2f1e27.jpg",
20
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/BadAssPrincessKids/BadAssPrincessKids_Cover_AlbumCoach.png/07f3c480276a1926d907f6167c26c84d.png",
21
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/BadAssPrincessKids/BadAssPrincessKids_Coach_1_Phone.png/cd5af6fa103fc037d992274101fe57b9.png",
22
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/BadAssPrincessKids/BadAssPrincessKids_Cover_Phone.jpg/68df9abd7b94a822e7238c7a7bdb8c30.jpg"
23
+ }
24
+ },
25
+ "audioPreviewData": "{\"__class\":\"MusicTrackData\",\"structure\":{\"__class\":\"MusicTrackStructure\",\"markers\":[0,16000,32000,48000,64000,80000,96000,112000,128000,144000,160000,176000,192000,208000,224000,240000,256000,272000,288000,304000,320000,336000,352000,368000,384000,400000,416000,432000,448000,464000,480000,496000,512000,528000,544000,560000,576000,592000,608000,624000,640000,656000,672000,688000,704000,720000,736000,752000,768000,784000,800000,816000,832000,848000,864000,880000,896000,912000,928000,944000,960000,976000,992000,1008000,1024000,1040000,1056000,1072000,1088000,1104000,1120000,1136000,1152000,1168000,1184000,1200000,1216000,1232000,1248000,1264000,1280000,1296000,1312000,1328000,1344000,1360000,1376000,1392000,1408000,1424000],\"signatures\":[{\"__class\":\"MusicSignature\",\"marker\":0,\"beats\":4}],\"startBeat\":-4,\"endBeat\":245,\"fadeStartBeat\":0,\"useFadeStartBeat\":false,\"fadeEndBeat\":0,\"useFadeEndBeat\":false,\"videoStartTime\":0,\"previewEntry\":0,\"previewLoopStart\":0,\"previewLoopEnd\":89,\"volume\":0,\"fadeInDuration\":0,\"fadeInType\":0,\"fadeOutDuration\":0,\"fadeOutType\":0},\"path\":\"\",\"url\":\"jmcs://jd-contents/badassprincesskids/badassprincesskids_AudioPreview.ogg\"}",
26
+ "coachCount": 1,
27
+ "credits": "Just Dance Best is an online mod made by Just Dance Alliance. We are not affiliated with Ubisoft nor own any rights over their copyrighted content and trademark. Written by Terry Devine-King and Adam Drake. Published by Audio Network Canada Inc. Courtesy of Audio Network Canada Inc.",
28
+ "difficulty": 1,
29
+ "doubleScoringType": -1,
30
+ "jdmAttributes": [],
31
+ "lyricsColor": "87F431FF",
32
+ "lyricsType": 0,
33
+ "mainCoach": -1,
34
+ "mapLength": 87.083,
35
+ "mapName": "BadAssPrincessKids",
36
+ "mapPreviewMpd": "<?xml version=\"1.0\"?>\r\n<MPD xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"urn:mpeg:DASH:schema:MPD:2011\" xsi:schemaLocation=\"urn:mpeg:DASH:schema:MPD:2011\" type=\"static\" mediaPresentationDuration=\"PT30S\" minBufferTime=\"PT1S\" profiles=\"urn:webm:dash:profile:webm-on-demand:2012\">\r\n\t<Period id=\"0\" start=\"PT0S\" duration=\"PT30S\">\r\n\t\t<AdaptationSet id=\"0\" mimeType=\"video/webm\" codecs=\"vp8\" lang=\"eng\" maxWidth=\"720\" maxHeight=\"370\" subsegmentAlignment=\"true\" subsegmentStartsWithSAP=\"1\" bitstreamSwitching=\"true\">\r\n\t\t\t<Representation id=\"0\" bandwidth=\"496963\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/BadAssPrincessKids/BadAssPrincessKids_MapPreviewNoSoundCrop_LOW.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"660-1149\">\r\n\t\t\t\t\t<Initialization range=\"0-660\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"1\" bandwidth=\"1481795\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/BadAssPrincessKids/BadAssPrincessKids_MapPreviewNoSoundCrop_MID.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"661-1151\">\r\n\t\t\t\t\t<Initialization range=\"0-661\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"2\" bandwidth=\"2905591\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/BadAssPrincessKids/BadAssPrincessKids_MapPreviewNoSoundCrop_HIGH.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"661-1151\">\r\n\t\t\t\t\t<Initialization range=\"0-661\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"3\" bandwidth=\"3675364\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/BadAssPrincessKids/BadAssPrincessKids_MapPreviewNoSoundCrop_ULTRA.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"661-1151\">\r\n\t\t\t\t\t<Initialization range=\"0-661\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t</AdaptationSet>\r\n\t</Period>\r\n</MPD>\r\n",
37
+ "mode": 6,
38
+ "originalJDVersion": 2021,
39
+ "packages": {
40
+ "mapContent": "BadAssPrincessKids_mapContent"
41
+ },
42
+ "parentMapName": "BadAssPrincessKids",
43
+ "skuIds": [],
44
+ "songColors": {
45
+ "songColor_1A": "FFF5B4FF",
46
+ "songColor_1B": "FFE348FF",
47
+ "songColor_2A": "6264DEFF",
48
+ "songColor_2B": "9264D1FF"
49
+ },
50
+ "status": 3,
51
+ "sweatDifficulty": 1,
52
+ "tags": [
53
+ "Main",
54
+ "KidsOnly",
55
+ "subscribedSong"
56
+ ],
57
+ "title": "Rock 'n Roll Princess",
58
+ "serverChangelist": 455481,
59
+ "skupackages": {
60
+ "orbis": {
61
+ "md5": "53f9126304af7ea7cb9095b75cef8fe2",
62
+ "storageType": 0,
63
+ "url": "https://jdcn-console.cdn.ubisoft.cn/public/map/BadAssPrincessKids/ps4/BadAssPrincessKids_MAIN_SCENE_ORBIS.zip/53f9126304af7ea7cb9095b75cef8fe2.zip",
64
+ "version": 1
65
+ },
66
+ "nx": {
67
+ "md5": "3b9742cf39bb2c213704d719d89fcf23",
68
+ "storageType": 0,
69
+ "url": "https://jdcn-console.cdn.ubisoft.cn/public/map/BadAssPrincessKids/nx/BadAssPrincessKids_MAIN_SCENE_NX.zip/3b9742cf39bb2c213704d719d89fcf23.zip",
70
+ "version": 1
71
+ },
72
+ "pc": {
73
+ "md5": "cf4e4a081536e16c48f0b1afbad33b04",
74
+ "storageType": 0,
75
+ "url": "https://jdbest-cdn.s3.amazonaws.com/public/map/BadAssPrincessKids/pc/cf4e4a081536e16c48f0b1afbad33b04.zip",
76
+ "version": 1
77
+ }
78
+ },
79
+ "mapType": "jdu",
80
+ "customTypeNameId": 12939,
81
+ "urls": {
82
+ "jmcs://jd-contents/BadAssPrincessKids/BadAssPrincessKids_AudioPreview.ogg": "https://jdcn-console.cdn.ubisoft.cn/public/map/BadAssPrincessKids/BadAssPrincessKids_AudioPreview.ogg/981f538671791a97d7e3a60cae26fb6c.ogg",
83
+ "jmcs://jd-contents/BadAssPrincessKids/BadAssPrincessKids_MapPreviewNoSoundCrop_HIGH.vp8.webm": "https://jdcn-console.cdn.ubisoft.cn/public/map/BadAssPrincessKids/BadAssPrincessKids_MapPreviewNoSoundCrop_HIGH.vp8.webm/9513d4c6747540a3ea7d8c1c2c348591.webm",
84
+ "jmcs://jd-contents/BadAssPrincessKids/BadAssPrincessKids_MapPreviewNoSoundCrop_HIGH.vp9.webm": "https://jdcn-console.cdn.ubisoft.cn/public/map/BadAssPrincessKids/BadAssPrincessKids_MapPreviewNoSoundCrop_HIGH.vp9.webm/ef515ca074ac30f971384fcef5ea5f3f.webm",
85
+ "jmcs://jd-contents/BadAssPrincessKids/BadAssPrincessKids_MapPreviewNoSoundCrop_LOW.vp8.webm": "https://jdcn-console.cdn.ubisoft.cn/public/map/BadAssPrincessKids/BadAssPrincessKids_MapPreviewNoSoundCrop_LOW.vp8.webm/a7071a52d89a57d65c2dc67c64357901.webm",
86
+ "jmcs://jd-contents/BadAssPrincessKids/BadAssPrincessKids_MapPreviewNoSoundCrop_LOW.vp9.webm": "https://jdcn-console.cdn.ubisoft.cn/public/map/BadAssPrincessKids/BadAssPrincessKids_MapPreviewNoSoundCrop_LOW.vp9.webm/14603501ae3998a8ba4b0e345a3cb420.webm",
87
+ "jmcs://jd-contents/BadAssPrincessKids/BadAssPrincessKids_MapPreviewNoSoundCrop_MID.vp8.webm": "https://jdcn-console.cdn.ubisoft.cn/public/map/BadAssPrincessKids/BadAssPrincessKids_MapPreviewNoSoundCrop_MID.vp8.webm/41b3ec3537eae3808e91f5752273a490.webm",
88
+ "jmcs://jd-contents/BadAssPrincessKids/BadAssPrincessKids_MapPreviewNoSoundCrop_MID.vp9.webm": "https://jdcn-console.cdn.ubisoft.cn/public/map/BadAssPrincessKids/BadAssPrincessKids_MapPreviewNoSoundCrop_MID.vp9.webm/8b68d59c357bdbd9fcb5cb4c79e3e53b.webm",
89
+ "jmcs://jd-contents/BadAssPrincessKids/BadAssPrincessKids_MapPreviewNoSoundCrop_ULTRA.vp8.webm": "https://jdcn-console.cdn.ubisoft.cn/public/map/BadAssPrincessKids/BadAssPrincessKids_MapPreviewNoSoundCrop_ULTRA.vp8.webm/bc2ddee3b845748023bb11938c9cc8c0.webm",
90
+ "jmcs://jd-contents/BadAssPrincessKids/BadAssPrincessKids_MapPreviewNoSoundCrop_ULTRA.vp9.webm": "https://jdcn-console.cdn.ubisoft.cn/public/map/BadAssPrincessKids/BadAssPrincessKids_MapPreviewNoSoundCrop_ULTRA.vp9.webm/898cc1513e58bdf32136296d4f3c7a3e.webm"
91
+ }
92
+ }
justdanceonline-main/maps/BadGuyALT.json ADDED
@@ -0,0 +1,103 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "artist": "Billie Eilish",
3
+ "assets": {
4
+ "default": {
5
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/BadGuyALT/ps4/BadGuyALT_banner_bkg.tga.ckd/14bd261dc5ff04fe07dbf43bd5120bb6.ckd",
6
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/BadGuyALT/ps4/BadGuyALT_Coach_1.tga.ckd/91a49404cf91af20a6a29a62cd7fe687.ckd",
7
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/BadGuyALT/ps4/BadGuyALT_Cover_Generic.tga.ckd/29f7a61fcd65c2e5c98c6c4094a80e9e.ckd",
8
+ "cover_1024ImageUrl": "https://jd-s3.akamaized.net/public/map/BadGuyALT/BadGuyALT_Cover_1024.png/4cd8509626810a7b24897be2c4a0b1cf.png",
9
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/BadGuyALT/ps4/BadGuyALT_Cover_Online.tga.ckd/9e8a19581dae59b7a86f4b8e5d6fe8ae.ckd",
10
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/BadGuyALT/ps4/BadGuyALT_Cover_AlbumBkg.tga.ckd/c53d5cc9590d6c7881f41ba10cd3dd92.ckd",
11
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/BadGuyALT/ps4/BadGuyALT_Cover_AlbumCoach.tga.ckd/5a8905583477ce44d71cc2641db7b251.ckd",
12
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/BadGuyALT/BadGuyALT_Coach_1_Phone.png/67832e61c02dd2dd4bbd8110a795636f.png",
13
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/BadGuyALT/BadGuyALT_Cover_Phone.jpg/d0a543f63e831dc8fad44364107065ec.jpg",
14
+ "videoPreviewVideoURL": "https://jd-s3.akamaized.net/public/map/BadGuyALT/BadGuyALT_VideoPreview.webm/dff78645cc44caa8e6c2bf251bc5dad3.webm",
15
+ "map_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/BadGuyALT/ps4/BadGuyALT_map_bkg.tga.ckd/b99339d7a6889dd0bbb1730374d9680f.ckd"
16
+ },
17
+ "nx": {
18
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/BadGuyALT/nx/BadGuyALT_banner_bkg.tga.ckd/65090e24d2768b5e8d8ff3907d668fe3.ckd",
19
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/BadGuyALT/nx/BadGuyALT_Coach_1.tga.ckd/17dd87f46b1664b6aca0ec64cc1bae93.ckd",
20
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/BadGuyALT/nx/BadGuyALT_Cover_Generic.tga.ckd/645e71dc6f070bb824d66a120e2c86bd.ckd",
21
+ "cover_1024ImageUrl": "https://jd-s3.akamaized.net/public/map/BadGuyALT/BadGuyALT_Cover_1024.png/4cd8509626810a7b24897be2c4a0b1cf.png",
22
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/BadGuyALT/nx/BadGuyALT_Cover_Online.tga.ckd/3acd0687451f0bfb3e28d5a2cef92f4a.ckd",
23
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/BadGuyALT/nx/BadGuyALT_Cover_AlbumBkg.tga.ckd/728e334141660477b9e9d98b8e735969.ckd",
24
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/BadGuyALT/nx/BadGuyALT_Cover_AlbumCoach.tga.ckd/3ba736b0f4343e3b4ccb71339ecd8066.ckd",
25
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/BadGuyALT/BadGuyALT_Coach_1_Phone.png/67832e61c02dd2dd4bbd8110a795636f.png",
26
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/BadGuyALT/BadGuyALT_Cover_Phone.jpg/d0a543f63e831dc8fad44364107065ec.jpg",
27
+ "videoPreviewVideoURL": "https://jd-s3.akamaized.net/public/map/BadGuyALT/BadGuyALT_VideoPreview.webm/dff78645cc44caa8e6c2bf251bc5dad3.webm",
28
+ "map_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/BadGuyALT/nx/BadGuyALT_map_bkg.tga.ckd/fce2b973753db9aed69d1bd2e0718cae.ckd"
29
+ }
30
+ },
31
+ "audioPreviewData": "{\"__class\":\"MusicTrackData\",\"structure\":{\"__class\":\"MusicTrackStructure\",\"markers\":[0,21334,42667,64000,85334,106667,128000,149334,170667,192000,213334,234667,256000,277334,298667,320000,341334,362667,384000,405334,426667,448000,469334,490667,512000,533334,554667,576000,597334,618667,640000,661334,682667,704000,725334,746667,768000,789334,810667,832000,853334,874667,896000,917334,938667,960000,981334,1002667,1024000,1045334,1066667,1088000,1109334,1130667,1152000,1173334,1194667,1216000,1237334,1258667,1280000,1301334,1322667,1344000,1365334,1386667,1408000,1429334],\"signatures\":[{\"__class\":\"MusicSignature\",\"marker\":0,\"beats\":4}],\"startBeat\":-5,\"endBeat\":423,\"fadeStartBeat\":0,\"useFadeStartBeat\":false,\"fadeEndBeat\":0,\"useFadeEndBeat\":false,\"videoStartTime\":0,\"previewEntry\":0,\"previewLoopStart\":0,\"previewLoopEnd\":67,\"volume\":0,\"fadeInDuration\":0,\"fadeInType\":0,\"fadeOutDuration\":0,\"fadeOutType\":0},\"path\":\"\",\"url\":\"jmcs://jd-contents/badguyalt/badguyalt_AudioPreview.ogg\"}",
32
+ "coachCount": 1,
33
+ "credits": "Just Dance Best is an online mod made by Just Dance Alliance. We are not affiliated with Ubisoft nor own any rights over their copyrighted content and trademark. Written by Billie Eilish O’Connell and Finneas O’Connell. Published by Universal Music Publishing Canada on behalf of Universal Music Corp. / Kobalt Songs Music Publishing obo Last Frontier. Courtesy of Interscope Records under license from Universal Music Enterprises. All rights of the producer and other rightsholders to the recorded work reserved. Unless otherwise authorized, the duplication, rental, loan, exchange or use of this video game for public performance, broadcasting and online distribution to the public are prohibited.",
34
+ "difficulty": 4,
35
+ "doubleScoringType": -1,
36
+ "jdmAttributes": [],
37
+ "lyricsColor": "02FD6CFF",
38
+ "lyricsType": 0,
39
+ "mainCoach": -1,
40
+ "mapLength": 194.834,
41
+ "mapName": "BadGuyALT",
42
+ "mapPreviewMpd": "<?xml version=\"1.0\"?>\r\n<MPD xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"urn:mpeg:DASH:schema:MPD:2011\" xsi:schemaLocation=\"urn:mpeg:DASH:schema:MPD:2011\" type=\"static\" mediaPresentationDuration=\"PT30S\" minBufferTime=\"PT1S\" profiles=\"urn:webm:dash:profile:webm-on-demand:2012\">\r\n\t<Period id=\"0\" start=\"PT0S\" duration=\"PT30S\">\r\n\t\t<AdaptationSet id=\"0\" mimeType=\"video/webm\" codecs=\"vp8\" lang=\"eng\" maxWidth=\"720\" maxHeight=\"370\" subsegmentAlignment=\"true\" subsegmentStartsWithSAP=\"1\" bitstreamSwitching=\"true\">\r\n\t\t\t<Representation id=\"0\" bandwidth=\"495484\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/BadGuyALT/BadGuyALT_MapPreviewNoSoundCrop_LOW.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"613-1102\">\r\n\t\t\t\t\t<Initialization range=\"0-613\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"1\" bandwidth=\"1465213\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/BadGuyALT/BadGuyALT_MapPreviewNoSoundCrop_MID.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"614-1104\">\r\n\t\t\t\t\t<Initialization range=\"0-614\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"2\" bandwidth=\"2793835\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/BadGuyALT/BadGuyALT_MapPreviewNoSoundCrop_HIGH.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"614-1104\">\r\n\t\t\t\t\t<Initialization range=\"0-614\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"3\" bandwidth=\"3412790\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/BadGuyALT/BadGuyALT_MapPreviewNoSoundCrop_ULTRA.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"614-1104\">\r\n\t\t\t\t\t<Initialization range=\"0-614\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t</AdaptationSet>\r\n\t</Period>\r\n</MPD>\r\n",
43
+ "mode": 6,
44
+ "originalJDVersion": 2020,
45
+ "packages": {
46
+ "mapContent": "BadGuyALT_mapContent"
47
+ },
48
+ "parentMapName": "BadGuy",
49
+ "skuIds": [],
50
+ "songColors": {
51
+ "songColor_1A": "000699FF",
52
+ "songColor_1B": "20F4D0FF",
53
+ "songColor_2A": "FFEC1FFF",
54
+ "songColor_2B": "A17506FF"
55
+ },
56
+ "status": 3,
57
+ "sweatDifficulty": 2,
58
+ "tags": [
59
+ "Alternate",
60
+ "subscribedSong"
61
+ ],
62
+ "title": "bad guy",
63
+ "urls": {
64
+ "jmcs://jd-contents/BadGuyALT/BadGuyALT_AudioPreview.ogg": "https://jd-s3.akamaized.net/public/map/BadGuyALT/BadGuyALT_AudioPreview.ogg/cbee85dd683a014d3841b817b59b49a6.ogg",
65
+ "jmcs://jd-contents/BadGuyALT/BadGuyALT_MapPreviewNoSoundCrop_HIGH.vp8.webm": "https://jd-s3.akamaized.net/public/map/BadGuyALT/BadGuyALT_MapPreviewNoSoundCrop_HIGH.vp8.webm/4dd3f11e0938be86ba0093ff04eb6880.webm",
66
+ "jmcs://jd-contents/BadGuyALT/BadGuyALT_MapPreviewNoSoundCrop_HIGH.vp9.webm": "https://jd-s3.akamaized.net/public/map/BadGuyALT/BadGuyALT_MapPreviewNoSoundCrop_HIGH.vp9.webm/1f0c147f9b0778b6d347e56717dfeb6a.webm",
67
+ "jmcs://jd-contents/BadGuyALT/BadGuyALT_MapPreviewNoSoundCrop_LOW.vp8.webm": "https://jd-s3.akamaized.net/public/map/BadGuyALT/BadGuyALT_MapPreviewNoSoundCrop_LOW.vp8.webm/dfa089252f028ceedf03c490a80459a0.webm",
68
+ "jmcs://jd-contents/BadGuyALT/BadGuyALT_MapPreviewNoSoundCrop_LOW.vp9.webm": "https://jd-s3.akamaized.net/public/map/BadGuyALT/BadGuyALT_MapPreviewNoSoundCrop_LOW.vp9.webm/dbbaa56b4f183880dafdd4800d6f2971.webm",
69
+ "jmcs://jd-contents/BadGuyALT/BadGuyALT_MapPreviewNoSoundCrop_MID.vp8.webm": "https://jd-s3.akamaized.net/public/map/BadGuyALT/BadGuyALT_MapPreviewNoSoundCrop_MID.vp8.webm/b16774aad9463b33b91b30a7d624e68a.webm",
70
+ "jmcs://jd-contents/BadGuyALT/BadGuyALT_MapPreviewNoSoundCrop_MID.vp9.webm": "https://jd-s3.akamaized.net/public/map/BadGuyALT/BadGuyALT_MapPreviewNoSoundCrop_MID.vp9.webm/7afb20003d1dcdf450ff5836570cad53.webm",
71
+ "jmcs://jd-contents/BadGuyALT/BadGuyALT_MapPreviewNoSoundCrop_ULTRA.vp8.webm": "https://jd-s3.akamaized.net/public/map/BadGuyALT/BadGuyALT_MapPreviewNoSoundCrop_ULTRA.vp8.webm/0fd6928ed83d6629a4766bc4731bf28c.webm",
72
+ "jmcs://jd-contents/BadGuyALT/BadGuyALT_MapPreviewNoSoundCrop_ULTRA.vp9.webm": "https://jd-s3.akamaized.net/public/map/BadGuyALT/BadGuyALT_MapPreviewNoSoundCrop_ULTRA.vp9.webm/dac26f76feb2df2175c80c9a2a28a248.webm"
73
+ },
74
+ "serverChangelist": 455481,
75
+ "skupackages": {
76
+ "orbis": {
77
+ "md5": "ddc6c4e5d13ee67455b624889809047f",
78
+ "storageType": 0,
79
+ "url": "https://jd-s3.akamaized.net/public/map/BadGuyALT/ps4/BadGuyALT_MAIN_SCENE_ORBIS.zip/ddc6c4e5d13ee67455b624889809047f.zip",
80
+ "version": 23
81
+ },
82
+ "nx": {
83
+ "md5": "e38ac84f58f0ea48a50badf6ee21327d",
84
+ "storageType": 0,
85
+ "url": "https://jd-s3.akamaized.net/public/map/BadGuyALT/nx/BadGuyALT_MAIN_SCENE_NX.zip/e38ac84f58f0ea48a50badf6ee21327d.zip",
86
+ "version": 23
87
+ },
88
+ "pc": {
89
+ "md5": "0ad580c22ec270647abf531c60f19506",
90
+ "storageType": 0,
91
+ "url": "https://jd-s3.akamaized.net/public/map/BadGuyALT/pc/BadGuyALT_MAIN_SCENE_PC.zip/0ad580c22ec270647abf531c60f19506.zip",
92
+ "version": 14
93
+ },
94
+ "wiiu": {
95
+ "md5": "dc5200b2ea7b74bcf687c4db2ea1efbb",
96
+ "storageType": 0,
97
+ "url": "https://jd-s3.akamaized.net/public/map/BadGuyALT/wiiu/BadGuyALT_MAIN_SCENE_WIIU.zip/dc5200b2ea7b74bcf687c4db2ea1efbb.zip",
98
+ "version": 13
99
+ }
100
+ },
101
+ "mapType": "jdu",
102
+ "customTypeNameId": 20002121
103
+ }
justdanceonline-main/maps/BadLiar.json ADDED
@@ -0,0 +1,123 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "artist": "Selena Gomez",
3
+ "assets": {
4
+ "default": {
5
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/BadLiar/ps4/BadLiar_banner_bkg.tga.ckd/4d972c80e10342eee4190e1833340e26.ckd",
6
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/BadLiar/ps4/BadLiar_Coach_1.tga.ckd/70f10cdf111e9c96166aa86190d0d90d.ckd",
7
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/BadLiar/ps4/BadLiar_Cover_Generic.tga.ckd/6fd36991eab99741dc730a29d1724df3.ckd",
8
+ "cover_1024ImageUrl": "https://jd-s3.akamaized.net/public/map/BadLiar/BadLiar_Cover_1024.png/f0d5a13995a339240a1ef04948390147.png",
9
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/BadLiar/ps4/BadLiar_Cover_Online.tga.ckd/db5e1cb3a54582b9d9dddf7a1632c091.ckd",
10
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/BadLiar/ps4/BadLiar_Cover_AlbumBkg.tga.ckd/b713a88068fc841815b5ed9ce36d6ebe.ckd",
11
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/BadLiar/ps4/BadLiar_Cover_AlbumCoach.tga.ckd/ce39e66a6c8bc6abc387a4617686a93f.ckd",
12
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/BadLiar/BadLiar_Coach_1_Phone.png/0d30c243adb27ca78befe77347114c34.png",
13
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/BadLiar/BadLiar_Cover_Phone.jpg/fcefef00d6ca6a72dcc74c5e58fd735e.jpg",
14
+ "videoPreviewVideoURL": "https://jd-s3.akamaized.net/public/map/BadLiar/BadLiar_VideoPreview.webm/2804749f6b46810219f03c41f0d7cf56.webm",
15
+ "map_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/BadLiar/ps4/BadLiar_map_bkg.tga.ckd/e7e371122ad49f0b4aed500c72e859a3.ckd"
16
+ },
17
+ "nx": {
18
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/BadLiar/nx/BadLiar_banner_bkg.tga.ckd/4fa4222b259c09c5cab73d589f00c622.ckd",
19
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/BadLiar/nx/BadLiar_Coach_1.tga.ckd/c9600f2ffa572b13e5e61b55b32e6c26.ckd",
20
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/BadLiar/nx/BadLiar_Cover_Generic.tga.ckd/19634fc4bfb7f1d5c9418e52998b2519.ckd",
21
+ "cover_1024ImageUrl": "https://jd-s3.akamaized.net/public/map/BadLiar/BadLiar_Cover_1024.png/f0d5a13995a339240a1ef04948390147.png",
22
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/BadLiar/nx/BadLiar_Cover_Online.tga.ckd/1bd222eef056fd139ce06f7a76f5c170.ckd",
23
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/BadLiar/nx/BadLiar_Cover_AlbumBkg.tga.ckd/fcb48b5ba699e08841e15e063fa0af2c.ckd",
24
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/BadLiar/nx/BadLiar_Cover_AlbumCoach.tga.ckd/0835cc39d34364020d2ec9d8f4196018.ckd",
25
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/BadLiar/BadLiar_Coach_1_Phone.png/0d30c243adb27ca78befe77347114c34.png",
26
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/BadLiar/BadLiar_Cover_Phone.jpg/fcefef00d6ca6a72dcc74c5e58fd735e.jpg",
27
+ "videoPreviewVideoURL": "https://jd-s3.akamaized.net/public/map/BadLiar/BadLiar_VideoPreview.webm/2804749f6b46810219f03c41f0d7cf56.webm",
28
+ "map_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/BadLiar/nx/BadLiar_map_bkg.tga.ckd/01c1009600368976eca8fc2aeaa5af41.ckd"
29
+ },
30
+ "wiiu": {
31
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/BadLiar/wiiu/BadLiar_banner_bkg.tga.ckd/dce96bab80aa46b3e8263ea7ad5e763a.ckd",
32
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/BadLiar/wiiu/BadLiar_Coach_1.tga.ckd/e2df989f0fd1d68772651096eac23929.ckd",
33
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/BadLiar/wiiu/BadLiar_Cover_Generic.tga.ckd/1d4a14a53a6b4ac77ae5a5bbe3b1bedf.ckd",
34
+ "cover_1024ImageUrl": "https://jd-s3.akamaized.net/public/map/BadLiar/BadLiar_Cover_1024.png/f0d5a13995a339240a1ef04948390147.png",
35
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/BadLiar/wiiu/BadLiar_Cover_Online.tga.ckd/8eb815cd09ffad741c0d2523cf98e44b.ckd",
36
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/BadLiar/wiiu/BadLiar_Cover_AlbumBkg.tga.ckd/38644a421a4e3c789843b4d44deef3b8.ckd",
37
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/BadLiar/wiiu/BadLiar_Cover_AlbumCoach.tga.ckd/097199c9ec50b83e5ef9a9cca46c4282.ckd",
38
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/BadLiar/BadLiar_Coach_1_Phone.png/0d30c243adb27ca78befe77347114c34.png",
39
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/BadLiar/BadLiar_Cover_Phone.jpg/fcefef00d6ca6a72dcc74c5e58fd735e.jpg",
40
+ "videoPreviewVideoURL": "https://jd-s3.akamaized.net/public/map/BadLiar/BadLiar_VideoPreview.webm/2804749f6b46810219f03c41f0d7cf56.webm"
41
+ }
42
+ },
43
+ "audioPreviewData": "{\"__class\":\"MusicTrackData\",\"structure\":{\"__class\":\"MusicTrackStructure\",\"markers\":[0,23808,47616,71424,95232,119040,142848,166608,190416,214224,238032,261840,285648,309456,333216,357024,380832,404640,428448,452256,476064,499872,523632,547440,571248,595056,618864,642672,666480,690240,714048,737856,761664,785472,809280,833088,856896,880656,904464,928272,952080,975888,999696,1023504,1047312,1071072,1094880,1118688,1142496,1166304,1190112,1213920,1237680,1261488,1285296,1309104,1332912,1356720,1380528,1404336,1428096],\"signatures\":[{\"__class\":\"MusicSignature\",\"marker\":0,\"beats\":4}],\"startBeat\":-5,\"endBeat\":434,\"fadeStartBeat\":0,\"useFadeStartBeat\":false,\"fadeEndBeat\":0,\"useFadeEndBeat\":false,\"videoStartTime\":0,\"previewEntry\":0,\"previewLoopStart\":0,\"previewLoopEnd\":60,\"volume\":0,\"fadeInDuration\":0,\"fadeInType\":0,\"fadeOutDuration\":0,\"fadeOutType\":0},\"path\":\"\",\"url\":\"jmcs://jd-contents/badliar/badliar_AudioPreview.ogg\"}",
44
+ "coachCount": 1,
45
+ "credits": "Just Dance Best is an online mod made by Just Dance Alliance. We are not affiliated with Ubisoft nor own any rights over their copyrighted content and trademark. Written by Julia Michaels, Ian Kirkpatrick, David Byrne, Selena Gomez, Tina Weymouth, Justin Tranter and Christopher Frantz. Published by WB Music Corp. (ASCAP), Index Music, Inc. (ASCAP), Warner-Tamerlane Publishing Corp. (BMI), Justin's School For Girls (BMI), Thanks For The Songs Richard (BMI) and Buckley Tenenbaum Publishing (BMI). All Rights on behalf of Itself and Index Music, Inc. administered by WB Music Corp. All Rights on behalf of Itself, Justin's School For Girls, Thanks For The Songs Richard and Buckley Tenenbaum Publishing administered by Warner-Tamerlane Publishing Corp. / Universal Music Corp. on behalf of Itself and SMG Tunes. Courtesy of Interscope Records under license from Universal Music Enterprises. All rights of the producer and other rightholders to the recorded work reserved. Unless otherwise authorized, the duplication, rental, loan, exchange or use of this video game for public performance, broadcasting and online distribution to the public are prohibited.",
46
+ "difficulty": 1,
47
+ "doubleScoringType": -1,
48
+ "jdmAttributes": [],
49
+ "lyricsColor": "F151D8FF",
50
+ "lyricsType": 0,
51
+ "mainCoach": -1,
52
+ "mapLength": 217.695,
53
+ "mapName": "BadLiar",
54
+ "mapPreviewMpd": "<?xml version=\"1.0\"?>\r\n<MPD xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"urn:mpeg:DASH:schema:MPD:2011\" xsi:schemaLocation=\"urn:mpeg:DASH:schema:MPD:2011\" type=\"static\" mediaPresentationDuration=\"PT30S\" minBufferTime=\"PT1S\" profiles=\"urn:webm:dash:profile:webm-on-demand:2012\">\r\n\t<Period id=\"0\" start=\"PT0S\" duration=\"PT30S\">\r\n\t\t<AdaptationSet id=\"0\" mimeType=\"video/webm\" codecs=\"vp8\" lang=\"eng\" maxWidth=\"720\" maxHeight=\"370\" subsegmentAlignment=\"true\" subsegmentStartsWithSAP=\"1\" bitstreamSwitching=\"true\">\r\n\t\t\t<Representation id=\"0\" bandwidth=\"496599\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/BadLiar/BadLiar_MapPreviewNoSoundCrop_LOW.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"620-1109\">\r\n\t\t\t\t\t<Initialization range=\"0-620\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"1\" bandwidth=\"1449653\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/BadLiar/BadLiar_MapPreviewNoSoundCrop_MID.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"621-1111\">\r\n\t\t\t\t\t<Initialization range=\"0-621\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"2\" bandwidth=\"2591108\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/BadLiar/BadLiar_MapPreviewNoSoundCrop_HIGH.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"621-1111\">\r\n\t\t\t\t\t<Initialization range=\"0-621\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"3\" bandwidth=\"2920451\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/BadLiar/BadLiar_MapPreviewNoSoundCrop_ULTRA.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"621-1111\">\r\n\t\t\t\t\t<Initialization range=\"0-621\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t</AdaptationSet>\r\n\t</Period>\r\n</MPD>\r\n",
55
+ "mode": 6,
56
+ "originalJDVersion": 2018,
57
+ "packages": {
58
+ "mapContent": "BadLiar_mapContent"
59
+ },
60
+ "parentMapName": "BadLiar",
61
+ "skuIds": [
62
+ "jd2018-nx-all",
63
+ "jd2018-ps4-scea",
64
+ "jd2018-ps4-scee",
65
+ "jd2018-wiiu-noa",
66
+ "jd2018-wiiu-noe",
67
+ "jd2018-xone-emea",
68
+ "jd2018-xone-ncsa"
69
+ ],
70
+ "songColors": {
71
+ "songColor_1A": "93D9F9FF",
72
+ "songColor_1B": "0294C9FF",
73
+ "songColor_2A": "455256FF",
74
+ "songColor_2B": "071E1EFF"
75
+ },
76
+ "status": 3,
77
+ "sweatDifficulty": 1,
78
+ "tags": [
79
+ "Main",
80
+ "subscribedSong",
81
+ "CnUnlimited2018"
82
+ ],
83
+ "title": "Bad Liar",
84
+ "urls": {
85
+ "jmcs://jd-contents/BadLiar/BadLiar_AudioPreview.ogg": "https://jd-s3.akamaized.net/public/map/BadLiar/BadLiar_AudioPreview.ogg/e6f9ecff4749c84181023e7d1930bdf9.ogg",
86
+ "jmcs://jd-contents/BadLiar/BadLiar_MapPreviewNoSoundCrop_HIGH.vp8.webm": "https://jd-s3.akamaized.net/public/map/BadLiar/BadLiar_MapPreviewNoSoundCrop_HIGH.vp8.webm/1b1515544e143ee9fd23b06d2df8aced.webm",
87
+ "jmcs://jd-contents/BadLiar/BadLiar_MapPreviewNoSoundCrop_HIGH.vp9.webm": "https://jd-s3.akamaized.net/public/map/BadLiar/BadLiar_MapPreviewNoSoundCrop_HIGH.vp9.webm/b7448d108be67883aa2dc1c4b2a22009.webm",
88
+ "jmcs://jd-contents/BadLiar/BadLiar_MapPreviewNoSoundCrop_LOW.vp8.webm": "https://jd-s3.akamaized.net/public/map/BadLiar/BadLiar_MapPreviewNoSoundCrop_LOW.vp8.webm/a3b97617501eb2e1926b954a97b1aa1b.webm",
89
+ "jmcs://jd-contents/BadLiar/BadLiar_MapPreviewNoSoundCrop_LOW.vp9.webm": "https://jd-s3.akamaized.net/public/map/BadLiar/BadLiar_MapPreviewNoSoundCrop_LOW.vp9.webm/5ef0456790b88611091fa87a4fe0be05.webm",
90
+ "jmcs://jd-contents/BadLiar/BadLiar_MapPreviewNoSoundCrop_MID.vp8.webm": "https://jd-s3.akamaized.net/public/map/BadLiar/BadLiar_MapPreviewNoSoundCrop_MID.vp8.webm/79b722090c5dc9195f6a1d5cf7f0c2a5.webm",
91
+ "jmcs://jd-contents/BadLiar/BadLiar_MapPreviewNoSoundCrop_MID.vp9.webm": "https://jd-s3.akamaized.net/public/map/BadLiar/BadLiar_MapPreviewNoSoundCrop_MID.vp9.webm/cea44e9b29debcb9025e592b1b4359de.webm",
92
+ "jmcs://jd-contents/BadLiar/BadLiar_MapPreviewNoSoundCrop_ULTRA.vp8.webm": "https://jd-s3.akamaized.net/public/map/BadLiar/BadLiar_MapPreviewNoSoundCrop_ULTRA.vp8.webm/384dc448914ba770d0206d13f1e999c6.webm",
93
+ "jmcs://jd-contents/BadLiar/BadLiar_MapPreviewNoSoundCrop_ULTRA.vp9.webm": "https://jd-s3.akamaized.net/public/map/BadLiar/BadLiar_MapPreviewNoSoundCrop_ULTRA.vp9.webm/183e8171f2072c073370b613754aec02.webm"
94
+ },
95
+ "serverChangelist": 455481,
96
+ "skupackages": {
97
+ "orbis": {
98
+ "md5": "d2a0387474929dc0fd34e4f011cf651e",
99
+ "storageType": 0,
100
+ "url": "https://jd-s3.akamaized.net/public/map/BadLiar/ps4/BadLiar_MAIN_SCENE_ORBIS.zip/d2a0387474929dc0fd34e4f011cf651e.zip",
101
+ "version": 3
102
+ },
103
+ "nx": {
104
+ "md5": "9760c7c46d22323900e3974da4d907bf",
105
+ "storageType": 0,
106
+ "url": "https://jd-s3.akamaized.net/public/map/BadLiar/nx/BadLiar_MAIN_SCENE_NX.zip/9760c7c46d22323900e3974da4d907bf.zip",
107
+ "version": 3
108
+ },
109
+ "pc": {
110
+ "md5": "74bb80b8272ba85d7af062bd3ff42efa",
111
+ "storageType": 0,
112
+ "url": "https://jdbest-cdn.s3.amazonaws.com/public/map/BadLiar/pc/74bb80b8272ba85d7af062bd3ff42efa.zip",
113
+ "version": 1
114
+ },
115
+ "wiiu": {
116
+ "md5": "ea36a2ab99485024a0626b55b1beb364",
117
+ "storageType": 0,
118
+ "url": "https://jd-s3.akamaized.net/public/map/BadLiar/wiiu/BadLiar_MAIN_SCENE_WIIU.zip/ea36a2ab99485024a0626b55b1beb364.zip",
119
+ "version": 3
120
+ }
121
+ },
122
+ "mapType": "jdu"
123
+ }
justdanceonline-main/maps/Bailando1997.json ADDED
@@ -0,0 +1,90 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "artist": "Paradisio Ft. Dj Patrick Samoy",
3
+ "assets": {
4
+ "default": {
5
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/Bailando1997/Bailando1997_banner_bkg.jpg/549a6455024493752e61d6089662bcc4.jpg",
6
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/Bailando1997/Bailando1997_Coach_1.png/99351b318058520e7684058e562b406d.png",
7
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/Bailando1997/Bailando1997_Cover_Generic.jpg/ea4c1479b6cc2c10d81f3dd8dc410751.jpg",
8
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/Bailando1997/Bailando1997_Cover_Online.jpg/61311c0f88438b722738c2d6ea94de23.jpg",
9
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/Bailando1997/Bailando1997_Cover_AlbumBkg.jpg/e551f3fbb6a915a11a596015f4ca57ac.jpg",
10
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/Bailando1997/Bailando1997_Cover_AlbumCoach.png/3bb25c7d155a926560660cf26b56d51d.png",
11
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/Bailando1997/Bailando1997_Coach_1_Phone.png/af5c5e557b5c0808e4f2ae8346f7475e.png",
12
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/Bailando1997/Bailando1997_Cover_Phone.jpg/61311c0f88438b722738c2d6ea94de23.jpg"
13
+ },
14
+ "nx": {
15
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/Bailando1997/Bailando1997_banner_bkg.jpg/549a6455024493752e61d6089662bcc4.jpg",
16
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/Bailando1997/Bailando1997_Coach_1.png/99351b318058520e7684058e562b406d.png",
17
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/Bailando1997/Bailando1997_Cover_Generic.jpg/ea4c1479b6cc2c10d81f3dd8dc410751.jpg",
18
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/Bailando1997/Bailando1997_Cover_Online.jpg/61311c0f88438b722738c2d6ea94de23.jpg",
19
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/Bailando1997/Bailando1997_Cover_AlbumBkg.jpg/e551f3fbb6a915a11a596015f4ca57ac.jpg",
20
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/Bailando1997/Bailando1997_Cover_AlbumCoach.png/3bb25c7d155a926560660cf26b56d51d.png",
21
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/Bailando1997/Bailando1997_Coach_1_Phone.png/af5c5e557b5c0808e4f2ae8346f7475e.png",
22
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/Bailando1997/Bailando1997_Cover_Phone.jpg/61311c0f88438b722738c2d6ea94de23.jpg"
23
+ }
24
+ },
25
+ "audioPreviewData": "{\"__class\":\"MusicTrackData\",\"structure\":{\"__class\":\"MusicTrackStructure\",\"markers\":[0,21686,43373,65060,86747,108433,130120,151807,173494,195180,216867,238554,260241,281927,303614,325301,346988,368674,390361,412048,433735,455421,477108,498795,520482,542168,563855,585542,607229,628915,650602,672289,693976,715662,737349,759036,780723,802409,824096,845783,867470,889156,910843,932530,954217,975903,997590,1019277,1040964,1062650,1084337,1106024,1127711,1149397,1171084,1192771,1214458,1236144,1257831,1279518,1301205,1322891,1344578,1366265,1387952,1409638,1431325],\"signatures\":[{\"__class\":\"MusicSignature\",\"marker\":0,\"beats\":4}],\"startBeat\":-8,\"endBeat\":459,\"fadeStartBeat\":0,\"useFadeStartBeat\":false,\"fadeEndBeat\":0,\"useFadeEndBeat\":false,\"videoStartTime\":0,\"previewEntry\":0,\"previewLoopStart\":0,\"previewLoopEnd\":66,\"volume\":0,\"fadeInDuration\":0,\"fadeInType\":0,\"fadeOutDuration\":0,\"fadeOutType\":0},\"path\":\"\",\"url\":\"jmcs://jd-contents/bailando1997/bailando1997_AudioPreview.ogg\"}",
26
+ "coachCount": 1,
27
+ "credits": "Just Dance Best is an online mod made by Just Dance Alliance. We are not affiliated with Ubisoft nor own any rights over their copyrighted content and trademark. Written by Patrick Samoy and Maria Garcia Asensio. Published by Universal Music Publishing Canada on behalf of PolyGram-Music-Publishing. Courtesy of P. Samoy Recordings. / Eurodance Floor Records under exclusive license to Idm Media Network S.r.l.",
28
+ "difficulty": 1,
29
+ "doubleScoringType": -1,
30
+ "jdmAttributes": [],
31
+ "lyricsColor": "E81A87FF",
32
+ "lyricsType": 0,
33
+ "mainCoach": -1,
34
+ "mapLength": 210.993,
35
+ "mapName": "Bailando1997",
36
+ "mapPreviewMpd": "<?xml version=\"1.0\"?>\r\n<MPD xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"urn:mpeg:DASH:schema:MPD:2011\" xsi:schemaLocation=\"urn:mpeg:DASH:schema:MPD:2011\" type=\"static\" mediaPresentationDuration=\"PT30S\" minBufferTime=\"PT1S\" profiles=\"urn:webm:dash:profile:webm-on-demand:2012\">\r\n\t<Period id=\"0\" start=\"PT0S\" duration=\"PT30S\">\r\n\t\t<AdaptationSet id=\"0\" mimeType=\"video/webm\" codecs=\"vp8\" lang=\"eng\" maxWidth=\"720\" maxHeight=\"370\" subsegmentAlignment=\"true\" subsegmentStartsWithSAP=\"1\" bitstreamSwitching=\"true\">\r\n\t\t\t<Representation id=\"0\" bandwidth=\"497048\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/Bailando1997/Bailando1997_MapPreviewNoSoundCrop_LOW.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"650-1139\">\r\n\t\t\t\t\t<Initialization range=\"0-650\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"1\" bandwidth=\"1476144\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/Bailando1997/Bailando1997_MapPreviewNoSoundCrop_MID.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"651-1141\">\r\n\t\t\t\t\t<Initialization range=\"0-651\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"2\" bandwidth=\"2910022\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/Bailando1997/Bailando1997_MapPreviewNoSoundCrop_HIGH.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"651-1141\">\r\n\t\t\t\t\t<Initialization range=\"0-651\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"3\" bandwidth=\"3727085\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/Bailando1997/Bailando1997_MapPreviewNoSoundCrop_ULTRA.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"651-1141\">\r\n\t\t\t\t\t<Initialization range=\"0-651\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t</AdaptationSet>\r\n\t</Period>\r\n</MPD>\r\n",
37
+ "mode": 6,
38
+ "originalJDVersion": 2021,
39
+ "packages": {
40
+ "mapContent": "Bailando1997_mapContent"
41
+ },
42
+ "parentMapName": "Bailando1997",
43
+ "skuIds": [],
44
+ "songColors": {
45
+ "songColor_1A": "342931FF",
46
+ "songColor_1B": "A82281FF",
47
+ "songColor_2A": "BE8D53FF",
48
+ "songColor_2B": "C6BBD5FF"
49
+ },
50
+ "status": 3,
51
+ "sweatDifficulty": 2,
52
+ "tags": [
53
+ "Main",
54
+ "subscribedSong"
55
+ ],
56
+ "title": "Bailando",
57
+ "serverChangelist": 455481,
58
+ "skupackages": {
59
+ "orbis": {
60
+ "md5": "dccc2096d88e5d2acf26f845b7ecabd9",
61
+ "storageType": 0,
62
+ "url": "https://jdcn-console.cdn.ubisoft.cn/public/map/Bailando1997/ps4/Bailando1997_MAIN_SCENE_ORBIS.zip/dccc2096d88e5d2acf26f845b7ecabd9.zip",
63
+ "version": 1
64
+ },
65
+ "nx": {
66
+ "md5": "d7b0c6b6fd64edef0e6e61bbe259c045",
67
+ "storageType": 0,
68
+ "url": "https://jdcn-console.cdn.ubisoft.cn/public/map/Bailando1997/nx/Bailando1997_MAIN_SCENE_NX.zip/d7b0c6b6fd64edef0e6e61bbe259c045.zip",
69
+ "version": 1
70
+ },
71
+ "pc": {
72
+ "md5": "4e8704dcc18cc8ebbf7fd98aa5215463",
73
+ "storageType": 0,
74
+ "url": "https://jdbest-cdn.s3.amazonaws.com/public/map/Bailando1997/pc/4e8704dcc18cc8ebbf7fd98aa5215463.zip",
75
+ "version": 1
76
+ }
77
+ },
78
+ "mapType": "jdu",
79
+ "urls": {
80
+ "jmcs://jd-contents/Bailando1997/Bailando1997_AudioPreview.ogg": "https://jdcn-console.cdn.ubisoft.cn/public/map/Bailando1997/Bailando1997_AudioPreview.ogg/de3676364f235a46c0d02a67cf38f5a0.ogg",
81
+ "jmcs://jd-contents/Bailando1997/Bailando1997_MapPreviewNoSoundCrop_HIGH.vp8.webm": "https://jdcn-console.cdn.ubisoft.cn/public/map/Bailando1997/Bailando1997_MapPreviewNoSoundCrop_HIGH.vp8.webm/c65d119a19dd45a264239ab33ba80c73.webm",
82
+ "jmcs://jd-contents/Bailando1997/Bailando1997_MapPreviewNoSoundCrop_HIGH.vp9.webm": "https://jdcn-console.cdn.ubisoft.cn/public/map/Bailando1997/Bailando1997_MapPreviewNoSoundCrop_HIGH.vp9.webm/8cc1fd3d7dee563478c0297e60563808.webm",
83
+ "jmcs://jd-contents/Bailando1997/Bailando1997_MapPreviewNoSoundCrop_LOW.vp8.webm": "https://jdcn-console.cdn.ubisoft.cn/public/map/Bailando1997/Bailando1997_MapPreviewNoSoundCrop_LOW.vp8.webm/e86db7b645342a3949f5c1a5ce30b99b.webm",
84
+ "jmcs://jd-contents/Bailando1997/Bailando1997_MapPreviewNoSoundCrop_LOW.vp9.webm": "https://jdcn-console.cdn.ubisoft.cn/public/map/Bailando1997/Bailando1997_MapPreviewNoSoundCrop_LOW.vp9.webm/b57553c6fec3745d2c290fcc8f2bcbc4.webm",
85
+ "jmcs://jd-contents/Bailando1997/Bailando1997_MapPreviewNoSoundCrop_MID.vp8.webm": "https://jdcn-console.cdn.ubisoft.cn/public/map/Bailando1997/Bailando1997_MapPreviewNoSoundCrop_MID.vp8.webm/f85a58b6f71691c14df28b0bb2d94024.webm",
86
+ "jmcs://jd-contents/Bailando1997/Bailando1997_MapPreviewNoSoundCrop_MID.vp9.webm": "https://jdcn-console.cdn.ubisoft.cn/public/map/Bailando1997/Bailando1997_MapPreviewNoSoundCrop_MID.vp9.webm/19daf8fddf60cfaec2da4d9dcd5cecce.webm",
87
+ "jmcs://jd-contents/Bailando1997/Bailando1997_MapPreviewNoSoundCrop_ULTRA.vp8.webm": "https://jdcn-console.cdn.ubisoft.cn/public/map/Bailando1997/Bailando1997_MapPreviewNoSoundCrop_ULTRA.vp8.webm/8cb8b0b20ffad19af8c831040074c0c8.webm",
88
+ "jmcs://jd-contents/Bailando1997/Bailando1997_MapPreviewNoSoundCrop_ULTRA.vp9.webm": "https://jdcn-console.cdn.ubisoft.cn/public/map/Bailando1997/Bailando1997_MapPreviewNoSoundCrop_ULTRA.vp9.webm/fca3aed63fbd6d33221b8e265149b960.webm"
89
+ }
90
+ }
justdanceonline-main/maps/Bailar.json ADDED
@@ -0,0 +1,114 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "artist": "Deorro Ft. Elvis Crespo",
3
+ "assets": {
4
+ "default": {
5
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/Bailar/Bailar_banner_bkg.jpg/6ea2626208f0514aa0cfa58df98d1229.jpg",
6
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/Bailar/Bailar_Coach_1.png/f413bd1ef18c46cd90ab758ba1c522cd.png",
7
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/Bailar/Bailar_Cover_Generic.jpg/1203e3301e835e86b6c2b0cb2d727125.jpg",
8
+ "cover_1024ImageUrl": "https://jd-s3.akamaized.net/public/map/Bailar/Bailar_Cover_1024.png/9733c3d02efdd6429ce2f2cbe0938ff8.png",
9
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/Bailar/Bailar_Cover_Online.jpg/61cbca0835f57f521ea8367fd39cdf36.jpg",
10
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/Bailar/Bailar_Cover_AlbumBkg.jpg/99246e6b73bb706fea3a6f5faedb0b35.jpg",
11
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/Bailar/Bailar_Cover_AlbumCoach.png/4641a76d9d06e31e13cef846f8b7d46d.png",
12
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/Bailar/Bailar_Coach_1_Phone.png/2bd86ca7d28720434a0d801242a2fb4c.png",
13
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/Bailar/Bailar_Cover_Phone.jpg/61cbca0835f57f521ea8367fd39cdf36.jpg",
14
+ "videoPreviewVideoURL": "https://jd-s3.akamaized.net/public/map/Bailar/Bailar_VideoPreview.webm/1b03ca676f959cb458867c5dc445bfba.webm"
15
+ },
16
+ "nx": {
17
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/Bailar/Bailar_banner_bkg.jpg/6ea2626208f0514aa0cfa58df98d1229.jpg",
18
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/Bailar/Bailar_Coach_1.png/f413bd1ef18c46cd90ab758ba1c522cd.png",
19
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/Bailar/Bailar_Cover_Generic.jpg/1203e3301e835e86b6c2b0cb2d727125.jpg",
20
+ "cover_1024ImageUrl": "https://jd-s3.akamaized.net/public/map/Bailar/Bailar_Cover_1024.png/9733c3d02efdd6429ce2f2cbe0938ff8.png",
21
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/Bailar/Bailar_Cover_Online.jpg/61cbca0835f57f521ea8367fd39cdf36.jpg",
22
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/Bailar/Bailar_Cover_AlbumBkg.jpg/99246e6b73bb706fea3a6f5faedb0b35.jpg",
23
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/Bailar/Bailar_Cover_AlbumCoach.png/4641a76d9d06e31e13cef846f8b7d46d.png",
24
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/Bailar/Bailar_Coach_1_Phone.png/2bd86ca7d28720434a0d801242a2fb4c.png",
25
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/Bailar/Bailar_Cover_Phone.jpg/61cbca0835f57f521ea8367fd39cdf36.jpg",
26
+ "videoPreviewVideoURL": "https://jd-s3.akamaized.net/public/map/Bailar/Bailar_VideoPreview.webm/1b03ca676f959cb458867c5dc445bfba.webm"
27
+ },
28
+ "wiiu": {
29
+ "banner_bkgImageUrl": "https://jd-s3.akamaized.net/public/map/Bailar/wiiu/Bailar_banner_bkg.tga.ckd/39eebe2386cb6e33ce97c32429389472.ckd",
30
+ "coach1ImageUrl": "https://jd-s3.akamaized.net/public/map/Bailar/wiiu/Bailar_Coach_1.tga.ckd/ec69cdd45ad4fb4cc05a296ff67fbb80.ckd",
31
+ "coverImageUrl": "https://jd-s3.akamaized.net/public/map/Bailar/wiiu/Bailar_Cover_Generic.tga.ckd/622360f4c210d0943434ad7cdbf8e8f3.ckd",
32
+ "cover_1024ImageUrl": "https://jd-s3.akamaized.net/public/map/Bailar/Bailar_Cover_1024.png/9733c3d02efdd6429ce2f2cbe0938ff8.png",
33
+ "cover_smallImageUrl": "https://jd-s3.akamaized.net/public/map/Bailar/wiiu/Bailar_Cover_Online.tga.ckd/3f17cdcc7ca95121df33d1792f67443c.ckd",
34
+ "expandBkgImageUrl": "https://jd-s3.akamaized.net/public/map/Bailar/wiiu/Bailar_Cover_AlbumBkg.tga.ckd/86c8b138f5e33896373b7ee96aae7fed.ckd",
35
+ "expandCoachImageUrl": "https://jd-s3.akamaized.net/public/map/Bailar/wiiu/Bailar_Cover_AlbumCoach.tga.ckd/789f9906e8fdfe1ffe87d8757581e7c2.ckd",
36
+ "phoneCoach1ImageUrl": "https://jd-s3.akamaized.net/public/map/Bailar/Bailar_Coach_1_Phone.png/2bd86ca7d28720434a0d801242a2fb4c.png",
37
+ "phoneCoverImageUrl": "https://jd-s3.akamaized.net/public/map/Bailar/Bailar_Cover_Phone.jpg/61cbca0835f57f521ea8367fd39cdf36.jpg",
38
+ "videoPreviewVideoURL": "https://jd-s3.akamaized.net/public/map/Bailar/Bailar_VideoPreview.webm/1b03ca676f959cb458867c5dc445bfba.webm"
39
+ }
40
+ },
41
+ "audioPreviewData": "{\"__class\":\"MusicTrackData\",\"structure\":{\"__class\":\"MusicTrackStructure\",\"markers\":[0,22512,45024,67536,90000,112512,135024,157535,179999,202511,225023,247535,269999,292511,315023,337535,359999,382511,405023,427535,449999,472511,495022,517534,539998,562510,585022,607534,629998,652510,675022,697534,719998,742510,765022,787534,809997,832509,855021,877533,899997,922509,945021,967533,989997,1012509,1035021,1057533,1079997,1102509,1125020,1147532,1169996,1192508,1215020,1237532,1259996,1282508,1305020,1327532,1349996,1372508,1395020,1417532,1439996],\"signatures\":[{\"__class\":\"MusicSignature\",\"marker\":0,\"beats\":4}],\"startBeat\":-6,\"endBeat\":342,\"fadeStartBeat\":0,\"useFadeStartBeat\":false,\"fadeEndBeat\":0,\"useFadeEndBeat\":false,\"videoStartTime\":0,\"previewEntry\":0,\"previewLoopStart\":0,\"previewLoopEnd\":64,\"volume\":0,\"fadeInDuration\":0,\"fadeInType\":0,\"fadeOutDuration\":0,\"fadeOutType\":0},\"path\":\"\",\"url\":\"jmcs://jd-contents/bailar/bailar_AudioPreview.ogg\"}",
42
+ "coachCount": 1,
43
+ "credits": "Just Dance Best is an online mod made by Just Dance Alliance. We are not affiliated with Ubisoft nor own any rights over their copyrighted content and trademark. All rights of the producer and other rightholders to the recorded work reserved. Unless otherwise authorized, the duplication, rental, loan, exchange or use of this video game for public performance, broadcasting and online distribution to the public are prohibited.",
44
+ "difficulty": 1,
45
+ "doubleScoringType": -1,
46
+ "jdmAttributes": [],
47
+ "lyricsColor": "B219D9FF",
48
+ "lyricsType": 0,
49
+ "mainCoach": -1,
50
+ "mapLength": 163.126,
51
+ "mapName": "Bailar",
52
+ "mapPreviewMpd": "<?xml version=\"1.0\"?>\r\n<MPD xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"urn:mpeg:DASH:schema:MPD:2011\" xsi:schemaLocation=\"urn:mpeg:DASH:schema:MPD:2011\" type=\"static\" mediaPresentationDuration=\"PT30S\" minBufferTime=\"PT1S\" profiles=\"urn:webm:dash:profile:webm-on-demand:2012\">\r\n\t<Period id=\"0\" start=\"PT0S\" duration=\"PT30S\">\r\n\t\t<AdaptationSet id=\"0\" mimeType=\"video/webm\" codecs=\"vp8\" lang=\"eng\" maxWidth=\"720\" maxHeight=\"370\" subsegmentAlignment=\"true\" subsegmentStartsWithSAP=\"1\" bitstreamSwitching=\"true\">\r\n\t\t\t<Representation id=\"0\" bandwidth=\"496980\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/Bailar/Bailar_MapPreviewNoSoundCrop_LOW.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"619-1108\">\r\n\t\t\t\t\t<Initialization range=\"0-619\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"1\" bandwidth=\"1450135\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/Bailar/Bailar_MapPreviewNoSoundCrop_MID.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"620-1110\">\r\n\t\t\t\t\t<Initialization range=\"0-620\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"2\" bandwidth=\"1897162\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/Bailar/Bailar_MapPreviewNoSoundCrop_HIGH.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"620-1110\">\r\n\t\t\t\t\t<Initialization range=\"0-620\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t\t<Representation id=\"3\" bandwidth=\"1904082\">\r\n\t\t\t\t<BaseURL>jmcs://jd-contents/Bailar/Bailar_MapPreviewNoSoundCrop_ULTRA.vp8.webm</BaseURL>\r\n\t\t\t\t<SegmentBase indexRange=\"620-1110\">\r\n\t\t\t\t\t<Initialization range=\"0-620\" />\r\n\t\t\t\t</SegmentBase>\r\n\t\t\t</Representation>\r\n\t\t</AdaptationSet>\r\n\t</Period>\r\n</MPD>\r\n",
53
+ "mode": 6,
54
+ "originalJDVersion": 2017,
55
+ "packages": {
56
+ "mapContent": "Bailar_mapContent"
57
+ },
58
+ "parentMapName": "Bailar",
59
+ "skuIds": [
60
+ "jd2017-pc-ww"
61
+ ],
62
+ "songColors": {
63
+ "songColor_1A": "00BB9FFF",
64
+ "songColor_1B": "004E77FF",
65
+ "songColor_2A": "FFE591FF",
66
+ "songColor_2B": "B85B33FF"
67
+ },
68
+ "status": 5,
69
+ "sweatDifficulty": 1,
70
+ "tags": [
71
+ "Main",
72
+ "freeSong"
73
+ ],
74
+ "title": "Bailar",
75
+ "urls": {
76
+ "jmcs://jd-contents/Bailar/Bailar_AudioPreview.ogg": "https://jd-s3.akamaized.net/public/map/Bailar/Bailar_AudioPreview.ogg/f5e1c3098233633a632c6ded826a6624.ogg",
77
+ "jmcs://jd-contents/Bailar/Bailar_MapPreviewNoSoundCrop_HIGH.vp8.webm": "https://jd-s3.akamaized.net/public/map/Bailar/Bailar_MapPreviewNoSoundCrop_HIGH.vp8.webm/d3dd37580d47b0cea3e1cae70201fa59.webm",
78
+ "jmcs://jd-contents/Bailar/Bailar_MapPreviewNoSoundCrop_HIGH.vp9.webm": "https://jd-s3.akamaized.net/public/map/Bailar/Bailar_MapPreviewNoSoundCrop_HIGH.vp9.webm/2a44bb9424c537a869e0956a1c3a62ca.webm",
79
+ "jmcs://jd-contents/Bailar/Bailar_MapPreviewNoSoundCrop_LOW.vp8.webm": "https://jd-s3.akamaized.net/public/map/Bailar/Bailar_MapPreviewNoSoundCrop_LOW.vp8.webm/c7c65678b6b1046a69432e403699b590.webm",
80
+ "jmcs://jd-contents/Bailar/Bailar_MapPreviewNoSoundCrop_LOW.vp9.webm": "https://jd-s3.akamaized.net/public/map/Bailar/Bailar_MapPreviewNoSoundCrop_LOW.vp9.webm/d841dc193e8dde6a84d96dae67880c11.webm",
81
+ "jmcs://jd-contents/Bailar/Bailar_MapPreviewNoSoundCrop_MID.vp8.webm": "https://jd-s3.akamaized.net/public/map/Bailar/Bailar_MapPreviewNoSoundCrop_MID.vp8.webm/363d55cd52ede89bc76863f866b826f3.webm",
82
+ "jmcs://jd-contents/Bailar/Bailar_MapPreviewNoSoundCrop_MID.vp9.webm": "https://jd-s3.akamaized.net/public/map/Bailar/Bailar_MapPreviewNoSoundCrop_MID.vp9.webm/1b2945a5fd4a5dc24583bc4ed78bb316.webm",
83
+ "jmcs://jd-contents/Bailar/Bailar_MapPreviewNoSoundCrop_ULTRA.vp8.webm": "https://jd-s3.akamaized.net/public/map/Bailar/Bailar_MapPreviewNoSoundCrop_ULTRA.vp8.webm/b4658d8bada981a958a442e1bcefbf2c.webm",
84
+ "jmcs://jd-contents/Bailar/Bailar_MapPreviewNoSoundCrop_ULTRA.vp9.webm": "https://jd-s3.akamaized.net/public/map/Bailar/Bailar_MapPreviewNoSoundCrop_ULTRA.vp9.webm/cde7a2f8568573e00df0301c7afb3696.webm"
85
+ },
86
+ "serverChangelist": 455481,
87
+ "skupackages": {
88
+ "orbis": {
89
+ "md5": "b300e98c921df31656fe706faf2e483d",
90
+ "storageType": 0,
91
+ "url": "https://jd-s3.akamaized.net/public/map/Bailar/ps4/Bailar_MAIN_SCENE_ORBIS.zip/b300e98c921df31656fe706faf2e483d.zip",
92
+ "version": 7
93
+ },
94
+ "pc": {
95
+ "md5": "93eb6faa5930829d7dc0aabea5cf43ee",
96
+ "storageType": 0,
97
+ "url": "https://jd-s3.akamaized.net/public/map/Bailar/pc/Bailar_MAIN_SCENE_PC.zip/93eb6faa5930829d7dc0aabea5cf43ee.zip",
98
+ "version": 2
99
+ },
100
+ "wiiu": {
101
+ "md5": "514cd460fdd8360c5bfe4105d6b6c4c8",
102
+ "storageType": 0,
103
+ "url": "https://jd-s3.akamaized.net/public/map/Bailar/wiiu/Bailar_MAIN_SCENE_WIIU.zip/514cd460fdd8360c5bfe4105d6b6c4c8.zip",
104
+ "version": 7
105
+ },
106
+ "nx": {
107
+ "md5": "e10f708535c40e4cb3d0fe082fede6ff",
108
+ "storageType": 0,
109
+ "url": "https://jd-s3.akamaized.net/public/map/Bailar/nx/Bailar_MAIN_SCENE_NX.zip/e10f708535c40e4cb3d0fe082fede6ff.zip",
110
+ "version": 4
111
+ }
112
+ },
113
+ "mapType": "jdu"
114
+ }