diff --git a/sdvx@asphyxia/README.md b/sdvx@asphyxia/README.md
index 7059761..4648c82 100644
--- a/sdvx@asphyxia/README.md
+++ b/sdvx@asphyxia/README.md
@@ -1,8 +1,6 @@
Message from repo fork:
-- I highly recommend using the stable version of the plugin.
-- This version is only properly usable in proper arcade data, meaning no mods.
-- This is very work-in-progress. Please **BACK UP YOUR DATA** to prevent unwanted data loss (just in case)
-- Please always remember to update datecode before using [WebUI Resource Update](/plugin/sdvx@asphyxia/WebUI%20resource%20update) feature (or this plugin in general).
+- I highly recommend using the official stable version of the plugin.
+- This is very work-in-progress, so expect things to break. Please **BACK UP YOUR DATA** to prevent unwanted data loss (just in case)
- I won't update the text below lol
----------------------------
diff --git a/sdvx@asphyxia/utils.ts b/sdvx@asphyxia/utils.ts
index fcb8cd5..2137f05 100644
--- a/sdvx@asphyxia/utils.ts
+++ b/sdvx@asphyxia/utils.ts
@@ -33,33 +33,40 @@ export function getRandomIntInclusive(min, max) {
}
export const copyResourcesFromGame = async (data: {}) => {
- let mdbJson;
let mdbJsonFix = [];
let mdbJsonFixFinal;
- let mdb = await IO.ReadFile(U.GetConfig('sdvx_eg_root_dir') + "/data/others/music_db.xml")
- let prevAssetMdb = JSON.parse(U.DecodeString(await IO.ReadFile('webui/asset/json/music_db.json'), 'utf8'))
let newJsonSongs = [];
let newVersionSongs = [];
-
- let resourceJsonData = JSON.parse(U.DecodeString(await IO.ReadFile('webui/asset/json/data.json'), 'utf8'))
let newNemsysData = []
let newAPCardData = []
let newSubBGData = []
let newBGMData = []
+ let newChatStampData = []
+ let runErrors = []
+ let resourceJsonData = JSON.parse(U.DecodeString(await IO.ReadFile('webui/asset/json/data.json'), 'utf8'))
// Get new music data from music_db.xml
- let version = '';
- let ea3Config = await IO.ReadFile(U.GetConfig('sdvx_eg_root_dir') + "/prop/ea3-config.xml")
- let configJson = U.parseXML(U.DecodeString(ea3Config, "shift_jis"), false)
- version = configJson['ea3']['soft']['ext']['@content'];
+ console.log('Getting new music_db info')
+ if(IO.Exists(U.GetConfig('sdvx_eg_root_dir') + "/data/others/music_db.xml")) {
+ let mdb = U.parseXML(U.DecodeString(await IO.ReadFile(U.GetConfig('sdvx_eg_root_dir') + "/data/others/music_db.xml"), "shift_jis"), false)
+ let ea3Config = U.parseXML(U.DecodeString(await IO.ReadFile(U.GetConfig('sdvx_eg_root_dir') + "/prop/ea3-config.xml"), "shift_jis"), false)
+ let version = ea3Config['ea3']['soft']['ext']['@content'];
+ let prevAssetMdb = []
+ if(IO.Exists('webui/asset/json/music_db.json')) {
+ prevAssetMdb = JSON.parse(U.DecodeString(await IO.ReadFile('webui/asset/json/music_db.json'), 'utf8'))
+ }
- mdbJson = U.parseXML(U.DecodeString(mdb, "shift_jis"), false)
- try {
- mdbJson.mdb.music.forEach(musicValue => {
- if(prevAssetMdb['mdb']['music'].find(item => parseInt(item['@id']) == parseInt(musicValue.info.label['@content'])) == undefined) {
+ mdb.mdb.music.forEach(musicValue => {
+ if(Object.keys(prevAssetMdb).length > 0) {
+ if(prevAssetMdb['mdb']['music'].find(item => parseInt(item['@id']) == parseInt(musicValue.info.label['@content'])) == undefined) {
+ console.log("New song added to json: " + musicValue.info.title_name['@content'] + " (" + musicValue.info.distribution_date['@content'] + ")")
+ newJsonSongs.push('[' + musicValue.info.distribution_date['@content'] + '] ' + musicValue.info.title_name['@content'])
+ }
+ } else {
console.log("New song added to json: " + musicValue.info.title_name['@content'] + " (" + musicValue.info.distribution_date['@content'] + ")")
newJsonSongs.push('[' + musicValue.info.distribution_date['@content'] + '] ' + musicValue.info.title_name['@content'])
}
+
if(parseInt(musicValue.info.distribution_date['@content'][0]) >= parseInt(version.substring(0,8))) {
console.log("Found new song for version " + version + ": " + musicValue.info.title_name['@content'] + " (" + musicValue.info.distribution_date['@content'] + ")");
newVersionSongs.push('[' + musicValue.info.distribution_date['@content'] + '] ' + musicValue.info.title_name['@content'])
@@ -114,11 +121,7 @@ export const copyResourcesFromGame = async (data: {}) => {
}
});
})
- } catch (err) {
- console.log(err)
- }
- try{
mdbJsonFixFinal = {
'mdb': {
'version': version,
@@ -129,94 +132,151 @@ export const copyResourcesFromGame = async (data: {}) => {
if(!IO.Exists('webui/asset/json/music_db_' + version + '.json')){
IO.WriteFile('webui/asset/json/music_db_' + version + '.json', JSON.stringify(mdbJsonFixFinal));
}
- } catch(err) {
- console.log(err)
+
+ } else {
+ console.log('Error reading music_db.xml. Check your "Exceed Gear Data Directory" config.')
+ runErrors.push('[music_db] Error reading music_db.xml. Check your "Exceed Gear Data Directory" config.')
}
- // // Copying new nemsys files from gamedata
- // console.log("Copying new nemsys files from gamedata")
- // let nemsysFiles = await IO.ReadDir(U.GetConfig('sdvx_eg_root_dir') + "/data/graphics/game_nemsys")
- // for await (const nemsys of nemsysFiles) {
- // let fileToWrite = await IO.ReadFile(U.GetConfig('sdvx_eg_root_dir') + "/data/graphics/game_nemsys/" + nemsys.name)
- // if(!IO.Exists('webui/asset/nemsys/' + nemsys.name.substring(0, (nemsys.name.length - 4)) + ".png") && !IO.Exists('webui/asset/nemsys/' + nemsys.name.substring(0, (nemsys.name.length - 4)) + ".jpg")) {
- // IO.WriteFile('webui/asset/nemsys/' + nemsys.name, fileToWrite)
- // newNemsysData.push(nemsys.name)
- // } else {
- // console.log(nemsys.name + " exists")
- // }
- // }
+ // Copying new nemsys files from gamedata
+ console.log("Copying new nemsys files from gamedata")
+ if(IO.Exists(U.GetConfig('sdvx_eg_root_dir') + "/data/graphics/game_nemsys")) {
+ let nemsysFiles = await IO.ReadDir(U.GetConfig('sdvx_eg_root_dir') + "/data/graphics/game_nemsys")
+ for await (const nemsys of nemsysFiles) {
+ let fileToWrite = await IO.ReadFile(U.GetConfig('sdvx_eg_root_dir') + "/data/graphics/game_nemsys/" + nemsys.name)
+ if(!IO.Exists('webui/asset/nemsys/' + nemsys.name.substring(0, (nemsys.name.length - 4)) + ".png") && !IO.Exists('webui/asset/nemsys/' + nemsys.name.substring(0, (nemsys.name.length - 4)) + ".jpg")) {
+ IO.WriteFile('webui/asset/nemsys/' + nemsys.name, fileToWrite)
+ newNemsysData.push(nemsys.name)
+ } else {
+ console.log(nemsys.name + " exists")
+ }
+ }
- // newNemsysData.forEach(fileName => {
- // if(parseInt(fileName.substring(7, 11))) {
- // resourceJsonData.nemsys.push({"value": parseInt(fileName.substring(7, 11)), "name": fileName + " (please rename)"})
- // }
- // })
+ newNemsysData.forEach(fileName => {
+ if(parseInt(fileName.substring(7, 11))) {
+ resourceJsonData.nemsys.push({"value": parseInt(fileName.substring(7, 11)), "name": fileName + " (please rename)"})
+ }
+ })
+ } else {
+ console.log('Error reading nemsys directory. Check your "Exceed Gear Data Directory" config.')
+ runErrors.push('[nemsys] Error reading nemsys directory. Check your "Exceed Gear Data Directory" config.')
+ }
- // // Copying new appeal card files from gamedata
+ // Copying new appeal card files from gamedata (disabled for now)
// console.log("Copying new appeal card files from gamedata")
- // let apCardFiles = await IO.ReadDir(U.GetConfig('sdvx_eg_root_dir') + "/data/graphics/ap_card")
- // for await (const apCard of apCardFiles) {
- // let fileToWrite = await IO.ReadFile(U.GetConfig('sdvx_eg_root_dir') + "/data/graphics/ap_card/" + apCard.name)
- // if(!IO.Exists('webui/asset/ap_card/' + apCard.name.substring(0, (apCard.name.length - 4)) + ".png") && !IO.Exists('webui/asset/ap_card/' + apCard.name.substring(0, (apCard.name.length - 4)) + ".jpg")) {
- // IO.WriteFile('webui/asset/ap_card/' + apCard.name, fileToWrite)
- // newAPCardData.push(apCard.name)
- // } else {
- // console.log(apCard.name + " exists")
- // }
- // }
-
- // // Appeal card data registration to data.json not properly implemented yet, I don't quite understand how their IDs work
- // // newAPCardData.forEach(fileName => {
- // // if(parseInt(fileName.substring(6, 10))) {
- // // resourceJsonData.apCard.push({"value": parseInt(fileName.substring(6, 10)), "name": fileName + " (please rename)"})
- // // }
- // // })
-
- // // Copying new subbg files from gamedata
- // console.log("Copying new subbg files from gamedata")
- // let subBGFiles = await IO.ReadDir(U.GetConfig('sdvx_eg_root_dir') + "/data/graphics/submonitor_bg")
- // for await (const subbg of subBGFiles) {
- // if (subbg.name.substring(subbg.name.length-4, subbg.name.length).match(/(\.png|\.jpg)/g)) {
- // let fileToWrite = await IO.ReadFile(U.GetConfig('sdvx_eg_root_dir') + "/data/graphics/submonitor_bg/" + subbg.name)
- // if(!IO.Exists('webui/asset/submonitor_bg/' + subbg.name.substring(0, (subbg.name.length - 4)) + ".png") && !IO.Exists('webui/asset/submonitor_bg/' + subbg.name.substring(0, (subbg.name.length - 4)) + ".jpg")) {
- // IO.WriteFile('webui/asset/submonitor_bg/' + subbg.name, fileToWrite)
- // newSubBGData.push(subbg.name)
+ // if(IO.Exists(U.GetConfig('sdvx_eg_root_dir') + "/data/graphics/game_nemsys")) {
+ // let apCardFiles = await IO.ReadDir(U.GetConfig('sdvx_eg_root_dir') + "/data/graphics/ap_card")
+ // for await (const apCard of apCardFiles) {
+ // let fileToWrite = await IO.ReadFile(U.GetConfig('sdvx_eg_root_dir') + "/data/graphics/ap_card/" + apCard.name)
+ // if(!IO.Exists('webui/asset/ap_card/' + apCard.name.substring(0, (apCard.name.length - 4)) + ".png") && !IO.Exists('webui/asset/ap_card/' + apCard.name.substring(0, (apCard.name.length - 4)) + ".jpg")) {
+ // IO.WriteFile('webui/asset/ap_card/' + apCard.name, fileToWrite)
+ // newAPCardData.push(apCard.name)
// } else {
- // console.log(subbg.name + " exists")
+ // console.log(apCard.name + " exists")
// }
// }
- // }
- // newSubBGData.forEach(fileName => {
- // if(parseInt(fileName.substring(6, 10))) {
- // resourceJsonData.subbg.push({"value": parseInt(fileName.substring(6, 10)), "name": fileName + " (please rename)"})
- // }
- // })
-
- // // Copying new bgm files from gamedata
- // console.log("Copying new bgm files from gamedata")
- // let bgmFiles = await IO.ReadDir(U.GetConfig('sdvx_eg_root_dir') + "/data/sound/custom")
- // for await (const bgm of bgmFiles) {
- // if (bgm.name.substring(bgm.name.length-4, bgm.name.length) == '.s3p') {
- // let folderName = bgm.name.match(/(custom|special)_([0-9]*)/g)[0]
- // if(folderName != '') {
- // let fileToWrite = await IO.ReadFile(U.GetConfig('sdvx_eg_root_dir') + "/data/sound/custom/" + bgm.name)
- // if(!IO.Exists('webui/asset/audio/' + folderName)) {
- // IO.WriteFile('webui/asset/audio/' + folderName + '/' + bgm.name, fileToWrite)
- // newBGMData.push(bgm.name)
- // } else {
- // console.log(bgm.name + " exists")
- // }
+ // // Appeal card data registration to data.json not properly implemented yet, I don't quite understand how their IDs work yet
+ // newAPCardData.forEach(fileName => {
+ // if(parseInt(fileName.substring(6, 10))) {
+ // resourceJsonData.apCard.push({"value": parseInt(fileName.substring(6, 10)), "name": fileName + " (please rename)"})
// }
- // }
+ // })
+ // } else {
+ // console.log('Error reading appeal card directory. Check your "Exceed Gear Data Directory" config.')
+ // runErrors.push('[appeal_card] Error reading appeal card directory. Check your "Exceed Gear Data Directory" config.')
// }
- // newBGMData.forEach(fileName => {
- // let bgmId = fileName.match(/(?<=(custom|special)_)([0-9]*)/g)[0]
- // if(parseInt(bgmId)) {
- // resourceJsonData.bgm.push({"value": parseInt(bgmId), "name": fileName + " (please rename)"})
- // }
- // })
+ // Copying new subbg files from gamedata
+ console.log("Copying new subbg files from gamedata")
+ if(IO.Exists(U.GetConfig('sdvx_eg_root_dir') + "/data/graphics/submonitor_bg")) {
+ let subBGFiles = await IO.ReadDir(U.GetConfig('sdvx_eg_root_dir') + "/data/graphics/submonitor_bg")
+ for await (const subbg of subBGFiles) {
+ if (subbg.name.substring(subbg.name.length-4, subbg.name.length).match(/(\.png|\.jpg)/g)) {
+ let fileToWrite = await IO.ReadFile(U.GetConfig('sdvx_eg_root_dir') + "/data/graphics/submonitor_bg/" + subbg.name)
+ if(!IO.Exists('webui/asset/submonitor_bg/' + subbg.name.substring(0, (subbg.name.length - 4)) + ".png") && !IO.Exists('webui/asset/submonitor_bg/' + subbg.name.substring(0, (subbg.name.length - 4)) + ".jpg")) {
+ IO.WriteFile('webui/asset/submonitor_bg/' + subbg.name, fileToWrite)
+ newSubBGData.push(subbg.name)
+ } else {
+ console.log(subbg.name + " exists")
+ }
+ }
+ }
+
+ newSubBGData.forEach(fileName => {
+ if(parseInt(fileName.substring(6, 10))) {
+ resourceJsonData.subbg.push({"value": parseInt(fileName.substring(6, 10)), "name": fileName + " (please rename)"})
+ }
+ })
+ } else {
+ console.log('Error reading submonitor_bg directory. Check your "Exceed Gear Data Directory" config.')
+ runErrors.push('[submonitor_bg] Error reading submonitor_bg directory. Check your "Exceed Gear Data Directory" config.')
+ }
+
+ // Copying new bgm files from gamedata
+ console.log("Copying new bgm files from gamedata")
+ if(IO.Exists(U.GetConfig('sdvx_eg_root_dir') + "/data/sound/custom")) {
+ let bgmFiles = await IO.ReadDir(U.GetConfig('sdvx_eg_root_dir') + "/data/sound/custom")
+ for await (const bgm of bgmFiles) {
+ if (bgm.name.substring(bgm.name.length-4, bgm.name.length) == '.s3p') {
+ let folderName = bgm.name.match(/(custom|special)_([0-9]*)/g)[0]
+ if(folderName != '') {
+ let fileToWrite = await IO.ReadFile(U.GetConfig('sdvx_eg_root_dir') + "/data/sound/custom/" + bgm.name)
+ if(!IO.Exists('webui/asset/audio/' + folderName)) {
+ IO.WriteFile('webui/asset/audio/' + folderName + '/' + bgm.name, fileToWrite)
+ newBGMData.push(bgm.name)
+ } else {
+ console.log(bgm.name + " exists")
+ }
+ }
+ }
+ }
+
+ newBGMData.forEach(fileName => {
+ let bgmId = fileName.match(/(?<=(custom|special)_)([0-9]*)/g)[0]
+ if(parseInt(bgmId)) {
+ resourceJsonData.bgm.push({"value": parseInt(bgmId), "name": fileName + " (please rename)"})
+ }
+ })
+ } else {
+ console.log('Error reading BGM directory. Check your "Exceed Gear Data Directory" config.')
+ runErrors.push('[BGM] Error reading BGM directory. Check your "Exceed Gear Data Directory" config.')
+ }
+
+ // Copying new chat_stamp files from gamedata
+ console.log("Copying new chat stamp files from gamedata")
+ if(IO.Exists(U.GetConfig('sdvx_eg_root_dir') + "/data/graphics/chat_stamp")) {
+ let chat_stamps_folders = await IO.ReadDir(U.GetConfig('sdvx_eg_root_dir') + "/data/graphics/chat_stamp")
+ for(const chat_stamp_folder of chat_stamps_folders) {
+ let folderName = chat_stamp_folder.name.match(/stamp_([0-9]*)/g)[0]
+ if(folderName != '') {
+ if(!IO.Exists('webui/asset/chat_stamp/' + folderName)) {
+ let chat_stamps = await IO.ReadDir(U.GetConfig('sdvx_eg_root_dir') + "/data/graphics/chat_stamp/" + folderName)
+ for(const chat_stamp_ind in chat_stamps) {
+ let fileToWrite = await IO.ReadFile(U.GetConfig('sdvx_eg_root_dir') + "/data/graphics/chat_stamp/" + folderName + '/' + chat_stamps[chat_stamp_ind].name)
+ IO.WriteFile('webui/asset/chat_stamp/' + folderName + '/' + chat_stamps[chat_stamp_ind].name, fileToWrite)
+ newChatStampData.push(chat_stamps[chat_stamp_ind].name)
+ }
+ } else {
+ console.log(folderName + " exists")
+ }
+ }
+ }
+
+ let stampIDCtr = 3;
+ newChatStampData.forEach(fileName => {
+ let stampId = fileName.match(/(?<=(stamp)_)([0-9]*)/g)[0]
+ if(parseInt(stampId)) {
+ let realStampID = (parseInt(stampId) * 4) - stampIDCtr;
+ resourceJsonData.stamp.push({"value": realStampID, "name": fileName + " (please rename)"})
+ }
+ if(stampIDCtr == 0) stampIDCtr = 3;
+ else stampIDCtr--;
+ })
+ } else {
+ console.log('Error reading chat stamp directory. Check your "Exceed Gear Data Directory" config.')
+ runErrors.push('[chat_stamp] Error reading chat stamp directory. Check your "Exceed Gear Data Directory" config.')
+ }
await IO.WriteFile('webui/asset/json/data.json', JSON.stringify(resourceJsonData))
await IO.WriteFile('webui/asset/logs/copyResourcesFromGame.json', JSON.stringify({
@@ -224,12 +284,9 @@ export const copyResourcesFromGame = async (data: {}) => {
apCard: newAPCardData,
subbg: newSubBGData,
bgm: newBGMData,
+ chatStamp: newChatStampData,
versionSongs: newVersionSongs,
- jsonSongs: newJsonSongs
+ jsonSongs: newJsonSongs,
+ errors: runErrors
}))
}
-
-// export const generateLatestMusicDBFile = async (data: {}) => {
-
-// return mdbJsonFixFinal;
-// }
\ No newline at end of file
diff --git a/sdvx@asphyxia/webui/WebUI resource update.pug b/sdvx@asphyxia/webui/WebUI resource update.pug
index e4b5497..3b87a7b 100644
--- a/sdvx@asphyxia/webui/WebUI resource update.pug
+++ b/sdvx@asphyxia/webui/WebUI resource update.pug
@@ -1,7 +1,22 @@
-//DATA//
- sdvx_dir: U.GetConfig('sdvx_eg_root_dir')
--
div
+ .card
+ button.collapse() Notes
+ .card-info.collapsible-card
+ p.card-header-info
+ h5() Notes:
+ ul
+ li() For use with Exceed Gear arcade data.
+ li() Use this if you have arcade data that can be used. It wouldn't work otherwise.
+ li() Make sure you have your 'Exceed Gear Data Directory' in the plugin settings properly configured.
+ li() Update your datacode in the ea3-config.xml file.
+ br
+ p.card-header-bgm-guide
+ h5() BGM asset guide
+ p() This feature pulls BGM files from the data, however they are in unplayable s3p format. For BGM preview to work, we need to extract the audio files from the s3p, and convert it to mp3.
+ p() For Windows, there is a bgm_convert.bat script in the SDVX plugin root directory but it requires 2 things:
+ ul
+ li() s3p_extract - download the .exe file from the latest release and put in the same directory as the bat script
+ li() ffmpeg - download and extract ffmpeg.exe and put it in the same directory as the bat script (or put ffmpeg.exe in PATH environment variable)
.card
.card-header
p.card-header-title
@@ -15,8 +30,36 @@ div
i.mdi.mdi-check
span Update
.field
- textarea(style="width: 100%; height: 100%; background: #4a4a4a; color: #ffffff; border-radius: 6px; padding: 5px; font-size: 15px" rows="50" id="logtextarea" name="logtextarea")
+ textarea.log-field(rows="50" id="logtextarea" name="logtextarea" disabled)
script(src="https://requirejs.org/docs/release/2.3.5/minified/require.js")
script(type="text/javascript" src="static/asset/js/updateResources.js")
-div(hidden id='sdvx-dir') !{sdvx_dir}
\ No newline at end of file
+style(type='text/css').
+ .collapse {
+ background-color: #4a4a4a;
+ color: white;
+ padding: 18px;
+ width: 100%;
+ border: none;
+ text-align: left;
+ outline: none;
+ font-size: 20px;
+ }
+
+ .collapse:hover {
+ background-color: #777;
+ }
+
+ .collapsible-card {
+ padding:15px;
+ }
+
+ .log-field {
+ width: 100%;
+ height: 100%;
+ background: #4a4a4a;
+ color: #ffffff;
+ border-radius: 6px;
+ padding: 5px;
+ font-size: 15px;
+ }
\ No newline at end of file
diff --git a/sdvx@asphyxia/webui/asset/js/updateResources.js b/sdvx@asphyxia/webui/asset/js/updateResources.js
index 5ef07d1..27a5614 100644
--- a/sdvx@asphyxia/webui/asset/js/updateResources.js
+++ b/sdvx@asphyxia/webui/asset/js/updateResources.js
@@ -2,7 +2,12 @@
// data\graphics\ap_card -- appeal card
// data\graphics\submonitor_bg -- subbg
$(document).ready(async function() {
- let sdvxDir = document.getElementById("sdvx-dir").innerText
+ $('.collapse').click(function(){
+ console.log($('.collapsible-card').css('display'))
+ if($('.collapsible-card').css('display') == 'none') {
+ $('.collapsible-card').css('display', 'block')
+ } else $('.collapsible-card').css('display', 'none')
+ })
$( "#updateResources" ).click(async function() {
answer = confirm("Clicking OK would mean that you have already updated the datacode in your ea3-config.xml file. Would you like to proceed?");
if (answer == true) {
@@ -10,7 +15,16 @@ $(document).ready(async function() {
document.getElementById("logtextarea").textContent = 'Running....\n'
await emit("copyResourcesFromGame").then(
function(response){
+ document.getElementById("logtextarea").textContent += 'Done.\n\n\n'
$.getJSON( "static/asset/logs/copyResourcesFromGame.json", function( data ) {
+ if(data['errors'].length > 0) {
+ document.getElementById("logtextarea").textContent += 'Errors: \n'
+ $.each(data['errors'], function(key, val) {
+ document.getElementById("logtextarea").textContent += "- " + val + '\n'
+ })
+ document.getElementById("logtextarea").textContent += '\n\n'
+ }
+
if(data['nemsys'].length > 0) {
document.getElementById("logtextarea").textContent += 'New nemsys: \n'
$.each(data['nemsys'], function(key, val) {
@@ -43,6 +57,14 @@ $(document).ready(async function() {
document.getElementById("logtextarea").textContent += '\n\n'
}
+ if(data['chatStamp'].length > 0) {
+ document.getElementById("logtextarea").textContent += 'New chat stamps: \n'
+ $.each(data['chatStamp'], function(key, val) {
+ document.getElementById("logtextarea").textContent += "- " + val + '\n'
+ })
+ document.getElementById("logtextarea").textContent += '\n\n'
+ }
+
if(data['versionSongs'].length > 0) {
document.getElementById("logtextarea").textContent += 'New songs in latest data: \n'
$.each(data['versionSongs'], function(key, val) {
diff --git a/sdvx@asphyxia/webui/asset/json/appeal.json b/sdvx@asphyxia/webui/asset/json/appeal.json
deleted file mode 100644
index d542095..0000000
--- a/sdvx@asphyxia/webui/asset/json/appeal.json
+++ /dev/null
@@ -1 +0,0 @@
-{"appeal_card_data": {"card": [{"@id": "1", "info": {"texture": "ap_0001", "title": "究極のSDVX"}}, {"@id": "2", "info": {"texture": "ap_0002", "title": "レイシス"}}, {"@id": "3", "info": {"texture": "ap_0003", "title": "つまぶき"}}, {"@id": "4", "info": {"texture": "ap_0004", "title": "支援システムレイシス"}}, {"@id": "5", "info": {"texture": "ap_0005", "title": "営業終了レイシス"}}, {"@id": "6", "info": {"texture": "ap_0006", "title": "イヤホンジャックレイシス"}}, {"@id": "7", "info": {"texture": "ap_0007", "title": "休日返上レイシス"}}, {"@id": "8", "info": {"texture": "ap_0008", "title": "ロングボタンレイシス"}}, {"@id": "9", "info": {"texture": "ap_0009", "title": "good high school 01"}}, {"@id": "10", "info": {"texture": "ap_0010", "title": "good high school 02"}}, {"@id": "11", "info": {"texture": "ap_0011", "title": "good high school 03"}}, {"@id": "12", "info": {"texture": "ap_0012", "title": "PULSE LASER 01"}}, {"@id": "13", "info": {"texture": "ap_0013", "title": "ヒマワリ 01"}}, {"@id": "14", "info": {"texture": "ap_0014", "title": "ヒマワリ 02"}}, {"@id": "15", "info": {"texture": "ap_0015", "title": "LOVE♡SHINE"}}, {"@id": "16", "info": {"texture": "ap_0016", "title": "Love♡sicK"}}, {"@id": "17", "info": {"texture": "ap_0017", "title": "It's over 01"}}, {"@id": "18", "info": {"texture": "ap_0018", "title": "ALBIDA 01"}}, {"@id": "19", "info": {"texture": "ap_0019", "title": "Broken 01"}}, {"@id": "20", "info": {"texture": "ap_0020", "title": "ごりらがいるんだ 01"}}, {"@id": "21", "info": {"texture": "ap_0021", "title": "凛として咲く花の如く"}}, {"@id": "22", "info": {"texture": "ap_0022", "title": "Ha・lle・lu・jah 01"}}, {"@id": "23", "info": {"texture": "ap_0023", "title": "smooooch・∀・"}}, {"@id": "24", "info": {"texture": "ap_0024", "title": "「月風魔伝」 01"}}, {"@id": "25", "info": {"texture": "ap_0025", "title": "「月風魔伝」 02"}}, {"@id": "26", "info": {"texture": "ap_0026", "title": "「月風魔伝」 03"}}, {"@id": "27", "info": {"texture": "ap_0027", "title": "バタフライキャット 01"}}, {"@id": "28", "info": {"texture": "ap_0028", "title": "バタフライキャット 02"}}, {"@id": "29", "info": {"texture": "ap_0029", "title": "バタフライキャット 03"}}, {"@id": "30", "info": {"texture": "ap_0030", "title": "ヒマワリ 03"}}, {"@id": "31", "info": {"texture": "ap_0031", "title": "Evans"}}, {"@id": "32", "info": {"texture": "ap_0032", "title": "ガッテンだ!!"}}, {"@id": "33", "info": {"texture": "ap_0033", "title": "ふしぎなくすり 01"}}, {"@id": "34", "info": {"texture": "ap_0034", "title": "ふしぎなくすり 02"}}, {"@id": "35", "info": {"texture": "ap_0035", "title": "SurVALI"}}, {"@id": "36", "info": {"texture": "ap_0036", "title": "Iterator"}}, {"@id": "37", "info": {"texture": "ap_0037", "title": "gentle stress"}}, {"@id": "38", "info": {"texture": "ap_0038", "title": "ナナイロ 01"}}, {"@id": "39", "info": {"texture": "ap_0039", "title": "dilemma"}}, {"@id": "40", "info": {"texture": "ap_0040", "title": "Rebellious stage"}}, {"@id": "41", "info": {"texture": "ap_0041", "title": "jet coaster☆girl"}}, {"@id": "42", "info": {"texture": "ap_0042", "title": "MAX300 01"}}, {"@id": "43", "info": {"texture": "ap_0043", "title": "とある少年の一日"}}, {"@id": "44", "info": {"texture": "ap_0044", "title": "It's over 02"}}, {"@id": "45", "info": {"texture": "ap_0045", "title": "PULSE LASER 01"}}, {"@id": "46", "info": {"texture": "ap_0046", "title": "Broken 01"}}, {"@id": "47", "info": {"texture": "ap_0047", "title": "Ha・lle・lu・jah 02"}}, {"@id": "48", "info": {"texture": "ap_0048", "title": "Ha・lle・lu・jah 03"}}, {"@id": "49", "info": {"texture": "ap_0049", "title": "MAX300 02"}}, {"@id": "50", "info": {"texture": "ap_0050", "title": "ALBIDA 01"}}, {"@id": "51", "info": {"texture": "ap_0051", "title": "西日暮里の踊り"}}, {"@id": "52", "info": {"texture": "ap_0052", "title": "サイコパスコミュニケーション 01"}}, {"@id": "53", "info": {"texture": "ap_0053", "title": "サイコパスコミュニケーション 02"}}, {"@id": "54", "info": {"texture": "ap_0054", "title": "サイコパスコミュニケーション 03"}}, {"@id": "55", "info": {"texture": "ap_0055", "title": "遠く"}}, {"@id": "56", "info": {"texture": "ap_0056", "title": "Xepher"}}, {"@id": "57", "info": {"texture": "ap_0057", "title": "candii"}}, {"@id": "58", "info": {"texture": "ap_0058", "title": "Diamond Dust"}}, {"@id": "59", "info": {"texture": "ap_0059", "title": "コンシェルジュ風レイシス"}}, {"@id": "60", "info": {"texture": "ap_0060", "title": "FLOWER"}}, {"@id": "61", "info": {"texture": "ap_0061", "title": "レイシス sei-jin"}}, {"@id": "62", "info": {"texture": "ap_0062", "title": "ユビトマン・グランデ"}}, {"@id": "63", "info": {"texture": "ap_0063", "title": "DJ YOSHITAKA"}}, {"@id": "64", "info": {"texture": "ap_0064", "title": "WOUND"}}, {"@id": "65", "info": {"texture": "ap_0065", "title": "Vampire Killer"}}, {"@id": "66", "info": {"texture": "ap_0066", "title": "RED ZONE"}}, {"@id": "67", "info": {"texture": "ap_0067", "title": "冥"}}, {"@id": "68", "info": {"texture": "ap_0068", "title": "バタフライキャット 04"}}, {"@id": "69", "info": {"texture": "ap_0069", "title": "バタフライキャット 05"}}, {"@id": "70", "info": {"texture": "ap_0070", "title": "ナナイロ 02"}}, {"@id": "71", "info": {"texture": "ap_0071", "title": "ナナイロ 03"}}, {"@id": "72", "info": {"texture": "ap_0072", "title": "不思議玩具ガンガラディンドン 01"}}, {"@id": "73", "info": {"texture": "ap_0073", "title": "不思議玩具ガンガラディンドン 02"}}, {"@id": "74", "info": {"texture": "ap_0074", "title": "不思議玩具ガンガラディンドン 03"}}, {"@id": "75", "info": {"texture": "ap_0075", "title": "U&M 01"}}, {"@id": "76", "info": {"texture": "ap_0076", "title": "U&M 02"}}, {"@id": "77", "info": {"texture": "ap_0077", "title": "U&M 03"}}, {"@id": "78", "info": {"texture": "ap_0078", "title": "ヤサイマシ☆ニンニクアブラオオメ"}}, {"@id": "79", "info": {"texture": "ap_0079", "title": "RPGシンドローム 01"}}, {"@id": "80", "info": {"texture": "ap_0080", "title": "RPGシンドローム 02"}}, {"@id": "81", "info": {"texture": "ap_0081", "title": "世界はネコのもの 01"}}, {"@id": "82", "info": {"texture": "ap_0082", "title": "世界はネコのもの 02"}}, {"@id": "83", "info": {"texture": "ap_0083", "title": "世界はネコのもの 03"}}, {"@id": "84", "info": {"texture": "ap_0084", "title": "TYCOON 01"}}, {"@id": "85", "info": {"texture": "ap_0085", "title": "TYCOON 02"}}, {"@id": "86", "info": {"texture": "ap_0086", "title": "TYCOON 03"}}, {"@id": "87", "info": {"texture": "ap_0087", "title": "TYCOON 04"}}, {"@id": "88", "info": {"texture": "ap_0088", "title": "cloud 01"}}, {"@id": "89", "info": {"texture": "ap_0089", "title": "cloud 02"}}, {"@id": "90", "info": {"texture": "ap_0090", "title": "neu"}}, {"@id": "91", "info": {"texture": "ap_0091", "title": "ウイルスレイシス"}}, {"@id": "92", "info": {"texture": "ap_0092", "title": "FLOORレイシス"}}, {"@id": "93", "info": {"texture": "ap_0093", "title": "コーションレイシス"}}, {"@id": "94", "info": {"texture": "ap_0094", "title": "男前つまぶき"}}, {"@id": "95", "info": {"texture": "ap_0095", "title": "突撃!ガラスのニーソ姫!01"}}, {"@id": "96", "info": {"texture": "ap_0096", "title": "恋する☆宇宙戦争っ!! 01"}}, {"@id": "97", "info": {"texture": "ap_0097", "title": "[br:0]レーザービ――――ム!"}}, {"@id": "98", "info": {"texture": "ap_0098", "title": "[br:0]profile of RASIS"}}, {"@id": "99", "info": {"texture": "ap_0099", "title": "[br:0]Let's Play♪"}}, {"@id": "100", "info": {"texture": "ap_0100", "title": "[br:0]光り輝く我が力"}}, {"@id": "101", "info": {"texture": "ap_0101", "title": "[br:0]ツルツルテカテカつまぶき"}}, {"@id": "102", "info": {"texture": "ap_0102", "title": "[br:0]つまぶきがレイシスに!?"}}, {"@id": "103", "info": {"texture": "ap_0103", "title": "[br:0]TSU-MA-BU-KI"}}, {"@id": "104", "info": {"texture": "ap_0104", "title": "[br:0]はれるや!"}}, {"@id": "105", "info": {"texture": "ap_0105", "title": "[br:0]回転オニイチャン"}}, {"@id": "106", "info": {"texture": "ap_0106", "title": "[br:0]/'△'\"}}, {"@id": "107", "info": {"texture": "ap_0107", "title": "[br:0]ガチでいくんで、宜しく!!"}}, {"@id": "108", "info": {"texture": "ap_0108", "title": "[br:0]烈風刀発信!"}}, {"@id": "109", "info": {"texture": "ap_0109", "title": "[br:0]横顔アンニュイ烈風刀くん"}}, {"@id": "110", "info": {"texture": "ap_0110", "title": "[br:0]紅刃カルタ"}}, {"@id": "111", "info": {"texture": "ap_0111", "title": "[br:0]紅刃に薔薇"}}, {"@id": "112", "info": {"texture": "ap_0112", "title": "[br:0]紅刃さん"}}, {"@id": "113", "info": {"texture": "ap_0113", "title": "[br:0]紅刃"}}, {"@id": "114", "info": {"texture": "ap_0114", "title": "[br:0]ひるねこ"}}, {"@id": "115", "info": {"texture": "ap_0115", "title": "[br:0]バタフライ★ドット"}}, {"@id": "116", "info": {"texture": "ap_0116", "title": "[br:0]にゃあっ!!"}}, {"@id": "117", "info": {"texture": "ap_0117", "title": "[br:0]輝け!"}}, {"@id": "118", "info": {"texture": "ap_0118", "title": "[br:0]Le parfait irise"}}, {"@id": "119", "info": {"texture": "ap_0119", "title": "[br:0]arcoiris"}}, {"@id": "120", "info": {"texture": "ap_0120", "title": "[br:0]泣かないで"}}, {"@id": "121", "info": {"texture": "ap_0121", "title": "[br:0]twinkle"}}, {"@id": "122", "info": {"texture": "ap_0122", "title": "[br:0]Rebellious stage"}}, {"@id": "123", "info": {"texture": "ap_0123", "title": "[br:0]不キゲン昴希ちゃん"}}, {"@id": "124", "info": {"texture": "ap_0124", "title": "[br:0]Rebellious stage"}}, {"@id": "125", "info": {"texture": "ap_0125", "title": "[br:0]三名様ありがとうございまーす!"}}, {"@id": "126", "info": {"texture": "ap_0126", "title": "[br:0]ボルテ軒の看板娘"}}, {"@id": "127", "info": {"texture": "ap_0127", "title": "[br:0]家のラーメンは最高!!"}}, {"@id": "128", "info": {"texture": "ap_0128", "title": "[br:0]おいでませボルテ軒"}}, {"@id": "129", "info": {"texture": "ap_0129", "title": "[br:0]らぶらぶしゃいん"}}, {"@id": "130", "info": {"texture": "ap_0130", "title": "[br:0]「わたしのLOVEお届け」"}}, {"@id": "131", "info": {"texture": "ap_0131", "title": "[br:0]玩具のせかい"}}, {"@id": "132", "info": {"texture": "ap_0132", "title": "[br:0]玩具箱の中身は"}}, {"@id": "133", "info": {"texture": "ap_0133", "title": "[br:0]サァサァショウガハジマルヨ"}}, {"@id": "134", "info": {"texture": "ap_0134", "title": "[br:0]Stay in my head."}}, {"@id": "135", "info": {"texture": "ap_0135", "title": "[br:0]サイコパスコミュニケーション"}}, {"@id": "136", "info": {"texture": "ap_0136", "title": "[br:0]サイコパスコミュニケーション"}}, {"@id": "137", "info": {"texture": "ap_0137", "title": "[br:0]サイコパスコミュニケーション"}}, {"@id": "138", "info": {"texture": "ap_0138", "title": "恋する☆宇宙戦争っ!! 02[br:0](リノン)"}}, {"@id": "139", "info": {"texture": "ap_0139", "title": "恋する☆宇宙戦争っ!! 03[br:0](スミレ)"}}, {"@id": "140", "info": {"texture": "ap_0140", "title": "突撃!ガラスのニーソ姫!02"}}, {"@id": "141", "info": {"texture": "ap_0141", "title": "突撃!ガラスのニーソ姫!03"}}, {"@id": "142", "info": {"texture": "ap_0142", "title": "[br:0]Expects 北海道"}}, {"@id": "143", "info": {"texture": "ap_0143", "title": "レイシスちゃんの3分?[br:0]くっきんぐ北海道編"}}, {"@id": "144", "info": {"texture": "ap_0144", "title": "[br:0]レイシスinライラック!"}}, {"@id": "145", "info": {"texture": "ap_0145", "title": "[br:0]ねぶたレイシス!"}}, {"@id": "146", "info": {"texture": "ap_0146", "title": "[br:0]ぺろり"}}, {"@id": "147", "info": {"texture": "ap_0147", "title": "[br:0]わんこそば挑戦なう。"}}, {"@id": "148", "info": {"texture": "ap_0148", "title": "[br:0]すずめ踊りは踊らにゃ損々!"}}, {"@id": "149", "info": {"texture": "ap_0149", "title": "[br:0]オイデマセ仙台"}}, {"@id": "150", "info": {"texture": "ap_0150", "title": "[br:0]さくらんぼレイシスちゃん"}}, {"@id": "151", "info": {"texture": "ap_0151", "title": "[br:0]酒田の大獅子"}}, {"@id": "152", "info": {"texture": "ap_0152", "title": "[br:0]\泣く子はいねが~っ!/"}}, {"@id": "153", "info": {"texture": "ap_0153", "title": "[br:0]おいしいおいしいボルテ米!"}}, {"@id": "154", "info": {"texture": "ap_0154", "title": "[br:0]福!"}}, {"@id": "155", "info": {"texture": "ap_0155", "title": "[br:0]白虎隊レイシスちゃん"}}, {"@id": "156", "info": {"texture": "ap_0156", "title": "[br:0]レイシスちゃんと!"}}, {"@id": "157", "info": {"texture": "ap_0157", "title": "[br:0]キラ☆"}}, {"@id": "158", "info": {"texture": "ap_0158", "title": "[br:0]ギュイーン♡"}}, {"@id": "159", "info": {"texture": "ap_0159", "title": "[br:0]光と音の共鳴"}}, {"@id": "160", "info": {"texture": "ap_0160", "title": "[br:0]グミ違い"}}, {"@id": "161", "info": {"texture": "ap_0161", "title": "[br:0]疾走GUMI"}}, {"@id": "162", "info": {"texture": "ap_0162", "title": "[br:0]Are you ready?"}}, {"@id": "163", "info": {"texture": "ap_0163", "title": "[br:0]みんなー!いっくよー!"}}, {"@id": "164", "info": {"texture": "ap_0164", "title": "[br:0]コスチューム☆チェンジ"}}, {"@id": "165", "info": {"texture": "ap_0165", "title": "[br:0]いざっしょーぶ!"}}, {"@id": "166", "info": {"texture": "ap_0166", "title": "[br:0]コノウタトドケ!"}}, {"@id": "167", "info": {"texture": "ap_0167", "title": "[br:0]澄んだ世界"}}, {"@id": "168", "info": {"texture": "ap_0168", "title": "[br:0]はわわっ><"}}, {"@id": "169", "info": {"texture": "ap_0169", "title": "[br:0]バタフライキャット風3色GUMI"}}, {"@id": "170", "info": {"texture": "ap_0170", "title": "[br:0]グミラビット!"}}, {"@id": "171", "info": {"texture": "ap_0171", "title": "[br:0]ピース☆"}}, {"@id": "172", "info": {"texture": "ap_0172", "title": "[br:0]仲良し!"}}, {"@id": "173", "info": {"texture": "ap_0173", "title": "[br:0]あんにゅいグミ"}}, {"@id": "174", "info": {"texture": "ap_0174", "title": "[br:0]困った時のぐみ頼み!"}}, {"@id": "175", "info": {"texture": "ap_0175", "title": "[br:0]衝撃とともに舞い降りる"}}, {"@id": "176", "info": {"texture": "ap_0176", "title": "メリークリスマス★"}}, {"@id": "177", "info": {"texture": "ap_0177", "title": "はじめてのお正月デスッ!"}}, {"@id": "200", "info": {"texture": "ap_0200", "title": "[br:0]ナナイロだった"}}, {"@id": "201", "info": {"texture": "ap_0201", "title": "[br:0]RED ZONE 01"}}, {"@id": "202", "info": {"texture": "ap_0202", "title": "[br:0]おまちくださいレイシス"}}, {"@id": "203", "info": {"texture": "ap_0203", "title": "[br:0]RED ZONE 02"}}, {"@id": "204", "info": {"texture": "ap_0204", "title": "[br:0]JOMANDA?"}}, {"@id": "205", "info": {"texture": "ap_0205", "title": "[br:0]TYCOON 01"}}, {"@id": "206", "info": {"texture": "ap_0206", "title": "[br:0]TYCOON 02"}}, {"@id": "207", "info": {"texture": "ap_0207", "title": "[br:0]TYCOON 03"}}, {"@id": "208", "info": {"texture": "ap_0208", "title": "[br:0]超夏祭り レイシス"}}, {"@id": "209", "info": {"texture": "ap_0209", "title": "[br:0]超夏祭り 雷刀"}}, {"@id": "210", "info": {"texture": "ap_0210", "title": "[br:0]超夏祭り 烈風刀"}}, {"@id": "211", "info": {"texture": "ap_0211", "title": "[br:0]ボルテナイザー・マキシマ"}}, {"@id": "212", "info": {"texture": "ap_0212", "title": "[br:0]ボルテ一周年★記念限定カード"}}, {"@id": "213", "info": {"texture": "ap_0213", "title": "[br:0]マモニス"}}, {"@id": "214", "info": {"texture": "ap_0214", "title": "[br:0]アフロ★スター"}}, {"@id": "215", "info": {"texture": "ap_0215", "title": "[br:0]どきどきミミニャミ学園生活"}}, {"@id": "216", "info": {"texture": "ap_0216", "title": "[br:0]オトベア"}}, {"@id": "217", "info": {"texture": "ap_0217", "title": "[br:0]グルメイツ・スミス"}}, {"@id": "218", "info": {"texture": "ap_0218", "title": "[br:0]通学パステルくん"}}, {"@id": "219", "info": {"texture": "ap_0219", "title": "[br:0]おにぃさん達と遊ばない?"}}, {"@id": "220", "info": {"texture": "ap_0220", "title": "[br:0]勝手に設立!私立ボルテ学園"}}, {"@id": "1001", "info": {"texture": "ap_02_0001", "title": "さらに進化したSDVXII"}}, {"@id": "1002", "info": {"texture": "ap_02_0002", "title": "レイシスII"}}, {"@id": "1003", "info": {"texture": "ap_02_0003", "title": "つまぶき"}}, {"@id": "1004", "info": {"texture": "ap_02_0004", "title": "嬬武器雷刀"}}, {"@id": "1005", "info": {"texture": "ap_02_0005", "title": "嬬武器烈風刀"}}, {"@id": "1006", "info": {"texture": "ap_02_0006", "title": "II☆"}}, {"@id": "1007", "info": {"texture": "ap_02_0007", "title": "ボルテ学園高等部!"}}, {"@id": "1008", "info": {"texture": "ap_02_0008", "title": "レイシスさん"}}, {"@id": "1009", "info": {"texture": "ap_02_0009", "title": "◆Special×Dearest◆"}}, {"@id": "1010", "info": {"texture": "ap_02_0010", "title": "新しい世界へヨウコソ!"}}, {"@id": "1011", "info": {"texture": "ap_02_0011", "title": "レイシスビームII!!"}}, {"@id": "1012", "info": {"texture": "ap_02_0012", "title": "profile of RASIS II"}}, {"@id": "1013", "info": {"texture": "ap_02_0013", "title": "SDVXU始まりマス!"}}, {"@id": "1014", "info": {"texture": "ap_02_0014", "title": "オニイチャンに八つ当たり!"}}, {"@id": "1015", "info": {"texture": "ap_02_0015", "title": "Uでもオニイチャンにまかせとけって!"}}, {"@id": "1016", "info": {"texture": "ap_02_0016", "title": "首かしげ嬬武器~?"}}, {"@id": "1017", "info": {"texture": "ap_02_0017", "title": "イケメン嬬武器兄弟には常に風が吹く"}}, {"@id": "1018", "info": {"texture": "ap_02_0018", "title": "いざって時はオニイチャン!"}}, {"@id": "1019", "info": {"texture": "ap_02_0019", "title": "オニイチャンの本気"}}, {"@id": "1020", "info": {"texture": "ap_02_0020", "title": "ひなたぼっこ"}}, {"@id": "1021", "info": {"texture": "ap_02_0021", "title": "ダブルひだりのつまみ"}}, {"@id": "1022", "info": {"texture": "ap_02_0022", "title": "sparkling!!"}}, {"@id": "1023", "info": {"texture": "ap_02_0023", "title": "考える烈風刀"}}, {"@id": "1024", "info": {"texture": "ap_02_0024", "title": "本気でいきますよ?"}}, {"@id": "1025", "info": {"texture": "ap_02_0025", "title": "下がっていてください"}}, {"@id": "1026", "info": {"texture": "ap_02_0026", "title": "ボルテ学園優等生"}}, {"@id": "1028", "info": {"texture": "ap_02_0028", "title": "テカり教師"}}, {"@id": "1029", "info": {"texture": "ap_02_0029", "title": "英語の授業開始5秒前"}}, {"@id": "1030", "info": {"texture": "ap_02_0030", "title": "マキシマ☆ム!!ッセイ!"}}, {"@id": "1031", "info": {"texture": "ap_02_0031", "title": "サウ年ボル組!\マキシマ先生ー!/"}}, {"@id": "1032", "info": {"texture": "ap_02_0032", "title": "Maximum Power!!"}}, {"@id": "1033", "info": {"texture": "ap_02_0033", "title": "ハーッハッハッハッハッハッハッハッハ!!"}}, {"@id": "1034", "info": {"texture": "ap_02_0034", "title": "金ゴリ"}}, {"@id": "1035", "info": {"texture": "ap_02_0035", "title": "猛獣注意"}}, {"@id": "1036", "info": {"texture": "ap_02_0036", "title": "ビクトリー・ハンド・オブ・ごりら"}}, {"@id": "1037", "info": {"texture": "ap_02_0037", "title": "SUPER STAR GORILLA"}}, {"@id": "1038", "info": {"texture": "ap_02_0038", "title": "GoRi-llA先輩"}}, {"@id": "1039", "info": {"texture": "ap_02_0039", "title": "ボルテがやりたくてウズウズしているごりら"}}, {"@id": "1040", "info": {"texture": "ap_02_0040", "title": "P・U・C!!"}}, {"@id": "1041", "info": {"texture": "ap_02_0041", "title": "この歌君に届け"}}, {"@id": "1042", "info": {"texture": "ap_02_0042", "title": "歌が、好きなんだ"}}, {"@id": "1043", "info": {"texture": "ap_02_0043", "title": "咲いて咲かれて咲き誇れ"}}, {"@id": "1044", "info": {"texture": "ap_02_0044", "title": "セピアの音色"}}, {"@id": "1045", "info": {"texture": "ap_02_0045", "title": "ボクのうたを聴いて"}}, {"@id": "1046", "info": {"texture": "ap_02_0046", "title": "えへへ"}}, {"@id": "1047", "info": {"texture": "ap_02_0047", "title": "ぶいぶいっ!"}}, {"@id": "1048", "info": {"texture": "ap_02_0048", "title": "chocolate fondue"}}, {"@id": "1049", "info": {"texture": "ap_02_0049", "title": "もきゅ。"}}, {"@id": "1050", "info": {"texture": "ap_02_0050", "title": "お菓子はっけーん!!"}}, {"@id": "1051", "info": {"texture": "ap_02_0051", "title": "お菓子ハンター!"}}, {"@id": "1052", "info": {"texture": "ap_02_0052", "title": "もふもふー!"}}, {"@id": "1053", "info": {"texture": "ap_02_0053", "title": "わたがしだいすきっ!"}}, {"@id": "1054", "info": {"texture": "ap_02_0054", "title": "おまち~!"}}, {"@id": "1055", "info": {"texture": "ap_02_0055", "title": "飲茶はいかが?"}}, {"@id": "1056", "info": {"texture": "ap_02_0056", "title": "…受けてみるか?"}}, {"@id": "1057", "info": {"texture": "ap_02_0057", "title": "勝負!"}}, {"@id": "1058", "info": {"texture": "ap_02_0058", "title": "アチョー!クロミミパンダ隊!"}}, {"@id": "1059", "info": {"texture": "ap_02_0059", "title": "特訓開始!"}}, {"@id": "1060", "info": {"texture": "ap_02_0060", "title": "クロミミパンダまみれ"}}, {"@id": "1061", "info": {"texture": "ap_02_0061", "title": "ALL COMPLETE"}}, {"@id": "1062", "info": {"texture": "ap_02_0062", "title": "キャンディ三本でいいぜー"}}, {"@id": "1063", "info": {"texture": "ap_02_0063", "title": "これ食べれるの…?"}}, {"@id": "1064", "info": {"texture": "ap_02_0064", "title": "ぎゅぎゅぎゅいーん!"}}, {"@id": "1065", "info": {"texture": "ap_02_0065", "title": "天才ハッカー!"}}, {"@id": "1066", "info": {"texture": "ap_02_0066", "title": "Finish"}}, {"@id": "1067", "info": {"texture": "ap_02_0067", "title": "その体は極彩色でできている"}}, {"@id": "1068", "info": {"texture": "ap_02_0068", "title": "Are You Ready?"}}, {"@id": "1069", "info": {"texture": "ap_02_0069", "title": "VIVID RAIN"}}, {"@id": "1070", "info": {"texture": "ap_02_0070", "title": "Rain×Rain"}}, {"@id": "1071", "info": {"texture": "ap_02_0071", "title": "晴れ時々Rain"}}, {"@id": "1072", "info": {"texture": "ap_02_0072", "title": "アメフレ"}}, {"@id": "1073", "info": {"texture": "ap_02_0073", "title": "clear then rain"}}, {"@id": "1074", "info": {"texture": "ap_02_0074", "title": "青赤コンビ"}}, {"@id": "1075", "info": {"texture": "ap_02_0075", "title": "なかよしふたご!"}}, {"@id": "1076", "info": {"texture": "ap_02_0076", "title": "フリフリ★ドット"}}, {"@id": "1077", "info": {"texture": "ap_02_0077", "title": "きらきら☆にあのあ"}}, {"@id": "1078", "info": {"texture": "ap_02_0078", "title": "双子の姉妹"}}, {"@id": "1079", "info": {"texture": "ap_02_0079", "title": "双子の仲良し姉妹"}}, {"@id": "1080", "info": {"texture": "ap_02_0080", "title": "N+N"}}, {"@id": "1081", "info": {"texture": "ap_02_0081", "title": "うさぎっ!うさぎっ!"}}, {"@id": "1082", "info": {"texture": "ap_02_0082", "title": "ナニヲヲモウ"}}, {"@id": "1083", "info": {"texture": "ap_02_0083", "title": "キャハハハ!"}}, {"@id": "1084", "info": {"texture": "ap_02_0084", "title": "悪魔っ子★ドット"}}, {"@id": "1085", "info": {"texture": "ap_02_0085", "title": "オトトイキヤガレ★"}}, {"@id": "1086", "info": {"texture": "ap_02_0086", "title": "双子の魔法使い"}}, {"@id": "1087", "info": {"texture": "ap_02_0087", "title": "ナイショバナシ"}}, {"@id": "1088", "info": {"texture": "ap_02_0088", "title": "Temptation of love"}}, {"@id": "1089", "info": {"texture": "ap_02_0089", "title": "機械少女は奇跡を夢見る"}}, {"@id": "1090", "info": {"texture": "ap_02_0090", "title": "9時です。"}}, {"@id": "1091", "info": {"texture": "ap_02_0091", "title": "エスポワールちゃん故障。"}}, {"@id": "1092", "info": {"texture": "ap_02_0092", "title": "「遅刻です」"}}, {"@id": "1093", "info": {"texture": "ap_02_0093", "title": "アップデート中のエスポワール"}}, {"@id": "1094", "info": {"texture": "ap_02_0094", "title": "ハジメマシテ"}}, {"@id": "1095", "info": {"texture": "ap_02_0095", "title": "こころ"}}, {"@id": "1096", "info": {"texture": "ap_02_0096", "title": "とおいほしからやってきた!"}}, {"@id": "1097", "info": {"texture": "ap_02_0097", "title": "NyA!"}}, {"@id": "1098", "info": {"texture": "ap_02_0098", "title": "大宇宙ステージ突入!"}}, {"@id": "1099", "info": {"texture": "ap_02_0099", "title": "S☆D☆T"}}, {"@id": "1100", "info": {"texture": "ap_02_0100", "title": "TAMA.mgmg"}}, {"@id": "1101", "info": {"texture": "ap_02_0101", "title": "Paper TAMA CAT"}}, {"@id": "1102", "info": {"texture": "ap_02_0102", "title": "疾走感222%ですッ!"}}, {"@id": "1103", "info": {"texture": "ap_02_0103", "title": "つまみ、だーいすき!!"}}, {"@id": "1104", "info": {"texture": "ap_02_0104", "title": "冷気を操る程度の能力"}}, {"@id": "1105", "info": {"texture": "ap_02_0105", "title": "あたいったらさいきょーね!"}}, {"@id": "1106", "info": {"texture": "ap_02_0106", "title": "ちょこんとパチュリー"}}, {"@id": "1107", "info": {"texture": "ap_02_0107", "title": "動かないでじっとこちらを見てる大図書館さん"}}, {"@id": "1108", "info": {"texture": "ap_02_0108", "title": "交差する赤と青の魔法"}}, {"@id": "1109", "info": {"texture": "ap_02_0109", "title": "フランドールの羽はつまぶきなのか?"}}, {"@id": "1110", "info": {"texture": "ap_02_0110", "title": "フランちゃん"}}, {"@id": "1111", "info": {"texture": "ap_02_0111", "title": "ぺかーん☆"}}, {"@id": "1112", "info": {"texture": "ap_02_0112", "title": "ふんわりふわふわ"}}, {"@id": "1113", "info": {"texture": "ap_02_0113", "title": "そーなのかなー"}}, {"@id": "1114", "info": {"texture": "ap_02_0114", "title": "そーなのかー"}}, {"@id": "1115", "info": {"texture": "ap_02_0115", "title": "KACのレミリア"}}, {"@id": "1116", "info": {"texture": "ap_02_0116", "title": "紅れみ"}}, {"@id": "1117", "info": {"texture": "ap_02_0117", "title": "チャイナ娘"}}, {"@id": "1118", "info": {"texture": "ap_02_0118", "title": "セイヤッ!"}}, {"@id": "1119", "info": {"texture": "ap_02_0119", "title": "上海功夫大旋風"}}, {"@id": "1120", "info": {"texture": "ap_02_0120", "title": "瀟洒!紅魔のメイド長!"}}, {"@id": "1121", "info": {"texture": "ap_02_0121", "title": "メイドと血の懐中時計"}}, {"@id": "1122", "info": {"texture": "ap_02_0122", "title": "大図書館の小悪魔"}}, {"@id": "1123", "info": {"texture": "ap_02_0123", "title": "紅魔の小悪魔ラヴリィ~レイディオ!"}}, {"@id": "1124", "info": {"texture": "ap_02_0124", "title": "大妖精"}}, {"@id": "1125", "info": {"texture": "ap_02_0125", "title": "ほわほわ大妖精"}}, {"@id": "1126", "info": {"texture": "ap_02_0126", "title": "御賽銭(マッチングポイント)頂戴☆"}}, {"@id": "1127", "info": {"texture": "ap_02_0127", "title": "博麗神社の脇巫女さん"}}, {"@id": "1128", "info": {"texture": "ap_02_0128", "title": "妖怪退治に行きましょう"}}, {"@id": "1129", "info": {"texture": "ap_02_0129", "title": "魔理沙さまのお通りだい!"}}, {"@id": "1130", "info": {"texture": "ap_02_0130", "title": "派手じゃなきゃ魔法じゃない"}}, {"@id": "1131", "info": {"texture": "ap_02_0131", "title": "DAZE!"}}, {"@id": "1132", "info": {"texture": "ap_02_0132", "title": "お仕事代行中"}}, {"@id": "1133", "info": {"texture": "ap_02_0133", "title": "いっぱい食べてね、おじーちゃん☆"}}, {"@id": "1134", "info": {"texture": "ap_02_0134", "title": "ボルテちっぷす 新発売!"}}, {"@id": "1135", "info": {"texture": "ap_02_0135", "title": "りむるにリプしたのは貴方?"}}, {"@id": "1136", "info": {"texture": "ap_02_0136", "title": "とりかえっこツインズ"}}, {"@id": "1137", "info": {"texture": "ap_02_0137", "title": "大宇宙がマルゴトヤッテクル"}}, {"@id": "1138", "info": {"texture": "ap_02_0138", "title": "Girls collection♪コスプレよ&福龍アルヨッ"}}, {"@id": "1139", "info": {"texture": "ap_02_0139", "title": "ボルテの塔からこんにちは!"}}, {"@id": "1140", "info": {"texture": "ap_02_0140", "title": "Girls collection♪『兄弟コスプレ』「デス!」"}}, {"@id": "1141", "info": {"texture": "ap_02_0141", "title": "ボルテ軒の新メニュー"}}, {"@id": "1142", "info": {"texture": "ap_02_0142", "title": "夏こそアツアツマシマシ!"}}, {"@id": "1143", "info": {"texture": "ap_02_0143", "title": "芸○人は歯が命"}}, {"@id": "1144", "info": {"texture": "ap_02_0144", "title": "スーツでビシッと決めるぜ☆"}}, {"@id": "1145", "info": {"texture": "ap_02_0145", "title": "愛を貴方へ♡"}}, {"@id": "1146", "info": {"texture": "ap_02_0146", "title": "つまムキだゼッ!!"}}, {"@id": "1147", "info": {"texture": "ap_02_0147", "title": "…。"}}, {"@id": "1148", "info": {"texture": "ap_02_0148", "title": "みわくのもふもふタイム"}}, {"@id": "1149", "info": {"texture": "ap_02_0149", "title": "刃の矛先は"}}, {"@id": "1150", "info": {"texture": "ap_02_0150", "title": "SOUND VOLTEX UDX"}}, {"@id": "1151", "info": {"texture": "ap_02_0151", "title": "ドキッ!男だらけの海水浴"}}, {"@id": "1152", "info": {"texture": "ap_02_0152", "title": "雨宿り"}}, {"@id": "1153", "info": {"texture": "ap_02_0153", "title": "Heart to Heart"}}, {"@id": "1154", "info": {"texture": "ap_02_0154", "title": "しーいずまいわいふと愉快なバックダンサーたち"}}, {"@id": "1155", "info": {"texture": "ap_02_0155", "title": "Girls collection♪猫男爵ですの&ですョッ!"}}, {"@id": "1156", "info": {"texture": "ap_02_0156", "title": "タマキナ、海を体験"}}, {"@id": "1157", "info": {"texture": "ap_02_0157", "title": "とろ~り甘いひとときを"}}, {"@id": "1158", "info": {"texture": "ap_02_0158", "title": "この問題の答えを…嬬武器雷刀!! セイッ!!!!"}}, {"@id": "1159", "info": {"texture": "ap_02_0159", "title": "Girls collection♪ニアカヲデイズだよっ&ダゾ"}}, {"@id": "1160", "info": {"texture": "ap_02_0160", "title": "モフりたいっ!"}}, {"@id": "1161", "info": {"texture": "ap_02_0161", "title": "画面の中からコンニチハ!"}}, {"@id": "1162", "info": {"texture": "ap_02_0162", "title": "みんなでにゃーん!"}}, {"@id": "1163", "info": {"texture": "ap_02_0163", "title": "目覚めよ、愚かな英雄よ"}}, {"@id": "1164", "info": {"texture": "ap_02_0164", "title": "紅刃さんとゆかいな仲間たち!(主に動物たち)"}}, {"@id": "1165", "info": {"texture": "ap_02_0165", "title": "小さくてかわいい!"}}, {"@id": "1166", "info": {"texture": "ap_02_0166", "title": "ぽかぽかふわふわ"}}, {"@id": "1167", "info": {"texture": "ap_02_0167", "title": "うちゅうゆうえい!"}}, {"@id": "1168", "info": {"texture": "ap_02_0168", "title": "vsダークヒーロー"}}, {"@id": "1169", "info": {"texture": "ap_02_0169", "title": "背中は任せた"}}, {"@id": "1170", "info": {"texture": "ap_02_0170", "title": "双子ちゃん詰め合わせ!"}}, {"@id": "1171", "info": {"texture": "ap_02_0171", "title": "放課後レッスン"}}, {"@id": "1172", "info": {"texture": "ap_02_0172", "title": "ナ・ナ・イ・ロ"}}, {"@id": "1173", "info": {"texture": "ap_02_0173", "title": "セーラー服の二人組"}}, {"@id": "1174", "info": {"texture": "ap_02_0174", "title": "捕獲失敗"}}, {"@id": "1175", "info": {"texture": "ap_02_0175", "title": "新メニューだよ☆"}}, {"@id": "1176", "info": {"texture": "ap_02_0176", "title": "恋をするって、どういうことかしら?"}}, {"@id": "1177", "info": {"texture": "ap_02_0177", "title": "ズッ友って言ったよね?"}}, {"@id": "1178", "info": {"texture": "ap_02_0178", "title": "うまそ~っ!!!"}}, {"@id": "1179", "info": {"texture": "ap_02_0179", "title": "ぎゅ!"}}, {"@id": "1180", "info": {"texture": "ap_02_0180", "title": "お菓子をくれなきゃ!イタズラスルゾ!"}}, {"@id": "1181", "info": {"texture": "ap_02_0181", "title": "体の凄い鍛え方、そして鍛えることによるその効果。"}}, {"@id": "1182", "info": {"texture": "ap_02_0182", "title": "ズッ友フォロワー!"}}, {"@id": "1183", "info": {"texture": "ap_02_0183", "title": "暗闇ファイバー"}}, {"@id": "1184", "info": {"texture": "ap_02_0184", "title": "地底世界"}}, {"@id": "1185", "info": {"texture": "ap_02_0185", "title": "逆さまハルト"}}, {"@id": "1186", "info": {"texture": "ap_02_0186", "title": "にゃあ"}}, {"@id": "1187", "info": {"texture": "ap_02_0187", "title": "スウィートカフェ☆プリンス"}}, {"@id": "1188", "info": {"texture": "ap_02_0188", "title": "♪♪"}}, {"@id": "1189", "info": {"texture": "ap_02_0189", "title": "大宇宙゛!"}}, {"@id": "1190", "info": {"texture": "ap_02_0190", "title": "SDVXへようこそ!"}}, {"@id": "1191", "info": {"texture": "ap_02_0191", "title": "クールな4人組…?"}}, {"@id": "1192", "info": {"texture": "ap_02_0192", "title": "ZOLA_W"}}, {"@id": "1193", "info": {"texture": "ap_02_0193", "title": "紅白の巫女"}}, {"@id": "1194", "info": {"texture": "ap_02_0194", "title": "博麗霊夢にお任せ!"}}, {"@id": "1195", "info": {"texture": "ap_02_0195", "title": "秘宝をいただきに来たぜ"}}, {"@id": "1196", "info": {"texture": "ap_02_0196", "title": "くらえ!マスタースパーク!"}}, {"@id": "1197", "info": {"texture": "ap_02_0197", "title": "貴方に止められるかしら?"}}, {"@id": "1198", "info": {"texture": "ap_02_0198", "title": "完全瀟洒"}}, {"@id": "1199", "info": {"texture": "ap_02_0199", "title": "チルノsei-jin?"}}, {"@id": "1200", "info": {"texture": "ap_02_0200", "title": "あたいの★ぱ~ふぇくとさんすう教室~~っ!"}}, {"@id": "1201", "info": {"texture": "ap_02_0201", "title": "わかさぎ姫釣り"}}, {"@id": "1202", "info": {"texture": "ap_02_0202", "title": "わかさぎちゃん"}}, {"@id": "1203", "info": {"texture": "ap_02_0203", "title": "ギュイーンばんきっき!"}}, {"@id": "1204", "info": {"texture": "ap_02_0204", "title": "頭を取るだけの能力"}}, {"@id": "1205", "info": {"texture": "ap_02_0205", "title": "頭を見る度うなされよ!"}}, {"@id": "1206", "info": {"texture": "ap_02_0206", "title": "かげろうわんわんお"}}, {"@id": "1207", "info": {"texture": "ap_02_0207", "title": "竹林のルーガルー"}}, {"@id": "1208", "info": {"texture": "ap_02_0208", "title": "絃"}}, {"@id": "1209", "info": {"texture": "ap_02_0209", "title": "古びた琵琶の付喪神"}}, {"@id": "1210", "info": {"texture": "ap_02_0210", "title": "私の奏でる"}}, {"@id": "1211", "info": {"texture": "ap_02_0211", "title": "九十九八橋と不思議な音符"}}, {"@id": "1212", "info": {"texture": "ap_02_0212", "title": "見返り天邪鬼"}}, {"@id": "1213", "info": {"texture": "ap_02_0213", "title": "リバースツマブキー"}}, {"@id": "1214", "info": {"texture": "ap_02_0214", "title": "うっかりうつわまちがえた"}}, {"@id": "1215", "info": {"texture": "ap_02_0215", "title": "ウォールオブボルテ"}}, {"@id": "1216", "info": {"texture": "ap_02_0216", "title": "ボルテ軒の革命マスコット"}}, {"@id": "1217", "info": {"texture": "ap_02_0217", "title": "夢幻のパーカッショニスト"}}, {"@id": "1218", "info": {"texture": "ap_02_0218", "title": "雷コンビ結成!?"}}, {"@id": "1219", "info": {"texture": "ap_02_0219", "title": "コンソール-ネメシス-に到着!"}}, {"@id": "1220", "info": {"texture": "ap_02_0220", "title": "つまみの上で応援!"}}, {"@id": "1221", "info": {"texture": "ap_02_0221", "title": "れっつご~☆"}}, {"@id": "1222", "info": {"texture": "ap_02_0222", "title": "世界はGUMIネコのもの"}}, {"@id": "1223", "info": {"texture": "ap_02_0223", "title": "サンシャインデュエット"}}, {"@id": "1224", "info": {"texture": "ap_02_0224", "title": "GUMIパンダ"}}, {"@id": "1225", "info": {"texture": "ap_02_0225", "title": "ぐみたま!"}}, {"@id": "1226", "info": {"texture": "ap_02_0226", "title": "舌ペロ!GUMI"}}, {"@id": "1227", "info": {"texture": "ap_02_0227", "title": "しあわせ!"}}, {"@id": "1228", "info": {"texture": "ap_02_0228", "title": "フレーッ!!自己ベあるゼーッ!"}}, {"@id": "1229", "info": {"texture": "ap_02_0229", "title": "『頑張るキミを、応援するよ!』"}}, {"@id": "1230", "info": {"texture": "ap_02_0230", "title": "SDVXUでもGUMIちゃん♪"}}, {"@id": "1231", "info": {"texture": "ap_02_0231", "title": "GUMI覚醒"}}, {"@id": "1232", "info": {"texture": "ap_02_0232", "title": "はい、チーズ!"}}, {"@id": "1233", "info": {"texture": "ap_02_0233", "title": "HAPPY!"}}, {"@id": "1234", "info": {"texture": "ap_02_0234", "title": "GUMII"}}, {"@id": "1235", "info": {"texture": "ap_02_0235", "title": "GUMI*TAMA"}}, {"@id": "1236", "info": {"texture": "ap_02_0236", "title": "勢いあまって!?"}}, {"@id": "1237", "info": {"texture": "ap_02_0237", "title": "ボルテ組(GUMI)集合!"}}, {"@id": "1238", "info": {"texture": "ap_02_0238", "title": "ぐみあんどそうる"}}, {"@id": "1239", "info": {"texture": "ap_02_0239", "title": "実験開始!"}}, {"@id": "1240", "info": {"texture": "ap_02_0240", "title": "GUMIのいくじなし~><"}}, {"@id": "1241", "info": {"texture": "ap_02_0241", "title": "ボルテの空をお散歩★"}}, {"@id": "1242", "info": {"texture": "ap_02_0242", "title": "ボーカル・アンドロイド"}}, {"@id": "1243", "info": {"texture": "ap_02_0243", "title": "悪夢、再び"}}, {"@id": "1244", "info": {"texture": "ap_02_0244", "title": "ぐみっとラック!☆"}}, {"@id": "1245", "info": {"texture": "ap_02_0245", "title": "和の華GUMI"}}, {"@id": "1246", "info": {"texture": "ap_02_0246", "title": "もちっ"}}, {"@id": "1247", "info": {"texture": "ap_02_0247", "title": "私の腕前、見てて欲しいな"}}, {"@id": "1248", "info": {"texture": "ap_02_0248", "title": "ミカンからこんにちは"}}, {"@id": "1249", "info": {"texture": "ap_02_0249", "title": "みかんレイシス"}}, {"@id": "1250", "info": {"texture": "ap_02_0250", "title": "エスポワール@マドンナ"}}, {"@id": "1251", "info": {"texture": "ap_02_0251", "title": "愛媛からみかんのお届け物です"}}, {"@id": "1252", "info": {"texture": "ap_02_0252", "title": "Ryu-Kyu Dog"}}, {"@id": "1253", "info": {"texture": "ap_02_0253", "title": "まもって!レイシ~サ~ズ!"}}, {"@id": "1254", "info": {"texture": "ap_02_0254", "title": "マンタの精「いとまき」ダゼッ!"}}, {"@id": "1255", "info": {"texture": "ap_02_0255", "title": "はわわ!夕焼けビーチサイドデス!"}}, {"@id": "1256", "info": {"texture": "ap_02_0256", "title": "やっぱり似合うねッ!"}}, {"@id": "1257", "info": {"texture": "ap_02_0257", "title": "海幸彦と山幸彦"}}, {"@id": "1258", "info": {"texture": "ap_02_0258", "title": "ひょっとこ祭りデス!"}}, {"@id": "1259", "info": {"texture": "ap_02_0259", "title": "先生の目の色とおんなじ~!"}}, {"@id": "1260", "info": {"texture": "ap_02_0260", "title": "ひょっとこカヲアシダゾー!"}}, {"@id": "1261", "info": {"texture": "ap_02_0261", "title": "もちゅーン★ばんぺいゆっ!"}}, {"@id": "1262", "info": {"texture": "ap_02_0262", "title": "熊本名物いきなり団子"}}, {"@id": "1263", "info": {"texture": "ap_02_0263", "title": "Voltecano Aso"}}, {"@id": "1264", "info": {"texture": "ap_02_0264", "title": "あま~いスイカ♪じゅーしーデス☆"}}, {"@id": "1265", "info": {"texture": "ap_02_0265", "title": "サ \"ウドン\" ボルテックス!!"}}, {"@id": "1266", "info": {"texture": "ap_02_0266", "title": "UDON Diver Tama"}}, {"@id": "1267", "info": {"texture": "ap_02_0267", "title": "讃岐うどん、いっただきま~す!"}}, {"@id": "1268", "info": {"texture": "ap_02_0268", "title": "うどん県、それだけじゃない香川県"}}, {"@id": "1269", "info": {"texture": "ap_02_0269", "title": "これがちきゅぅのかつおですかツ"}}, {"@id": "1270", "info": {"texture": "ap_02_0270", "title": "ボルテの夜明けぜよ!"}}, {"@id": "1271", "info": {"texture": "ap_02_0271", "title": "「キズついたヒトに、ボクの[br:0]カツオを食べてほしいんだ・・・」"}}, {"@id": "1272", "info": {"texture": "ap_02_0272", "title": "エンヤ!ヨイサー!"}}, {"@id": "1273", "info": {"texture": "ap_02_0273", "title": "福岡県産あまおう&佐賀県産さがほのか&ボルテ産つまぶき"}}, {"@id": "1274", "info": {"texture": "ap_02_0274", "title": "壺の中からこんにちは"}}, {"@id": "1275", "info": {"texture": "ap_02_0275", "title": "薩摩切子で一杯いかが?"}}, {"@id": "1276", "info": {"texture": "ap_02_0276", "title": "しろくま"}}, {"@id": "1277", "info": {"texture": "ap_02_0277", "title": "みんなでしろくま!"}}, {"@id": "1278", "info": {"texture": "ap_02_0278", "title": "大宇宙へ!"}}, {"@id": "1279", "info": {"texture": "ap_02_0279", "title": "きつねさんとおどりましょう"}}, {"@id": "1280", "info": {"texture": "ap_02_0280", "title": "温泉でほかほか!"}}, {"@id": "1281", "info": {"texture": "ap_02_0281", "title": "美味しそうなフグちゃんですぞ!"}}, {"@id": "1282", "info": {"texture": "ap_02_0282", "title": "剛力羅温泉~おんせん県~"}}, {"@id": "1283", "info": {"texture": "ap_02_0283", "title": "かぼすスプラッシュ"}}, {"@id": "1284", "info": {"texture": "ap_02_0284", "title": "レイシスin出島"}}, {"@id": "1285", "info": {"texture": "ap_02_0285", "title": "おいしそ~う♡"}}, {"@id": "1286", "info": {"texture": "ap_02_0286", "title": "ME!GA!NE!"}}, {"@id": "1287", "info": {"texture": "ap_02_0287", "title": "ツツジに短冊"}}, {"@id": "1288", "info": {"texture": "ap_02_0288", "title": "阿波踊りinボルテ学園!"}}, {"@id": "1289", "info": {"texture": "ap_02_0289", "title": "レイシスと阿波踊り"}}, {"@id": "1290", "info": {"texture": "ap_02_0290", "title": "ぽんぽこぽこぽん"}}, {"@id": "1291", "info": {"texture": "ap_02_0291", "title": "阿波のTAMA狸"}}, {"@id": "1292", "info": {"texture": "ap_02_0292", "title": "ねぇ~ぼんきち♡鉄鍋餃子、食・べ・よ?"}}, {"@id": "1293", "info": {"texture": "ap_02_0293", "title": "SDVX流山笠!"}}, {"@id": "1294", "info": {"texture": "ap_02_0294", "title": "はだからーめん☆"}}, {"@id": "1501", "info": {"texture": "ap_02_R0001", "title": "レイシス II"}}, {"@id": "1502", "info": {"texture": "ap_02_R0002", "title": "あんず"}}, {"@id": "1503", "info": {"texture": "ap_02_R0003", "title": "リボン"}}, {"@id": "1504", "info": {"texture": "ap_02_R0004", "title": "椿&クロミミパンダ隊"}}, {"@id": "1505", "info": {"texture": "ap_02_R0005", "title": "TAMA&TAMA猫"}}, {"@id": "1506", "info": {"texture": "ap_02_R0006", "title": "赤志 魂"}}, {"@id": "1507", "info": {"texture": "ap_02_R0007", "title": "ニア・ノア"}}, {"@id": "1508", "info": {"texture": "ap_02_R0008", "title": "青雨 冷音"}}, {"@id": "1509", "info": {"texture": "ap_02_R0009", "title": "カヲル&アシタ"}}, {"@id": "1510", "info": {"texture": "ap_02_R0010", "title": "エスポワール:PDR改良弐型"}}, {"@id": "1511", "info": {"texture": "ap_02_R0011", "title": "霊夢レイシス"}}, {"@id": "1512", "info": {"texture": "ap_02_R0012", "title": "レイテルちゃん"}}, {"@id": "1513", "info": {"texture": "ap_02_R0013", "title": "パスぶきくん"}}, {"@id": "1514", "info": {"texture": "ap_02_R0014", "title": "お月見レイシス"}}, {"@id": "1515", "info": {"texture": "ap_02_R0015", "title": "お月見 雷刀"}}, {"@id": "1516", "info": {"texture": "ap_02_R0016", "title": "お月見 烈風刀"}}, {"@id": "1517", "info": {"texture": "ap_02_R0017", "title": "お月見 バタフライキャット 雛"}}, {"@id": "1518", "info": {"texture": "ap_02_R0018", "title": "お月見 バタフライキャット 蒼"}}, {"@id": "1519", "info": {"texture": "ap_02_R0019", "title": "お月見 バタフライキャット 桃"}}, {"@id": "1520", "info": {"texture": "ap_02_R0020", "title": "もちつき 不律灯色"}}, {"@id": "1521", "info": {"texture": "ap_02_R0021", "title": "もちつきマキシマ"}}, {"@id": "1522", "info": {"texture": "ap_02_R0022", "title": "お団子 シャトー・ロワーレ"}}, {"@id": "1523", "info": {"texture": "ap_02_R0023", "title": "お月見 傍丹桜子"}}, {"@id": "1524", "info": {"texture": "ap_02_R0024", "title": "お月見 ハルト=カプサイシン=スチプチサット"}}, {"@id": "1525", "info": {"texture": "ap_02_R0025", "title": "勝手に!宇宙戦争!"}}, {"@id": "1526", "info": {"texture": "ap_02_R0026", "title": "ハロウィン レイシス"}}, {"@id": "1527", "info": {"texture": "ap_02_R0027", "title": "ハロウィン カヲル"}}, {"@id": "1538", "info": {"texture": "ap_02_R0028", "title": "ハロウィン アシタ"}}, {"@id": "1529", "info": {"texture": "ap_02_R0029", "title": "ハロウィン 埴仁 虎子"}}, {"@id": "1530", "info": {"texture": "ap_02_R0030", "title": "ハロウィン 赤志 魂"}}, {"@id": "1531", "info": {"texture": "ap_02_R0031", "title": "ハロウィン 青雨 冷音"}}, {"@id": "1532", "info": {"texture": "ap_02_R0032", "title": "ハロウィン リボン"}}, {"@id": "1533", "info": {"texture": "ap_02_R0033", "title": "ハロウィン 虹霓・シエル・奈奈"}}, {"@id": "1534", "info": {"texture": "ap_02_R0034", "title": "ハロウィン 猫男爵ガンガラ卿"}}, {"@id": "1535", "info": {"texture": "ap_02_R0035", "title": "KAC2013 -みんな頑張るのデスッ★-"}}, {"@id": "1536", "info": {"texture": "ap_02_R0036", "title": "KAC2013 -フゥーー!!&ウホーーッ!!-"}}, {"@id": "1537", "info": {"texture": "ap_02_R0037", "title": "KAC記念メダル"}}, {"@id": "1528", "info": {"texture": "ap_02_R0038", "title": "つまぶKING!!!"}}, {"@id": "1539", "info": {"texture": "ap_02_R0039", "title": "!キミ達が創る究極の音楽ゲーム!"}}, {"@id": "1540", "info": {"texture": "ap_02_R0040", "title": "DJクイーンレイシスちゃん"}}, {"@id": "1541", "info": {"texture": "ap_02_R0041", "title": "SDVXキャラクター部門優勝!?"}}, {"@id": "1542", "info": {"texture": "ap_02_R0042", "title": "SDVX♡WINTER"}}, {"@id": "1543", "info": {"texture": "ap_02_R0043", "title": "2014年マキシマより君に"}}, {"@id": "1544", "info": {"texture": "ap_02_R0044", "title": "ボルテ弐周年★記念限定カード"}}, {"@id": "1545", "info": {"texture": "ap_02_R0045", "title": "幕張2014限定レイシスw"}}, {"@id": "1546", "info": {"texture": "ap_02_R0046", "title": "届け!インフィニットレイシス"}}, {"@id": "1547", "info": {"texture": "ap_02_R0047", "title": "届かない!インフィニットつまぶき"}}, {"@id": "1548", "info": {"texture": "ap_02_R0048", "title": "バレンタイン ミツル子ちゃん"}}, {"@id": "1549", "info": {"texture": "ap_02_R0049", "title": "バレンタイン 野増菜 かなで"}}, {"@id": "1550", "info": {"texture": "ap_02_R0050", "title": "バレンタイン 嬬武器兄弟"}}, {"@id": "1551", "info": {"texture": "ap_02_R0051", "title": "バレンタイン 後輩組"}}, {"@id": "1552", "info": {"texture": "ap_02_R0052", "title": "バレンタイン マキシマ"}}, {"@id": "1553", "info": {"texture": "ap_02_R0053", "title": "バレンタイン バタフライキャット"}}, {"@id": "1554", "info": {"texture": "ap_02_R0054", "title": "TAG誕生祭スペシャルアピカ★"}}, {"@id": "1555", "info": {"texture": "ap_02_R0055", "title": "春だ♡つまぶき!"}}, {"@id": "1556", "info": {"texture": "ap_02_R0056", "title": "祝★サントラ[br:0]霊夢♡レイシス"}}, {"@id": "1557", "info": {"texture": "ap_02_R0057", "title": "祝★サントラ[br:0]咲夜♡フランちゃん"}}, {"@id": "1558", "info": {"texture": "ap_02_R0058", "title": "祝★サントラ[br:0]チルノ♡ルーミア"}}, {"@id": "1559", "info": {"texture": "ap_02_R0059", "title": "祝★サントラ[br:0]雷リア♡大烈風精"}}, {"@id": "1560", "info": {"texture": "ap_02_R0060", "title": "祝★サントラ[br:0]マイペース♡パチュリー"}}, {"@id": "1561", "info": {"texture": "ap_02_R0061", "title": "ここなつ[br:0]東雲夏陽"}}, {"@id": "1562", "info": {"texture": "ap_02_R0062", "title": "ここなつ[br:0]東雲心菜"}}, {"@id": "1563", "info": {"texture": "ap_02_R0063", "title": "ここなつ[br:0]ミライプリズム"}}, {"@id": "1564", "info": {"texture": "ap_02_R0064", "title": "カミヤ・シン"}}, {"@id": "1565", "info": {"texture": "ap_02_R0065", "title": "エレナ・ザハロフ"}}, {"@id": "1566", "info": {"texture": "ap_02_R0066", "title": "リディア・ペトラコフ"}}, {"@id": "1567", "info": {"texture": "ap_02_R0067", "title": "ホダカ・レクレール・キョウコ"}}, {"@id": "1568", "info": {"texture": "ap_02_R0068", "title": "カミヤ・シン"}}, {"@id": "1569", "info": {"texture": "ap_02_R0069", "title": "エレナ・ザハロフ"}}, {"@id": "1570", "info": {"texture": "ap_02_R0070", "title": "サイード・ナジム"}}, {"@id": "1571", "info": {"texture": "ap_02_R0071", "title": "アンナ・ベルンハルト"}}, {"@id": "1572", "info": {"texture": "ap_02_R0072", "title": "クライブ・ロックハート"}}, {"@id": "1573", "info": {"texture": "ap_02_R0073", "title": "セレスティーヌ・シャルロア"}}, {"@id": "1574", "info": {"texture": "ap_02_R0074", "title": "アレックス・サザーランド"}}, {"@id": "1575", "info": {"texture": "ap_02_R0075", "title": "ユン・リナ"}}, {"@id": "1576", "info": {"texture": "ap_02_R0076", "title": "ノア・メーテルリンク"}}, {"@id": "1577", "info": {"texture": "ap_02_R0077", "title": "ミカサ・クリムゾン"}}, {"@id": "1578", "info": {"texture": "ap_02_R0078", "title": "カリン@わりとねむい"}}, {"@id": "1579", "info": {"texture": "ap_02_R0079", "title": "マリオン・ラヴ"}}, {"@id": "1580", "info": {"texture": "ap_02_R0080", "title": "リディア・ペトラコフ"}}, {"@id": "1581", "info": {"texture": "ap_02_R0081", "title": "ジャスティン・カートライト"}}, {"@id": "1582", "info": {"texture": "ap_02_R0082", "title": "ホダカ・レクレール・キョウコ"}}, {"@id": "1583", "info": {"texture": "ap_02_R0083", "title": "いいなつやすみ♪レイシス"}}, {"@id": "1584", "info": {"texture": "ap_02_R0084", "title": "ルレイシス神"}}, {"@id": "1585", "info": {"texture": "ap_02_R0085", "title": "ツァマブーキ2世"}}, {"@id": "1586", "info": {"texture": "ap_02_R0086", "title": "ここなつ[br:0]東雲夏陽"}}, {"@id": "1587", "info": {"texture": "ap_02_R0087", "title": "ここなつ[br:0]東雲心菜"}}, {"@id": "1900", "info": {"texture": "ap_02_S0001", "title": "dj TAKA"}}, {"@id": "1901", "info": {"texture": "ap_02_S0002", "title": "DJ YOSHITAKA"}}, {"@id": "1902", "info": {"texture": "ap_02_S0003", "title": "sota fujimori"}}, {"@id": "1903", "info": {"texture": "ap_02_S0004", "title": "cody"}}, {"@id": "1904", "info": {"texture": "ap_02_S0005", "title": "ボルテスタッフ"}}, {"@id": "2001", "info": {"texture": "ap_03_0001", "title": "未知なるSDVXIII"}}, {"@id": "2002", "info": {"texture": "ap_03_0002", "title": "レイシスIII"}}, {"@id": "2003", "info": {"texture": "ap_03_0003", "title": "つまぶき"}}, {"@id": "2004", "info": {"texture": "ap_03_0004", "title": "嬬武器雷刀"}}, {"@id": "2005", "info": {"texture": "ap_03_0005", "title": "嬬武器烈風刀"}}, {"@id": "2006", "info": {"texture": "ap_03_0006", "title": "アップデート レイシスV"}}, {"@id": "2007", "info": {"texture": "ap_03_0007", "title": "ボルテ3!始まりマ~ス!!!"}}, {"@id": "2008", "info": {"texture": "ap_03_0008", "title": "はわわ!Vデスッ!w"}}, {"@id": "2009", "info": {"texture": "ap_03_0009", "title": "ぼくらの"}}, {"@id": "2010", "info": {"texture": "ap_03_0010", "title": "ぐらびてぃ~♪"}}, {"@id": "2011", "info": {"texture": "ap_03_0011", "title": "profile of RASIS III"}}, {"@id": "2012", "info": {"texture": "ap_03_0012", "title": "飛び跳ねレーン、あばれつまみにご用心?!"}}, {"@id": "2013", "info": {"texture": "ap_03_0013", "title": "レイシスビームMAXIMUM!!!"}}, {"@id": "2014", "info": {"texture": "ap_03_0014", "title": "つまぶきウォールだゼッ!!"}}, {"@id": "2015", "info": {"texture": "ap_03_0015", "title": "PUCが出ちゃったゼ・・・"}}, {"@id": "2016", "info": {"texture": "ap_03_0016", "title": "ツインテールダゼッ!!"}}, {"@id": "2017", "info": {"texture": "ap_03_0017", "title": "行くぜ!ちゅどーん!"}}, {"@id": "2018", "info": {"texture": "ap_03_0018", "title": "勝負アピカ~ver.カード勢~"}}, {"@id": "2019", "info": {"texture": "ap_03_0019", "title": "春待ちですの。"}}, {"@id": "2020", "info": {"texture": "ap_03_0020", "title": "恋する乙女の横顔"}}, {"@id": "2021", "info": {"texture": "ap_03_0021", "title": "そばに!"}}, {"@id": "2022", "info": {"texture": "ap_03_0022", "title": "Vでもいっしょにいさせてよね!"}}, {"@id": "2023", "info": {"texture": "ap_03_0023", "title": "はずかしいですの!"}}, {"@id": "2024", "info": {"texture": "ap_03_0024", "title": "バニー虎子ちゃん"}}, {"@id": "2025", "info": {"texture": "ap_03_0025", "title": "虎の逆鱗"}}, {"@id": "2026", "info": {"texture": "ap_03_0026", "title": "恥ずかしがり屋なウェイトレスさん"}}, {"@id": "2027", "info": {"texture": "ap_03_0027", "title": "ハチミツたっぷり召し上がれ"}}, {"@id": "2028", "info": {"texture": "ap_03_0028", "title": "高貴感のあるロワーレ"}}, {"@id": "2029", "info": {"texture": "ap_03_0029", "title": "格別な一杯"}}, {"@id": "2030", "info": {"texture": "ap_03_0030", "title": "美しいでしょう?"}}, {"@id": "2031", "info": {"texture": "ap_03_0031", "title": "ぼんきちアイコン"}}, {"@id": "2032", "info": {"texture": "ap_03_0032", "title": "稀になかよし"}}, {"@id": "2033", "info": {"texture": "ap_03_0033", "title": "アブナイ箱詰めごっこ"}}, {"@id": "2034", "info": {"texture": "ap_03_0034", "title": "そう簡単には通さないわよ?"}}, {"@id": "2035", "info": {"texture": "ap_03_0035", "title": "caprice*"}}, {"@id": "2036", "info": {"texture": "ap_03_0036", "title": "ゴリラvs道化師"}}, {"@id": "2037", "info": {"texture": "ap_03_0037", "title": "地下階段に潜む道化師"}}, {"@id": "2038", "info": {"texture": "ap_03_0038", "title": "holy night trick!!"}}, {"@id": "2039", "info": {"texture": "ap_03_0039", "title": "保健委員長は血がお好き"}}, {"@id": "2040", "info": {"texture": "ap_03_0040", "title": "赤と黒い猫"}}, {"@id": "2041", "info": {"texture": "ap_03_0041", "title": "暴れちゃ駄目よ"}}, {"@id": "2042", "info": {"texture": "ap_03_0042", "title": "シリンジいっぱいの赤い液体にうっとり"}}, {"@id": "2043", "info": {"texture": "ap_03_0043", "title": "「動かないで。針が上手く刺さらないわ。」"}}, {"@id": "2044", "info": {"texture": "ap_03_0044", "title": "手当てしてあげる"}}, {"@id": "2045", "info": {"texture": "ap_03_0045", "title": "炎の騎士"}}, {"@id": "2046", "info": {"texture": "ap_03_0046", "title": "闘志"}}, {"@id": "2047", "info": {"texture": "ap_03_0047", "title": "どっかーーーーん"}}, {"@id": "2048", "info": {"texture": "ap_03_0048", "title": "添い寝イノテン"}}, {"@id": "2049", "info": {"texture": "ap_03_0049", "title": "キミは燃えてるぅ?"}}, {"@id": "2050", "info": {"texture": "ap_03_0050", "title": "おなかあったかイノテンちゃん"}}, {"@id": "2051", "info": {"texture": "ap_03_0051", "title": "分技進化"}}, {"@id": "2052", "info": {"texture": "ap_03_0052", "title": "なぁに~?それ、オモシロイのぉ?"}}, {"@id": "2053", "info": {"texture": "ap_03_0053", "title": "イノテンちゃん"}}, {"@id": "2054", "info": {"texture": "ap_03_0054", "title": "ボルテIIIもまかせとけって♪"}}, {"@id": "2055", "info": {"texture": "ap_03_0055", "title": "ブラスター雷刀"}}, {"@id": "2056", "info": {"texture": "ap_03_0056", "title": "RIGHT V"}}, {"@id": "2057", "info": {"texture": "ap_03_0057", "title": "おめでとうだぜッ!"}}, {"@id": "2058", "info": {"texture": "ap_03_0058", "title": "烈風刀の3分クッキング"}}, {"@id": "2059", "info": {"texture": "ap_03_0059", "title": "超越セシ者"}}, {"@id": "2060", "info": {"texture": "ap_03_0060", "title": "パセリ大収穫"}}, {"@id": "2061", "info": {"texture": "ap_03_0061", "title": "GRAVITY -LEFT- WARS"}}, {"@id": "2062", "info": {"texture": "ap_03_0062", "title": "Burning my Soul!!"}}, {"@id": "2063", "info": {"texture": "ap_03_0063", "title": "G-RAVITY!!"}}, {"@id": "2064", "info": {"texture": "ap_03_0064", "title": "賽河原艦長!"}}, {"@id": "2065", "info": {"texture": "ap_03_0065", "title": "キャーーー"}}, {"@id": "2066", "info": {"texture": "ap_03_0066", "title": "ハルトちゃん"}}, {"@id": "2067", "info": {"texture": "ap_03_0067", "title": "キャ-----!!!!"}}, {"@id": "2068", "info": {"texture": "ap_03_0068", "title": "イタズラさせて!"}}, {"@id": "2069", "info": {"texture": "ap_03_0069", "title": "今日も一日バグ退治"}}, {"@id": "2070", "info": {"texture": "ap_03_0070", "title": "Erasure"}}, {"@id": "2071", "info": {"texture": "ap_03_0071", "title": "ぺったん!ぺったん!"}}, {"@id": "2072", "info": {"texture": "ap_03_0072", "title": "灯る色"}}, {"@id": "2073", "info": {"texture": "ap_03_0073", "title": "Good morning HERO"}}, {"@id": "2074", "info": {"texture": "ap_03_0074", "title": "轟け!恋の…!?"}}, {"@id": "2075", "info": {"texture": "ap_03_0075", "title": "学園の女教師"}}, {"@id": "2076", "info": {"texture": "ap_03_0076", "title": "君を想えば"}}, {"@id": "2077", "info": {"texture": "ap_03_0077", "title": "ぽよよん☆"}}, {"@id": "2078", "info": {"texture": "ap_03_0078", "title": "ミツル子だってver.III!"}}, {"@id": "2079", "info": {"texture": "ap_03_0079", "title": "ちょっと!全然映ってないんだけど!?"}}, {"@id": "2080", "info": {"texture": "ap_03_0080", "title": "III265ちゃん!"}}, {"@id": "2081", "info": {"texture": "ap_03_0081", "title": "TLの天使"}}, {"@id": "2082", "info": {"texture": "ap_03_0082", "title": "ふぁぼありむる!"}}, {"@id": "2083", "info": {"texture": "ap_03_0083", "title": "\ネコミミIII/"}}, {"@id": "2084", "info": {"texture": "ap_03_0084", "title": "舌ぺろりむる"}}, {"@id": "2085", "info": {"texture": "ap_03_0085", "title": "HAPPY HEART BEAT"}}, {"@id": "2086", "info": {"texture": "ap_03_0086", "title": "笑顔で頑張りますっ♥(ドキドキ)"}}, {"@id": "2087", "info": {"texture": "ap_03_0087", "title": "ドキドキしちゃいます"}}, {"@id": "2088", "info": {"texture": "ap_03_0088", "title": "雪うさぎといっしょ"}}, {"@id": "2089", "info": {"texture": "ap_03_0089", "title": "少なくとも"}}, {"@id": "2090", "info": {"texture": "ap_03_0090", "title": "あったかしあわせ!"}}, {"@id": "2091", "info": {"texture": "ap_03_0091", "title": "雪の結晶って綺麗ですよねっ"}}, {"@id": "2092", "info": {"texture": "ap_03_0092", "title": "雪の少女"}}, {"@id": "2093", "info": {"texture": "ap_03_0093", "title": "私の季節です"}}, {"@id": "2094", "info": {"texture": "ap_03_0094", "title": "能力を持った自由人の遊び"}}, {"@id": "2095", "info": {"texture": "ap_03_0095", "title": "メカは任せて!"}}, {"@id": "2096", "info": {"texture": "ap_03_0096", "title": "本日作業中につき"}}, {"@id": "2097", "info": {"texture": "ap_03_0097", "title": "識苑せんせー"}}, {"@id": "2098", "info": {"texture": "ap_03_0098", "title": "縦横無尽"}}, {"@id": "2099", "info": {"texture": "ap_03_0099", "title": "3!!!"}}, {"@id": "2100", "info": {"texture": "ap_03_0100", "title": "西日暮里三(さん)!!"}}, {"@id": "2101", "info": {"texture": "ap_03_0101", "title": "夕焼け西日暮里さん"}}, {"@id": "2102", "info": {"texture": "ap_03_0102", "title": "我輩が西日暮里だ!!!"}}, {"@id": "2103", "info": {"texture": "ap_03_0103", "title": "雪だ!"}}, {"@id": "2104", "info": {"texture": "ap_03_0104", "title": "一緒に遊ぼっ♪"}}, {"@id": "2105", "info": {"texture": "ap_03_0105", "title": "にくきゅうぺったんたん!"}}, {"@id": "2106", "info": {"texture": "ap_03_0106", "title": "わうっ!"}}, {"@id": "2107", "info": {"texture": "ap_03_0107", "title": "走れ!雪翔くん"}}, {"@id": "2108", "info": {"texture": "ap_03_0108", "title": "てへぺろ☆ミオンちゃん"}}, {"@id": "2109", "info": {"texture": "ap_03_0109", "title": "タイムスリップ!"}}, {"@id": "2110", "info": {"texture": "ap_03_0110", "title": "I came from the Future!"}}, {"@id": "2111", "info": {"texture": "ap_03_0111", "title": "V(ミ)オンちゃん"}}, {"@id": "2112", "info": {"texture": "ap_03_0112", "title": "時の妖精"}}, {"@id": "2113", "info": {"texture": "ap_03_0113", "title": "幻のスキアナ称号、誕生?!"}}, {"@id": "2114", "info": {"texture": "ap_03_0114", "title": "つまんで捻ってVENUS!!"}}, {"@id": "2115", "info": {"texture": "ap_03_0115", "title": "SDVXでもVENUS!"}}, {"@id": "2116", "info": {"texture": "ap_03_0116", "title": "うぃざうちゅにゃい(^・x・^)"}}, {"@id": "2117", "info": {"texture": "ap_03_0117", "title": "Stand up Guys!"}}, {"@id": "2118", "info": {"texture": "ap_03_0118", "title": "届け☆歌声"}}, {"@id": "2119", "info": {"texture": "ap_03_0119", "title": "今夜は寝かせないよ"}}, {"@id": "2120", "info": {"texture": "ap_03_0120", "title": "わたがしもふもふ!"}}, {"@id": "2121", "info": {"texture": "ap_03_0121", "title": "ウィズユー"}}, {"@id": "2122", "info": {"texture": "ap_03_0122", "title": "ボクたち、VENUS!!"}}, {"@id": "2123", "info": {"texture": "ap_03_0123", "title": "全国ツアーでチュナイ"}}, {"@id": "2124", "info": {"texture": "ap_03_0124", "title": "このままじゃウィザウチュナイ…"}}, {"@id": "2125", "info": {"texture": "ap_03_0125", "title": "きみがいないと…"}}, {"@id": "2126", "info": {"texture": "ap_03_0126", "title": "着せ替えVENUS"}}, {"@id": "2127", "info": {"texture": "ap_03_0127", "title": "美茄子"}}, {"@id": "2128", "info": {"texture": "ap_03_0128", "title": "俺達がついてるだろ?[br:0](white ver)"}}, {"@id": "2129", "info": {"texture": "ap_03_0129", "title": "振り向きアリス"}}, {"@id": "2130", "info": {"texture": "ap_03_0130", "title": "アリスという少女"}}, {"@id": "2131", "info": {"texture": "ap_03_0131", "title": "玩具ノ世界ヘヨウコソ"}}, {"@id": "2132", "info": {"texture": "ap_03_0132", "title": "こんにちは、新しいお友達?"}}, {"@id": "2133", "info": {"texture": "ap_03_0133", "title": "アリスとはわわw!なお人形さん"}}, {"@id": "2134", "info": {"texture": "ap_03_0134", "title": "アリスとレイシス人形"}}, {"@id": "2135", "info": {"texture": "ap_03_0135", "title": "アリスと魔法授業"}}, {"@id": "2136", "info": {"texture": "ap_03_0136", "title": "人形遣いアリス"}}, {"@id": "2137", "info": {"texture": "ap_03_0137", "title": "お気に入りの帽子"}}, {"@id": "2138", "info": {"texture": "ap_03_0138", "title": "春告スタンプ"}}, {"@id": "2139", "info": {"texture": "ap_03_0139", "title": "あなたに春を告げたくて"}}, {"@id": "2140", "info": {"texture": "ap_03_0140", "title": "春探し"}}, {"@id": "2141", "info": {"texture": "ap_03_0141", "title": "春、いかがですか?"}}, {"@id": "2142", "info": {"texture": "ap_03_0142", "title": "RIRIRI Virtual Vision"}}, {"@id": "2143", "info": {"texture": "ap_03_0143", "title": "騒霊キーボーディスト"}}, {"@id": "2144", "info": {"texture": "ap_03_0144", "title": "good dog."}}, {"@id": "2145", "info": {"texture": "ap_03_0145", "title": "「「セッション!!」」"}}, {"@id": "2146", "info": {"texture": "ap_03_0146", "title": "空と虹と月と黒"}}, {"@id": "2147", "info": {"texture": "ap_03_0147", "title": "ルナサ・ソロライブ"}}, {"@id": "2148", "info": {"texture": "ap_03_0148", "title": "演奏会へようこそ!"}}, {"@id": "2149", "info": {"texture": "ap_03_0149", "title": "夕暮れ時の独奏会"}}, {"@id": "2150", "info": {"texture": "ap_03_0150", "title": "二人の創る、氷の世界"}}, {"@id": "2151", "info": {"texture": "ap_03_0151", "title": "人間は冬眠しないの?"}}, {"@id": "2152", "info": {"texture": "ap_03_0152", "title": "冬の宝石"}}, {"@id": "2153", "info": {"texture": "ap_03_0153", "title": "名残り冬"}}, {"@id": "2154", "info": {"texture": "ap_03_0154", "title": "剛力羅の鍛えた楼観剣に切れないchainはあんまりない!!"}}, {"@id": "2155", "info": {"texture": "ap_03_0155", "title": "半分幻の庭師"}}, {"@id": "2156", "info": {"texture": "ap_03_0156", "title": "覚悟してください?"}}, {"@id": "2157", "info": {"texture": "ap_03_0157", "title": "斬り下ろす"}}, {"@id": "2158", "info": {"texture": "ap_03_0158", "title": "斬れぬものなど、あんまり無い!"}}, {"@id": "2159", "info": {"texture": "ap_03_0159", "title": "斬れぬものなど、あんまり無い!"}}, {"@id": "2160", "info": {"texture": "ap_03_0160", "title": "レイシスちゃん(番外の番外)~ボルテへようこそ妖夢編~"}}, {"@id": "2161", "info": {"texture": "ap_03_0161", "title": "藤の花と幽々子。"}}, {"@id": "2162", "info": {"texture": "ap_03_0162", "title": "幽雅な亡霊少女"}}, {"@id": "2163", "info": {"texture": "ap_03_0163", "title": "西行妖の木の下で♪"}}, {"@id": "2164", "info": {"texture": "ap_03_0164", "title": "いただきまーす!"}}, {"@id": "2165", "info": {"texture": "ap_03_0165", "title": "死に誘いし亡霊の姫君"}}, {"@id": "2166", "info": {"texture": "ap_03_0166", "title": "亡霊の姫君"}}, {"@id": "2167", "info": {"texture": "ap_03_0167", "title": "お手柔らかに"}}, {"@id": "2168", "info": {"texture": "ap_03_0168", "title": "赤と青の境界"}}, {"@id": "2169", "info": {"texture": "ap_03_0169", "title": "境界を操る程度の能力"}}, {"@id": "2170", "info": {"texture": "ap_03_0170", "title": "妖の幻想"}}, {"@id": "2171", "info": {"texture": "ap_03_0171", "title": "お狐様が見てる"}}, {"@id": "2172", "info": {"texture": "ap_03_0172", "title": "CON!!"}}, {"@id": "2173", "info": {"texture": "ap_03_0173", "title": "あぶらあげもぐもぐ"}}, {"@id": "2174", "info": {"texture": "ap_03_0174", "title": "大宇宙ですよ!紫様!"}}, {"@id": "2175", "info": {"texture": "ap_03_0175", "title": "もふもふっ!"}}, {"@id": "2176", "info": {"texture": "ap_03_0176", "title": "しんちょくどうですか"}}, {"@id": "2177", "info": {"texture": "ap_03_0177", "title": "あっ!待て~っ!"}}, {"@id": "2178", "info": {"texture": "ap_03_0178", "title": "ごちそう"}}, {"@id": "2179", "info": {"texture": "ap_03_0179", "title": "にゃぁっ!!"}}, {"@id": "2180", "info": {"texture": "ap_03_0180", "title": "ラブキュンちぇえええええええええん!"}}, {"@id": "2181", "info": {"texture": "ap_03_0181", "title": "橙鍋"}}, {"@id": "2182", "info": {"texture": "ap_03_0182", "title": "凶兆の黒猫と宇宙猫"}}, {"@id": "2183", "info": {"texture": "ap_03_0183", "title": "課題は自由工作![br:0]YOUたちの大好きなものを[br:0]描いてみようッ!"}}, {"@id": "2184", "info": {"texture": "ap_03_0184", "title": "TAMA猫スイーツだよ☆"}}, {"@id": "2185", "info": {"texture": "ap_03_0185", "title": "ようこそ真の頂点へ"}}, {"@id": "2186", "info": {"texture": "ap_03_0186", "title": "CRITICAL!!!"}}, {"@id": "2187", "info": {"texture": "ap_03_0187", "title": "ボクたちが[br:0]ボルテのますこっとだよぉ?"}}, {"@id": "2188", "info": {"texture": "ap_03_0188", "title": "ハルトまみれ"}}, {"@id": "2189", "info": {"texture": "ap_03_0189", "title": "ひまわり畑に架かる虹"}}, {"@id": "2190", "info": {"texture": "ap_03_0190", "title": "夕暮れバトル。"}}, {"@id": "2191", "info": {"texture": "ap_03_0191", "title": "いざ出陣![br:0]コンソール=ネメ“スシ”!?"}}, {"@id": "2192", "info": {"texture": "ap_03_0192", "title": "響け♪輝け☆ボルテ合奏団!"}}, {"@id": "2193", "info": {"texture": "ap_03_0193", "title": "白刃のもとに"}}, {"@id": "2194", "info": {"texture": "ap_03_0194", "title": "ズッ友だよ☆"}}, {"@id": "2195", "info": {"texture": "ap_03_0195", "title": "川釣りだ!灯色アユ一本釣り!"}}, {"@id": "2196", "info": {"texture": "ap_03_0196", "title": "Queen's Duality[br:0]~白薔薇女王の二面性~"}}, {"@id": "2197", "info": {"texture": "ap_03_0197", "title": "うさみみ♪おそろい"}}, {"@id": "2198", "info": {"texture": "ap_03_0198", "title": "躑躅色の君と忍びの者"}}, {"@id": "2199", "info": {"texture": "ap_03_0199", "title": "ボルテ学園アイドル部★"}}, {"@id": "2200", "info": {"texture": "ap_03_0200", "title": "GRACE - RIOT ARMED -"}}, {"@id": "2201", "info": {"texture": "ap_03_0201", "title": "オールつまぶきーズ …?"}}, {"@id": "2202", "info": {"texture": "ap_03_0202", "title": "Royal・Straight・Flush"}}, {"@id": "2203", "info": {"texture": "ap_03_0203", "title": "放課後買い食い同盟"}}, {"@id": "2204", "info": {"texture": "ap_03_0204", "title": "追憶の\"Ha・lle・lu・jah\""}}, {"@id": "2205", "info": {"texture": "ap_03_0205", "title": "次のレイシスちゃん衣装はッ!?[br:0]妄想男のロマン編"}}, {"@id": "2206", "info": {"texture": "ap_03_0206", "title": "Princessどうか忘れてください!!"}}, {"@id": "2207", "info": {"texture": "ap_03_0207", "title": "放課後shopping!"}}, {"@id": "2208", "info": {"texture": "ap_03_0208", "title": "キラキラ☆宇宙遊泳!!"}}, {"@id": "2209", "info": {"texture": "ap_03_0209", "title": "うちゅぅはネコのもの!?"}}, {"@id": "2210", "info": {"texture": "ap_03_0210", "title": "リボンちゃんは[br:0]お姫さま!"}}, {"@id": "2211", "info": {"texture": "ap_03_0211", "title": "最果想ふ"}}, {"@id": "2212", "info": {"texture": "ap_03_0212", "title": "ボルテ2コマ劇場[br:0]「腹が減っては」"}}, {"@id": "2213", "info": {"texture": "ap_03_0213", "title": "JOKER / Q∩EENZ"}}, {"@id": "2214", "info": {"texture": "ap_03_0214", "title": "Play of Color"}}, {"@id": "2215", "info": {"texture": "ap_03_0215", "title": "XROSS SYMMETRY"}}, {"@id": "2216", "info": {"texture": "ap_03_0216", "title": "想いは花にのせて"}}, {"@id": "2217", "info": {"texture": "ap_03_0217", "title": "和装三人娘"}}, {"@id": "2218", "info": {"texture": "ap_03_0218", "title": "Kung-Fu Battle!!"}}, {"@id": "2219", "info": {"texture": "ap_03_0219", "title": "\凸凹凹凹!自由研究/"}}, {"@id": "2220", "info": {"texture": "ap_03_0220", "title": "つの!"}}, {"@id": "2221", "info": {"texture": "ap_03_0221", "title": "きらきら☆水兵さんだよっ♪"}}, {"@id": "2222", "info": {"texture": "ap_03_0222", "title": "和風女子会♡ですの!"}}, {"@id": "2223", "info": {"texture": "ap_03_0223", "title": "剣と花"}}, {"@id": "2224", "info": {"texture": "ap_03_0224", "title": "囚われの姫"}}, {"@id": "2225", "info": {"texture": "ap_03_0225", "title": "私自身がジェネカで、[br:0]ジェネカが私だっ!"}}, {"@id": "2226", "info": {"texture": "ap_03_0226", "title": "(∩・ω・)⊃招き橙はじめました◎"}}, {"@id": "2227", "info": {"texture": "ap_03_0227", "title": "桃太郎vs鬼"}}, {"@id": "2228", "info": {"texture": "ap_03_0228", "title": "はわわッ鬼退治頑張りマス~"}}, {"@id": "2229", "info": {"texture": "ap_03_0229", "title": "ボルテ昔話~桃太郎~"}}, {"@id": "2230", "info": {"texture": "ap_03_0230", "title": "はんなり!着物!舞妓さん!"}}, {"@id": "2231", "info": {"texture": "ap_03_0231", "title": "とくと見られぇい!この熱き大文字!"}}, {"@id": "2232", "info": {"texture": "ap_03_0232", "title": "笛の音"}}, {"@id": "2233", "info": {"texture": "ap_03_0233", "title": "さわやかフレッシュ!"}}, {"@id": "2234", "info": {"texture": "ap_03_0234", "title": "大人のお稽古"}}, {"@id": "2235", "info": {"texture": "ap_03_0235", "title": "花火に照らされる大鳥居"}}, {"@id": "2236", "info": {"texture": "ap_03_0236", "title": "お餅はいかが?"}}, {"@id": "2237", "info": {"texture": "ap_03_0237", "title": "おうどんーーー!!"}}, {"@id": "2238", "info": {"texture": "ap_03_0238", "title": "ボルテ忍法☆スコアアップ(するらしい!?)の術!"}}, {"@id": "2239", "info": {"texture": "ap_03_0239", "title": "きんぎょ提灯"}}, {"@id": "2240", "info": {"texture": "ap_03_0240", "title": "大内塗りレイシスちゃん"}}, {"@id": "2241", "info": {"texture": "ap_03_0241", "title": "金魚提灯!!"}}, {"@id": "2242", "info": {"texture": "ap_03_0242", "title": "Shigaraki-Tanuki Dai-Sen-Saw!"}}, {"@id": "2243", "info": {"texture": "ap_03_0243", "title": "甲賀忍術村から、グレイス出撃!"}}, {"@id": "2244", "info": {"texture": "ap_03_0244", "title": "招き…狸?"}}, {"@id": "2245", "info": {"texture": "ap_03_0245", "title": "大たこ焼きステージ"}}, {"@id": "2246", "info": {"texture": "ap_03_0246", "title": "なんでヤネ~ンデス!w"}}, {"@id": "2247", "info": {"texture": "ap_03_0247", "title": "タコ焼き変装大作戦よ!"}}, {"@id": "2248", "info": {"texture": "ap_03_0248", "title": "あ~ん!二度漬け禁止~ッ!?"}}, {"@id": "2249", "info": {"texture": "ap_03_0249", "title": "新名物CKP登場!?"}}, {"@id": "2250", "info": {"texture": "ap_03_0250", "title": "きなんせしゃんしゃん!"}}, {"@id": "2251", "info": {"texture": "ap_03_0251", "title": "縁結びの神様、お願い!"}}, {"@id": "2252", "info": {"texture": "ap_03_0252", "title": "島根は左デス!!"}}, {"@id": "2253", "info": {"texture": "ap_03_0253", "title": "しかせんべい"}}, {"@id": "2254", "info": {"texture": "ap_03_0254", "title": "がーるずとーく!"}}, {"@id": "2255", "info": {"texture": "ap_03_0255", "title": "つま・しか・ゆきと!"}}, {"@id": "2256", "info": {"texture": "ap_03_0256", "title": "ホタルの海"}}, {"@id": "2257", "info": {"texture": "ap_03_0257", "title": "神戸ポートタワー大宇宙爆撃"}}, {"@id": "2258", "info": {"texture": "ap_03_0258", "title": "キラキラ☆1000万ドルの夜景"}}, {"@id": "2259", "info": {"texture": "ap_03_0259", "title": "紀州ノ梅ト"}}, {"@id": "2260", "info": {"texture": "ap_03_0260", "title": "メジロさんと"}}, {"@id": "2261", "info": {"texture": "ap_03_0261", "title": "熊野詣のけもの道"}}, {"@id": "2501", "info": {"texture": "ap_03_R0001", "title": "ボルテ学園へヨウコソ!"}}, {"@id": "2502", "info": {"texture": "ap_03_R0002", "title": "ボルテIIIのお勉強デス♪"}}, {"@id": "2503", "info": {"texture": "ap_03_R0003", "title": "ここなつ"}}, {"@id": "2504", "info": {"texture": "ap_03_R0004", "title": "ここなつ[br:0]東雲夏陽"}}, {"@id": "2505", "info": {"texture": "ap_03_R0005", "title": "ここなつ[br:0]東雲心菜"}}, {"@id": "2506", "info": {"texture": "ap_03_R0006", "title": "ここなつ"}}, {"@id": "2507", "info": {"texture": "ap_03_R0007", "title": "ここなつ[br:0]東雲夏陽"}}, {"@id": "2508", "info": {"texture": "ap_03_R0008", "title": "ここなつ[br:0]東雲心菜"}}, {"@id": "2509", "info": {"texture": "ap_03_R0009", "title": "メリークリスマス2014!"}}, {"@id": "2510", "info": {"texture": "ap_03_R0010", "title": "二〇一五年あけおめぇ~"}}, {"@id": "2511", "info": {"texture": "ap_03_R0011", "title": "ここなつ[br:0]東雲夏陽"}}, {"@id": "2512", "info": {"texture": "ap_03_R0012", "title": "ボルテ参周年★記念限定カード"}}, {"@id": "2513", "info": {"texture": "ap_03_R0013", "title": "INDEPENDENT SKY[br:0]闘いの空へ。"}}, {"@id": "2514", "info": {"texture": "ap_03_R0014", "title": "KAC The 4th~目指せ、頂王。"}}, {"@id": "2515", "info": {"texture": "ap_03_R0015", "title": "KAC The 4th~エントリー[br:0]ありがとうございマス!"}}, {"@id": "2516", "info": {"texture": "ap_03_R0016", "title": "幕張2015限定レイシスw"}}, {"@id": "2517", "info": {"texture": "ap_03_R0017", "title": "バレンタイン2015★[br:0]はわっ本命レイシスルート"}}, {"@id": "2518", "info": {"texture": "ap_03_R0018", "title": "バレンタイン2015★[br:0]ちょ、おまっ!義理つまぶきルート"}}, {"@id": "2519", "info": {"texture": "ap_03_R0019", "title": "バレンタイン2015★[br:0]あったか~い♪イノテンちゃんルート"}}, {"@id": "2520", "info": {"texture": "ap_03_R0020", "title": "バレンタイン2015★雷刀ルート"}}, {"@id": "2521", "info": {"texture": "ap_03_R0021", "title": "バレンタイン2015★烈風刀ルート"}}, {"@id": "2522", "info": {"texture": "ap_03_R0022", "title": "バレンタイン2015★[br:0]ニアノアルート"}}, {"@id": "2523", "info": {"texture": "ap_03_R0023", "title": "バレンタイン2015★[br:0]その頃香港兄妹は"}}, {"@id": "2524", "info": {"texture": "ap_03_R0024", "title": "バレンタイン2015★[br:0]西日暮里ルート上半身編"}}, {"@id": "2525", "info": {"texture": "ap_03_R0025", "title": "バレンタイン2015★[br:0]西日暮里ルート下半身編"}}, {"@id": "2526", "info": {"texture": "ap_03_R0026", "title": "ここなつ[br:0]東雲心菜"}}, {"@id": "2527", "info": {"texture": "ap_03_R0027", "title": "疾走感∞%!?[br:0]\飛び出せッ☆SDVX/"}}, {"@id": "2528", "info": {"texture": "ap_03_R0028", "title": "ようこソSOUND VOLTEXへ!"}}, {"@id": "2529", "info": {"texture": "ap_03_R0029", "title": "高みを目指す剛力羅(あなた)へ"}}, {"@id": "2530", "info": {"texture": "ap_03_R0030", "title": "Night Attack"}}, {"@id": "2531", "info": {"texture": "ap_03_R0031", "title": "白黒つけまショウ!"}}, {"@id": "2532", "info": {"texture": "ap_03_R0032", "title": "カミヤ・シン"}}, {"@id": "2533", "info": {"texture": "ap_03_R0033", "title": "エレナ・ザハロフ"}}, {"@id": "2534", "info": {"texture": "ap_03_R0034", "title": "サイード・ナジム"}}, {"@id": "2535", "info": {"texture": "ap_03_R0035", "title": "アンナ・ベルンハルト"}}, {"@id": "2536", "info": {"texture": "ap_03_R0036", "title": "クライブ・ロックハート"}}, {"@id": "2537", "info": {"texture": "ap_03_R0037", "title": "セレスティーヌ・シャルロア"}}, {"@id": "2538", "info": {"texture": "ap_03_R0038", "title": "アレックス・サザーランド"}}, {"@id": "2539", "info": {"texture": "ap_03_R0039", "title": "ユン・リナ"}}, {"@id": "2540", "info": {"texture": "ap_03_R0040", "title": "ノア・メーテルリンク"}}, {"@id": "2541", "info": {"texture": "ap_03_R0041", "title": "ミカサ・クリムゾン"}}, {"@id": "2542", "info": {"texture": "ap_03_R0042", "title": "カリン@わりとねむい"}}, {"@id": "2543", "info": {"texture": "ap_03_R0043", "title": "マリオン・ラヴ"}}, {"@id": "2544", "info": {"texture": "ap_03_R0044", "title": "リディア・ペトラコフ"}}, {"@id": "2545", "info": {"texture": "ap_03_R0045", "title": "ジャスティン・カートライト"}}, {"@id": "2546", "info": {"texture": "ap_03_R0046", "title": "烈風刀&雷刀と行く勝手に![br:0]GW弾丸ツアー~準備編~"}}, {"@id": "2547", "info": {"texture": "ap_03_R0047", "title": "烈風刀&雷刀と行く勝手に![br:0]GW弾丸ツアー~旅立ち編~"}}, {"@id": "2548", "info": {"texture": "ap_03_R0048", "title": "ここなつ[br:0]東雲夏陽"}}, {"@id": "2549", "info": {"texture": "ap_03_R0049", "title": "ここなつ[br:0]東雲心菜"}}, {"@id": "2550", "info": {"texture": "ap_03_R0050", "title": "ここなつ[br:0]ロンロンへようこそ!"}}, {"@id": "2551", "info": {"texture": "ap_03_R0051", "title": "僕らのPrincessは[br:0]誰かの腕のなか[br:0]-ぼっち雷刀-"}}, {"@id": "2552", "info": {"texture": "ap_03_R0052", "title": "僕らのPrincessは[br:0]誰かの腕のなか[br:0]-ぼっち烈風刀-"}}, {"@id": "2553", "info": {"texture": "ap_03_R0053", "title": "花火大会トゥギャザーフゥーッ!!!"}}, {"@id": "2554", "info": {"texture": "ap_03_R0054", "title": "ひなビタ♪[br:0]山形まり花"}}, {"@id": "2555", "info": {"texture": "ap_03_R0055", "title": "ひなビタ♪[br:0]和泉一舞"}}, {"@id": "2556", "info": {"texture": "ap_03_R0056", "title": "ひなビタ♪[br:0]春日咲子"}}, {"@id": "2557", "info": {"texture": "ap_03_R0057", "title": "ひなビタ♪[br:0]芽兎めう"}}, {"@id": "2558", "info": {"texture": "ap_03_R0058", "title": "ひなビタ♪[br:0]霜月凛"}}, {"@id": "2559", "info": {"texture": "ap_03_R0059", "title": "ひなビタ♪[br:0]めうめうぺったんたん!!"}}, {"@id": "2560", "info": {"texture": "ap_03_R0060", "title": "ひなビタ♪[br:0]ちくわパフェだよ☆CKP"}}, {"@id": "2561", "info": {"texture": "ap_03_R0061", "title": "ひなビタ♪[br:0]ホーンテッド★メイドランチ"}}, {"@id": "2562", "info": {"texture": "ap_03_R0062", "title": "ひなビタ♪[br:0]都会征服Girls☆"}}, {"@id": "2563", "info": {"texture": "ap_03_R0063", "title": "ひなビタ♪[br:0]滅亡天使 † にこきゅっぴん"}}, {"@id": "2564", "info": {"texture": "ap_03_R0064", "title": "∞∞(σ∀σ*)∞∞[br:0]ふふっ…グレイスよ…ふふふっ"}}, {"@id": "2565", "info": {"texture": "ap_03_R0065", "title": "レイシス戦闘機"}}, {"@id": "2566", "info": {"texture": "ap_03_R0066", "title": "烈風刀戦闘機ロボ形態"}}, {"@id": "2567", "info": {"texture": "ap_03_R0067", "title": "雷刀戦闘機ロボ形態"}}, {"@id": "2568", "info": {"texture": "ap_03_R0068", "title": "%\"He1l。\"!!;#EVIL_EYE#lω・)"}}, {"@id": "2569", "info": {"texture": "ap_03_R0069", "title": "メリークリスマス2015!"}}, {"@id": "2570", "info": {"texture": "ap_03_R0070", "title": "ひなビタ♪[br:0]山形まり花-sunny orange-"}}, {"@id": "2571", "info": {"texture": "ap_03_R0071", "title": "ひなビタ♪[br:0]和泉一舞-honey lemon-"}}, {"@id": "2572", "info": {"texture": "ap_03_R0072", "title": "ひなビタ♪[br:0]春日咲子-pure grape-"}}, {"@id": "2573", "info": {"texture": "ap_03_R0073", "title": "ひなビタ♪[br:0]芽兎めう-strawberry milk-"}}, {"@id": "2574", "info": {"texture": "ap_03_R0074", "title": "ひなビタ♪[br:0]霜月凛-bergamot mint-"}}, {"@id": "2575", "info": {"texture": "ap_03_R0075", "title": "賀正 二〇一六 -申-"}}, {"@id": "2576", "info": {"texture": "ap_03_R0076", "title": "ボルテ四周年★記念限定カード"}}, {"@id": "2577", "info": {"texture": "ap_03_R0077", "title": "バレンタイン2016★恋刃&奈奈 たいせつなひとへ…☆"}}, {"@id": "2578", "info": {"texture": "ap_03_R0078", "title": "バレンタイン2016★モテモテ!紅刃さん"}}, {"@id": "2579", "info": {"texture": "ap_03_R0079", "title": "バレンタイン2016★ロワーレ劇場"}}, {"@id": "2580", "info": {"texture": "ap_03_R0080", "title": "バレンタイン2016★本命チョコの行方は…"}}, {"@id": "2581", "info": {"texture": "ap_03_R0081", "title": "バレンタイン2016★昴希ちゃんの大本命!"}}, {"@id": "2583", "info": {"texture": "ap_03_R0083", "title": "5th KAC[br:0]勝利の女神!?"}}, {"@id": "2584", "info": {"texture": "ap_03_R0084", "title": "5th KAC[br:0]You are the CHAMPION!!"}}, {"@id": "2585", "info": {"texture": "ap_03_R0085", "title": "5th KAC[br:0]FINALIST"}}, {"@id": "2586", "info": {"texture": "ap_03_R0086", "title": "FLOOR ANTHEM EP.01[br:0]届け、代表の旋律――!"}}, {"@id": "2587", "info": {"texture": "ap_03_R0087", "title": "FLOOR ANTHEM EP.01[br:0]Fiat Lux"}}, {"@id": "2588", "info": {"texture": "ap_03_R0088", "title": "FLOOR ANTHEM EP.01[br:0]香港功夫大旋風"}}, {"@id": "2589", "info": {"texture": "ap_03_R0089", "title": "FLOOR ANTHEM EP.01[br:0]雪女"}}, {"@id": "2590", "info": {"texture": "ap_03_R0090", "title": "FLOOR ANTHEM EP.01[br:0]Space Diver&Ribbon!"}}, {"@id": "2591", "info": {"texture": "ap_03_R0091", "title": "FLOOR ANTHEM EP.01[br:0]Dawn of SOUL"}}, {"@id": "2592", "info": {"texture": "ap_03_R0092", "title": "FLOOR ANTHEM EP.01[br:0]くわいたすと一緒"}}, {"@id": "2593", "info": {"texture": "ap_03_R0093", "title": "FLOOR ANTHEM EP.01[br:0]C18H27NO3"}}, {"@id": "2594", "info": {"texture": "ap_03_R0094", "title": "FLOOR ANTHEM EP.01[br:0]Crack Traxxxx"}}, {"@id": "2595", "info": {"texture": "ap_03_R0095", "title": "幕張2016限定グレイスw"}}, {"@id": "2596", "info": {"texture": "ap_03_R0096", "title": "V.I.P."}}, {"@id": "2597", "info": {"texture": "ap_03_R0097", "title": "Take on the world"}}, {"@id": "2598", "info": {"texture": "ap_03_R0098", "title": "今日も彼女は誰かと踊る"}}, {"@id": "2599", "info": {"texture": "ap_03_R0099", "title": "第二回 天下一音ゲ祭[br:0]-天下無双-"}}, {"@id": "2600", "info": {"texture": "ap_03_R0100", "title": "第二回 天下一音ゲ祭[br:0]-乾坤一擲-"}}, {"@id": "2601", "info": {"texture": "ap_03_R0101", "title": "ちくわ姫 霜月凛"}}, {"@id": "2602", "info": {"texture": "ap_03_R0102", "title": "霊夢シス -大沖ver.-"}}, {"@id": "2603", "info": {"texture": "ap_03_R0103", "title": "霊夢 -大沖ver.-"}}, {"@id": "2604", "info": {"texture": "ap_03_R0104", "title": "グレ沙 -大沖ver.-"}}, {"@id": "2605", "info": {"texture": "ap_03_R0105", "title": "魔理沙 -大沖ver.-"}}, {"@id": "2606", "info": {"texture": "ap_03_R0106", "title": "チルノア -大沖ver.-"}}, {"@id": "2607", "info": {"texture": "ap_03_R0107", "title": "チルノ -大沖ver.-"}}, {"@id": "2608", "info": {"texture": "ap_03_R0108", "title": "レイシス -東方ver.-"}}, {"@id": "2609", "info": {"texture": "ap_03_R0109", "title": "霊夢 -蒼弐ver.-"}}, {"@id": "2610", "info": {"texture": "ap_03_R0110", "title": "魔理沙 -蒼弐ver.-"}}, {"@id": "2611", "info": {"texture": "ap_03_R0111", "title": "RASIS-03 S.F.ver"}}, {"@id": "2612", "info": {"texture": "ap_03_R0112", "title": "GRACE Origin S.F.ver"}}, {"@id": "2613", "info": {"texture": "ap_03_R0113", "title": "2016夏★TAMA猫のお中元"}}, {"@id": "2614", "info": {"texture": "ap_03_R0114", "title": "2016夏★バケーションも忘れずニ!"}}, {"@id": "2615", "info": {"texture": "ap_03_R0115", "title": "2016夏★灼熱?サマー!"}}, {"@id": "2616", "info": {"texture": "ap_03_R0116", "title": "妖々夢&輝針城サントラ[br:0]アリス♡グレイス"}}, {"@id": "2617", "info": {"texture": "ap_03_R0117", "title": "妖々夢&輝針城サントラ[br:0]幽々子♡妖夢"}}, {"@id": "2618", "info": {"texture": "ap_03_R0118", "title": "妖々夢&輝針城サントラ[br:0]わかさぎ♡レイシス"}}, {"@id": "2619", "info": {"texture": "ap_03_R0119", "title": "妖々夢&輝針城サントラ[br:0]雷妙丸♡烈風紫"}}, {"@id": "2620", "info": {"texture": "ap_03_R0120", "title": "グレイス"}}, {"@id": "2621", "info": {"texture": "ap_03_R0121", "title": "京終 始果"}}, {"@id": "2622", "info": {"texture": "ap_03_R0122", "title": "オルトリンデ=NBLG=ヴァルキュリア"}}, {"@id": "2623", "info": {"texture": "ap_03_R0123", "title": "ライオット・デストルドー"}}, {"@id": "2624", "info": {"texture": "ap_03_R0124", "title": "ドゥ・サン・コ・ピリカ"}}, {"@id": "2625", "info": {"texture": "ap_03_R0125", "title": "講師グレイスちゃん"}}, {"@id": "2626", "info": {"texture": "ap_03_R0126", "title": "Nexta ニア&ノア"}}, {"@id": "2627", "info": {"texture": "ap_03_R0127", "title": "Nexta 雷刀&烈風刀"}}, {"@id": "2628", "info": {"texture": "ap_03_R0128", "title": "Nexta レイシス"}}, {"@id": "2900", "info": {"texture": "ap_03_S0001", "title": "SUPER STAR 満-MITSURU-"}}, {"@id": "2901", "info": {"texture": "ap_03_S0002", "title": "Antonio Guccini"}}, {"@id": "3001", "info": {"texture": "ap_04_0001", "title": "はわっふわのSDVX IV"}}, {"@id": "3002", "info": {"texture": "ap_04_0002", "title": "レイシスIV"}}, {"@id": "3003", "info": {"texture": "ap_04_0003", "title": "つまぶき"}}, {"@id": "3004", "info": {"texture": "ap_04_0004", "title": "嬬武器雷刀"}}, {"@id": "3005", "info": {"texture": "ap_04_0005", "title": "嬬武器烈風刀"}}, {"@id": "3006", "info": {"texture": "ap_04_0006", "title": "ニア&ノア"}}, {"@id": "3007", "info": {"texture": "ap_04_0007", "title": "はわっとイメチェン!レイシスW"}}, {"@id": "3008", "info": {"texture": "ap_04_0008", "title": "はわはわふわふわ"}}, {"@id": "3009", "info": {"texture": "ap_04_0009", "title": "仲間を探して目指せ新たな港(ヘイヴン)へ!!"}}, {"@id": "3010", "info": {"texture": "ap_04_0010", "title": "はわ~><自撮り失敗デス…"}}, {"@id": "3011", "info": {"texture": "ap_04_0011", "title": "はわわっふわふわのはじまりデス☆"}}, {"@id": "3012", "info": {"texture": "ap_04_0012", "title": "はわっはわヘヴンリ~!"}}, {"@id": "3013", "info": {"texture": "ap_04_0013", "title": "新品水着"}}, {"@id": "3014", "info": {"texture": "ap_04_0014", "title": "マキシマトリョーシカで 1・2・3・フ(ォ)ゥ~~ッ☆"}}, {"@id": "3015", "info": {"texture": "ap_04_0015", "title": "ハードボイルド(?)"}}, {"@id": "3016", "info": {"texture": "ap_04_0016", "title": "ゴールデン・メモリアル・マキシマム!!"}}, {"@id": "3017", "info": {"texture": "ap_04_0017", "title": "サウンドボルテックス…フォーーーーゥッ!!!!"}}, {"@id": "3018", "info": {"texture": "ap_04_0018", "title": "あ・・・あんまり見ないでよね!"}}, {"@id": "3019", "info": {"texture": "ap_04_0019", "title": "ふわっふわのくせっ毛"}}, {"@id": "3020", "info": {"texture": "ap_04_0020", "title": "放課後Everyday"}}, {"@id": "3021", "info": {"texture": "ap_04_0021", "title": "焼肉寿司マシマシラーメンだよっ!おにぃちゃん!"}}, {"@id": "3022", "info": {"texture": "ap_04_0022", "title": "みんなまとめてじゅーじゅーしちゃうぞー"}}, {"@id": "3023", "info": {"texture": "ap_04_0023", "title": "それとも~… ワ・タ・シ・?(一皿120P)"}}, {"@id": "3024", "info": {"texture": "ap_04_0024", "title": "ドヤッ!"}}, {"@id": "3025", "info": {"texture": "ap_04_0025", "title": "出張ボルテ軒!船の上のかなでちゃん!"}}, {"@id": "3026", "info": {"texture": "ap_04_0026", "title": "よんっ!"}}, {"@id": "3027", "info": {"texture": "ap_04_0027", "title": "ばたふらいきゃっと!"}}, {"@id": "3028", "info": {"texture": "ap_04_0028", "title": "ふわふわエンジェル!"}}, {"@id": "3029", "info": {"texture": "ap_04_0029", "title": "ちいさな探検隊"}}, {"@id": "3030", "info": {"texture": "ap_04_0030", "title": "新たな港へしゅっぱ~つ!"}}, {"@id": "3031", "info": {"texture": "ap_04_0031", "title": "HEAVENLY†HOLIC"}}, {"@id": "3032", "info": {"texture": "ap_04_0032", "title": "MAD†HOLIC SUMMER COLLECTION"}}, {"@id": "3033", "info": {"texture": "ap_04_0033", "title": "空の間"}}, {"@id": "3034", "info": {"texture": "ap_04_0034", "title": "(`・◇・´*)"}}, {"@id": "3035", "info": {"texture": "ap_04_0035", "title": "Break Through!"}}, {"@id": "3036", "info": {"texture": "ap_04_0036", "title": "celebration"}}, {"@id": "3037", "info": {"texture": "ap_04_0037", "title": "おまえさまは花が好きか?"}}, {"@id": "3038", "info": {"texture": "ap_04_0038", "title": "せつの帽子が!"}}, {"@id": "3039", "info": {"texture": "ap_04_0039", "title": "紅い花と泡沫の約束"}}, {"@id": "3040", "info": {"texture": "ap_04_0040", "title": "NYANCHO†HOLIC"}}, {"@id": "3041", "info": {"texture": "ap_04_0041", "title": "孤独の中の・・・"}}, {"@id": "3042", "info": {"texture": "ap_04_0042", "title": "×××コミュニケーション"}}, {"@id": "3043", "info": {"texture": "ap_04_0043", "title": "NYANCHO♡HOLIC"}}, {"@id": "3044", "info": {"texture": "ap_04_0044", "title": "マテ"}}, {"@id": "3045", "info": {"texture": "ap_04_0045", "title": "勇者くん"}}, {"@id": "3046", "info": {"texture": "ap_04_0046", "title": "なつやすみ"}}, {"@id": "3047", "info": {"texture": "ap_04_0047", "title": "ヘヴンリー な ぼうけん が まっている! ▼"}}, {"@id": "3048", "info": {"texture": "ap_04_0048", "title": "ユーシャLv.4 >たたかう"}}, {"@id": "3049", "info": {"texture": "ap_04_0049", "title": "きっといつか、君みたいになる"}}, {"@id": "3050", "info": {"texture": "ap_04_0050", "title": "宿題中"}}, {"@id": "3051", "info": {"texture": "ap_04_0051", "title": "はじめましてべさ!"}}, {"@id": "3052", "info": {"texture": "ap_04_0052", "title": "んだ!"}}, {"@id": "3053", "info": {"texture": "ap_04_0053", "title": "ボルテ軒の新人バイト"}}, {"@id": "3054", "info": {"texture": "ap_04_0054", "title": "おともといっしょ!"}}, {"@id": "3055", "info": {"texture": "ap_04_0055", "title": "がうがうピリカ"}}, {"@id": "3056", "info": {"texture": "ap_04_0056", "title": "まだまだひよっこ召喚魔法士"}}, {"@id": "3057", "info": {"texture": "ap_04_0057", "title": "片翼の座天使"}}, {"@id": "3058", "info": {"texture": "ap_04_0058", "title": "オニイチャンとボルテW !"}}, {"@id": "3059", "info": {"texture": "ap_04_0059", "title": "水も滴るオニイチャン"}}, {"@id": "3060", "info": {"texture": "ap_04_0060", "title": "Wオニイチャンはすごいんだぞ~むにゃむにゃ"}}, {"@id": "3061", "info": {"texture": "ap_04_0061", "title": "おおーっよく聞こえるぜーッ!"}}, {"@id": "3062", "info": {"texture": "ap_04_0062", "title": "オニイチャンの男の料理"}}, {"@id": "3063", "info": {"texture": "ap_04_0063", "title": "手を"}}, {"@id": "3064", "info": {"texture": "ap_04_0064", "title": "背反に咲く花"}}, {"@id": "3065", "info": {"texture": "ap_04_0065", "title": "堕ちる"}}, {"@id": "3066", "info": {"texture": "ap_04_0066", "title": "ついに私も…"}}, {"@id": "3067", "info": {"texture": "ap_04_0067", "title": "彼と茨と新種の薔薇"}}, {"@id": "3068", "info": {"texture": "ap_04_0068", "title": "良い出港日和ですね"}}, {"@id": "3069", "info": {"texture": "ap_04_0069", "title": "オーシャン・ラヴ・ライブ!スタート!!"}}, {"@id": "3070", "info": {"texture": "ap_04_0070", "title": "*トキメキの魔法を大好きなきみに*"}}, {"@id": "3071", "info": {"texture": "ap_04_0071", "title": "「おっはよ~♥」"}}, {"@id": "3072", "info": {"texture": "ap_04_0072", "title": "ナナイロのシャボン玉"}}, {"@id": "3073", "info": {"texture": "ap_04_0073", "title": "よかったら…一緒に"}}, {"@id": "3074", "info": {"texture": "ap_04_0074", "title": "HEAVENLY"}}, {"@id": "3075", "info": {"texture": "ap_04_0075", "title": "Grand ouvert!"}}, {"@id": "3076", "info": {"texture": "ap_04_0076", "title": "ミカエル、どうしたの?"}}, {"@id": "3077", "info": {"texture": "ap_04_0077", "title": "内緒の魔法"}}, {"@id": "3078", "info": {"texture": "ap_04_0078", "title": "-Emperatriz de la Rosa-"}}, {"@id": "3079", "info": {"texture": "ap_04_0079", "title": "お相手しますわ!"}}, {"@id": "3080", "info": {"texture": "ap_04_0080", "title": "Black Secret"}}, {"@id": "3081", "info": {"texture": "ap_04_0081", "title": "砲撃用意ッ!"}}, {"@id": "3082", "info": {"texture": "ap_04_0082", "title": "新たな夢を探して"}}, {"@id": "3083", "info": {"texture": "ap_04_0083", "title": "ゆくみちまいの小さくて大きな夢"}}, {"@id": "3084", "info": {"texture": "ap_04_0084", "title": "未来への憧れ"}}, {"@id": "3085", "info": {"texture": "ap_04_0085", "title": "踊り明かしましょう"}}, {"@id": "3086", "info": {"texture": "ap_04_0086", "title": "レトロモダンな紅で染めて"}}, {"@id": "3087", "info": {"texture": "ap_04_0087", "title": "さわやかミステリアスな青ルージュさん"}}, {"@id": "3088", "info": {"texture": "ap_04_0088", "title": "紅いピンヒール"}}, {"@id": "3089", "info": {"texture": "ap_04_0089", "title": "謎多き紅いくちびる"}}, {"@id": "3090", "info": {"texture": "ap_04_0090", "title": "いざ、出航よっ"}}, {"@id": "3091", "info": {"texture": "ap_04_0091", "title": "泳ぐわよ!∞∞(□∀□*)∞∞"}}, {"@id": "3092", "info": {"texture": "ap_04_0092", "title": "私が……ナビに!?∞(ノσ∀σ///)∞"}}, {"@id": "3093", "info": {"texture": "ap_04_0093", "title": "写真はやめて!"}}, {"@id": "3094", "info": {"texture": "ap_04_0094", "title": "薔薇の花と躑躅色の乙女"}}, {"@id": "3095", "info": {"texture": "ap_04_0095", "title": "がんばれグレイスちゃん!"}}, {"@id": "3096", "info": {"texture": "ap_04_0096", "title": "はわっふわ!よ!"}}, {"@id": "3097", "info": {"texture": "ap_04_0097", "title": "∞∞(σ∧σ*)∞∞"}}, {"@id": "3098", "info": {"texture": "ap_04_0098", "title": "貴女の忠実な狐です"}}, {"@id": "3099", "info": {"texture": "ap_04_0099", "title": "表裏一体"}}, {"@id": "3100", "info": {"texture": "ap_04_0100", "title": "魅惑で一途な始果くん"}}, {"@id": "3101", "info": {"texture": "ap_04_0101", "title": "すべては躑躅色のきみの為に"}}, {"@id": "3102", "info": {"texture": "ap_04_0102", "title": "躑躅の花の、枝となる"}}, {"@id": "3103", "info": {"texture": "ap_04_0103", "title": "一途な目先"}}, {"@id": "3104", "info": {"texture": "ap_04_0104", "title": "△ヘヴンリィハッピネスエンジェーール△"}}, {"@id": "3105", "info": {"texture": "ap_04_0105", "title": "ランダムで遊ぼう"}}, {"@id": "3106", "info": {"texture": "ap_04_0106", "title": "ヨーソロー!"}}, {"@id": "3107", "info": {"texture": "ap_04_0107", "title": "トーテムつまぶき"}}, {"@id": "3108", "info": {"texture": "ap_04_0108", "title": "つまぶき数学"}}, {"@id": "3109", "info": {"texture": "ap_04_0109", "title": "キレッキレのふわっふわ・・・にしてあげるわ"}}, {"@id": "3110", "info": {"texture": "ap_04_0110", "title": "御社の娘"}}, {"@id": "3111", "info": {"texture": "ap_04_0111", "title": "春風に吹かれて、ゆるふわ系紅刃さん"}}, {"@id": "3112", "info": {"texture": "ap_04_0112", "title": "蒼刃"}}, {"@id": "3113", "info": {"texture": "ap_04_0113", "title": "紅ノ舞"}}, {"@id": "3114", "info": {"texture": "ap_04_0114", "title": "ニア&ノア−W−"}}, {"@id": "3115", "info": {"texture": "ap_04_0115", "title": "更なる深みへ"}}, {"@id": "3116", "info": {"texture": "ap_04_0116", "title": "にあのあへぶんりー!"}}, {"@id": "3117", "info": {"texture": "ap_04_0117", "title": "新たな港でもビュン!ビュン!"}}, {"@id": "3118", "info": {"texture": "ap_04_0118", "title": "ふわっふわのふたご星!"}}, {"@id": "3119", "info": {"texture": "ap_04_0119", "title": "T+XはW!!"}}, {"@id": "3120", "info": {"texture": "ap_04_0120", "title": "紳士たるもの身嗜みには拘りを"}}, {"@id": "3121", "info": {"texture": "ap_04_0121", "title": "夕焼け、砂浜に 独り"}}, {"@id": "3122", "info": {"texture": "ap_04_0122", "title": "猫男爵ノ旅支度"}}, {"@id": "3123", "info": {"texture": "ap_04_0123", "title": "異国ノ空ハ快晴ナリヤ?"}}, {"@id": "3124", "info": {"texture": "ap_04_0124", "title": "「我輩ハ餌デアル。身ハモウナイ。」"}}, {"@id": "3125", "info": {"texture": "ap_04_0125", "title": "碧天に心躍る"}}, {"@id": "3126", "info": {"texture": "ap_04_0126", "title": "神の力"}}, {"@id": "3127", "info": {"texture": "ap_04_0127", "title": "これでボルテ学園生です…ふふふ"}}, {"@id": "3128", "info": {"texture": "ap_04_0128", "title": "鏡に向かって衣装あて"}}, {"@id": "3129", "info": {"texture": "ap_04_0129", "title": "深淵に堕ちて神と在りし"}}, {"@id": "3130", "info": {"texture": "ap_04_0130", "title": "この世界は嘘か真か"}}, {"@id": "3131", "info": {"texture": "ap_04_0131", "title": "虚語ケムリ(ジト目ver)"}}, {"@id": "3132", "info": {"texture": "ap_04_0132", "title": "天網恢々疎にして漏らさず"}}, {"@id": "3133", "info": {"texture": "ap_04_0133", "title": "虚ろなる青天の英雄"}}, {"@id": "3134", "info": {"texture": "ap_04_0134", "title": "KEEPOUT"}}, {"@id": "3135", "info": {"texture": "ap_04_0135", "title": "Emptiness girl"}}, {"@id": "3136", "info": {"texture": "ap_04_0136", "title": "ついてくるがいい…信じるかはお前様次第。"}}, {"@id": "3137", "info": {"texture": "ap_04_0137", "title": "星の海より"}}, {"@id": "3138", "info": {"texture": "ap_04_0138", "title": "星の導きに背く嘘つきの案内人"}}, {"@id": "3139", "info": {"texture": "ap_04_0139", "title": "うみのいきもの"}}, {"@id": "3140", "info": {"texture": "ap_04_0140", "title": "新たなる星の音を求め"}}, {"@id": "3141", "info": {"texture": "ap_04_0141", "title": "戦乙女"}}, {"@id": "3142", "info": {"texture": "ap_04_0142", "title": "導(おし)えて!オルトリンデ先生っ"}}, {"@id": "3143", "info": {"texture": "ap_04_0143", "title": "満点のご褒美"}}, {"@id": "3144", "info": {"texture": "ap_04_0144", "title": "導くンデ!教えるンデ!オルトリンデ!"}}, {"@id": "3145", "info": {"texture": "ap_04_0145", "title": "「この脇を締める姿勢に何の意味があるのだ?」"}}, {"@id": "3146", "info": {"texture": "ap_04_0146", "title": "授業を始めましょう"}}, {"@id": "3147", "info": {"texture": "ap_04_0147", "title": "仮面の奥の人格"}}, {"@id": "3148", "info": {"texture": "ap_04_0148", "title": "破壊者のセカンドライフ"}}, {"@id": "3149", "info": {"texture": "ap_04_0149", "title": "Blastix Octopus?"}}, {"@id": "3150", "info": {"texture": "ap_04_0150", "title": "ライオットtype.IV 起動!"}}, {"@id": "3151", "info": {"texture": "ap_04_0151", "title": "RED or WHITE?"}}, {"@id": "3152", "info": {"texture": "ap_04_0152", "title": "寝るにゃ~"}}, {"@id": "3153", "info": {"texture": "ap_04_0153", "title": "たまぶきじゃない、つまぶきだ!"}}, {"@id": "3154", "info": {"texture": "ap_04_0154", "title": "稼動插曲"}}, {"@id": "3155", "info": {"texture": "ap_04_0155", "title": "赤志魂"}}, {"@id": "3156", "info": {"texture": "ap_04_0156", "title": "よだれ垂らさないで下さい"}}, {"@id": "3157", "info": {"texture": "ap_04_0157", "title": "アイヤ!"}}, {"@id": "3158", "info": {"texture": "ap_04_0158", "title": "アピールカード投稿"}}, {"@id": "3159", "info": {"texture": "ap_04_0159", "title": "みんな!おはようございマス><"}}, {"@id": "3160", "info": {"texture": "ap_04_0160", "title": "bowbownyanya"}}, {"@id": "3161", "info": {"texture": "ap_04_0161", "title": "オニイチャンだーよ!"}}, {"@id": "3162", "info": {"texture": "ap_04_0162", "title": "HEAVY TAMA-!"}}, {"@id": "3163", "info": {"texture": "ap_04_0163", "title": "RainBow Parfait"}}, {"@id": "3164", "info": {"texture": "ap_04_0164", "title": "KuReHa"}}, {"@id": "3165", "info": {"texture": "ap_04_0165", "title": "UC?PUC?"}}, {"@id": "3166", "info": {"texture": "ap_04_0166", "title": "▼ERROR!!◆"}}, {"@id": "3167", "info": {"texture": "ap_04_0167", "title": "つまぶきにナッタ!!!"}}, {"@id": "3168", "info": {"texture": "ap_04_0168", "title": "私の名前は〇〇デス!"}}, {"@id": "3169", "info": {"texture": "ap_04_0169", "title": "みすちー!"}}, {"@id": "3170", "info": {"texture": "ap_04_0170", "title": "屋台営業中!"}}, {"@id": "3171", "info": {"texture": "ap_04_0171", "title": "一緒に歌ってくれるのかしら?"}}, {"@id": "3172", "info": {"texture": "ap_04_0172", "title": "Live on mystia!!~和風変~"}}, {"@id": "3173", "info": {"texture": "ap_04_0173", "title": "真夜中の歌姫"}}, {"@id": "3174", "info": {"texture": "ap_04_0174", "title": "リグル・ナイトバグ"}}, {"@id": "3175", "info": {"texture": "ap_04_0175", "title": "オトコノコ?オンナノコ?"}}, {"@id": "3176", "info": {"texture": "ap_04_0176", "title": "ビックリリグル"}}, {"@id": "3177", "info": {"texture": "ap_04_0177", "title": "妖蟲 リグル・ナイトバグ"}}, {"@id": "3178", "info": {"texture": "ap_04_0178", "title": "バタフライストーム"}}, {"@id": "3179", "info": {"texture": "ap_04_0179", "title": "蟲を操る程度の能力"}}, {"@id": "3180", "info": {"texture": "ap_04_0180", "title": "ほかく!"}}, {"@id": "3181", "info": {"texture": "ap_04_0181", "title": "イナバイナバイナバ"}}, {"@id": "3182", "info": {"texture": "ap_04_0182", "title": "難易度を欺く程度の能力"}}, {"@id": "3183", "info": {"texture": "ap_04_0183", "title": "うさぎの三姉妹?!"}}, {"@id": "3184", "info": {"texture": "ap_04_0184", "title": "月夜の仔兎"}}, {"@id": "3185", "info": {"texture": "ap_04_0185", "title": "幸運&好運の兎餅はいかがかな?"}}, {"@id": "3186", "info": {"texture": "ap_04_0186", "title": "お兎様が見てる"}}, {"@id": "3187", "info": {"texture": "ap_04_0187", "title": "竹森で発見された未確認生命体"}}, {"@id": "3188", "info": {"texture": "ap_04_0188", "title": "月の明かりに照らされて"}}, {"@id": "3189", "info": {"texture": "ap_04_0189", "title": "しあわせうさぎ"}}, {"@id": "3190", "info": {"texture": "ap_04_0190", "title": "うさうさだべさー!!"}}, {"@id": "3191", "info": {"texture": "ap_04_0191", "title": "おっけーね!!!!!!"}}, {"@id": "3192", "info": {"texture": "ap_04_0192", "title": "お前達の歴史、見せてもらおう"}}, {"@id": "3193", "info": {"texture": "ap_04_0193", "title": "満月の夜"}}, {"@id": "3194", "info": {"texture": "ap_04_0194", "title": "知識と歴史の非常勤講師"}}, {"@id": "3195", "info": {"texture": "ap_04_0195", "title": "がおー!"}}, {"@id": "3196", "info": {"texture": "ap_04_0196", "title": "もこTAMAけーね!"}}, {"@id": "3197", "info": {"texture": "ap_04_0197", "title": "歴史家の見つめる先には"}}, {"@id": "3198", "info": {"texture": "ap_04_0198", "title": "もこもこもこう"}}, {"@id": "3199", "info": {"texture": "ap_04_0199", "title": "試させて貰うわよ!"}}, {"@id": "3200", "info": {"texture": "ap_04_0200", "title": "じゅーじゅー焼肉♪本物のフェニックスゥ!?"}}, {"@id": "3201", "info": {"texture": "ap_04_0201", "title": "もこもこばーん!"}}, {"@id": "3202", "info": {"texture": "ap_04_0202", "title": "みにもこう"}}, {"@id": "3203", "info": {"texture": "ap_04_0203", "title": "暗い輪廻から解き放たれた美しい弾幕を見よ!"}}, {"@id": "3204", "info": {"texture": "ap_04_0204", "title": "もこもこ妹紅!!"}}, {"@id": "3205", "info": {"texture": "ap_04_0205", "title": "Hell fire Phoenix"}}, {"@id": "3206", "info": {"texture": "ap_04_0206", "title": "永遠少女"}}, {"@id": "3207", "info": {"texture": "ap_04_0207", "title": "大宇宙ヴォヤージュ!!"}}, {"@id": "3208", "info": {"texture": "ap_04_0208", "title": "銀色に輝く 夜空の珠"}}, {"@id": "3209", "info": {"texture": "ap_04_0209", "title": "ふしぎなくすりやさん"}}, {"@id": "3210", "info": {"texture": "ap_04_0210", "title": "背中合わせのふたり"}}, {"@id": "3211", "info": {"texture": "ap_04_0211", "title": "右腕を高くあげて!……って、左腕!?"}}, {"@id": "3212", "info": {"texture": "ap_04_0212", "title": "永遠の夜に"}}, {"@id": "3213", "info": {"texture": "ap_04_0213", "title": "永遠に美しき姫君"}}, {"@id": "3214", "info": {"texture": "ap_04_0214", "title": "蓬莱のTAMAの枝!?"}}, {"@id": "3215", "info": {"texture": "ap_04_0215", "title": "水の様に優しく 花の様に劇しく"}}, {"@id": "3216", "info": {"texture": "ap_04_0216", "title": "永遠のおひめさま"}}, {"@id": "3217", "info": {"texture": "ap_04_0217", "title": "真実の満月"}}, {"@id": "3218", "info": {"texture": "ap_04_0218", "title": "ボルテの兎"}}, {"@id": "3219", "info": {"texture": "ap_04_0219", "title": "ANALOG_RELOAD!"}}, {"@id": "3220", "info": {"texture": "ap_04_0220", "title": "疲れてる 鈴仙・U・イナバ"}}, {"@id": "3221", "info": {"texture": "ap_04_0221", "title": "狂気の月の兎"}}, {"@id": "3222", "info": {"texture": "ap_04_0222", "title": "うさみみごっこ"}}, {"@id": "3223", "info": {"texture": "ap_04_0223", "title": "IVニアノア衣装ver うどんげ"}}, {"@id": "3224", "info": {"texture": "ap_04_0224", "title": "月のバニーガール"}}, {"@id": "3225", "info": {"texture": "ap_04_0225", "title": "ふたりのさくらんぼ"}}, {"@id": "3226", "info": {"texture": "ap_04_0226", "title": "永遠亭のうさぎ"}}, {"@id": "3227", "info": {"texture": "ap_04_0227", "title": "夢の舞台で…"}}, {"@id": "3228", "info": {"texture": "ap_04_0228", "title": "もふもふきれい"}}, {"@id": "3229", "info": {"texture": "ap_04_0229", "title": "ヾ(>ω< *)ノ"}}, {"@id": "3230", "info": {"texture": "ap_04_0230", "title": "これぞ…ヘヴンリードリーム!?"}}, {"@id": "3231", "info": {"texture": "ap_04_0231", "title": "ナナイロのお天気お姉さん"}}, {"@id": "3232", "info": {"texture": "ap_04_0232", "title": "イラッシャイマセ、「サイコうどん」ヘヨウコソ!"}}, {"@id": "3233", "info": {"texture": "ap_04_0233", "title": "新品種開拓!「れふと米」"}}, {"@id": "3234", "info": {"texture": "ap_04_0234", "title": "アイス売りの少女"}}, {"@id": "3235", "info": {"texture": "ap_04_0235", "title": "おかし探偵☆リボン&わたがし!"}}, {"@id": "3501", "info": {"texture": "ap_04_R0001", "title": "まだ見ぬ港へ…!はじまりのアピカ"}}, {"@id": "3502", "info": {"texture": "ap_04_R0002", "title": "まだ見ぬ港へ…!はじまりのアピカ"}}, {"@id": "3503", "info": {"texture": "ap_04_R0003", "title": "まだ見ぬ港へ…![br:0]SOUND VOLTEX IV 始動!"}}, {"@id": "3504", "info": {"texture": "ap_04_R0004", "title": "グレイスのクリスマス☆2016"}}, {"@id": "3505", "info": {"texture": "ap_04_R0005", "title": "モチュン☆二〇一七 謹賀新年"}}, {"@id": "3506", "info": {"texture": "ap_04_R0006", "title": "ボルテ伍周年★記念限定カード"}}, {"@id": "3507", "info": {"texture": "ap_04_R0007", "title": "バレンタイン2017★グレイスからの…♡"}}, {"@id": "3508", "info": {"texture": "ap_04_R0008", "title": "バレンタイン2017★何故か今日は…"}}, {"@id": "3509", "info": {"texture": "ap_04_R0009", "title": "バレンタイン2017★バレンタイン攻略法!?"}}, {"@id": "3510", "info": {"texture": "ap_04_R0010", "title": "バレンタイン2017★みんなの驚く顔がみたいゼェ!"}}, {"@id": "3511", "info": {"texture": "ap_04_R0011", "title": "バレンタイン2017★半殺しだべさ!"}}, {"@id": "3512", "info": {"texture": "ap_04_R0012", "title": "バレンタイン2017★黒幕は誰!?"}}, {"@id": "3513", "info": {"texture": "ap_04_R0013", "title": "幕張2017限定グレイスw"}}, {"@id": "3514", "info": {"texture": "ap_04_R0014", "title": "The 6th KAC CHAMPION[br:0]~天国へようこそ~"}}, {"@id": "3515", "info": {"texture": "ap_04_R0015", "title": "The 6th KAC FINALIST [br:0]ボルテニアン・パイレーツ"}}, {"@id": "3516", "info": {"texture": "ap_04_R0016", "title": "第三回 天下一音ゲ祭[br:0]-天下無双-"}}, {"@id": "3517", "info": {"texture": "ap_04_R0017", "title": "第三回 天下一音ゲ祭[br:0]-乾坤一擲-"}}, {"@id": "3518", "info": {"texture": "ap_04_R0018", "title": "The 6th KAC~大海へ!"}}, {"@id": "3519", "info": {"texture": "ap_04_R0019", "title": "ひなビタ♪[br:0]滅びに至るエランプシス"}}, {"@id": "3520", "info": {"texture": "ap_04_R0020", "title": "ひなビタ♪[br:0]カタルシスの月"}}, {"@id": "3521", "info": {"texture": "ap_04_R0021", "title": "ひなビタ♪[br:0]幼馴染"}}, {"@id": "3522", "info": {"texture": "ap_04_R0022", "title": "ひなビタ♪[br:0]ちくパの刺客達"}}, {"@id": "3523", "info": {"texture": "ap_04_R0023", "title": "ひなビタ♪[br:0]水着咲子"}}, {"@id": "3524", "info": {"texture": "ap_04_R0024", "title": "レイシスIV -東方ver.-"}}, {"@id": "3525", "info": {"texture": "ap_04_R0025", "title": "妹紅 -蒼弐ver.-"}}, {"@id": "3526", "info": {"texture": "ap_04_R0026", "title": "永琳 -蒼弐ver.-"}}, {"@id": "3527", "info": {"texture": "ap_04_R0027", "title": "輝夜 -蒼弐ver.-"}}, {"@id": "3528", "info": {"texture": "ap_04_R0028", "title": "水着レイシス"}}, {"@id": "3529", "info": {"texture": "ap_04_R0029", "title": "ぴっちりレイシス"}}, {"@id": "3530", "info": {"texture": "ap_04_R0030", "title": "ぴちぴちレイシス"}}, {"@id": "3531", "info": {"texture": "ap_04_R0031", "title": "先生のあったかい大胸筋"}}, {"@id": "3532", "info": {"texture": "ap_04_R0032", "title": "先生の火照ったこんがり小麦肌"}}, {"@id": "3533", "info": {"texture": "ap_04_R0033", "title": "ニアノア海水浴"}}, {"@id": "3534", "info": {"texture": "ap_04_R0034", "title": "紅刃訪問PM6:00"}}, {"@id": "3535", "info": {"texture": "ap_04_R0035", "title": "紅刃訪問PM7:00"}}, {"@id": "3536", "info": {"texture": "ap_04_R0036", "title": "七色水着"}}, {"@id": "3537", "info": {"texture": "ap_04_R0037", "title": "つまぶきカットイン"}}, {"@id": "3538", "info": {"texture": "ap_04_R0038", "title": "熱いミツル子"}}, {"@id": "3539", "info": {"texture": "ap_04_R0039", "title": "熱い紅刃"}}, {"@id": "3540", "info": {"texture": "ap_04_R0040", "title": "夏の西日暮里さん@"}}, {"@id": "3541", "info": {"texture": "ap_04_R0041", "title": "夏の西日暮里さんA"}}, {"@id": "3542", "info": {"texture": "ap_04_R0042", "title": "夏の西日暮里さんB"}}, {"@id": "3543", "info": {"texture": "ap_04_R0043", "title": "兄妹の海開き"}}, {"@id": "3544", "info": {"texture": "ap_04_R0044", "title": "はじめての水着ですの"}}, {"@id": "3545", "info": {"texture": "ap_04_R0045", "title": "少し大胆な水着ですの"}}, {"@id": "3546", "info": {"texture": "ap_04_R0046", "title": "しずく"}}, {"@id": "3547", "info": {"texture": "ap_04_R0047", "title": "味も見た目もNo.1☆冷やし中華\"着てみました\"~!"}}, {"@id": "3548", "info": {"texture": "ap_04_R0048", "title": "Beach Side オルトリンデ"}}, {"@id": "3549", "info": {"texture": "ap_04_R0049", "title": "蒼海の騎士は飛沫を駆けて"}}, {"@id": "3550", "info": {"texture": "ap_04_R0050", "title": "かき氷、始めましたv"}}, {"@id": "3551", "info": {"texture": "ap_04_R0051", "title": "双星ルミネセンス[br:0]一舞 & 夏陽"}}, {"@id": "3552", "info": {"texture": "ap_04_R0052", "title": "バイナリスター[br:0]ここなつ"}}, {"@id": "3553", "info": {"texture": "ap_04_R0053", "title": "ヒミツダイヤル[br:0]ここなつ"}}, {"@id": "3554", "info": {"texture": "ap_04_R0054", "title": "デュアルメモリ[br:0]ここなつ"}}, {"@id": "3555", "info": {"texture": "ap_04_R0055", "title": "ナナイロライト[br:0]ここなつ"}}, {"@id": "3556", "info": {"texture": "ap_04_R0056", "title": "コンフェイト*コンチェルト[br:0]ここなつ"}}, {"@id": "3557", "info": {"texture": "ap_04_R0057", "title": "「ここなつ☆」は夢のカタチ[br:0]ここなつ"}}, {"@id": "3558", "info": {"texture": "ap_04_R0058", "title": "ムラサキグルマ[br:0]ここなつ"}}, {"@id": "3559", "info": {"texture": "ap_04_R0059", "title": "千客万来☆無問題![br:0]ここなつ"}}, {"@id": "3560", "info": {"texture": "ap_04_R0060", "title": "アナーキーインザ夕景[br:0]ここなつ"}}, {"@id": "3561", "info": {"texture": "ap_04_R0061", "title": "闇夜舞踏会 -緋碧と蝶のためのmasquerade-[br:0]ここなつ"}}, {"@id": "3562", "info": {"texture": "ap_04_R0062", "title": "Finally Dive[br:0]ここなつ"}}, {"@id": "3563", "info": {"texture": "ap_04_R0063", "title": "モラトリアムノオト[br:0]東雲夏陽"}}, {"@id": "3564", "info": {"texture": "ap_04_R0064", "title": "キズナ[br:0]東雲心菜"}}, {"@id": "3565", "info": {"texture": "ap_04_R0065", "title": "キリステゴメン[br:0]東雲夏陽"}}, {"@id": "3566", "info": {"texture": "ap_04_R0066", "title": "シノビシノノメ[br:0]東雲心菜"}}, {"@id": "3567", "info": {"texture": "ap_04_R0067", "title": "ルミナスデイズ[br:0]ここなつ"}}, {"@id": "3568", "info": {"texture": "ap_04_R0068", "title": "BowWow☆二〇十八 謹賀新年"}}, {"@id": "3569", "info": {"texture": "ap_04_R0069", "title": "ボルテ六周年★記念限定カード"}}, {"@id": "3570", "info": {"texture": "ap_04_R0070", "title": "バレンタイン2018★氷雪ちゃんの本命は"}}, {"@id": "3571", "info": {"texture": "ap_04_R0071", "title": "バレンタイン2018★つまぶきがおいしく頂きました"}}, {"@id": "3572", "info": {"texture": "ap_04_R0072", "title": "バレンタイン2018★試作中ですの!"}}, {"@id": "3573", "info": {"texture": "ap_04_R0073", "title": "バレンタイン2018★Cafe VOLTEバレンタインサービスデーデス♡"}}, {"@id": "3574", "info": {"texture": "ap_04_R0074", "title": "バレンタイン2018★先生達の叱咤激励(?)"}}, {"@id": "3575", "info": {"texture": "ap_04_R0075", "title": "バレンタイン2018★一方その頃"}}, {"@id": "3576", "info": {"texture": "ap_04_R0076", "title": "The 7th KAC CHAMPION[br:0]~I~"}}, {"@id": "3577", "info": {"texture": "ap_04_R0077", "title": "The 7th KAC FINALIST[br:0]TAMA猫"}}, {"@id": "3578", "info": {"texture": "ap_04_R0078", "title": "第四回 天下一音ゲ祭[br:0]-天下無双-"}}, {"@id": "3579", "info": {"texture": "ap_04_R0079", "title": "第四回 天下一音ゲ祭[br:0]-乾坤一擲-"}}, {"@id": "3580", "info": {"texture": "ap_04_R0080", "title": "KAC2012 CHAMPION[br:0]~Max Burning!!~"}}, {"@id": "3581", "info": {"texture": "ap_04_R0081", "title": "KAC2013 CHAMPION[br:0]~Bangin' Burst~"}}, {"@id": "3582", "info": {"texture": "ap_04_R0082", "title": "KAC2013 CHAMPION[br:0]~For UltraPlayers~"}}, {"@id": "3583", "info": {"texture": "ap_04_R0083", "title": "The 4th KAC CHAMPION[br:0]~Everlasting Message~"}}, {"@id": "3584", "info": {"texture": "ap_04_R0084", "title": "The 6th KAC CHAMPION[br:0]~iLLness LiLin~"}}, {"@id": "3585", "info": {"texture": "ap_04_R0085", "title": "レイシスIV -東方ver.2018-"}}, {"@id": "3586", "info": {"texture": "ap_04_R0086", "title": "鈴仙 -蒼弐ver.-"}}, {"@id": "3587", "info": {"texture": "ap_04_R0087", "title": "慧音 -KINGver.-"}}, {"@id": "3588", "info": {"texture": "ap_04_R0088", "title": "てゐ -蒼弐ver.-"}}, {"@id": "3589", "info": {"texture": "ap_04_R0089", "title": "勇者の☆密林探検!"}}, {"@id": "3590", "info": {"texture": "ap_04_R0090", "title": "コスモの彼方へ![br:0]モッキュキュ~ン☆"}}, {"@id": "3591", "info": {"texture": "ap_04_R0091", "title": "暴龍天の囁き"}}, {"@id": "3592", "info": {"texture": "ap_04_R0092", "title": "雛&蒼&桃♪メリー[br:0]クリスマス~★"}}, {"@id": "3593", "info": {"texture": "ap_04_R0093", "title": "あったかイノテン☆二〇一九"}}, {"@id": "3594", "info": {"texture": "ap_04_R0094", "title": "ボルテ七周年★記念限定カード"}}, {"@id": "3595", "info": {"texture": "ap_04_R0095", "title": "バレンタイン2019★奈奈ちゃんからまさかの…!?"}}, {"@id": "4001", "info": {"texture": "ap_05_0001", "title": "繋がるVIVID WAVE"}}, {"@id": "4002", "info": {"texture": "ap_05_0002", "title": "レイシス"}}, {"@id": "4003", "info": {"texture": "ap_05_0003", "title": "グレイス"}}, {"@id": "4004", "info": {"texture": "ap_05_0004", "title": "miniレイシス"}}, {"@id": "4005", "info": {"texture": "ap_05_0005", "title": "miniグレイス"}}, {"@id": "4006", "info": {"texture": "ap_05_0006", "title": "嬬武器雷刀"}}, {"@id": "4007", "info": {"texture": "ap_05_0007", "title": "嬬武器烈風刀"}}, {"@id": "4008", "info": {"texture": "ap_05_0008", "title": "音渦元年デス!!"}}, {"@id": "4009", "info": {"texture": "ap_05_0009", "title": "VIVID LIVE!"}}, {"@id": "4010", "info": {"texture": "ap_05_0010", "title": "はわわ~♥ハートを届けマス~♪"}}, {"@id": "4011", "info": {"texture": "ap_05_0011", "title": "VIVIDな世界へようこソ♪"}}, {"@id": "4012", "info": {"texture": "ap_05_0012", "title": "びびっとっぱすてる☆れいしす"}}, {"@id": "4013", "info": {"texture": "ap_05_0013", "title": "V!"}}, {"@id": "4014", "info": {"texture": "ap_05_0014", "title": "愛はワタシの中にある"}}, {"@id": "4015", "info": {"texture": "ap_05_0015", "title": "レイシスX 初めてのライブ頑張りマスッ!"}}, {"@id": "4016", "info": {"texture": "ap_05_0016", "title": "休みの朝はスーパーボルテタイム!"}}, {"@id": "4017", "info": {"texture": "ap_05_0017", "title": "Ladies and Gentlemen !"}}, {"@id": "4018", "info": {"texture": "ap_05_0018", "title": "大人気3200%のオニイチャン!"}}, {"@id": "4019", "info": {"texture": "ap_05_0019", "title": "行くぜ!びびっどうえーーーぶ!!"}}, {"@id": "4020", "info": {"texture": "ap_05_0020", "title": "5でも!オニイチャンにまかせとけって♪"}}, {"@id": "4021", "info": {"texture": "ap_05_0021", "title": "落ちていたバナナの皮で足を滑らせ…?"}}, {"@id": "4022", "info": {"texture": "ap_05_0022", "title": "米!農!家!嬬武器烈風刀"}}, {"@id": "4023", "info": {"texture": "ap_05_0023", "title": "「この日のために練習しました・・・・・・!」"}}, {"@id": "4024", "info": {"texture": "ap_05_0024", "title": "Princessどうかお野菜…"}}, {"@id": "4025", "info": {"texture": "ap_05_0025", "title": "熾烈に煌めく碧の光線"}}, {"@id": "4026", "info": {"texture": "ap_05_0026", "title": "烈風刀くんファンサして!"}}, {"@id": "4027", "info": {"texture": "ap_05_0027", "title": "臨場感3200%のステージへ!"}}, {"@id": "4028", "info": {"texture": "ap_05_0028", "title": "おつまみの精"}}, {"@id": "4029", "info": {"texture": "ap_05_0029", "title": "ビームを吐くつまぶき"}}, {"@id": "4030", "info": {"texture": "ap_05_0030", "title": "先生、アイドルデビュー!"}}, {"@id": "4031", "info": {"texture": "ap_05_0031", "title": "Little Twin Star"}}, {"@id": "4032", "info": {"texture": "ap_05_0032", "title": "Vivid Party!"}}, {"@id": "4033", "info": {"texture": "ap_05_0033", "title": "天使系アイドルのニア&ノアだよー!"}}, {"@id": "4034", "info": {"texture": "ap_05_0034", "title": "「応援はオレに任せとけってー!!」"}}, {"@id": "4035", "info": {"texture": "ap_05_0035", "title": "VIVID PINK"}}, {"@id": "4036", "info": {"texture": "ap_05_0036", "title": "糖分補給のお時間だゼ~~☆"}}, {"@id": "4037", "info": {"texture": "ap_05_0037", "title": "B.B.B."}}, {"@id": "4038", "info": {"texture": "ap_05_0038", "title": "ミスったああ!!"}}, {"@id": "4039", "info": {"texture": "ap_05_0039", "title": "「た、待機列最後尾はこちらです…!」"}}, {"@id": "4040", "info": {"texture": "ap_05_0040", "title": "要るかァ?"}}, {"@id": "4041", "info": {"texture": "ap_05_0041", "title": "Who!saher0"}}, {"@id": "4042", "info": {"texture": "ap_05_0042", "title": "残さず食べてねっ!"}}, {"@id": "4043", "info": {"texture": "ap_05_0043", "title": "やっばいじゃ~ん!"}}, {"@id": "4044", "info": {"texture": "ap_05_0044", "title": "私たちの演奏を聴くアル~!!"}}, {"@id": "4045", "info": {"texture": "ap_05_0045", "title": "アイヤ!"}}, {"@id": "4046", "info": {"texture": "ap_05_0046", "title": "イー・アル・カンフーハリケーン"}}, {"@id": "4047", "info": {"texture": "ap_05_0047", "title": "鮮やかに"}}, {"@id": "4048", "info": {"texture": "ap_05_0048", "title": "わくわくみずあそび"}}, {"@id": "4049", "info": {"texture": "ap_05_0049", "title": "ばたふらいきゃっと!!"}}, {"@id": "4050", "info": {"texture": "ap_05_0050", "title": "MIRROR-TAMA猫"}}, {"@id": "4051", "info": {"texture": "ap_05_0051", "title": "収穫デウ-ッ!"}}, {"@id": "4052", "info": {"texture": "ap_05_0052", "title": "大きなTAMA猫見つけた"}}, {"@id": "4053", "info": {"texture": "ap_05_0053", "title": "お団子オイシイですーッ!!"}}, {"@id": "4054", "info": {"texture": "ap_05_0054", "title": "孤独のスポットライト"}}, {"@id": "4055", "info": {"texture": "ap_05_0055", "title": "僕おしるこ好きなんですよ~"}}, {"@id": "4056", "info": {"texture": "ap_05_0056", "title": "これ以上、好きなようにはさせないぞ"}}, {"@id": "4057", "info": {"texture": "ap_05_0057", "title": "ゆうしゃはキメポーズをとった!▼"}}, {"@id": "4058", "info": {"texture": "ap_05_0058", "title": "月光に輝く美しき剣の精"}}, {"@id": "4059", "info": {"texture": "ap_05_0059", "title": "剣の精霊"}}, {"@id": "4060", "info": {"texture": "ap_05_0060", "title": "みなさんも一緒に歌いましょう!!さぁジュワユースも一緒に!!"}}, {"@id": "4061", "info": {"texture": "ap_05_0061", "title": "ふわふわきらきら"}}, {"@id": "4062", "info": {"texture": "ap_05_0062", "title": "まっしろわたがしちゃん"}}, {"@id": "4063", "info": {"texture": "ap_05_0063", "title": "むにゃむにゃ~"}}, {"@id": "4064", "info": {"texture": "ap_05_0064", "title": "まだまだいくよ!!"}}, {"@id": "4065", "info": {"texture": "ap_05_0065", "title": "行っておいで"}}, {"@id": "4066", "info": {"texture": "ap_05_0066", "title": "Never Ending Story…"}}, {"@id": "4067", "info": {"texture": "ap_05_0067", "title": "午睡"}}, {"@id": "4068", "info": {"texture": "ap_05_0068", "title": "時代の観測者~海を越えて~"}}, {"@id": "4069", "info": {"texture": "ap_05_0069", "title": "VIVIDユーレイさん"}}, {"@id": "4070", "info": {"texture": "ap_05_0070", "title": "上から来るぞ!"}}, {"@id": "4071", "info": {"texture": "ap_05_0071", "title": "AOってないYO"}}, {"@id": "4072", "info": {"texture": "ap_05_0072", "title": "ばあ!"}}, {"@id": "4073", "info": {"texture": "ap_05_0073", "title": "君もオバケ?"}}, {"@id": "4074", "info": {"texture": "ap_05_0074", "title": "ちょぉっと~!私がセンターだってばぁ~!"}}, {"@id": "4075", "info": {"texture": "ap_05_0075", "title": "この世もオバケでいっぱい!"}}, {"@id": "4076", "info": {"texture": "ap_05_0076", "title": "キミもオバケ?一緒に踊ろうYO~!"}}, {"@id": "4077", "info": {"texture": "ap_05_0077", "title": "そしてこの顔である"}}, {"@id": "4078", "info": {"texture": "ap_05_0078", "title": "何気ない幸せ"}}, {"@id": "4079", "info": {"texture": "ap_05_0079", "title": "私とピコは凄いんだから!"}}, {"@id": "4080", "info": {"texture": "ap_05_0080", "title": "ひらめいた!"}}, {"@id": "4081", "info": {"texture": "ap_05_0081", "title": "天才美少女エクサだよ!"}}, {"@id": "4082", "info": {"texture": "ap_05_0082", "title": "Vivid Timbre"}}, {"@id": "4083", "info": {"texture": "ap_05_0083", "title": "ボクとうさぎの"}}, {"@id": "4084", "info": {"texture": "ap_05_0084", "title": "憧れの、その先へ。"}}, {"@id": "4085", "info": {"texture": "ap_05_0085", "title": "黄昏に染まる"}}, {"@id": "4086", "info": {"texture": "ap_05_0086", "title": "マドホリくん"}}, {"@id": "4087", "info": {"texture": "ap_05_0087", "title": "☆ミ"}}, {"@id": "4088", "info": {"texture": "ap_05_0088", "title": "Let's kick"}}, {"@id": "4089", "info": {"texture": "ap_05_0089", "title": "DD×BOF"}}, {"@id": "4090", "info": {"texture": "ap_05_0090", "title": "にこっ"}}, {"@id": "4091", "info": {"texture": "ap_05_0091", "title": "マキナのハートはおとしごろ"}}, {"@id": "4092", "info": {"texture": "ap_05_0092", "title": "星、満ちて、アップデート。"}}, {"@id": "4093", "info": {"texture": "ap_05_0093", "title": "あ~ん!ぷちょへんざ~!!"}}, {"@id": "4094", "info": {"texture": "ap_05_0094", "title": "普段は普通の女の子!"}}, {"@id": "4095", "info": {"texture": "ap_05_0095", "title": "踊ル、ハート、アッタカイ!"}}, {"@id": "4096", "info": {"texture": "ap_05_0096", "title": "サウンドボルテックスをアピールする行道舞ちゃん"}}, {"@id": "4097", "info": {"texture": "ap_05_0097", "title": "なみだするのは私だけ"}}, {"@id": "4098", "info": {"texture": "ap_05_0098", "title": "Vivid Tune"}}, {"@id": "4099", "info": {"texture": "ap_05_0099", "title": "宣戦布告"}}, {"@id": "4100", "info": {"texture": "ap_05_0100", "title": "天使の祈り"}}, {"@id": "4101", "info": {"texture": "ap_05_0101", "title": "ちょっと待、ぱ…パンナコッターっ!!?"}}, {"@id": "4102", "info": {"texture": "ap_05_0102", "title": "夢が叶う瞬間"}}, {"@id": "4103", "info": {"texture": "ap_05_0103", "title": "ぐれいすちゃんの うちゅーりょこー"}}, {"@id": "4104", "info": {"texture": "ap_05_0104", "title": "くれるのかしら?"}}, {"@id": "4105", "info": {"texture": "ap_05_0105", "title": "グレイスよっ!∞v(σVσ)v∞"}}, {"@id": "4106", "info": {"texture": "ap_05_0106", "title": "VIVID PARTY"}}, {"@id": "4107", "info": {"texture": "ap_05_0107", "title": "躑躅の君"}}, {"@id": "4108", "info": {"texture": "ap_05_0108", "title": "I'm ready!だよッ★"}}, {"@id": "4109", "info": {"texture": "ap_05_0109", "title": "私の歌を聞きなさいよねッ★"}}, {"@id": "4110", "info": {"texture": "ap_05_0110", "title": "小悪魔★グレイスちゃん"}}, {"@id": "4111", "info": {"texture": "ap_05_0111", "title": "ド浮かれグレイス"}}, {"@id": "4112", "info": {"texture": "ap_05_0112", "title": "君を守る光"}}, {"@id": "4113", "info": {"texture": "ap_05_0113", "title": "チャイナ服リンデ先生"}}, {"@id": "4114", "info": {"texture": "ap_05_0114", "title": "ドレスアップしたオルトリンデさん"}}, {"@id": "4115", "info": {"texture": "ap_05_0115", "title": "夏だべさ!!"}}, {"@id": "4116", "info": {"texture": "ap_05_0116", "title": "ピリカが歌うべか?"}}, {"@id": "4117", "info": {"texture": "ap_05_0117", "title": "おめさまも、飲むだか?"}}, {"@id": "4118", "info": {"texture": "ap_05_0118", "title": "華となるの"}}, {"@id": "4119", "info": {"texture": "ap_05_0119", "title": "ぶらっど・あっと・るなてぃっく?"}}, {"@id": "4120", "info": {"texture": "ap_05_0120", "title": "紅刃VIVID!"}}, {"@id": "4121", "info": {"texture": "ap_05_0121", "title": "今宵の逆月は迷いを断ち斬らん"}}, {"@id": "4122", "info": {"texture": "ap_05_0122", "title": "新衣装がちょっぴり恥ずかしい紅刃さん"}}, {"@id": "4123", "info": {"texture": "ap_05_0123", "title": "Je suis prete!"}}, {"@id": "4124", "info": {"texture": "ap_05_0124", "title": "VIVID NANA!!!"}}, {"@id": "4125", "info": {"texture": "ap_05_0125", "title": "NANA◇VIVID!!"}}, {"@id": "4126", "info": {"texture": "ap_05_0126", "title": "子供扱いしないでくれる?"}}, {"@id": "4127", "info": {"texture": "ap_05_0127", "title": "俺の名前はす…火琉毘 煉!!"}}, {"@id": "4128", "info": {"texture": "ap_05_0128", "title": "浅紅色に染め上げよ!"}}, {"@id": "4129", "info": {"texture": "ap_05_0129", "title": "おそろい!"}}, {"@id": "4130", "info": {"texture": "ap_05_0130", "title": "クールでホットな狐様"}}, {"@id": "4131", "info": {"texture": "ap_05_0131", "title": "炎の子"}}, {"@id": "4132", "info": {"texture": "ap_05_0132", "title": "炎怒"}}, {"@id": "4133", "info": {"texture": "ap_05_0133", "title": "ウチの式神がモフらせてくれない"}}, {"@id": "4134", "info": {"texture": "ap_05_0134", "title": "Cheer.S"}}, {"@id": "4135", "info": {"texture": "ap_05_0135", "title": "ヴォー↓ウィー↑ヴィー↑ヴォンwwwトゥッテッッ♪タry"}}, {"@id": "4136", "info": {"texture": "ap_05_0136", "title": "suppress..."}}, {"@id": "4137", "info": {"texture": "ap_05_0137", "title": "夜風にあたる白銀のお嬢様"}}, {"@id": "4138", "info": {"texture": "ap_05_0138", "title": "Are You Ready?"}}, {"@id": "4139", "info": {"texture": "ap_05_0139", "title": "とくダネは粒餡のかほり…?"}}, {"@id": "4140", "info": {"texture": "ap_05_0140", "title": "そこのキミっ!ちょっとインタビューいいかな?"}}, {"@id": "4141", "info": {"texture": "ap_05_0141", "title": "\\カッッッ!!//"}}, {"@id": "4142", "info": {"texture": "ap_05_0142", "title": "スクープいただきっ!"}}, {"@id": "4143", "info": {"texture": "ap_05_0143", "title": "良い記事作るぞ~っ♪"}}, {"@id": "4144", "info": {"texture": "ap_05_0144", "title": "VIVID†HOLIC (*^・ω・^)"}}, {"@id": "4145", "info": {"texture": "ap_05_0145", "title": "PSYCHO†HOLICが応援してくれる"}}, {"@id": "4146", "info": {"texture": "ap_05_0146", "title": "追従"}}, {"@id": "4147", "info": {"texture": "ap_05_0147", "title": "フルエルコノクウカン...(・ω・)"}}, {"@id": "4148", "info": {"texture": "ap_05_0148", "title": "PSYCHOHOLIC"}}, {"@id": "4149", "info": {"texture": "ap_05_0149", "title": "たいへんよくおきました"}}, {"@id": "4150", "info": {"texture": "ap_05_0150", "title": "ハッピー・イノテンちゃん"}}, {"@id": "4151", "info": {"texture": "ap_05_0151", "title": "イノテンちゃん VVD"}}, {"@id": "4152", "info": {"texture": "ap_05_0152", "title": "ねぇねぇ?どんなウワサしてるのぉ~?"}}, {"@id": "4153", "info": {"texture": "ap_05_0153", "title": "ナニホンキニナッテンノ?コッワ~イ!"}}, {"@id": "4154", "info": {"texture": "ap_05_0154", "title": "カヲル vVv アシタ"}}, {"@id": "4155", "info": {"texture": "ap_05_0155", "title": "わたしもライブに参加、です…!"}}, {"@id": "4156", "info": {"texture": "ap_05_0156", "title": "うさぴょん氷雪ちゃん"}}, {"@id": "4157", "info": {"texture": "ap_05_0157", "title": "冷やしもしょう"}}, {"@id": "4158", "info": {"texture": "ap_05_0158", "title": "哀しき船幽霊"}}, {"@id": "4159", "info": {"texture": "ap_05_0159", "title": "SLOW MOTION!!"}}, {"@id": "4160", "info": {"texture": "ap_05_0160", "title": "ぶい!!"}}, {"@id": "4161", "info": {"texture": "ap_05_0161", "title": "教えて!雪翔博士!"}}, {"@id": "4162", "info": {"texture": "ap_05_0162", "title": "ムニムニする?"}}, {"@id": "4163", "info": {"texture": "ap_05_0163", "title": "オンディーヌの笑顔"}}, {"@id": "4164", "info": {"texture": "ap_05_0164", "title": "オンディーヌの憂鬱"}}, {"@id": "4165", "info": {"texture": "ap_05_0165", "title": "えっと…オンディーヌともうします…!"}}, {"@id": "4166", "info": {"texture": "ap_05_0166", "title": "がおがおっ!"}}, {"@id": "4167", "info": {"texture": "ap_05_0167", "title": "狐。"}}, {"@id": "4168", "info": {"texture": "ap_05_0168", "title": "あちらも覗いているのだ"}}, {"@id": "4169", "info": {"texture": "ap_05_0169", "title": "VIVID MAKEUP -井之上 千影-"}}, {"@id": "4170", "info": {"texture": "ap_05_0170", "title": "白銀の弾丸と黒百合ドレス"}}, {"@id": "4171", "info": {"texture": "ap_05_0171", "title": "Vivid×Vacant"}}, {"@id": "4172", "info": {"texture": "ap_05_0172", "title": "ゴシック・ケムリちゃん"}}, {"@id": "4173", "info": {"texture": "ap_05_0173", "title": "乙女はしっぽの手入れも大切ですの"}}, {"@id": "4174", "info": {"texture": "ap_05_0174", "title": "凛として咲く桜の如く"}}, {"@id": "4175", "info": {"texture": "ap_05_0175", "title": "フレフレですの!"}}, {"@id": "4176", "info": {"texture": "ap_05_0176", "title": "VIVID・GRAVITY"}}, {"@id": "4177", "info": {"texture": "ap_05_0177", "title": "知ったことじゃあないね!"}}, {"@id": "4178", "info": {"texture": "ap_05_0178", "title": "就業時間中もボルテのことで頭がいっぱいな社会人になったごりら"}}, {"@id": "4179", "info": {"texture": "ap_05_0179", "title": "ちょっと待つデース!!"}}, {"@id": "4180", "info": {"texture": "ap_05_0180", "title": "こんなにも心が踊るものがあったなんて!"}}, {"@id": "4181", "info": {"texture": "ap_05_0181", "title": "淵"}}, {"@id": "4182", "info": {"texture": "ap_05_0182", "title": "wobble"}}, {"@id": "4183", "info": {"texture": "ap_05_0183", "title": "ワブルバブル"}}, {"@id": "4184", "info": {"texture": "ap_05_0184", "title": "閃光の階段を凌ぎ切れ"}}, {"@id": "4185", "info": {"texture": "ap_05_0185", "title": "真夜中ノ子守ウタ"}}, {"@id": "4186", "info": {"texture": "ap_05_0186", "title": "今日の放送っ!はじめるにゃ!!"}}, {"@id": "4187", "info": {"texture": "ap_05_0187", "title": "わこつー"}}, {"@id": "4188", "info": {"texture": "ap_05_0188", "title": "V★"}}, {"@id": "4189", "info": {"texture": "ap_05_0189", "title": "イルとヨル"}}, {"@id": "4190", "info": {"texture": "ap_05_0190", "title": "月夜に戯れれば"}}, {"@id": "4191", "info": {"texture": "ap_05_0191", "title": "ナイショのツインキャット"}}, {"@id": "4192", "info": {"texture": "ap_05_0192", "title": "傾国の歌姫"}}, {"@id": "4193", "info": {"texture": "ap_05_0193", "title": "魔の災いたる悪神"}}, {"@id": "4194", "info": {"texture": "ap_05_0194", "title": "サタン思案中……"}}, {"@id": "4195", "info": {"texture": "ap_05_0195", "title": "666"}}, {"@id": "4501", "info": {"texture": "ap_05_R0001", "title": "2019 SummerRanking!!-雷刀-"}}, {"@id": "4502", "info": {"texture": "ap_05_R0002", "title": "2019 SummerRanking!!-烈風刀-"}}, {"@id": "4503", "info": {"texture": "ap_05_R0003", "title": "2019 SummerRanking!!-オルトリンデ-"}}, {"@id": "4504", "info": {"texture": "ap_05_R0004", "title": "2019 SummerRanking!!-マキシマ-"}}, {"@id": "4505", "info": {"texture": "ap_05_R0005", "title": "2019 SummerRanking!!-ニア&ノア-"}}, {"@id": "4506", "info": {"texture": "ap_05_R0006", "title": "2019 SummerRanking!!-西日暮里&あんず-"}}, {"@id": "4507", "info": {"texture": "ap_05_R0007", "title": "2019 SummerRanking!!-始果-"}}, {"@id": "4508", "info": {"texture": "ap_05_R0008", "title": "2019 SummerRanking!!-紅刃-"}}, {"@id": "4509", "info": {"texture": "ap_05_R0009", "title": "2019 SummerRanking!!-ピリカ-"}}, {"@id": "4510", "info": {"texture": "ap_05_R0010", "title": "2019 SummerRanking!!-氷雪ちゃん-"}}, {"@id": "4511", "info": {"texture": "ap_05_R0011", "title": "2019 SummerRanking!!-ライオット-"}}, {"@id": "4512", "info": {"texture": "ap_05_R0012", "title": "The 8th KAC CHAMPION[br:0]~*Feels Seasickness...*~"}}, {"@id": "4513", "info": {"texture": "ap_05_R0013", "title": "The 8th KAC FINALIST[br:0]~ΣmbryØ~"}}, {"@id": "4514", "info": {"texture": "ap_05_R0014", "title": "第五回 天下一音ゲ祭[br:0]-天下無双-"}}, {"@id": "4515", "info": {"texture": "ap_05_R0015", "title": "第五回 天下一音ゲ祭[br:0]-乾坤一擲-"}}, {"@id": "4516", "info": {"texture": "ap_05_R0016", "title": "オトナここなつ[br:0]東雲夏陽"}}, {"@id": "4517", "info": {"texture": "ap_05_R0017", "title": "オトナここなつ[br:0]東雲心菜"}}, {"@id": "4518", "info": {"texture": "ap_05_R0018", "title": "ハレ トキドキ メランコリック[br:0]ここなつ"}}, {"@id": "4519", "info": {"texture": "ap_05_R0019", "title": "投票選抜戦2019[br:0]-レイシス-"}}, {"@id": "4520", "info": {"texture": "ap_05_R0020", "title": "投票選抜戦2019[br:0]-いちか-"}}, {"@id": "4521", "info": {"texture": "ap_05_R0021", "title": "投票選抜戦2019[br:0]-いちか…?-"}}, {"@id": "4522", "info": {"texture": "ap_05_R0022", "title": "正月満喫チュウ☆二〇二〇"}}, {"@id": "4523", "info": {"texture": "ap_05_R0023", "title": "ボルテ八周年★記念限定カード"}}, {"@id": "4524", "info": {"texture": "ap_05_R0024", "title": "The 9th KAC CHAMPION[br:0]~666~"}}, {"@id": "4525", "info": {"texture": "ap_05_R0025", "title": "The 9th KAC FINALIST[br:0]~狂気の剣帝・紅刃~"}}, {"@id": "4526", "info": {"texture": "ap_05_R0026", "title": "はわわでたわわなお正月☆二〇二一"}}, {"@id": "4527", "info": {"texture": "ap_05_R0027", "title": "ボルテ九周年★記念限定カード"}}, {"@id": "5001", "info": {"texture": "ap_06_0001", "title": "ここから始まるEXCEED GEAR"}}, {"@id": "5501", "info": {"texture": "ap_06_R0001", "title": "タイガーハニー♪二〇二二"}}, {"@id": "5502", "info": {"texture": "ap_06_R0002", "title": "ボルテ10周年★記念限定カード"}}, {"@id": "5503", "info": {"texture": "ap_06_R0003", "title": "The 10th KAC フリー部門 CHAMPION[br:0]~MixxioN~"}}, {"@id": "5504", "info": {"texture": "ap_06_R0004", "title": "The 10th KAC フリー部門 FINALIST[br:0]~銃王無尽:グレイス~"}}, {"@id": "5505", "info": {"texture": "ap_06_R0005", "title": "The 10th KAC 女性部門 CHAMPION[br:0]~XHRONOXAPSULΞ~"}}, {"@id": "5506", "info": {"texture": "ap_06_R0006", "title": "The 10th KAC 女性部門 FINALIST[br:0]~MION meets RASIS~"}}, {"@id": "5507", "info": {"texture": "ap_06_R0007", "title": "It's Showtime★"}}, {"@id": "5508", "info": {"texture": "ap_06_R0008", "title": "The scream in my soul"}}, {"@id": "5509", "info": {"texture": "ap_06_R0009", "title": "∞∞(σ∀σ)∞∞ 私からの挑戦状よ!"}}, {"@id": "5510", "info": {"texture": "ap_06_R0010", "title": "EG式タオル型武奏"}}]}}
\ No newline at end of file
diff --git a/sdvx@asphyxia/webui/asset/json/course_data.json b/sdvx@asphyxia/webui/asset/json/course_data.json
deleted file mode 100644
index ca3d537..0000000
--- a/sdvx@asphyxia/webui/asset/json/course_data.json
+++ /dev/null
@@ -1,8204 +0,0 @@
-{
- "courseData": [{
- "version": 4,
- "info": [{
- "id": 1,
- "name": "SKILL ANALYZER 第1回 Aコース",
- "isNew": 0,
- "courses": [{
- "id": 1,
- "type": 0,
- "name": "SKILL ANALYZER Level.01",
- "level": 1,
- "nameID": 1,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 653,
- "mty": 0
- },
- {
- "no": 1,
- "mid": 846,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 23,
- "mty": 1
- }
- ]
- },
- {
- "id": 2,
- "type": 0,
- "name": "SKILL ANALYZER Level.02",
- "level": 2,
- "nameID": 2,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 22,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 40,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 275,
- "mty": 1
- }
- ]
- },
- {
- "id": 3,
- "type": 0,
- "name": "SKILL ANALYZER Level.03",
- "level": 3,
- "nameID": 3,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 775,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 684,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 778,
- "mty": 1
- }
- ]
- },
- {
- "id": 4,
- "type": 0,
- "name": "SKILL ANALYZER Level.04",
- "level": 4,
- "nameID": 4,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 757,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 480,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 758,
- "mty": 1
- }
- ]
- },
- {
- "id": 5,
- "type": 0,
- "name": "SKILL ANALYZER Level.05",
- "level": 5,
- "nameID": 5,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 871,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 327,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 66,
- "mty": 2
- }
- ]
- },
- {
- "id": 6,
- "type": 0,
- "name": "SKILL ANALYZER Level.06",
- "level": 6,
- "nameID": 6,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 713,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 40,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 33,
- "mty": 2
- }
- ]
- },
- {
- "id": 7,
- "type": 0,
- "name": "SKILL ANALYZER Level.07",
- "level": 7,
- "nameID": 7,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 349,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 896,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 246,
- "mty": 2
- }
- ]
- },
- {
- "id": 8,
- "type": 0,
- "name": "SKILL ANALYZER Level.08",
- "level": 8,
- "nameID": 8,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 690,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 380,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 492,
- "mty": 3
- }
- ]
- },
- {
- "id": 10,
- "type": 0,
- "name": "SKILL ANALYZER Level.10",
- "level": 10,
- "nameID": 10,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 833,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 858,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 229,
- "mty": 2
- }
- ]
- }
- ]
- },
- {
- "id": 2,
- "name": "SKILL ANALYZER 第1回 Bコース",
- "isNew": 0,
- "courses": [{
- "id": 1,
- "type": 0,
- "name": "SKILL ANALYZER Level.01",
- "level": 1,
- "nameID": 1,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 60,
- "mty": 0
- },
- {
- "no": 1,
- "mid": 770,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 16,
- "mty": 1
- }
- ]
- },
- {
- "id": 2,
- "type": 0,
- "name": "SKILL ANALYZER Level.02",
- "level": 2,
- "nameID": 2,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 566,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 748,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 19,
- "mty": 1
- }
- ]
- },
- {
- "id": 3,
- "type": 0,
- "name": "SKILL ANALYZER Level.03",
- "level": 3,
- "nameID": 3,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 523,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 921,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 218,
- "mty": 1
- }
- ]
- },
- {
- "id": 4,
- "type": 0,
- "name": "SKILL ANALYZER Level.04",
- "level": 4,
- "nameID": 4,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 467,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 456,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 107,
- "mty": 1
- }
- ]
- },
- {
- "id": 5,
- "type": 0,
- "name": "SKILL ANALYZER Level.05",
- "level": 5,
- "nameID": 5,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 435,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 750,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 700,
- "mty": 2
- }
- ]
- },
- {
- "id": 6,
- "type": 0,
- "name": "SKILL ANALYZER Level.06",
- "level": 6,
- "nameID": 6,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 230,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 827,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 146,
- "mty": 2
- }
- ]
- },
- {
- "id": 7,
- "type": 0,
- "name": "SKILL ANALYZER Level.07",
- "level": 7,
- "nameID": 7,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 210,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 558,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 368,
- "mty": 2
- }
- ]
- },
- {
- "id": 8,
- "type": 0,
- "name": "SKILL ANALYZER Level.08",
- "level": 8,
- "nameID": 8,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 603,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 278,
- "mty": 3
- },
- {
- "no": 2,
- "mid": 557,
- "mty": 2
- }
- ]
- },
- {
- "id": 9,
- "type": 0,
- "name": "SKILL ANALYZER Level.09",
- "level": 9,
- "nameID": 9,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 295,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 742,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 302,
- "mty": 2
- }
- ]
- },
- {
- "id": 10,
- "type": 0,
- "name": "SKILL ANALYZER Level.10",
- "level": 10,
- "nameID": 10,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 333,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 871,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 259,
- "mty": 2
- }
- ]
- }
- ]
- },
- {
- "id": 3,
- "name": "SKILL ANALYZER 第1回 Cコース",
- "isNew": 0,
- "courses": [{
- "id": 1,
- "type": 0,
- "name": "SKILL ANALYZER Level.01",
- "level": 1,
- "nameID": 1,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 17,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 922,
- "mty": 0
- },
- {
- "no": 2,
- "mid": 76,
- "mty": 1
- }
- ]
- },
- {
- "id": 2,
- "type": 0,
- "name": "SKILL ANALYZER Level.02",
- "level": 2,
- "nameID": 2,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 6,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 222,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 48,
- "mty": 1
- }
- ]
- },
- {
- "id": 4,
- "type": 0,
- "name": "SKILL ANALYZER Level.04",
- "level": 4,
- "nameID": 4,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 67,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 544,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 9,
- "mty": 2
- }
- ]
- },
- {
- "id": 5,
- "type": 0,
- "name": "SKILL ANALYZER Level.05",
- "level": 5,
- "nameID": 5,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 318,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 157,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 567,
- "mty": 2
- }
- ]
- },
- {
- "id": 6,
- "type": 0,
- "name": "SKILL ANALYZER Level.06",
- "level": 6,
- "nameID": 6,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 239,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 375,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 94,
- "mty": 2
- }
- ]
- },
- {
- "id": 7,
- "type": 0,
- "name": "SKILL ANALYZER Level.07",
- "level": 7,
- "nameID": 7,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 769,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 710,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 609,
- "mty": 2
- }
- ]
- },
- {
- "id": 8,
- "type": 0,
- "name": "SKILL ANALYZER Level.08",
- "level": 8,
- "nameID": 8,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 357,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 562,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 612,
- "mty": 2
- }
- ]
- },
- {
- "id": 9,
- "type": 0,
- "name": "SKILL ANALYZER Level.09",
- "level": 9,
- "nameID": 9,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 322,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 759,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 607,
- "mty": 2
- }
- ]
- },
- {
- "id": 10,
- "type": 0,
- "name": "SKILL ANALYZER Level.10",
- "level": 10,
- "nameID": 10,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 779,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 817,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 362,
- "mty": 2
- }
- ]
- }
- ]
- },
- {
- "id": 4,
- "name": "KAC コース",
- "isNew": 0,
- "courses": [{
- "id": 13,
- "type": 0,
- "name": "KAC練習コース【体】",
- "level": 0,
- "nameID": 13,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 806,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 971,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 913,
- "mty": 1
- }
- ]
- },
- {
- "id": 14,
- "type": 0,
- "name": "KAC練習コース【技】",
- "level": 0,
- "nameID": 14,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 758,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 965,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 914,
- "mty": 1
- }
- ]
- },
- {
- "id": 15,
- "type": 0,
- "name": "KAC練習コース【心】",
- "level": 0,
- "nameID": 15,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 814,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 964,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 915,
- "mty": 1
- }
- ]
- },
- {
- "id": 16,
- "type": 0,
- "name": "KAC挑戦コース【体】",
- "level": 0,
- "nameID": 13,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 806,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 971,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 913,
- "mty": 3
- }
- ]
- },
- {
- "id": 17,
- "type": 0,
- "name": "KAC挑戦コース【技】",
- "level": 0,
- "nameID": 14,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 758,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 965,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 914,
- "mty": 3
- }
- ]
- },
- {
- "id": 18,
- "type": 0,
- "name": "KAC挑戦コース【心】",
- "level": 0,
- "nameID": 15,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 814,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 964,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 915,
- "mty": 3
- }
- ]
- }
- ]
- },
- {
- "id": 5,
- "name": "天下一コース",
- "isNew": 0,
- "courses": [{
- "id": 19,
- "type": 0,
- "name": "天下一 (梅)",
- "level": 0,
- "nameID": 16,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 625,
- "mty": 0
- },
- {
- "no": 1,
- "mid": 697,
- "mty": 0
- },
- {
- "no": 2,
- "mid": 708,
- "mty": 0
- }
- ]
- },
- {
- "id": 20,
- "type": 0,
- "name": "天下一 (竹)",
- "level": 0,
- "nameID": 16,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 625,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 697,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 708,
- "mty": 1
- }
- ]
- },
- {
- "id": 21,
- "type": 0,
- "name": "天下一 (松)",
- "level": 0,
- "nameID": 16,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 625,
- "mty": 3
- },
- {
- "no": 1,
- "mid": 697,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 708,
- "mty": 2
- }
- ]
- },
- {
- "id": 22,
- "type": 0,
- "name": "天下一 (梅)",
- "level": 0,
- "nameID": 17,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 362,
- "mty": 0
- },
- {
- "no": 1,
- "mid": 360,
- "mty": 0
- },
- {
- "no": 2,
- "mid": 927,
- "mty": 0
- }
- ]
- },
- {
- "id": 23,
- "type": 0,
- "name": "天下一 (竹)",
- "level": 0,
- "nameID": 17,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 362,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 360,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 927,
- "mty": 1
- }
- ]
- },
- {
- "id": 24,
- "type": 0,
- "name": "天下一 (松)",
- "level": 0,
- "nameID": 17,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 362,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 360,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 927,
- "mty": 2
- }
- ]
- }
- ]
- },
- {
- "id": 6,
- "name": "SKILL ANALYZER 第2回 Aコース",
- "isNew": 0,
- "courses": [{
- "id": 1,
- "type": 0,
- "name": "SKILL ANALYZER Level.01",
- "level": 1,
- "nameID": 1,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 201,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 182,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 766,
- "mty": 1
- }
- ]
- },
- {
- "id": 2,
- "type": 0,
- "name": "SKILL ANALYZER Level.02",
- "level": 2,
- "nameID": 2,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 171,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 950,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 513,
- "mty": 1
- }
- ]
- },
- {
- "id": 3,
- "type": 0,
- "name": "SKILL ANALYZER Level.03",
- "level": 3,
- "nameID": 3,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 90,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 557,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 843,
- "mty": 1
- }
- ]
- },
- {
- "id": 4,
- "type": 0,
- "name": "SKILL ANALYZER Level.04",
- "level": 4,
- "nameID": 4,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 449,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 506,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 962,
- "mty": 1
- }
- ]
- },
- {
- "id": 5,
- "type": 0,
- "name": "SKILL ANALYZER Level.05",
- "level": 5,
- "nameID": 5,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 760,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 1020,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 923,
- "mty": 2
- }
- ]
- },
- {
- "id": 6,
- "type": 0,
- "name": "SKILL ANALYZER Level.06",
- "level": 6,
- "nameID": 6,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 80,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 678,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 928,
- "mty": 2
- }
- ]
- },
- {
- "id": 7,
- "type": 0,
- "name": "SKILL ANALYZER Level.07",
- "level": 7,
- "nameID": 7,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 967,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 711,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 594,
- "mty": 2
- }
- ]
- },
- {
- "id": 8,
- "type": 0,
- "name": "SKILL ANALYZER Level.08",
- "level": 8,
- "nameID": 8,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 26,
- "mty": 3
- },
- {
- "no": 1,
- "mid": 22,
- "mty": 3
- },
- {
- "no": 2,
- "mid": 503,
- "mty": 2
- }
- ]
- },
- {
- "id": 9,
- "type": 0,
- "name": "SKILL ANALYZER Level.09",
- "level": 9,
- "nameID": 9,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 599,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 122,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 946,
- "mty": 4
- }
- ]
- },
- {
- "id": 10,
- "type": 0,
- "name": "SKILL ANALYZER Level.10",
- "level": 10,
- "nameID": 10,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 961,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 967,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 993,
- "mty": 4
- }
- ]
- },
- {
- "id": 11,
- "type": 0,
- "name": "SKILL ANALYZER Level.11",
- "level": 11,
- "nameID": 11,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 941,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 718,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 816,
- "mty": 2
- }
- ]
- },
- {
- "id": 12,
- "type": 0,
- "name": "SKILL ANALYZER Level.∞",
- "level": 12,
- "nameID": 12,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 654,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 360,
- "mty": 3
- },
- {
- "no": 2,
- "mid": 1028,
- "mty": 4
- }
- ]
- }
- ]
- },
- {
- "id": 7,
- "name": "SKILL ANALYZER 第2回 Bコース",
- "isNew": 0,
- "courses": [{
- "id": 1,
- "type": 0,
- "name": "SKILL ANALYZER Level.01",
- "level": 1,
- "nameID": 1,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 106,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 568,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 768,
- "mty": 1
- }
- ]
- },
- {
- "id": 2,
- "type": 0,
- "name": "SKILL ANALYZER Level.02",
- "level": 2,
- "nameID": 2,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 185,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 700,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 923,
- "mty": 1
- }
- ]
- },
- {
- "id": 3,
- "type": 0,
- "name": "SKILL ANALYZER Level.03",
- "level": 3,
- "nameID": 3,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 317,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 882,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 531,
- "mty": 1
- }
- ]
- },
- {
- "id": 4,
- "type": 0,
- "name": "SKILL ANALYZER Level.04",
- "level": 4,
- "nameID": 4,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 136,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 534,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 640,
- "mty": 1
- }
- ]
- },
- {
- "id": 5,
- "type": 0,
- "name": "SKILL ANALYZER Level.05",
- "level": 5,
- "nameID": 5,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 65,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 966,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 874,
- "mty": 2
- }
- ]
- },
- {
- "id": 6,
- "type": 0,
- "name": "SKILL ANALYZER Level.06",
- "level": 6,
- "nameID": 6,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 856,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 488,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 968,
- "mty": 2
- }
- ]
- },
- {
- "id": 7,
- "type": 0,
- "name": "SKILL ANALYZER Level.07",
- "level": 7,
- "nameID": 7,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 738,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 264,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 834,
- "mty": 2
- }
- ]
- },
- {
- "id": 8,
- "type": 0,
- "name": "SKILL ANALYZER Level.08",
- "level": 8,
- "nameID": 8,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 945,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 639,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 644,
- "mty": 2
- }
- ]
- },
- {
- "id": 9,
- "type": 0,
- "name": "SKILL ANALYZER Level.09",
- "level": 9,
- "nameID": 9,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 394,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 228,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 124,
- "mty": 2
- }
- ]
- },
- {
- "id": 10,
- "type": 0,
- "name": "SKILL ANALYZER Level.10",
- "level": 10,
- "nameID": 10,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 625,
- "mty": 3
- },
- {
- "no": 1,
- "mid": 214,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 365,
- "mty": 2
- }
- ]
- },
- {
- "id": 11,
- "type": 0,
- "name": "SKILL ANALYZER Level.11",
- "level": 11,
- "nameID": 11,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 30,
- "mty": 3
- },
- {
- "no": 1,
- "mid": 2,
- "mty": 3
- },
- {
- "no": 2,
- "mid": 540,
- "mty": 3
- }
- ]
- }
- ]
- },
- {
- "id": 9,
- "name": "SKILL ANALYZER 第3回",
- "isNew": 0,
- "courses": [{
- "id": 1,
- "type": 0,
- "name": "SKILL ANALYZER Level.01",
- "level": 1,
- "nameID": 1,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 795,
- "mty": 0
- },
- {
- "no": 1,
- "mid": 110,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 51,
- "mty": 2
- }
- ]
- },
- {
- "id": 2,
- "type": 0,
- "name": "SKILL ANALYZER Level.02",
- "level": 2,
- "nameID": 2,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 219,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 528,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 996,
- "mty": 1
- }
- ]
- },
- {
- "id": 3,
- "type": 0,
- "name": "SKILL ANALYZER Level.03",
- "level": 3,
- "nameID": 3,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 161,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 291,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 970,
- "mty": 1
- }
- ]
- },
- {
- "id": 4,
- "type": 0,
- "name": "SKILL ANALYZER Level.04",
- "level": 4,
- "nameID": 4,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 630,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 647,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 785,
- "mty": 1
- }
- ]
- },
- {
- "id": 5,
- "type": 0,
- "name": "SKILL ANALYZER Level.05",
- "level": 5,
- "nameID": 5,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 645,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 335,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 961,
- "mty": 2
- }
- ]
- },
- {
- "id": 6,
- "type": 0,
- "name": "SKILL ANALYZER Level.06",
- "level": 6,
- "nameID": 6,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 172,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 262,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 781,
- "mty": 4
- }
- ]
- },
- {
- "id": 7,
- "type": 0,
- "name": "SKILL ANALYZER Level.07",
- "level": 7,
- "nameID": 7,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 762,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 544,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 898,
- "mty": 4
- }
- ]
- },
- {
- "id": 8,
- "type": 0,
- "name": "SKILL ANALYZER Level.08",
- "level": 8,
- "nameID": 8,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 521,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 572,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 173,
- "mty": 2
- }
- ]
- },
- {
- "id": 9,
- "type": 0,
- "name": "SKILL ANALYZER Level.09",
- "level": 9,
- "nameID": 9,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 456,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 852,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 252,
- "mty": 2
- }
- ]
- },
- {
- "id": 10,
- "type": 0,
- "name": "SKILL ANALYZER Level.10",
- "level": 10,
- "nameID": 10,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 966,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 876,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 506,
- "mty": 2
- }
- ]
- },
- {
- "id": 11,
- "type": 0,
- "name": "SKILL ANALYZER Level.11",
- "level": 11,
- "nameID": 11,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 931,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 818,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 810,
- "mty": 2
- }
- ]
- },
- {
- "id": 12,
- "type": 0,
- "name": "SKILL ANALYZER Level.∞",
- "level": 12,
- "nameID": 12,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 709,
- "mty": 3
- },
- {
- "no": 1,
- "mid": 374,
- "mty": 3
- },
- {
- "no": 2,
- "mid": 1036,
- "mty": 4
- }
- ]
- }
- ]
- },
- {
- "id": 10,
- "name": "SKILL ANALYZER 第4回 Aコース",
- "isNew": 0,
- "courses": [{
- "id": 1,
- "type": 0,
- "name": "SKILL ANALYZER Level.01",
- "level": 1,
- "nameID": 1,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 258,
- "mty": 0
- },
- {
- "no": 1,
- "mid": 913,
- "mty": 0
- },
- {
- "no": 2,
- "mid": 189,
- "mty": 1
- }
- ]
- },
- {
- "id": 2,
- "type": 0,
- "name": "SKILL ANALYZER Level.02",
- "level": 2,
- "nameID": 2,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 87,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 486,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 66,
- "mty": 1
- }
- ]
- },
- {
- "id": 3,
- "type": 0,
- "name": "SKILL ANALYZER Level.03",
- "level": 3,
- "nameID": 3,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 674,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 216,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 434,
- "mty": 1
- }
- ]
- },
- {
- "id": 4,
- "type": 0,
- "name": "SKILL ANALYZER Level.04",
- "level": 4,
- "nameID": 4,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 781,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 623,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 540,
- "mty": 1
- }
- ]
- },
- {
- "id": 5,
- "type": 0,
- "name": "SKILL ANALYZER Level.05",
- "level": 5,
- "nameID": 5,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 695,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 276,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 870,
- "mty": 2
- }
- ]
- },
- {
- "id": 6,
- "type": 0,
- "name": "SKILL ANALYZER Level.06",
- "level": 6,
- "nameID": 6,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 998,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 885,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 400,
- "mty": 2
- }
- ]
- },
- {
- "id": 7,
- "type": 0,
- "name": "SKILL ANALYZER Level.07",
- "level": 7,
- "nameID": 7,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 211,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 14,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 183,
- "mty": 2
- }
- ]
- },
- {
- "id": 8,
- "type": 0,
- "name": "SKILL ANALYZER Level.08",
- "level": 8,
- "nameID": 8,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 659,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 749,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 251,
- "mty": 2
- }
- ]
- },
- {
- "id": 9,
- "type": 0,
- "name": "SKILL ANALYZER Level.09",
- "level": 9,
- "nameID": 9,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 918,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 63,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 47,
- "mty": 2
- }
- ]
- },
- {
- "id": 10,
- "type": 0,
- "name": "SKILL ANALYZER Level.10",
- "level": 10,
- "nameID": 10,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 641,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 463,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 712,
- "mty": 2
- }
- ]
- },
- {
- "id": 11,
- "type": 0,
- "name": "SKILL ANALYZER Level.11",
- "level": 11,
- "nameID": 11,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 789,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 634,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 532,
- "mty": 2
- }
- ]
- },
- {
- "id": 12,
- "type": 0,
- "name": "SKILL ANALYZER Level.∞",
- "level": 12,
- "nameID": 12,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 551,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 1032,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 1099,
- "mty": 4
- }
- ]
- }
- ]
- },
- {
- "id": 11,
- "name": "SKILL ANALYZER 第4回 Bコース",
- "isNew": 0,
- "courses": [{
- "id": 1,
- "type": 0,
- "name": "SKILL ANALYZER Level.01",
- "level": 1,
- "nameID": 1,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1025,
- "mty": 0
- },
- {
- "no": 1,
- "mid": 914,
- "mty": 0
- },
- {
- "no": 2,
- "mid": 186,
- "mty": 1
- }
- ]
- },
- {
- "id": 2,
- "type": 0,
- "name": "SKILL ANALYZER Level.02",
- "level": 2,
- "nameID": 2,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 93,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 664,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 3,
- "mty": 1
- }
- ]
- },
- {
- "id": 3,
- "type": 0,
- "name": "SKILL ANALYZER Level.03",
- "level": 3,
- "nameID": 3,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 590,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 898,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 152,
- "mty": 1
- }
- ]
- },
- {
- "id": 4,
- "type": 0,
- "name": "SKILL ANALYZER Level.04",
- "level": 4,
- "nameID": 4,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 104,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 521,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 342,
- "mty": 1
- }
- ]
- },
- {
- "id": 5,
- "type": 0,
- "name": "SKILL ANALYZER Level.05",
- "level": 5,
- "nameID": 5,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 743,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 958,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 441,
- "mty": 2
- }
- ]
- },
- {
- "id": 6,
- "type": 0,
- "name": "SKILL ANALYZER Level.06",
- "level": 6,
- "nameID": 6,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 301,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 879,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 62,
- "mty": 2
- }
- ]
- },
- {
- "id": 7,
- "type": 0,
- "name": "SKILL ANALYZER Level.07",
- "level": 7,
- "nameID": 7,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 666,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 54,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 763,
- "mty": 2
- }
- ]
- },
- {
- "id": 8,
- "type": 0,
- "name": "SKILL ANALYZER Level.08",
- "level": 8,
- "nameID": 8,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 361,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 744,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 831,
- "mty": 2
- }
- ]
- },
- {
- "id": 9,
- "type": 0,
- "name": "SKILL ANALYZER Level.09",
- "level": 9,
- "nameID": 9,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 917,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 959,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 912,
- "mty": 2
- }
- ]
- },
- {
- "id": 10,
- "type": 0,
- "name": "SKILL ANALYZER Level.10",
- "level": 10,
- "nameID": 10,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 390,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 655,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 707,
- "mty": 2
- }
- ]
- },
- {
- "id": 11,
- "type": 0,
- "name": "SKILL ANALYZER Level.11",
- "level": 11,
- "nameID": 11,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 808,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 965,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 909,
- "mty": 3
- }
- ]
- },
- {
- "id": 12,
- "type": 0,
- "name": "SKILL ANALYZER Level.∞",
- "level": 12,
- "nameID": 12,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 927,
- "mty": 3
- },
- {
- "no": 1,
- "mid": 525,
- "mty": 3
- },
- {
- "no": 2,
- "mid": 1100,
- "mty": 4
- }
- ]
- }
- ]
- },
- {
- "id": 12,
- "name": "SKILL ANALYZER 第4回 Cコース",
- "isNew": 0,
- "courses": [{
- "id": 1,
- "type": 0,
- "name": "SKILL ANALYZER Level.01",
- "level": 1,
- "nameID": 1,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 600,
- "mty": 0
- },
- {
- "no": 1,
- "mid": 915,
- "mty": 0
- },
- {
- "no": 2,
- "mid": 671,
- "mty": 1
- }
- ]
- },
- {
- "id": 2,
- "type": 0,
- "name": "SKILL ANALYZER Level.02",
- "level": 2,
- "nameID": 2,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 191,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 771,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 8,
- "mty": 1
- }
- ]
- },
- {
- "id": 3,
- "type": 0,
- "name": "SKILL ANALYZER Level.03",
- "level": 3,
- "nameID": 3,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 353,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 896,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 39,
- "mty": 1
- }
- ]
- },
- {
- "id": 4,
- "type": 0,
- "name": "SKILL ANALYZER Level.04",
- "level": 4,
- "nameID": 4,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 485,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 359,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 834,
- "mty": 1
- }
- ]
- },
- {
- "id": 5,
- "type": 0,
- "name": "SKILL ANALYZER Level.05",
- "level": 5,
- "nameID": 5,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 790,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 277,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 944,
- "mty": 2
- }
- ]
- },
- {
- "id": 6,
- "type": 0,
- "name": "SKILL ANALYZER Level.06",
- "level": 6,
- "nameID": 6,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 897,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 2,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 986,
- "mty": 2
- }
- ]
- },
- {
- "id": 7,
- "type": 0,
- "name": "SKILL ANALYZER Level.07",
- "level": 7,
- "nameID": 7,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 145,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 99,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 90,
- "mty": 3
- }
- ]
- },
- {
- "id": 8,
- "type": 0,
- "name": "SKILL ANALYZER Level.08",
- "level": 8,
- "nameID": 8,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 372,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 747,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 872,
- "mty": 2
- }
- ]
- },
- {
- "id": 9,
- "type": 0,
- "name": "SKILL ANALYZER Level.09",
- "level": 9,
- "nameID": 9,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 576,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 943,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 359,
- "mty": 2
- }
- ]
- },
- {
- "id": 10,
- "type": 0,
- "name": "SKILL ANALYZER Level.10",
- "level": 10,
- "nameID": 10,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 922,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 166,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 670,
- "mty": 2
- }
- ]
- }
- ]
- },
- {
- "id": 14,
- "name": "BEMANI MASTER KOREA 2017",
- "isNew": 0,
- "courses": [{
- "id": 1,
- "type": 0,
- "name": "BEMANI MASTER KOREA",
- "level": 0,
- "nameID": 19,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 954,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 960,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 961,
- "mty": 4
- }
- ]
- },
- {
- "id": 29,
- "type": 0,
- "name": "The 7th KACエンジョイコース【猛虎】",
- "level": 0,
- "nameID": 20,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1149,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 367,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 1102,
- "mty": 1
- }
- ]
- },
- {
- "id": 30,
- "type": 0,
- "name": "The 7th KACエンジョイコース【餓狼】",
- "level": 0,
- "nameID": 21,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1042,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 126,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 1101,
- "mty": 1
- }
- ]
- },
- {
- "id": 31,
- "type": 0,
- "name": "The 7th KACチャレンジコース【猛虎】",
- "level": 0,
- "nameID": 20,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1149,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 367,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 1102,
- "mty": 4
- }
- ]
- },
- {
- "id": 32,
- "type": 0,
- "name": "The 7th KACチャレンジコース【餓狼】",
- "level": 0,
- "nameID": 21,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1042,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 126,
- "mty": 3
- },
- {
- "no": 2,
- "mid": 1101,
- "mty": 4
- }
- ]
- }
- ]
- },
- {
- "id": 16,
- "name": "SKILL ANALYZER 第5回",
- "isNew": 0,
- "courses": [{
- "id": 1,
- "type": 0,
- "name": "SKILL ANALYZER Level.01",
- "level": 1,
- "nameID": 1,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1035,
- "mty": 0
- },
- {
- "no": 1,
- "mid": 1014,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 1033,
- "mty": 0
- }
- ]
- },
- {
- "id": 2,
- "type": 0,
- "name": "SKILL ANALYZER Level.02",
- "level": 2,
- "nameID": 2,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 405,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 451,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 173,
- "mty": 1
- }
- ]
- },
- {
- "id": 3,
- "type": 0,
- "name": "SKILL ANALYZER Level.03",
- "level": 3,
- "nameID": 3,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1008,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 608,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 815,
- "mty": 1
- }
- ]
- },
- {
- "id": 4,
- "type": 0,
- "name": "SKILL ANALYZER Level.04",
- "level": 4,
- "nameID": 4,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 966,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 983,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 967,
- "mty": 1
- }
- ]
- },
- {
- "id": 5,
- "type": 0,
- "name": "SKILL ANALYZER Level.05",
- "level": 5,
- "nameID": 5,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 964,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 58,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 1025,
- "mty": 1
- }
- ]
- },
- {
- "id": 6,
- "type": 0,
- "name": "SKILL ANALYZER Level.06",
- "level": 6,
- "nameID": 6,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 898,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 962,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 1032,
- "mty": 1
- }
- ]
- },
- {
- "id": 7,
- "type": 0,
- "name": "SKILL ANALYZER Level.07",
- "level": 7,
- "nameID": 7,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 490,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 889,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 1042,
- "mty": 2
- }
- ]
- },
- {
- "id": 8,
- "type": 0,
- "name": "SKILL ANALYZER Level.08",
- "level": 8,
- "nameID": 8,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 971,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 752,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 1062,
- "mty": 2
- }
- ]
- },
- {
- "id": 9,
- "type": 0,
- "name": "SKILL ANALYZER Level.09",
- "level": 9,
- "nameID": 9,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 497,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 948,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 954,
- "mty": 4
- }
- ]
- },
- {
- "id": 10,
- "type": 0,
- "name": "SKILL ANALYZER Level.10",
- "level": 10,
- "nameID": 10,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1126,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 1034,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 834,
- "mty": 4
- }
- ]
- },
- {
- "id": 11,
- "type": 0,
- "name": "SKILL ANALYZER Level.11",
- "level": 11,
- "nameID": 11,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1013,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 1035,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 1107,
- "mty": 4
- }
- ]
- },
- {
- "id": 12,
- "type": 0,
- "name": "SKILL ANALYZER Level.∞",
- "level": 12,
- "nameID": 12,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1102,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 1148,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 1185,
- "mty": 4
- }
- ]
- }
- ]
- },
- {
- "id": 17,
- "name": "SKILL ANALYZER 第5回 Bコース",
- "isNew": 0,
- "courses": [{
- "id": 12,
- "type": 0,
- "name": "SKILL ANALYZER Level.∞",
- "level": 12,
- "nameID": 12,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 661,
- "mty": 3
- },
- {
- "no": 1,
- "mid": 258,
- "mty": 3
- },
- {
- "no": 2,
- "mid": 791,
- "mty": 3
- }
- ]
- }]
- },
- {
- "id": 19,
- "name": "SKILL ANALYZER 第6回 Aコース",
- "isNew": 1,
- "courses": [{
- "id": 1,
- "type": 0,
- "name": "SKILL ANALYZER Level.01",
- "level": 1,
- "nameID": 1,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1044,
- "mty": 0
- },
- {
- "no": 1,
- "mid": 1176,
- "mty": 0
- },
- {
- "no": 2,
- "mid": 1083,
- "mty": 1
- }
- ]
- },
- {
- "id": 2,
- "type": 0,
- "name": "SKILL ANALYZER Level.02",
- "level": 2,
- "nameID": 2,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1074,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 1095,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 930,
- "mty": 1
- }
- ]
- },
- {
- "id": 3,
- "type": 0,
- "name": "SKILL ANALYZER Level.03",
- "level": 3,
- "nameID": 3,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1086,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 1122,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 1026,
- "mty": 1
- }
- ]
- },
- {
- "id": 4,
- "type": 0,
- "name": "SKILL ANALYZER Level.04",
- "level": 4,
- "nameID": 4,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1070,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 1073,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 1022,
- "mty": 1
- }
- ]
- },
- {
- "id": 5,
- "type": 0,
- "name": "SKILL ANALYZER Level.05",
- "level": 5,
- "nameID": 5,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1040,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 1200,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 895,
- "mty": 2
- }
- ]
- },
- {
- "id": 6,
- "type": 0,
- "name": "SKILL ANALYZER Level.06",
- "level": 6,
- "nameID": 6,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1115,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 1184,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 1230,
- "mty": 2
- }
- ]
- },
- {
- "id": 7,
- "type": 0,
- "name": "SKILL ANALYZER Level.07",
- "level": 7,
- "nameID": 7,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1156,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 1138,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 1091,
- "mty": 2
- }
- ]
- },
- {
- "id": 8,
- "type": 0,
- "name": "SKILL ANALYZER Level.08",
- "level": 8,
- "nameID": 8,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 336,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 1199,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 1197,
- "mty": 2
- }
- ]
- },
- {
- "id": 9,
- "type": 0,
- "name": "SKILL ANALYZER Level.09",
- "level": 9,
- "nameID": 9,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 841,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 1087,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 1112,
- "mty": 4
- }
- ]
- },
- {
- "id": 10,
- "type": 0,
- "name": "SKILL ANALYZER Level.10",
- "level": 10,
- "nameID": 10,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1217,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 1041,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 1078,
- "mty": 4
- }
- ]
- },
- {
- "id": 11,
- "type": 0,
- "name": "SKILL ANALYZER Level.11",
- "level": 11,
- "nameID": 11,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 173,
- "mty": 3
- },
- {
- "no": 1,
- "mid": 151,
- "mty": 3
- },
- {
- "no": 2,
- "mid": 362,
- "mty": 3
- }
- ]
- },
- {
- "id": 12,
- "type": 0,
- "name": "SKILL ANALYZER Level.∞",
- "level": 12,
- "nameID": 12,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 679,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 1178,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 1270,
- "mty": 4
- }
- ]
- }
- ]
- },
- {
- "id": 20,
- "name": "SKILL ANALYZER 第6回 Bコース",
- "isNew": 1,
- "courses": [{
- "id": 1,
- "type": 0,
- "name": "SKILL ANALYZER Level.01",
- "level": 1,
- "nameID": 1,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1049,
- "mty": 0
- },
- {
- "no": 1,
- "mid": 367,
- "mty": 0
- },
- {
- "no": 2,
- "mid": 1005,
- "mty": 1
- }
- ]
- },
- {
- "id": 2,
- "type": 0,
- "name": "SKILL ANALYZER Level.02",
- "level": 2,
- "nameID": 2,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1057,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 1081,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 868,
- "mty": 1
- }
- ]
- },
- {
- "id": 3,
- "type": 0,
- "name": "SKILL ANALYZER Level.03",
- "level": 3,
- "nameID": 3,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1001,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 1092,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 1113,
- "mty": 1
- }
- ]
- },
- {
- "id": 4,
- "type": 0,
- "name": "SKILL ANALYZER Level.04",
- "level": 4,
- "nameID": 4,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1075,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 1123,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 1029,
- "mty": 1
- }
- ]
- },
- {
- "id": 5,
- "type": 0,
- "name": "SKILL ANALYZER Level.05",
- "level": 5,
- "nameID": 5,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1024,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 1201,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 1124,
- "mty": 2
- }
- ]
- },
- {
- "id": 6,
- "type": 0,
- "name": "SKILL ANALYZER Level.06",
- "level": 6,
- "nameID": 6,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1154,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 1114,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 891,
- "mty": 2
- }
- ]
- },
- {
- "id": 7,
- "type": 0,
- "name": "SKILL ANALYZER Level.07",
- "level": 7,
- "nameID": 7,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1012,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 1248,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 926,
- "mty": 2
- }
- ]
- },
- {
- "id": 8,
- "type": 0,
- "name": "SKILL ANALYZER Level.08",
- "level": 8,
- "nameID": 8,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 955,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 1037,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 812,
- "mty": 2
- }
- ]
- },
- {
- "id": 9,
- "type": 0,
- "name": "SKILL ANALYZER Level.09",
- "level": 9,
- "nameID": 9,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 761,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 765,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 1006,
- "mty": 4
- }
- ]
- },
- {
- "id": 10,
- "type": 0,
- "name": "SKILL ANALYZER Level.10",
- "level": 10,
- "nameID": 10,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1237,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 1157,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 907,
- "mty": 2
- }
- ]
- },
- {
- "id": 11,
- "type": 0,
- "name": "SKILL ANALYZER Level.11",
- "level": 11,
- "nameID": 11,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1060,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 1062,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 1222,
- "mty": 4
- }
- ]
- }
- ]
- },
- {
- "id": 21,
- "name": "SKILL ANALYZER 第6回 Cコース",
- "isNew": 1,
- "courses": [{
- "id": 1,
- "type": 0,
- "name": "SKILL ANALYZER Level.01",
- "level": 1,
- "nameID": 1,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1190,
- "mty": 0
- },
- {
- "no": 1,
- "mid": 636,
- "mty": 0
- },
- {
- "no": 2,
- "mid": 1054,
- "mty": 1
- }
- ]
- },
- {
- "id": 2,
- "type": 0,
- "name": "SKILL ANALYZER Level.02",
- "level": 2,
- "nameID": 2,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1076,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 1002,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 916,
- "mty": 1
- }
- ]
- },
- {
- "id": 3,
- "type": 0,
- "name": "SKILL ANALYZER Level.03",
- "level": 3,
- "nameID": 3,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1004,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 1111,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 1090,
- "mty": 1
- }
- ]
- },
- {
- "id": 4,
- "type": 0,
- "name": "SKILL ANALYZER Level.04",
- "level": 4,
- "nameID": 4,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1094,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 1128,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 1027,
- "mty": 1
- }
- ]
- },
- {
- "id": 5,
- "type": 0,
- "name": "SKILL ANALYZER Level.05",
- "level": 5,
- "nameID": 5,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1007,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 1220,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 1067,
- "mty": 2
- }
- ]
- },
- {
- "id": 6,
- "type": 0,
- "name": "SKILL ANALYZER Level.06",
- "level": 6,
- "nameID": 6,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1139,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 864,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 1010,
- "mty": 2
- }
- ]
- },
- {
- "id": 7,
- "type": 0,
- "name": "SKILL ANALYZER Level.07",
- "level": 7,
- "nameID": 7,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1134,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 919,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 1250,
- "mty": 2
- }
- ]
- },
- {
- "id": 8,
- "type": 0,
- "name": "SKILL ANALYZER Level.08",
- "level": 8,
- "nameID": 8,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 596,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 902,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 844,
- "mty": 2
- }
- ]
- },
- {
- "id": 9,
- "type": 0,
- "name": "SKILL ANALYZER Level.09",
- "level": 9,
- "nameID": 9,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 737,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 887,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 933,
- "mty": 4
- }
- ]
- },
- {
- "id": 10,
- "type": 0,
- "name": "SKILL ANALYZER Level.10",
- "level": 10,
- "nameID": 10,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1228,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 881,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 1135,
- "mty": 4
- }
- ]
- }
- ]
- },
- {
- "id": 22,
- "name": "The 8th KAC コース",
- "isNew": 0,
- "courses": [{
- "id": 39,
- "type": 0,
- "name": "The 8th KACエンジョイコース【阿修羅】",
- "level": 0,
- "nameID": 23,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1334,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 610,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 1033,
- "mty": 1
- }
- ]
- },
- {
- "id": 40,
- "type": 0,
- "name": "The 8th KACチャレンジコース【阿修羅】",
- "level": 0,
- "nameID": 23,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1334,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 610,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 1033,
- "mty": 4
- }
- ]
- }
- ]
- },
- {
- "id": 23,
- "name": "4月1日限定ツアー",
- "isNew": 0,
- "courses": [{
- "id": 41,
- "type": 0,
- "name": "春季居住者大募集【つまぶきハイツ】",
- "level": 0,
- "nameID": 18,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 338,
- "mty": 0
- },
- {
- "no": 1,
- "mid": 398,
- "mty": 0
- },
- {
- "no": 2,
- "mid": 527,
- "mty": 0
- }
- ]
- },
- {
- "id": 42,
- "type": 0,
- "name": "春季居住者大募集【ボルテパレス】",
- "level": 0,
- "nameID": 18,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 338,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 398,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 617,
- "mty": 1
- }
- ]
- },
- {
- "id": 43,
- "type": 0,
- "name": "春季居住者大募集【暴龍邸】",
- "level": 0,
- "nameID": 18,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 338,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 398,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 840,
- "mty": 3
- }
- ]
- }
- ]
- },
- {
- "id": 24,
- "name": "六周年記念コース",
- "isNew": 0,
- "courses": [{
- "id": 44,
- "type": 0,
- "name": "六周年記念コース(初等部)",
- "level": 0,
- "nameID": 22,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 80,
- "mty": 0
- },
- {
- "no": 1,
- "mid": 350,
- "mty": 0
- },
- {
- "no": 2,
- "mid": 592,
- "mty": 0
- }
- ]
- },
- {
- "id": 45,
- "type": 0,
- "name": "六周年記念コース(中等部)",
- "level": 0,
- "nameID": 22,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 80,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 350,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 592,
- "mty": 1
- }
- ]
- },
- {
- "id": 46,
- "type": 0,
- "name": "六周年記念コース(高等部)",
- "level": 0,
- "nameID": 22,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 350,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 80,
- "mty": 3
- },
- {
- "no": 2,
- "mid": 592,
- "mty": 2
- }
- ]
- }
- ]
- },
- {
- "id": 25,
- "name": "マキシマ先生の春季講習",
- "isNew": 0,
- "courses": [{
- "id": 47,
- "type": 0,
- "name": "マキシマ先生の春季講習【開花】",
- "level": 0,
- "nameID": 18,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 947,
- "mty": 0
- },
- {
- "no": 1,
- "mid": 533,
- "mty": 0
- },
- {
- "no": 2,
- "mid": 524,
- "mty": 0
- }
- ]
- },
- {
- "id": 48,
- "type": 0,
- "name": "マキシマ先生の春季講習【五分咲】",
- "level": 0,
- "nameID": 18,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 947,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 533,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 525,
- "mty": 1
- }
- ]
- },
- {
- "id": 49,
- "type": 0,
- "name": "マキシマ先生の春季講習【満開】",
- "level": 0,
- "nameID": 18,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 947,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 694,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 1219,
- "mty": 3
- }
- ]
- }
- ]
- },
- {
- "id": 26,
- "name": "削除課題",
- "isNew": 0,
- "courses": [{
- "id": 50,
- "type": 0,
- "name": "【削除】SKILL ANALYZER Level.03",
- "level": 0,
- "nameID": 3,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 813,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 410,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 53,
- "mty": 1
- }
- ]
- },
- {
- "id": 51,
- "type": 0,
- "name": "【削除】SKILL ANALYZER Level.09",
- "level": 0,
- "nameID": 9,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 396,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 244,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 359,
- "mty": 2
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "version": 5,
- "info": [{
- "id": 1,
- "name": "SKILL ANALYZER 第1回 Aコース",
- "isNew": 0,
- "courses": [{
- "id": 1,
- "type": 0,
- "name": "SKILL ANALYZER Level.01",
- "level": 1,
- "nameID": 1,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 135,
- "mty": 0
- },
- {
- "no": 1,
- "mid": 951,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 774,
- "mty": 1
- }
- ]
- },
- {
- "id": 2,
- "type": 0,
- "name": "SKILL ANALYZER Level.02",
- "level": 2,
- "nameID": 2,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1036,
- "mty": 0
- },
- {
- "no": 1,
- "mid": 1081,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 563,
- "mty": 1
- }
- ]
- },
- {
- "id": 3,
- "type": 0,
- "name": "SKILL ANALYZER Level.03",
- "level": 3,
- "nameID": 3,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1019,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 866,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 1116,
- "mty": 1
- }
- ]
- },
- {
- "id": 4,
- "type": 0,
- "name": "SKILL ANALYZER Level.04",
- "level": 4,
- "nameID": 4,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 574,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 1194,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 838,
- "mty": 1
- }
- ]
- },
- {
- "id": 5,
- "type": 0,
- "name": "SKILL ANALYZER Level.05",
- "level": 5,
- "nameID": 5,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1042,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 1211,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 588,
- "mty": 2
- }
- ]
- },
- {
- "id": 6,
- "type": 0,
- "name": "SKILL ANALYZER Level.06",
- "level": 6,
- "nameID": 6,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 978,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 1204,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 880,
- "mty": 2
- }
- ]
- },
- {
- "id": 7,
- "type": 0,
- "name": "SKILL ANALYZER Level.07",
- "level": 7,
- "nameID": 7,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1224,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 989,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 688,
- "mty": 2
- }
- ]
- },
- {
- "id": 8,
- "type": 0,
- "name": "SKILL ANALYZER Level.08",
- "level": 8,
- "nameID": 8,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1201,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 980,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 900,
- "mty": 2
- }
- ]
- },
- {
- "id": 9,
- "type": 0,
- "name": "SKILL ANALYZER Level.09",
- "level": 9,
- "nameID": 9,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1155,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 937,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 1243,
- "mty": 4
- }
- ]
- },
- {
- "id": 10,
- "type": 0,
- "name": "SKILL ANALYZER Level.10",
- "level": 10,
- "nameID": 10,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1158,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 1341,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 1238,
- "mty": 4
- }
- ]
- },
- {
- "id": 11,
- "type": 0,
- "name": "SKILL ANALYZER Level.11",
- "level": 11,
- "nameID": 11,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 374,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 1277,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 73,
- "mty": 3
- }
- ]
- },
- {
- "id": 12,
- "type": 0,
- "name": "SKILL ANALYZER Level.∞",
- "level": 12,
- "nameID": 12,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1101,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 1189,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 1362,
- "mty": 4
- }
- ]
- }
- ]
- },
- {
- "id": 2,
- "name": "SKILL ANALYZER 第1回 Bコース",
- "isNew": 0,
- "courses": [{
- "id": 1,
- "type": 0,
- "name": "SKILL ANALYZER Level.01",
- "level": 1,
- "nameID": 1,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1218,
- "mty": 0
- },
- {
- "no": 1,
- "mid": 987,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 1087,
- "mty": 1
- }
- ]
- },
- {
- "id": 2,
- "type": 0,
- "name": "SKILL ANALYZER Level.02",
- "level": 2,
- "nameID": 2,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1028,
- "mty": 0
- },
- {
- "no": 1,
- "mid": 1093,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 589,
- "mty": 1
- }
- ]
- },
- {
- "id": 3,
- "type": 0,
- "name": "SKILL ANALYZER Level.03",
- "level": 3,
- "nameID": 3,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1065,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 990,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 719,
- "mty": 1
- }
- ]
- },
- {
- "id": 4,
- "type": 0,
- "name": "SKILL ANALYZER Level.04",
- "level": 4,
- "nameID": 4,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 427,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 835,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 609,
- "mty": 1
- }
- ]
- },
- {
- "id": 5,
- "type": 0,
- "name": "SKILL ANALYZER Level.05",
- "level": 5,
- "nameID": 5,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 682,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 1192,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 921,
- "mty": 2
- }
- ]
- },
- {
- "id": 6,
- "type": 0,
- "name": "SKILL ANALYZER Level.06",
- "level": 6,
- "nameID": 6,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 892,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 1235,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 1071,
- "mty": 2
- }
- ]
- },
- {
- "id": 7,
- "type": 0,
- "name": "SKILL ANALYZER Level.07",
- "level": 7,
- "nameID": 7,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1060,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 1094,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 1301,
- "mty": 2
- }
- ]
- },
- {
- "id": 8,
- "type": 0,
- "name": "SKILL ANALYZER Level.08",
- "level": 8,
- "nameID": 8,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1007,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 859,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 901,
- "mty": 2
- }
- ]
- },
- {
- "id": 9,
- "type": 0,
- "name": "SKILL ANALYZER Level.09",
- "level": 9,
- "nameID": 9,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 974,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 1002,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 1203,
- "mty": 4
- }
- ]
- },
- {
- "id": 10,
- "type": 0,
- "name": "SKILL ANALYZER Level.10",
- "level": 10,
- "nameID": 10,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1046,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 885,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 1250,
- "mty": 4
- }
- ]
- },
- {
- "id": 11,
- "type": 0,
- "name": "SKILL ANALYZER Level.11",
- "level": 11,
- "nameID": 11,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1280,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 1117,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 214,
- "mty": 3
- }
- ]
- },
- {
- "id": 12,
- "type": 0,
- "name": "SKILL ANALYZER Level.∞",
- "level": 12,
- "nameID": 12,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1033,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 1273,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 1361,
- "mty": 4
- }
- ]
- }
- ]
- },
- {
- "id": 3,
- "name": "SKILL ANALYZER 第1回 Cコース",
- "isNew": 0,
- "courses": [{
- "id": 1,
- "type": 0,
- "name": "SKILL ANALYZER Level.01",
- "level": 1,
- "nameID": 1,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 593,
- "mty": 0
- },
- {
- "no": 1,
- "mid": 1005,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 781,
- "mty": 1
- }
- ]
- },
- {
- "id": 2,
- "type": 0,
- "name": "SKILL ANALYZER Level.02",
- "level": 2,
- "nameID": 2,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1136,
- "mty": 0
- },
- {
- "no": 1,
- "mid": 996,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 586,
- "mty": 1
- }
- ]
- },
- {
- "id": 3,
- "type": 0,
- "name": "SKILL ANALYZER Level.03",
- "level": 3,
- "nameID": 3,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 734,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 888,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 976,
- "mty": 1
- }
- ]
- },
- {
- "id": 4,
- "type": 0,
- "name": "SKILL ANALYZER Level.04",
- "level": 4,
- "nameID": 4,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 855,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 837,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 798,
- "mty": 1
- }
- ]
- },
- {
- "id": 5,
- "type": 0,
- "name": "SKILL ANALYZER Level.05",
- "level": 5,
- "nameID": 5,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1193,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 1138,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 755,
- "mty": 2
- }
- ]
- },
- {
- "id": 6,
- "type": 0,
- "name": "SKILL ANALYZER Level.06",
- "level": 6,
- "nameID": 6,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1123,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 981,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 1008,
- "mty": 2
- }
- ]
- },
- {
- "id": 7,
- "type": 0,
- "name": "SKILL ANALYZER Level.07",
- "level": 7,
- "nameID": 7,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1011,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 1208,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 825,
- "mty": 2
- }
- ]
- },
- {
- "id": 8,
- "type": 0,
- "name": "SKILL ANALYZER Level.08",
- "level": 8,
- "nameID": 8,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1052,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 830,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 821,
- "mty": 2
- }
- ]
- },
- {
- "id": 9,
- "type": 0,
- "name": "SKILL ANALYZER Level.09",
- "level": 9,
- "nameID": 9,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1056,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 1080,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 1090,
- "mty": 4
- }
- ]
- },
- {
- "id": 10,
- "type": 0,
- "name": "SKILL ANALYZER Level.10",
- "level": 10,
- "nameID": 10,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 963,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 967,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 229,
- "mty": 2
- }
- ]
- }
- ]
- },
- {
- "id": 4,
- "name": "SKILL ANALYZER 第2回 Aコース",
- "isNew": 0,
- "courses": [{
- "id": 1,
- "type": 0,
- "name": "SKILL ANALYZER Level.01",
- "level": 1,
- "nameID": 1,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 653,
- "mty": 0
- },
- {
- "no": 1,
- "mid": 846,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 1054,
- "mty": 1
- }
- ]
- },
- {
- "id": 2,
- "type": 0,
- "name": "SKILL ANALYZER Level.02",
- "level": 2,
- "nameID": 2,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 566,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 748,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 19,
- "mty": 1
- }
- ]
- },
- {
- "id": 3,
- "type": 0,
- "name": "SKILL ANALYZER Level.03",
- "level": 3,
- "nameID": 3,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 775,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 684,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 778,
- "mty": 1
- }
- ]
- },
- {
- "id": 4,
- "type": 0,
- "name": "SKILL ANALYZER Level.04",
- "level": 4,
- "nameID": 4,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 467,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 456,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 107,
- "mty": 1
- }
- ]
- },
- {
- "id": 5,
- "type": 0,
- "name": "SKILL ANALYZER Level.05",
- "level": 5,
- "nameID": 5,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 871,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 327,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 66,
- "mty": 2
- }
- ]
- },
- {
- "id": 6,
- "type": 0,
- "name": "SKILL ANALYZER Level.06",
- "level": 6,
- "nameID": 6,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 713,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 40,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 33,
- "mty": 2
- }
- ]
- },
- {
- "id": 7,
- "type": 0,
- "name": "SKILL ANALYZER Level.07",
- "level": 7,
- "nameID": 7,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 349,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 896,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 246,
- "mty": 2
- }
- ]
- },
- {
- "id": 8,
- "type": 0,
- "name": "SKILL ANALYZER Level.08",
- "level": 8,
- "nameID": 8,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 603,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 278,
- "mty": 3
- },
- {
- "no": 2,
- "mid": 557,
- "mty": 2
- }
- ]
- },
- {
- "id": 9,
- "type": 0,
- "name": "SKILL ANALYZER Level.09",
- "level": 9,
- "nameID": 9,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 599,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 122,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 946,
- "mty": 4
- }
- ]
- },
- {
- "id": 10,
- "type": 0,
- "name": "SKILL ANALYZER Level.10",
- "level": 10,
- "nameID": 10,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 333,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 871,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 259,
- "mty": 2
- }
- ]
- },
- {
- "id": 11,
- "type": 0,
- "name": "SKILL ANALYZER Level.11",
- "level": 11,
- "nameID": 11,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 789,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 634,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 532,
- "mty": 2
- }
- ]
- },
- {
- "id": 12,
- "type": 0,
- "name": "SKILL ANALYZER Level.∞",
- "level": 12,
- "nameID": 12,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 913,
- "mty": 3
- },
- {
- "no": 1,
- "mid": 360,
- "mty": 3
- },
- {
- "no": 2,
- "mid": 1028,
- "mty": 4
- }
- ]
- }
- ]
- },
- {
- "id": 5,
- "name": "SKILL ANALYZER 第2回 Bコース",
- "isNew": 0,
- "courses": [{
- "id": 1,
- "type": 0,
- "name": "SKILL ANALYZER Level.01",
- "level": 1,
- "nameID": 1,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 60,
- "mty": 0
- },
- {
- "no": 1,
- "mid": 770,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 16,
- "mty": 1
- }
- ]
- },
- {
- "id": 2,
- "type": 0,
- "name": "SKILL ANALYZER Level.02",
- "level": 2,
- "nameID": 2,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 6,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 222,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 48,
- "mty": 1
- }
- ]
- },
- {
- "id": 3,
- "type": 0,
- "name": "SKILL ANALYZER Level.03",
- "level": 3,
- "nameID": 3,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 523,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 921,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 218,
- "mty": 1
- }
- ]
- },
- {
- "id": 4,
- "type": 0,
- "name": "SKILL ANALYZER Level.04",
- "level": 4,
- "nameID": 4,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 67,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 544,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 9,
- "mty": 2
- }
- ]
- },
- {
- "id": 5,
- "type": 0,
- "name": "SKILL ANALYZER Level.05",
- "level": 5,
- "nameID": 5,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 318,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 157,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 567,
- "mty": 2
- }
- ]
- },
- {
- "id": 6,
- "type": 0,
- "name": "SKILL ANALYZER Level.06",
- "level": 6,
- "nameID": 6,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 239,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 375,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 94,
- "mty": 2
- }
- ]
- },
- {
- "id": 7,
- "type": 0,
- "name": "SKILL ANALYZER Level.07",
- "level": 7,
- "nameID": 7,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 210,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 558,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 368,
- "mty": 2
- }
- ]
- },
- {
- "id": 8,
- "type": 0,
- "name": "SKILL ANALYZER Level.08",
- "level": 8,
- "nameID": 8,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 521,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 572,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 173,
- "mty": 2
- }
- ]
- },
- {
- "id": 9,
- "type": 0,
- "name": "SKILL ANALYZER Level.09",
- "level": 9,
- "nameID": 9,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 497,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 948,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 954,
- "mty": 4
- }
- ]
- },
- {
- "id": 10,
- "type": 0,
- "name": "SKILL ANALYZER Level.10",
- "level": 10,
- "nameID": 10,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 922,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 166,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 670,
- "mty": 2
- }
- ]
- },
- {
- "id": 11,
- "type": 0,
- "name": "SKILL ANALYZER Level.11",
- "level": 11,
- "nameID": 11,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 808,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 965,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 909,
- "mty": 3
- }
- ]
- },
- {
- "id": 12,
- "type": 0,
- "name": "SKILL ANALYZER Level.∞",
- "level": 12,
- "nameID": 12,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 709,
- "mty": 3
- },
- {
- "no": 1,
- "mid": 374,
- "mty": 3
- },
- {
- "no": 2,
- "mid": 1036,
- "mty": 4
- }
- ]
- }
- ]
- },
- {
- "id": 6,
- "name": "SKILL ANALYZER 第3回",
- "isNew": 1,
- "courses": [{
- "id": 1,
- "type": 0,
- "name": "SKILL ANALYZER Level.01",
- "level": 1,
- "nameID": 1,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1190,
- "mty": 0
- },
- {
- "no": 1,
- "mid": 914,
- "mty": 0
- },
- {
- "no": 2,
- "mid": 1369,
- "mty": 0
- }
- ]
- },
- {
- "id": 2,
- "type": 0,
- "name": "SKILL ANALYZER Level.02",
- "level": 2,
- "nameID": 2,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 922,
- "mty": 0
- },
- {
- "no": 1,
- "mid": 767,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 1350,
- "mty": 1
- }
- ]
- },
- {
- "id": 3,
- "type": 0,
- "name": "SKILL ANALYZER Level.03",
- "level": 3,
- "nameID": 3,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1359,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 1352,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 1358,
- "mty": 1
- }
- ]
- },
- {
- "id": 4,
- "type": 0,
- "name": "SKILL ANALYZER Level.04",
- "level": 4,
- "nameID": 4,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 608,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 1339,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 1423,
- "mty": 1
- }
- ]
- },
- {
- "id": 5,
- "type": 0,
- "name": "SKILL ANALYZER Level.05",
- "level": 5,
- "nameID": 5,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1246,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 642,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 1443,
- "mty": 2
- }
- ]
- },
- {
- "id": 6,
- "type": 0,
- "name": "SKILL ANALYZER Level.06",
- "level": 6,
- "nameID": 6,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1371,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 1170,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 1297,
- "mty": 2
- }
- ]
- },
- {
- "id": 7,
- "type": 0,
- "name": "SKILL ANALYZER Level.07",
- "level": 7,
- "nameID": 7,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1394,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 1388,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 1225,
- "mty": 2
- }
- ]
- },
- {
- "id": 8,
- "type": 0,
- "name": "SKILL ANALYZER Level.08",
- "level": 8,
- "nameID": 8,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 850,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 1370,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 1302,
- "mty": 2
- }
- ]
- },
- {
- "id": 9,
- "type": 0,
- "name": "SKILL ANALYZER Level.09",
- "level": 9,
- "nameID": 9,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1411,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 1386,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 951,
- "mty": 3
- }
- ]
- },
- {
- "id": 10,
- "type": 0,
- "name": "SKILL ANALYZER Level.10",
- "level": 10,
- "nameID": 10,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1416,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 1441,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 1410,
- "mty": 4
- }
- ]
- },
- {
- "id": 11,
- "type": 0,
- "name": "SKILL ANALYZER Level.11",
- "level": 11,
- "nameID": 11,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 211,
- "mty": 3
- },
- {
- "no": 1,
- "mid": 1220,
- "mty": 3
- },
- {
- "no": 2,
- "mid": 221,
- "mty": 3
- }
- ]
- },
- {
- "id": 12,
- "type": 0,
- "name": "SKILL ANALYZER Level.∞",
- "level": 12,
- "nameID": 12,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1329,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 1369,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 1462,
- "mty": 4
- }
- ]
- }
- ]
- },
- {
- "id": 7,
- "name": "BEMANI MASTER KOREA",
- "isNew": 0,
- "courses": [{
- "id": 1,
- "type": 0,
- "name": "BEMANI MASTER KOREA 2019",
- "level": 0,
- "nameID": 14,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 980,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 1308,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 1136,
- "mty": 4
- }
- ]
- }]
- },
- {
- "id": 8,
- "name": "お花見コース2019",
- "isNew": 0,
- "courses": [{
- "id": 2,
- "type": 0,
- "name": "お花見コース2019【梅】",
- "level": 0,
- "nameID": 13,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 718,
- "mty": 0
- },
- {
- "no": 1,
- "mid": 1072,
- "mty": 0
- },
- {
- "no": 2,
- "mid": 459,
- "mty": 0
- }
- ]
- },
- {
- "id": 3,
- "type": 0,
- "name": "お花見コース2019【竹】",
- "level": 0,
- "nameID": 13,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 718,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 1072,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 459,
- "mty": 1
- }
- ]
- },
- {
- "id": 4,
- "type": 0,
- "name": "お花見コース2019【松】",
- "level": 0,
- "nameID": 13,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 718,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 1072,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 459,
- "mty": 3
- }
- ]
- }
- ]
- },
- {
- "id": 9,
- "name": "The 9th KAC予選コース チャレンジ",
- "isNew": 0,
- "courses": [{
- "id": 5,
- "type": 0,
- "name": "The 9th KACチャレンジコース【蘭華】",
- "level": 0,
- "nameID": 15,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1505,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 1364,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 1177,
- "mty": 4
- }
- ]
- },
- {
- "id": 6,
- "type": 0,
- "name": "The 9th KACチャレンジコース【綺羅】",
- "level": 0,
- "nameID": 16,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1379,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 1363,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 1178,
- "mty": 4
- }
- ]
- }
- ]
- },
- {
- "id": 10,
- "name": "The 9th KAC予選コース エンジョイ",
- "isNew": 0,
- "courses": [{
- "id": 7,
- "type": 0,
- "name": "The 9th KACエンジョイコース【蘭華】",
- "level": 0,
- "nameID": 15,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1505,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 1364,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 1177,
- "mty": 1
- }
- ]
- },
- {
- "id": 8,
- "type": 0,
- "name": "The 9th KACエンジョイコース【綺羅】",
- "level": 0,
- "nameID": 16,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1379,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 1363,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 1178,
- "mty": 1
- }
- ]
- }
- ]
- },
- {
- "id": 11,
- "name": "八周年記念コース",
- "isNew": 0,
- "courses": [{
- "id": 9,
- "type": 0,
- "name": "八周年記念コース(NOV)",
- "level": 0,
- "nameID": 17,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1215,
- "mty": 0
- },
- {
- "no": 1,
- "mid": 1407,
- "mty": 0
- },
- {
- "no": 2,
- "mid": 1389,
- "mty": 0
- }
- ]
- },
- {
- "id": 10,
- "type": 0,
- "name": "八周年記念コース(ADV)",
- "level": 0,
- "nameID": 17,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1215,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 1407,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 1389,
- "mty": 1
- }
- ]
- },
- {
- "id": 11,
- "type": 0,
- "name": "八周年記念コース(EXH)",
- "level": 0,
- "nameID": 17,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1215,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 1407,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 1389,
- "mty": 2
- }
- ]
- },
- {
- "id": 12,
- "type": 0,
- "name": "八周年記念コース(MXM)",
- "level": 0,
- "nameID": 17,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1215,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 1407,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 1389,
- "mty": 4
- }
- ]
- }
- ]
- },
- {
- "id": 12,
- "name": "SKILL ANALYZER 第4回",
- "isNew": 0,
- "courses": [{
- "id": 1,
- "type": 0,
- "name": "SKILL ANALYZER Level.01",
- "level": 1,
- "nameID": 1,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1393,
- "mty": 0
- },
- {
- "no": 1,
- "mid": 1260,
- "mty": 0
- },
- {
- "no": 2,
- "mid": 1329,
- "mty": 0
- }
- ]
- },
- {
- "id": 2,
- "type": 0,
- "name": "SKILL ANALYZER Level.02",
- "level": 2,
- "nameID": 2,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1055,
- "mty": 0
- },
- {
- "no": 1,
- "mid": 930,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 1125,
- "mty": 1
- }
- ]
- },
- {
- "id": 3,
- "type": 0,
- "name": "SKILL ANALYZER Level.03",
- "level": 3,
- "nameID": 3,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1356,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 1408,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 1387,
- "mty": 1
- }
- ]
- },
- {
- "id": 4,
- "type": 0,
- "name": "SKILL ANALYZER Level.04",
- "level": 4,
- "nameID": 4,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1354,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 1378,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 1304,
- "mty": 1
- }
- ]
- },
- {
- "id": 5,
- "type": 0,
- "name": "SKILL ANALYZER Level.05",
- "level": 5,
- "nameID": 5,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1426,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 1389,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 1298,
- "mty": 1
- }
- ]
- },
- {
- "id": 6,
- "type": 0,
- "name": "SKILL ANALYZER Level.06",
- "level": 6,
- "nameID": 6,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1130,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 1402,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 1473,
- "mty": 2
- }
- ]
- },
- {
- "id": 7,
- "type": 0,
- "name": "SKILL ANALYZER Level.07",
- "level": 7,
- "nameID": 7,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1156,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 1012,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 926,
- "mty": 2
- }
- ]
- },
- {
- "id": 8,
- "type": 0,
- "name": "SKILL ANALYZER Level.08",
- "level": 8,
- "nameID": 8,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1405,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 1407,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 1289,
- "mty": 2
- }
- ]
- },
- {
- "id": 9,
- "type": 0,
- "name": "SKILL ANALYZER Level.09",
- "level": 9,
- "nameID": 9,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1376,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 1294,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 1017,
- "mty": 4
- }
- ]
- },
- {
- "id": 10,
- "type": 0,
- "name": "SKILL ANALYZER Level.10",
- "level": 10,
- "nameID": 10,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1371,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 1388,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 680,
- "mty": 2
- }
- ]
- },
- {
- "id": 11,
- "type": 0,
- "name": "SKILL ANALYZER Level.11",
- "level": 11,
- "nameID": 11,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1382,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 1500,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 1186,
- "mty": 4
- }
- ]
- },
- {
- "id": 12,
- "type": 0,
- "name": "SKILL ANALYZER Level.∞",
- "level": 12,
- "nameID": 12,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1542,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 1498,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 1580,
- "mty": 4
- }
- ]
- }
- ]
- },
- {
- "id": 13,
- "name": "SKILL ANALYZER 第5回",
- "isNew": 1,
- "courses": [{
- "id": 1,
- "type": 0,
- "name": "SKILL ANALYZER Level.01",
- "level": 1,
- "nameID": 1,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1383,
- "mty": 0
- },
- {
- "no": 1,
- "mid": 303,
- "mty": 0
- },
- {
- "no": 2,
- "mid": 1136,
- "mty": 0
- }
- ]
- },
- {
- "id": 2,
- "type": 0,
- "name": "SKILL ANALYZER Level.02",
- "level": 2,
- "nameID": 2,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 768,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 138,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 984,
- "mty": 1
- }
- ]
- },
- {
- "id": 3,
- "type": 0,
- "name": "SKILL ANALYZER Level.03",
- "level": 3,
- "nameID": 3,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1132,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 608,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 1080,
- "mty": 1
- }
- ]
- },
- {
- "id": 4,
- "type": 0,
- "name": "SKILL ANALYZER Level.04",
- "level": 4,
- "nameID": 4,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1387,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 752,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 1342,
- "mty": 1
- }
- ]
- },
- {
- "id": 5,
- "type": 0,
- "name": "SKILL ANALYZER Level.05",
- "level": 5,
- "nameID": 5,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1472,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 552,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 1373,
- "mty": 1
- }
- ]
- },
- {
- "id": 6,
- "type": 0,
- "name": "SKILL ANALYZER Level.06",
- "level": 6,
- "nameID": 6,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1422,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 184,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 1151,
- "mty": 2
- }
- ]
- },
- {
- "id": 7,
- "type": 0,
- "name": "SKILL ANALYZER Level.07",
- "level": 7,
- "nameID": 7,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1449,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 850,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 1007,
- "mty": 2
- }
- ]
- },
- {
- "id": 8,
- "type": 0,
- "name": "SKILL ANALYZER Level.08",
- "level": 8,
- "nameID": 8,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 553,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 1069,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 1298,
- "mty": 2
- }
- ]
- },
- {
- "id": 9,
- "type": 0,
- "name": "SKILL ANALYZER Level.09",
- "level": 9,
- "nameID": 9,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 647,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 908,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 1355,
- "mty": 4
- }
- ]
- },
- {
- "id": 10,
- "type": 0,
- "name": "SKILL ANALYZER Level.10",
- "level": 10,
- "nameID": 10,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1399,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 836,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 1053,
- "mty": 4
- }
- ]
- },
- {
- "id": 11,
- "type": 0,
- "name": "SKILL ANALYZER Level.11",
- "level": 11,
- "nameID": 11,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1308,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 1108,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 1240,
- "mty": 4
- }
- ]
- },
- {
- "id": 12,
- "type": 0,
- "name": "SKILL ANALYZER Level.∞",
- "level": 12,
- "nameID": 12,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1583,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 1104,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 1584,
- "mty": 4
- }
- ]
- }
- ]
- },
- {
- "id": 14,
- "name": "SKILL ANALYZER 第6回",
- "isNew": 1,
- "courses": [{
- "id": 1,
- "type": 0,
- "name": "SKILL ANALYZER Level.01",
- "level": 1,
- "nameID": 1,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1488,
- "mty": 0
- },
- {
- "no": 1,
- "mid": 266,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 51,
- "mty": 2
- }
- ]
- },
- {
- "id": 2,
- "type": 0,
- "name": "SKILL ANALYZER Level.02",
- "level": 2,
- "nameID": 2,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 167,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 1330,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 923,
- "mty": 1
- }
- ]
- },
- {
- "id": 3,
- "type": 0,
- "name": "SKILL ANALYZER Level.03",
- "level": 3,
- "nameID": 3,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 419,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 1455,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 1075,
- "mty": 1
- }
- ]
- },
- {
- "id": 4,
- "type": 0,
- "name": "SKILL ANALYZER Level.04",
- "level": 4,
- "nameID": 4,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 597,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 952,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 1391,
- "mty": 1
- }
- ]
- },
- {
- "id": 5,
- "type": 0,
- "name": "SKILL ANALYZER Level.05",
- "level": 5,
- "nameID": 5,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 103,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 565,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 933,
- "mty": 2
- }
- ]
- },
- {
- "id": 6,
- "type": 0,
- "name": "SKILL ANALYZER Level.06",
- "level": 6,
- "nameID": 6,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1313,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 1469,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 559,
- "mty": 2
- }
- ]
- },
- {
- "id": 7,
- "type": 0,
- "name": "SKILL ANALYZER Level.07",
- "level": 7,
- "nameID": 7,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 480,
- "mty": 3
- },
- {
- "no": 1,
- "mid": 1540,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 1393,
- "mty": 2
- }
- ]
- },
- {
- "id": 8,
- "type": 0,
- "name": "SKILL ANALYZER Level.08",
- "level": 8,
- "nameID": 8,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 78,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 576,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 1351,
- "mty": 4
- }
- ]
- },
- {
- "id": 9,
- "type": 0,
- "name": "SKILL ANALYZER Level.09",
- "level": 9,
- "nameID": 9,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 63,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 228,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 641,
- "mty": 4
- }
- ]
- },
- {
- "id": 10,
- "type": 0,
- "name": "SKILL ANALYZER Level.10",
- "level": 10,
- "nameID": 10,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1523,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 1457,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 1061,
- "mty": 4
- }
- ]
- },
- {
- "id": 11,
- "type": 0,
- "name": "SKILL ANALYZER Level.11",
- "level": 11,
- "nameID": 11,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1192,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 304,
- "mty": 3
- },
- {
- "no": 2,
- "mid": 679,
- "mty": 2
- }
- ]
- },
- {
- "id": 12,
- "type": 0,
- "name": "SKILL ANALYZER Level.∞",
- "level": 12,
- "nameID": 12,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1593,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 1177,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 1660,
- "mty": 4
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "version": 6,
- "info": [{
- "id": 1,
- "name": "SKILL ANALYZER 第1回 Aコース",
- "isNew": 1,
- "courses": [{
- "id": 1,
- "type": 0,
- "name": "SKILL ANALYZER Level.01",
- "level": 1,
- "nameID": 1,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1383,
- "mty": 0
- },
- {
- "no": 1,
- "mid": 334,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 774,
- "mty": 1
- }
- ]
- },
- {
- "id": 2,
- "type": 0,
- "name": "SKILL ANALYZER Level.02",
- "level": 2,
- "nameID": 2,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 74,
- "mty": 0
- },
- {
- "no": 1,
- "mid": 771,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 1125,
- "mty": 1
- }
- ]
- },
- {
- "id": 3,
- "type": 0,
- "name": "SKILL ANALYZER Level.03",
- "level": 3,
- "nameID": 3,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 784,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 1126,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 1075,
- "mty": 1
- }
- ]
- },
- {
- "id": 4,
- "type": 0,
- "name": "SKILL ANALYZER Level.04",
- "level": 4,
- "nameID": 4,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 505,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 1403,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 609,
- "mty": 1
- }
- ]
- },
- {
- "id": 5,
- "type": 0,
- "name": "SKILL ANALYZER Level.05",
- "level": 5,
- "nameID": 5,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 630,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 1598,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 1475,
- "mty": 1
- }
- ]
- },
- {
- "id": 6,
- "type": 0,
- "name": "SKILL ANALYZER Level.06",
- "level": 6,
- "nameID": 6,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1154,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 1238,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 590,
- "mty": 2
- }
- ]
- },
- {
- "id": 7,
- "type": 0,
- "name": "SKILL ANALYZER Level.07",
- "level": 7,
- "nameID": 7,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1606,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 834,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 820,
- "mty": 4
- }
- ]
- },
- {
- "id": 8,
- "type": 0,
- "name": "SKILL ANALYZER Level.08",
- "level": 8,
- "nameID": 8,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 183,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 1602,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 173,
- "mty": 2
- }
- ]
- },
- {
- "id": 9,
- "type": 0,
- "name": "SKILL ANALYZER Level.09",
- "level": 9,
- "nameID": 9,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1418,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 469,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 1413,
- "mty": 4
- }
- ]
- },
- {
- "id": 10,
- "type": 0,
- "name": "SKILL ANALYZER Level.10",
- "level": 10,
- "nameID": 10,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1596,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 1649,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 229,
- "mty": 2
- }
- ]
- },
- {
- "id": 11,
- "type": 0,
- "name": "SKILL ANALYZER Level.11",
- "level": 11,
- "nameID": 11,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1651,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 1105,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 1152,
- "mty": 4
- }
- ]
- },
- {
- "id": 12,
- "type": 0,
- "name": "SKILL ANALYZER Level.∞",
- "level": 12,
- "nameID": 12,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1664,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 1528,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 1185,
- "mty": 4
- }
- ]
- }
- ]
- },
- {
- "id": 2,
- "name": "SKILL ANALYZER 第1回 Bコース",
- "isNew": 1,
- "courses": [{
- "id": 1,
- "type": 0,
- "name": "SKILL ANALYZER Level.01",
- "level": 1,
- "nameID": 1,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1066,
- "mty": 0
- },
- {
- "no": 1,
- "mid": 1054,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 1055,
- "mty": 0
- }
- ]
- },
- {
- "id": 2,
- "type": 0,
- "name": "SKILL ANALYZER Level.02",
- "level": 2,
- "nameID": 2,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 768,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 948,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 755,
- "mty": 1
- }
- ]
- },
- {
- "id": 3,
- "type": 0,
- "name": "SKILL ANALYZER Level.03",
- "level": 3,
- "nameID": 3,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 401,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 1320,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 485,
- "mty": 1
- }
- ]
- },
- {
- "id": 4,
- "type": 0,
- "name": "SKILL ANALYZER Level.04",
- "level": 4,
- "nameID": 4,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 295,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 255,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 1029,
- "mty": 1
- }
- ]
- },
- {
- "id": 5,
- "type": 0,
- "name": "SKILL ANALYZER Level.05",
- "level": 5,
- "nameID": 5,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1420,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 1001,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 1611,
- "mty": 1
- }
- ]
- },
- {
- "id": 6,
- "type": 0,
- "name": "SKILL ANALYZER Level.06",
- "level": 6,
- "nameID": 6,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1338,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 79,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 1151,
- "mty": 2
- }
- ]
- },
- {
- "id": 7,
- "type": 0,
- "name": "SKILL ANALYZER Level.07",
- "level": 7,
- "nameID": 7,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1047,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 982,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 1042,
- "mty": 2
- }
- ]
- },
- {
- "id": 8,
- "type": 0,
- "name": "SKILL ANALYZER Level.08",
- "level": 8,
- "nameID": 8,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 664,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 1370,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 838,
- "mty": 2
- }
- ]
- },
- {
- "id": 9,
- "type": 0,
- "name": "SKILL ANALYZER Level.09",
- "level": 9,
- "nameID": 9,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 624,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 1113,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 1629,
- "mty": 4
- }
- ]
- },
- {
- "id": 10,
- "type": 0,
- "name": "SKILL ANALYZER Level.10",
- "level": 10,
- "nameID": 10,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1595,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 1657,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 658,
- "mty": 2
- }
- ]
- },
- {
- "id": 11,
- "type": 0,
- "name": "SKILL ANALYZER Level.11",
- "level": 11,
- "nameID": 11,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1647,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 1587,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 333,
- "mty": 3
- }
- ]
- },
- {
- "id": 12,
- "type": 0,
- "name": "SKILL ANALYZER Level.∞",
- "level": 12,
- "nameID": 12,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1363,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 692,
- "mty": 3
- },
- {
- "no": 2,
- "mid": 1270,
- "mty": 4
- }
- ]
- }
- ]
- },
- {
- "id": 3,
- "name": "SKILL ANALYZER 第1回 Cコース",
- "isNew": 1,
- "courses": [{
- "id": 1,
- "type": 0,
- "name": "SKILL ANALYZER Level.01",
- "level": 1,
- "nameID": 1,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1376,
- "mty": 0
- },
- {
- "no": 1,
- "mid": 564,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 87,
- "mty": 1
- }
- ]
- },
- {
- "id": 2,
- "type": 0,
- "name": "SKILL ANALYZER Level.02",
- "level": 2,
- "nameID": 2,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 34,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 932,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 945,
- "mty": 1
- }
- ]
- },
- {
- "id": 3,
- "type": 0,
- "name": "SKILL ANALYZER Level.03",
- "level": 3,
- "nameID": 3,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1132,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 1549,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 380,
- "mty": 1
- }
- ]
- },
- {
- "id": 4,
- "type": 0,
- "name": "SKILL ANALYZER Level.04",
- "level": 4,
- "nameID": 4,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 130,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 1204,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 1424,
- "mty": 1
- }
- ]
- },
- {
- "id": 5,
- "type": 0,
- "name": "SKILL ANALYZER Level.05",
- "level": 5,
- "nameID": 5,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 48,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 565,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 1109,
- "mty": 2
- }
- ]
- },
- {
- "id": 6,
- "type": 0,
- "name": "SKILL ANALYZER Level.06",
- "level": 6,
- "nameID": 6,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1534,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 1398,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 1312,
- "mty": 2
- }
- ]
- },
- {
- "id": 7,
- "type": 0,
- "name": "SKILL ANALYZER Level.07",
- "level": 7,
- "nameID": 7,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 962,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 1560,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 357,
- "mty": 2
- }
- ]
- },
- {
- "id": 8,
- "type": 0,
- "name": "SKILL ANALYZER Level.08",
- "level": 8,
- "nameID": 8,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 965,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 906,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 579,
- "mty": 2
- }
- ]
- },
- {
- "id": 9,
- "type": 0,
- "name": "SKILL ANALYZER Level.09",
- "level": 9,
- "nameID": 9,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 332,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 36,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 1476,
- "mty": 4
- }
- ]
- },
- {
- "id": 10,
- "type": 0,
- "name": "SKILL ANALYZER Level.10",
- "level": 10,
- "nameID": 10,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1533,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 1597,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 1541,
- "mty": 4
- }
- ]
- }
- ]
- },
- {
- "id": 4,
- "name": "BEMANI KOREA MASTER 2021",
- "isNew": 0,
- "courses": [{
- "id": 1,
- "type": 0,
- "name": "BEMANI MASTER KOREA 2021 ENJOY COURSE",
- "level": 0,
- "nameID": 13,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1641,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 1646,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 1642,
- "mty": 1
- }
- ]
- },
- {
- "id": 2,
- "type": 0,
- "name": "BEMANI MASTER KOREA 2021 ENTRY COURSE",
- "level": 0,
- "nameID": 13,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 1641,
- "mty": 4
- },
- {
- "no": 1,
- "mid": 1646,
- "mty": 4
- },
- {
- "no": 2,
- "mid": 1642,
- "mty": 4
- }
- ]
- }
- ]
- },
- {
- "id": 6,
- "name": "10周年記念コース",
- "isNew": 0,
- "courses": [
- {
- "id": 1,
- "type": 0,
- "name": "10周年記念コース(梅)",
- "level": 0,
- "nameID": 13,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 247,
- "mty": 0
- },
- {
- "no": 1,
- "mid": 611,
- "mty": 0
- },
- {
- "no": 2,
- "mid": 339,
- "mty": 0
- }
- ]
- },
- {
- "id": 2,
- "type": 0,
- "name": "10周年記念コース(竹)",
- "level": 0,
- "nameID": 13,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 247,
- "mty": 1
- },
- {
- "no": 1,
- "mid": 611,
- "mty": 1
- },
- {
- "no": 2,
- "mid": 339,
- "mty": 1
- }
- ]
- },
- {
- "id": 3,
- "type": 0,
- "name": "10周年記念コース(松)",
- "level": 0,
- "nameID": 13,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 247,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 611,
- "mty": 2
- },
- {
- "no": 2,
- "mid": 339,
- "mty": 2
- }
- ]
- },
- {
- "id": 4,
- "type": 0,
- "name": "10周年記念コース(極)",
- "level": 0,
- "nameID": 13,
- "assist": 0,
- "tracks": [{
- "no": 0,
- "mid": 793,
- "mty": 2
- },
- {
- "no": 1,
- "mid": 247,
- "mty": 3
- },
- {
- "no": 2,
- "mid": 339,
- "mty": 3
- }
- ]
- }
- ]
- }
- ]
- }
- ]
-}
\ No newline at end of file
diff --git a/sdvx@asphyxia/webui/asset/json/data.json b/sdvx@asphyxia/webui/asset/json/data.json
deleted file mode 100644
index 0a12683..0000000
--- a/sdvx@asphyxia/webui/asset/json/data.json
+++ /dev/null
@@ -1,2660 +0,0 @@
-{
- "nemsys":[
- {
- "value":0,
- "name":"VIVID MODEL TYPE EXCEED"
- },
- {
- "value":1,
- "name":"VIVID MODEL TYPE DECAL"
- },
- {
- "value":2,
- "name":"VIVID MODEL TYPE GOLD"
- },
- {
- "value":3,
- "name":"VIVID MODEL TYPE RIGHT"
- },
- {
- "value":4,
- "name":"VIVID MODEL TYPE LEFT"
- },
- {
- "value":5,
- "name":"VIVID MODEL TYPE ORIGINAL"
- },
- {
- "value":6,
- "name":"VIVID MODEL TYPE LIVE A"
- },
- {
- "value":7,
- "name":"VIVID MODEL TYPE LIVE B"
- },
- {
- "value":12,
- "name":"HEAVENLY MODEL TYPE DECAL"
- },
- {
- "value":13,
- "name":"HEAVENLY MODEL TYPE HE4VEN ~天国へようこそ~"
- },
- {
- "value":14,
- "name":"HEAVENLY MODEL TYPE iLLness LiLin"
- },
- {
- "value":15,
- "name":"VIVID MODEL TYPE HALLOWEEN"
- },
- {
- "value":16,
- "name":"GRAVITY WARS MODEL TYPE S1"
- },
- {
- "value":17,
- "name":"GRAVITY WARS MODEL TYPE S2"
- },
- {
- "value":18,
- "name":"VIVID MODEL TYPE HIYUKI CHAN X'mas"
- },
- {
- "value":19,
- "name":"INFINITE MODEL TYPE KONOHA"
- },
- {
- "value":20,
- "name":"INFINITE MODEL TYPE KAC 2013 Emperor & Empress"
- }
- ],
- "subbg":[
- {
- "value":0,
- "name":"DEFAULT"
- },
- {
- "value":1,
- "name":"SOUND VOLTEX -BOOTH-"
- },
- {
- "value":2,
- "name":"SOUND VOLTEX -INFINITE INFECTION-"
- },
- {
- "value":3,
- "name":"SOUND VOLTEX III GRAVITY WARS"
- },
- {
- "value":4,
- "name":"SOUND VOLTEX IV HEAVENLY HAVEN"
- },
- {
- "value":5,
- "name":"SOUND VOLTEX VIVIDWAVE"
- },
- {
- "value":6,
- "name":"FIN4LE ~終止線の彼方へ~"
- },
- {
- "value":7,
- "name":"WHITEOUT"
- },
- {
- "value":8,
- "name":"神獄烙桜"
- },
- {
- "value":9,
- "name":"Juggler's Maddness"
- },
- {
- "value":10,
- "name":"MirrorWall"
- },
- {
- "value":11,
- "name":"#SpeedyCats"
- },
- {
- "value":12,
- "name":"All Clear!!"
- },
- {
- "value":13,
- "name":"闇夜に舞うは紅の華"
- },
- {
- "value":14,
- "name":"OPEN MY GATE"
- },
- {
- "value":15,
- "name":"Cy-Bird"
- },
- {
- "value":16,
- "name":"Deadly Force"
- },
- {
- "value":17,
- "name":"Staring at star"
- },
- {
- "value":18,
- "name":"Dyscontrolled Galaxy"
- },
- {
- "value":19,
- "name":"セイレーン ~悲壮の竪琴~"
- },
- {
- "value":20,
- "name":"ULTiMATE INFLATiON"
- },
- {
- "value":21,
- "name":"BEAST BASS BOMB"
- },
- {
- "value":22,
- "name":"Far Away"
- },
- {
- "value":23,
- "name":"Hug!! Vs. Hug!!"
- },
- {
- "value":24,
- "name":"TWO-TORIAL"
- },
- {
- "value":25,
- "name":"I"
- },
- {
- "value":26,
- "name":"Last Resort"
- },
- {
- "value":27,
- "name":"A Lasting Promise"
- },
- {
- "value":28,
- "name":"Cloud 9"
- },
- {
- "value":29,
- "name":"Sacrifice and Faith"
- },
- {
- "value":30,
- "name":"羅生門"
- },
- {
- "value":31,
- "name":"僕らの時間"
- },
- {
- "value":32,
- "name":"神話に芽吹く"
- },
- {
- "value":33,
- "name":"CUTE-Reflection"
- },
- {
- "value":34,
- "name":"Awakening"
- },
- {
- "value":35,
- "name":"BlueMoon Princess"
- },
- {
- "value":36,
- "name":"crossing blue"
- },
- {
- "value":37,
- "name":"Dark Matter"
- },
- {
- "value":38,
- "name":"Ethereal Lotus"
- },
- {
- "value":39,
- "name":"Innocent"
- },
- {
- "value":40,
- "name":"Justitia Gladius"
- },
- {
- "value":41,
- "name":"Lazurite"
- },
- {
- "value":42,
- "name":"Levier'n NābYss"
- },
- {
- "value":43,
- "name":"Wings of Glory"
- },
- {
- "value":44,
- "name":"Xéroa"
- },
- {
- "value":45,
- "name":"Яe's NoVǢ"
- },
- {
- "value":46,
- "name":"ひとりぼっちの魔王"
- },
- {
- "value":47,
- "name":"プラネタジャーニー"
- },
- {
- "value":48,
- "name":"ホワイトパレード"
- },
- {
- "value":49,
- "name":"メルヘン風紀委員会"
- },
- {
- "value":50,
- "name":"星の詩"
- },
- {
- "value":51,
- "name":"濁色踊るオートマタ"
- },
- {
- "value":52,
- "name":"住民證-BOOTH-"
- },
- {
- "value":53,
- "name":"住民證-INFINITE INFECTION-"
- },
- {
- "value":54,
- "name":"住民證-GRAVITY WARS-"
- },
- {
- "value":55,
- "name":"住民證-HEAVENLY HAVEN-"
- },
- {
- "value":56,
- "name":"NEAR&NOAH VI 水着"
- },
- {
- "value":57,
- "name":"Absolute Domination"
- },
- {
- "value":58,
- "name":"Another Chapter"
- },
- {
- "value":59,
- "name":"Failnaught"
- },
- {
- "value":60,
- "name":"Fly Like You"
- },
- {
- "value":61,
- "name":"Made In Love"
- },
- {
- "value":62,
- "name":"Xronièr"
- },
- {
- "value":63,
- "name":"オニユリ"
- },
- {
- "value":64,
- "name":"コメット⇒スケイター"
- },
- {
- "value":65,
- "name":"サイコパスラビット"
- },
- {
- "value":66,
- "name":"スラッシュ//シスターズ"
- },
- {
- "value":67,
- "name":"そして黄金郷へ"
- },
- {
- "value":68,
- "name":"光射す澪のユズリハ"
- },
- {
- "value":69,
- "name":"水簾ノ調"
- },
- {
- "value":70,
- "name":"AΩ"
- },
- {
- "value":71,
- "name":"Preserved Valkyria"
- },
- {
- "value":72,
- "name":"Blastix Riotz"
- },
- {
- "value":73,
- "name":"XyHATTE"
- },
- {
- "value":74,
- "name":"veRtrageS"
- },
- {
- "value":75,
- "name":"BLACK or WHITE?"
- },
- {
- "value":76,
- "name":"choux à la crème"
- },
- {
- "value":77,
- "name":"Emperor's Divide"
- },
- {
- "value":78,
- "name":"fancy cake!!"
- },
- {
- "value":79,
- "name":"Into The Madness"
- },
- {
- "value":80,
- "name":"*Feels Seasickness...*"
- },
- {
- "value":81,
- "name":"ΣmbryØ"
- },
- {
- "value":82,
- "name":"Cross Fire"
- },
- {
- "value":83,
- "name":"GODHEART"
- },
- {
- "value":84,
- "name":"Destiny"
- },
- {
- "value":85,
- "name":"THE HEAVEN"
- },
- {
- "value":86,
- "name":"ULTRAVELOCITY"
- },
- {
- "value":87,
- "name":"祝福の色彩は想い結ぶ君たち迄"
- },
- {
- "value":88,
- "name":"666"
- },
- {
- "value":89,
- "name":"色を喪った街"
- },
- {
- "value":90,
- "name":"ЯeviveR"
- },
- {
- "value":91,
- "name":"9TH5IN"
- },
- {
- "value":92,
- "name":"Katharsis"
- },
- {
- "value":93,
- "name":"ZEИITH"
- },
- {
- "value":94,
- "name":"SAMURAI TIGER"
- },
- {
- "value":95,
- "name":"雪女"
- },
- {
- "value":96,
- "name":"snow motion"
- },
- {
- "value":97,
- "name":"Joyeuse"
- },
- {
- "value":98,
- "name":"マサカリブレイド"
- },
- {
- "value":99,
- "name":"月光乱舞"
- },
- {
- "value":100,
- "name":"Foolish Hero"
- },
- {
- "value":101,
- "name":"croiX"
- },
- {
- "value":102,
- "name":"Gott"
- }
- ],
- "bgm":[
- {
- "value":0,
- "name":"EXCEED GEAR"
- },
- {
- "value":1,
- "name":"Max Burning"
- },
- {
- "value":2,
- "name":"Bangin' Burst"
- },
- {
- "value":3,
- "name":"Ultraplayer"
- },
- {
- "value":4,
- "name":"Everlasting Message"
- },
- {
- "value":5,
- "name":"Lachryma《Re:Queen’M》"
- },
- {
- "value":6,
- "name":"HE4VEN ~天国へようこそ~"
- },
- {
- "value":7,
- "name":"iLLness LiLin"
- },
- {
- "value":8,
- "name":"I"
- },
- {
- "value":9,
- "name":"SOUND VOLTEX -BOOTH-"
- },
- {
- "value":10,
- "name":"SOUND VOLTEX II -INFINITE INFECTION-"
- },
- {
- "value":11,
- "name":"SOUND VOLTEX III GRAVITY WARS S1"
- },
- {
- "value":12,
- "name":"SOUND VOLTEX III GRAVITY WARS S2"
- },
- {
- "value":13,
- "name":"SOUND VOLTEX IV HEAVENLY HAVEN"
- },
- {
- "value":14,
- "name":"SOUND VOLTEX VIVIDWAVE"
- },
- {
- "value":15,
- "name":"*Feels Seasickness...*"
- },
- {
- "value":16,
- "name":"ΣmbryØ"
- },
- {
- "value":17,
- "name":"666"
- },
- {
- "value":18,
- "name":"Invitation from Mr. C"
- },
- {
- "value":19,
- "name":"2 MINUTES FIGHTERS"
- },
- {
- "value":20,
- "name":"LegenD."
- },
- {
- "value":21,
- "name":"World's end"
- },
- {
- "value":22,
- "name":"Chant du Cygne"
- },
- {
- "value":23,
- "name":"混乱少女♥そふらんちゃん!!"
- },
- {
- "value":24,
- "name":"到達してしまった僕らと夢と希望の最之果"
- },
- {
- "value":25,
- "name":"Sayonara Planet Wars"
- }
- ],
- "stamp":[
- {
- "value":0,
- "name":"NO STAMP"
- },
- {
- "value":1,
- "name":"レイシス 1"
- },
- {
- "value":2,
- "name":"レイシス 2"
- },
- {
- "value":3,
- "name":"レイシス 3"
- },
- {
- "value":4,
- "name":"レイシス 4"
- },
- {
- "value":5,
- "name":"グレイス 1"
- },
- {
- "value":6,
- "name":"グレイス 2"
- },
- {
- "value":7,
- "name":"グレイス 3"
- },
- {
- "value":8,
- "name":"グレイス 4"
- },
- {
- "value":9,
- "name":"烈風刀 1"
- },
- {
- "value":10,
- "name":"烈風刀 2"
- },
- {
- "value":11,
- "name":"烈風刀 3"
- },
- {
- "value":12,
- "name":"烈風刀 4"
- },
- {
- "value":13,
- "name":"雷刀 1"
- },
- {
- "value":14,
- "name":"雷刀 2"
- },
- {
- "value":15,
- "name":"雷刀 3"
- },
- {
- "value":16,
- "name":"雷刀 4"
- },
- {
- "value":17,
- "name":"ニアノア 1"
- },
- {
- "value":18,
- "name":"ニアノア 2"
- },
- {
- "value":19,
- "name":"ニアノア 3"
- },
- {
- "value":20,
- "name":"ニアノア 4"
- },
- {
- "value":21,
- "name":"VIVID WAVE01 1"
- },
- {
- "value":22,
- "name":"VIVID WAVE01 2"
- },
- {
- "value":23,
- "name":"VIVID WAVE01 3"
- },
- {
- "value":24,
- "name":"VIVID WAVE01 4"
- },
- {
- "value":25,
- "name":"VIVID WAVE02 1"
- },
- {
- "value":26,
- "name":"VIVID WAVE02 2"
- },
- {
- "value":27,
- "name":"VIVID WAVE02 3"
- },
- {
- "value":28,
- "name":"VIVID WAVE02 4"
- },
- {
- "value":29,
- "name":"恋刃 1"
- },
- {
- "value":30,
- "name":"恋刃 2"
- },
- {
- "value":31,
- "name":"恋刃 3"
- },
- {
- "value":32,
- "name":"恋刃 4"
- },
- {
- "value":33,
- "name":"奈奈 1"
- },
- {
- "value":34,
- "name":"奈奈 2"
- },
- {
- "value":35,
- "name":"奈奈 3"
- },
- {
- "value":36,
- "name":"奈奈 4"
- },
- {
- "value":37,
- "name":"つまぶき 1"
- },
- {
- "value":38,
- "name":"つまぶき 2"
- },
- {
- "value":39,
- "name":"つまぶき 3"
- },
- {
- "value":40,
- "name":"つまぶき 4"
- },
- {
- "value":41,
- "name":"HEAVENLY HAVEN 001 1"
- },
- {
- "value":42,
- "name":"HEAVENLY HAVEN 001 2"
- },
- {
- "value":43,
- "name":"HEAVENLY HAVEN 001 3"
- },
- {
- "value":44,
- "name":"HEAVENLY HAVEN 001 4"
- },
- {
- "value":45,
- "name":"HEAVENLY HAVEN 002 1"
- },
- {
- "value":46,
- "name":"HEAVENLY HAVEN 002 2"
- },
- {
- "value":47,
- "name":"HEAVENLY HAVEN 002 3"
- },
- {
- "value":48,
- "name":"HEAVENLY HAVEN 002 4"
- },
- {
- "value":49,
- "name":"マキシマ 1"
- },
- {
- "value":50,
- "name":"マキシマ 2"
- },
- {
- "value":51,
- "name":"マキシマ 3"
- },
- {
- "value":52,
- "name":"マキシマ 4"
- },
- {
- "value":53,
- "name":"かなで 1"
- },
- {
- "value":54,
- "name":"かなで 2"
- },
- {
- "value":55,
- "name":"かなで 3"
- },
- {
- "value":56,
- "name":"かなで 4"
- },
- {
- "value":57,
- "name":"BLASTER GATE 1"
- },
- {
- "value":58,
- "name":"BLASTER GATE 2"
- },
- {
- "value":59,
- "name":"BLASTER GATE 3"
- },
- {
- "value":60,
- "name":"BLASTER GATE 4"
- },
- {
- "value":61,
- "name":"梅雨 1"
- },
- {
- "value":62,
- "name":"梅雨 2"
- },
- {
- "value":63,
- "name":"梅雨 3"
- },
- {
- "value":64,
- "name":"梅雨 4"
- },
- {
- "value":65,
- "name":"ハロウィン001 1"
- },
- {
- "value":66,
- "name":"ハロウィン001 2"
- },
- {
- "value":67,
- "name":"ハロウィン001 3"
- },
- {
- "value":68,
- "name":"ハロウィン001 4"
- },
- {
- "value":69,
- "name":"ハロウィン002 1"
- },
- {
- "value":70,
- "name":"ハロウィン002 2"
- },
- {
- "value":71,
- "name":"ハロウィン002 3"
- },
- {
- "value":72,
- "name":"ハロウィン002 4"
- },
- {
- "value":73,
- "name":"ハロウィン003 1"
- },
- {
- "value":74,
- "name":"ハロウィン003 2"
- },
- {
- "value":75,
- "name":"ハロウィン003 3"
- },
- {
- "value":76,
- "name":"ハロウィン003 4"
- },
- {
- "value":77,
- "name":"リボン&わたがし 1"
- },
- {
- "value":78,
- "name":"リボン&わたがし 2"
- },
- {
- "value":79,
- "name":"リボン&わたがし 3"
- },
- {
- "value":80,
- "name":"リボン&わたがし 4"
- },
- {
- "value":81,
- "name":"ハルト 1"
- },
- {
- "value":82,
- "name":"ハルト 2"
- },
- {
- "value":83,
- "name":"ハルト 3"
- },
- {
- "value":84,
- "name":"ハルト 4"
- },
- {
- "value":85,
- "name":"クリスマス001 1"
- },
- {
- "value":86,
- "name":"クリスマス001 2"
- },
- {
- "value":87,
- "name":"クリスマス001 3"
- },
- {
- "value":88,
- "name":"クリスマス001 4"
- },
- {
- "value":89,
- "name":"クリスマス002 1"
- },
- {
- "value":90,
- "name":"クリスマス002 2"
- },
- {
- "value":91,
- "name":"クリスマス002 3"
- },
- {
- "value":92,
- "name":"クリスマス002 4"
- },
- {
- "value":93,
- "name":"クリスマス003 1"
- },
- {
- "value":94,
- "name":"クリスマス003 2"
- },
- {
- "value":95,
- "name":"クリスマス003 3"
- },
- {
- "value":96,
- "name":"クリスマス003 4"
- },
- {
- "value":97,
- "name":"賀正001 1"
- },
- {
- "value":98,
- "name":"賀正001 2"
- },
- {
- "value":99,
- "name":"賀正001 3"
- },
- {
- "value":100,
- "name":"賀正001 4"
- },
- {
- "value":101,
- "name":"氷雪ちゃん001 1"
- },
- {
- "value":102,
- "name":"氷雪ちゃん001 2"
- },
- {
- "value":103,
- "name":"氷雪ちゃん001 3"
- },
- {
- "value":104,
- "name":"氷雪ちゃん001 4"
- },
- {
- "value":105,
- "name":"雪翔くん001 1"
- },
- {
- "value":106,
- "name":"雪翔くん001 2"
- },
- {
- "value":107,
- "name":"雪翔くん001 3"
- },
- {
- "value":108,
- "name":"雪翔くん001 4"
- }
- ],
- "akaname":[
- {
- "value":"0",
- "name":"Default"
- },
- {
- "value":"10001",
- "name":"よろしくお願いします"
- },
- {
- "value":"10002",
- "name":"初心者です"
- },
- {
- "value":"10003",
- "name":"慣れてきました"
- },
- {
- "value":"10004",
- "name":"古参プレーヤー"
- },
- {
- "value":"10005",
- "name":"ケンバンマン"
- },
- {
- "value":"10006",
- "name":"ツマミスト"
- },
- {
- "value":"10007",
- "name":"好敵手募集中!"
- },
- {
- "value":"10008",
- "name":"はわっはわのふわっふわ♪"
- },
- {
- "value":"10009",
- "name":"爽快感1600%"
- },
- {
- "value":"10010",
- "name":"名も無き草"
- },
- {
- "value":"10011",
- "name":"一人前"
- },
- {
- "value":"10012",
- "name":"百戦錬磨"
- },
- {
- "value":"10013",
- "name":"クリア埋め頑張ってます"
- },
- {
- "value":"10014",
- "name":"手練れの貫禄"
- },
- {
- "value":"10015",
- "name":"お前もクリアしてやろうか"
- },
- {
- "value":"10016",
- "name":"クリア大明神"
- },
- {
- "value":"10017",
- "name":"COMPLETENESS"
- },
- {
- "value":"10018",
- "name":"スリルを味わいたくて"
- },
- {
- "value":"10019",
- "name":"百花繚乱"
- },
- {
- "value":"10020",
- "name":"エクセッシブ埋め頑張ってます"
- },
- {
- "value":"10021",
- "name":"ブラスターゲージ↑↑↑"
- },
- {
- "value":"10022",
- "name":"お前もエクセッシブしてやろうか"
- },
- {
- "value":"10023",
- "name":"エクセッシブ大明神"
- },
- {
- "value":"10024",
- "name":"SURVIVOR"
- },
- {
- "value":"10025",
- "name":"キレてないデス~"
- },
- {
- "value":"10026",
- "name":"チェインマスター"
- },
- {
- "value":"10027",
- "name":"UC埋め頑張ってます"
- },
- {
- "value":"10028",
- "name":"アルティメットチェインは俺の嫁"
- },
- {
- "value":"10029",
- "name":"お前もUCしてやろうか"
- },
- {
- "value":"10030",
- "name":"UC大明神"
- },
- {
- "value":"10031",
- "name":"アルティメット・プレーヤー"
- },
- {
- "value":"10032",
- "name":"伝説の始まり"
- },
- {
- "value":"10033",
- "name":"完全無欠"
- },
- {
- "value":"10034",
- "name":"PUC埋め頑張ってます"
- },
- {
- "value":"10035",
- "name":"生ける精密機械"
- },
- {
- "value":"10036",
- "name":"お前もPUCしてやろうか"
- },
- {
- "value":"10037",
- "name":"PUC大明神"
- },
- {
- "value":"10038",
- "name":"前人未到"
- },
- {
- "value":"10039",
- "name":"日進月歩"
- },
- {
- "value":"10040",
- "name":"金の種子"
- },
- {
- "value":"10041",
- "name":"じわじわきてる"
- },
- {
- "value":"10042",
- "name":"Aの風雲児"
- },
- {
- "value":"10043",
- "name":"Aの鬼才"
- },
- {
- "value":"10044",
- "name":"Aの支配者"
- },
- {
- "value":"10045",
- "name":"才能開花"
- },
- {
- "value":"10046",
- "name":"AA職人"
- },
- {
- "value":"10047",
- "name":"ツバメ返し"
- },
- {
- "value":"10048",
- "name":"AA埋め頑張ってます"
- },
- {
- "value":"10049",
- "name":"AAの風雲児"
- },
- {
- "value":"10050",
- "name":"AAの鬼才"
- },
- {
- "value":"10051",
- "name":"AAの支配者"
- },
- {
- "value":"10052",
- "name":"双子星"
- },
- {
- "value":"10053",
- "name":"三ツ星"
- },
- {
- "value":"10054",
- "name":"シャイニングウィザード"
- },
- {
- "value":"10055",
- "name":"AAA埋め頑張ってます"
- },
- {
- "value":"10056",
- "name":"AAAの風雲児"
- },
- {
- "value":"10057",
- "name":"AAAの鬼才"
- },
- {
- "value":"10058",
- "name":"AAAの支配者"
- },
- {
- "value":"10059",
- "name":"不死鳥"
- },
- {
- "value":"10060",
- "name":"このプレーヤーがスゴい!"
- },
- {
- "value":"10061",
- "name":"正確無比"
- },
- {
- "value":"10062",
- "name":"S埋め頑張ってます"
- },
- {
- "value":"10063",
- "name":"Sの風雲児"
- },
- {
- "value":"10064",
- "name":"Sの鬼才"
- },
- {
- "value":"10065",
- "name":"Sの支配者"
- },
- {
- "value":"10066",
- "name":"エスペランサ"
- },
- {
- "value":"10067",
- "name":"準備万端"
- },
- {
- "value":"10068",
- "name":"新進気鋭"
- },
- {
- "value":"10069",
- "name":"3倍アイスクリーム"
- },
- {
- "value":"10070",
- "name":"猪突猛進"
- },
- {
- "value":"10071",
- "name":"五行相克"
- },
- {
- "value":"10072",
- "name":"不撓不屈"
- },
- {
- "value":"10073",
- "name":"勇猛果敢"
- },
- {
- "value":"10074",
- "name":"大胆不敵"
- },
- {
- "value":"10075",
- "name":"順風満帆"
- },
- {
- "value":"10076",
- "name":"縦横無尽"
- },
- {
- "value":"10077",
- "name":"波乱万丈"
- },
- {
- "value":"10078",
- "name":"意気揚々"
- },
- {
- "value":"10079",
- "name":"国士無双"
- },
- {
- "value":"10080",
- "name":"疾風怒涛"
- },
- {
- "value":"10081",
- "name":"電光石火"
- },
- {
- "value":"10082",
- "name":"花鳥風月"
- },
- {
- "value":"10083",
- "name":"威風堂々"
- },
- {
- "value":"10084",
- "name":"天衣無縫"
- },
- {
- "value":"10085",
- "name":"森羅万象"
- },
- {
- "value":"10086",
- "name":"画竜点睛"
- },
- {
- "value":"10087",
- "name":"若芽"
- },
- {
- "value":"10088",
- "name":"樹葉"
- },
- {
- "value":"10089",
- "name":"新緑"
- },
- {
- "value":"10090",
- "name":"桜花"
- },
- {
- "value":"10091",
- "name":"睡蓮"
- },
- {
- "value":"10092",
- "name":"桔梗"
- },
- {
- "value":"10093",
- "name":"雪月花"
- },
- {
- "value":"10094",
- "name":"小雨"
- },
- {
- "value":"10095",
- "name":"霧雨"
- },
- {
- "value":"10096",
- "name":"村雨"
- },
- {
- "value":"10097",
- "name":"時雨"
- },
- {
- "value":"10098",
- "name":"彩雲"
- },
- {
- "value":"10099",
- "name":"紫雲"
- },
- {
- "value":"10100",
- "name":"暁雲"
- },
- {
- "value":"10101",
- "name":"金剛雲"
- },
- {
- "value":"10102",
- "name":"蒼空"
- },
- {
- "value":"10103",
- "name":"天空"
- },
- {
- "value":"10104",
- "name":"絶空"
- },
- {
- "value":"10105",
- "name":"虚空"
- },
- {
- "value":"10106",
- "name":"一期一会"
- },
- {
- "value":"10107",
- "name":"コミュ力高め"
- },
- {
- "value":"10108",
- "name":"コネクション"
- },
- {
- "value":"10109",
- "name":"有名人"
- },
- {
- "value":"10110",
- "name":"アピカメッセージ送り上手"
- },
- {
- "value":"10111",
- "name":"いつだって私がいる"
- },
- {
- "value":"10112",
- "name":"電脳世界の住人"
- },
- {
- "value":"10113",
- "name":"World Famous"
- },
- {
- "value":"10114",
- "name":"ボルテ仲間"
- },
- {
- "value":"10115",
- "name":"幹事"
- },
- {
- "value":"10116",
- "name":"青春、それはロカマチの香り"
- },
- {
- "value":"10117",
- "name":"☆リア充☆"
- },
- {
- "value":"10118",
- "name":"ズッ友だよ…!"
- },
- {
- "value":"10119",
- "name":"友達100人"
- },
- {
- "value":"10120",
- "name":"一日一善"
- },
- {
- "value":"10121",
- "name":"いい人"
- },
- {
- "value":"10122",
- "name":"ライフセーバー"
- },
- {
- "value":"10123",
- "name":"まかせとけって♪"
- },
- {
- "value":"10124",
- "name":"英雄"
- },
- {
- "value":"10125",
- "name":"守護神"
- },
- {
- "value":"10126",
- "name":"救世主"
- },
- {
- "value":"10127",
- "name":"満員御礼"
- },
- {
- "value":"10128",
- "name":"今日もボルテ"
- },
- {
- "value":"10129",
- "name":"明日もボルテ"
- },
- {
- "value":"10130",
- "name":"三日三晩"
- },
- {
- "value":"10131",
- "name":"いつかの夢"
- },
- {
- "value":"10132",
- "name":"連日連夜"
- },
- {
- "value":"10133",
- "name":"ボルテは日課"
- },
- {
- "value":"10134",
- "name":"皆勤賞"
- },
- {
- "value":"10135",
- "name":"NO ボルテ NO LIFE"
- },
- {
- "value":"10136",
- "name":"エンジョイ勢"
- },
- {
- "value":"10137",
- "name":"勢いが来てる"
- },
- {
- "value":"10138",
- "name":"常連"
- },
- {
- "value":"10139",
- "name":"毎度おなじみ"
- },
- {
- "value":"10140",
- "name":"ガチ勢"
- },
- {
- "value":"10141",
- "name":"継続は力なり"
- },
- {
- "value":"10142",
- "name":"週刊ボルテ"
- },
- {
- "value":"10143",
- "name":"筋トレ"
- },
- {
- "value":"10144",
- "name":"NEVER GIVE UP"
- },
- {
- "value":"10145",
- "name":"九死一生"
- },
- {
- "value":"10146",
- "name":"土俵際の魔術師"
- },
- {
- "value":"10147",
- "name":"結果オーライ"
- },
- {
- "value":"10148",
- "name":"背水之陣"
- },
- {
- "value":"10149",
- "name":"岳を翔ける歌声"
- },
- {
- "value":"10150",
- "name":"流れる星々のように"
- },
- {
- "value":"10151",
- "name":"月からの衝動"
- },
- {
- "value":"10152",
- "name":"瞬く光芒"
- },
- {
- "value":"10153",
- "name":"天の極へ至る道"
- },
- {
- "value":"10154",
- "name":"烈々たる風音"
- },
- {
- "value":"10155",
- "name":"雷として電なる者"
- },
- {
- "value":"10156",
- "name":"麗しきその華"
- },
- {
- "value":"10157",
- "name":"魔の騎士を冠する指先"
- },
- {
- "value":"10158",
- "name":"剛として羅する力"
- },
- {
- "value":"10159",
- "name":"或帝が滅する刻"
- },
- {
- "value":"10160",
- "name":"暴るる龍、天をも穿つ"
- },
- {
- "value":"10161",
- "name":"ハイテンション"
- },
- {
- "value":"10162",
- "name":"スピードアップ"
- },
- {
- "value":"10163",
- "name":"アナタ色に染めてくだサイ"
- },
- {
- "value":"10164",
- "name":"オホハハハハハwwwww"
- },
- {
- "value":"10165",
- "name":"BEMANI Backstage"
- },
- {
- "value":"10166",
- "name":"ぐみっと参上☆"
- },
- {
- "value":"10167",
- "name":"俺達の挑戦状、受けてみろ!!!"
- },
- {
- "value":"10168",
- "name":"魅惑のコラボレーション"
- },
- {
- "value":"10169",
- "name":"無限のアレンジャー"
- },
- {
- "value":"10170",
- "name":"キミの世界がひろがる"
- },
- {
- "value":"10171",
- "name":"運命を操る程度の能力"
- },
- {
- "value":"10172",
- "name":"常夏休み"
- },
- {
- "value":"10173",
- "name":"みんな…お待たせ☆"
- },
- {
- "value":"10174",
- "name":"そして世界は動き出す"
- },
- {
- "value":"10175",
- "name":"また此処で巡り逢う"
- },
- {
- "value":"10176",
- "name":"打ち出の小槌を扱う程度の能力"
- },
- {
- "value":"10177",
- "name":"ぐみっと解決♪"
- },
- {
- "value":"10178",
- "name":"クレープおじさん"
- },
- {
- "value":"10179",
- "name":"ボルテキャラ通"
- },
- {
- "value":"10180",
- "name":"闘え、堕ちるまで。"
- },
- {
- "value":"10181",
- "name":"永遠に語り継ぐ物語を。"
- },
- {
- "value":"10182",
- "name":"死を操る程度の能力"
- },
- {
- "value":"10183",
- "name":"ここなつ箱推し"
- },
- {
- "value":"10184",
- "name":"もしもの話をしよう。"
- },
- {
- "value":"10185",
- "name":"プチセレブ"
- },
- {
- "value":"10186",
- "name":"ボルジョワ"
- },
- {
- "value":"10187",
- "name":"資産家"
- },
- {
- "value":"10188",
- "name":"石油王"
- },
- {
- "value":"10189",
- "name":"北海道民"
- },
- {
- "value":"10190",
- "name":"青森県民"
- },
- {
- "value":"10191",
- "name":"岩手県民"
- },
- {
- "value":"10192",
- "name":"宮城県民"
- },
- {
- "value":"10193",
- "name":"秋田県民"
- },
- {
- "value":"10194",
- "name":"山形県民"
- },
- {
- "value":"10195",
- "name":"福島県民"
- },
- {
- "value":"10196",
- "name":"茨城県民"
- },
- {
- "value":"10197",
- "name":"栃木県民"
- },
- {
- "value":"10198",
- "name":"群馬県民"
- },
- {
- "value":"10199",
- "name":"埼玉県民"
- },
- {
- "value":"10200",
- "name":"千葉県民"
- },
- {
- "value":"10201",
- "name":"東京都民"
- },
- {
- "value":"10202",
- "name":"神奈川県民"
- },
- {
- "value":"10203",
- "name":"新潟県民"
- },
- {
- "value":"10204",
- "name":"富山県民"
- },
- {
- "value":"10205",
- "name":"石川県民"
- },
- {
- "value":"10206",
- "name":"福井県民"
- },
- {
- "value":"10207",
- "name":"山梨県民"
- },
- {
- "value":"10208",
- "name":"長野県民"
- },
- {
- "value":"10209",
- "name":"岐阜県民"
- },
- {
- "value":"10210",
- "name":"静岡県民"
- },
- {
- "value":"10211",
- "name":"愛知県民"
- },
- {
- "value":"10212",
- "name":"三重県民"
- },
- {
- "value":"10213",
- "name":"滋賀県民"
- },
- {
- "value":"10214",
- "name":"京都府民"
- },
- {
- "value":"10215",
- "name":"大阪府民"
- },
- {
- "value":"10216",
- "name":"兵庫県民"
- },
- {
- "value":"10217",
- "name":"奈良県民"
- },
- {
- "value":"10218",
- "name":"和歌山県民"
- },
- {
- "value":"10219",
- "name":"鳥取県民"
- },
- {
- "value":"10220",
- "name":"島根県民"
- },
- {
- "value":"10221",
- "name":"岡山県民"
- },
- {
- "value":"10222",
- "name":"広島県民"
- },
- {
- "value":"10223",
- "name":"山口県民"
- },
- {
- "value":"10224",
- "name":"徳島県民"
- },
- {
- "value":"10225",
- "name":"香川県民"
- },
- {
- "value":"10226",
- "name":"愛媛県民"
- },
- {
- "value":"10227",
- "name":"高知県民"
- },
- {
- "value":"10228",
- "name":"福岡県民"
- },
- {
- "value":"10229",
- "name":"佐賀県民"
- },
- {
- "value":"10230",
- "name":"長崎県民"
- },
- {
- "value":"10231",
- "name":"熊本県民"
- },
- {
- "value":"10232",
- "name":"大分県民"
- },
- {
- "value":"10233",
- "name":"宮崎県民"
- },
- {
- "value":"10234",
- "name":"鹿児島県民"
- },
- {
- "value":"10235",
- "name":"沖縄県民"
- },
- {
- "value":"10236",
- "name":"北の国カラこんにちハ"
- },
- {
- "value":"10237",
- "name":"東の都deてやんデイ!"
- },
- {
- "value":"10238",
- "name":"日本アルプス★ヨロレイヒ~♪"
- },
- {
- "value":"10239",
- "name":"西の大地deなんでヤネ~ン!!"
- },
- {
- "value":"10240",
- "name":"神の大地においでマセ~"
- },
- {
- "value":"10241",
- "name":"四つの国を巡るゼヨ!!"
- },
- {
- "value":"10242",
- "name":"南の海deかいほうカ~ン♪"
- },
- {
- "value":"10243",
- "name":"天下布武"
- },
- {
- "value":"10244",
- "name":"エイプリルフゥー↑↑↑"
- },
- {
- "value":"10245",
- "name":"コバルト"
- },
- {
- "value":"10246",
- "name":"ダンデライオン"
- },
- {
- "value":"10247",
- "name":"シアン"
- },
- {
- "value":"10248",
- "name":"スカーレット"
- },
- {
- "value":"10249",
- "name":"コーラル"
- },
- {
- "value":"10250",
- "name":"アルジェント"
- },
- {
- "value":"10251",
- "name":"エルドラ"
- },
- {
- "value":"10252",
- "name":"クリムゾン"
- },
- {
- "value":"10253",
- "name":"インペリアル"
- },
- {
- "value":"10254",
- "name":"シェンナ"
- },
- {
- "value":"10255",
- "name":"鬼業"
- },
- {
- "value":"10256",
- "name":"ごっといずかも"
- },
- {
- "value":"10257",
- "name":"復帰しました"
- },
- {
- "value":"10258",
- "name":"期待の新人"
- },
- {
- "value":"10259",
- "name":"ビビッとキター!"
- },
- {
- "value":"10260",
- "name":"臨場感3200%"
- },
- {
- "value":"10261",
- "name":"STARLiGHT"
- },
- {
- "value":"10262",
- "name":"キミの音色で輝ける世界を――!!"
- },
- {
- "value":"10263",
- "name":"さあ、奇跡の向こう側へ。"
- },
- {
- "value":"10264",
- "name":"世界の新鋭"
- },
- {
- "value":"10265",
- "name":"永遠と須臾を操る程度の能力"
- },
- {
- "value":"10266",
- "name":"言葉にできない、この気持ちは。"
- },
- {
- "value":"10267",
- "name":"その威光、無垢なりて無慈悲なり。"
- },
- {
- "value":"10268",
- "name":"キミと繋がる未来の舞台"
- },
- {
- "value":"10269",
- "name":"百度参り"
- },
- {
- "value":"10270",
- "name":"悟りの境地"
- },
- {
- "value":"10271",
- "name":"パラダイス始めました"
- },
- {
- "value":"10272",
- "name":"ミクスチャー"
- },
- {
- "value":"10273",
- "name":"変幻自在"
- },
- {
- "value":"10274",
- "name":"アルティメットハーモニー"
- },
- {
- "value":"10275",
- "name":"TOHOMATION PARADISE"
- },
- {
- "value":"10276",
- "name":"FLOOR ANTHEM"
- },
- {
- "value":"10277",
- "name":"スピードスター"
- },
- {
- "value":"10278",
- "name":"スローライフ"
- },
- {
- "value":"10279",
- "name":"駆け出しブラスター"
- },
- {
- "value":"10280",
- "name":"衝 壁 撃 破"
- },
- {
- "value":"10281",
- "name":"ピチピチスーツ"
- },
- {
- "value":"10282",
- "name":"血を贄に。心は鉄に。永劫続く“航海”を。"
- },
- {
- "value":"10283",
- "name":"狂宴の魍魎、此処に集結せり。"
- },
- {
- "value":"10284",
- "name":"人類が残すべき尊い感情を。"
- },
- {
- "value":"10285",
- "name":"なみだあふれる、ゆめをみた。"
- },
- {
- "value":"10286",
- "name":"ココロかよわす、ものがたり。"
- },
- {
- "value":"10287",
- "name":"天 地 開 闢"
- },
- {
- "value":"30001",
- "name":"炎の申し子"
- },
- {
- "value":"30002",
- "name":"King God Emperor of SDVX"
- },
- {
- "value":"30003",
- "name":"King of Lachryma"
- },
- {
- "value":"30004",
- "name":"特技:ラストで1ニア"
- },
- {
- "value":"30005",
- "name":"東の隠密"
- },
- {
- "value":"30006",
- "name":"グレイスを大好きな人"
- },
- {
- "value":"30007",
- "name":"The Rank of Black Emperor"
- },
- {
- "value":"30008",
- "name":"中部からの下剋上"
- },
- {
- "value":"30009",
- "name":"大口のワルツ"
- },
- {
- "value":"30010",
- "name":"KAC Champion"
- },
- {
- "value":"30011",
- "name":"(∩・v・)∩ノアだよ!"
- },
- {
- "value":"30012",
- "name":"天下四位の姫川P"
- },
- {
- "value":"30013",
- "name":"くろまく~"
- },
- {
- "value":"30014",
- "name":"KAC Champion"
- },
- {
- "value":"30015",
- "name":"今、ジュワユースって……?"
- },
- {
- "value":"30016",
- "name":"\さっとりーん/"
- },
- {
- "value":"30017",
- "name":"定時退社に失敗した男"
- },
- {
- "value":"30018",
- "name":"カリスマちびギャル"
- },
- {
- "value":"30019",
- "name":"Everlasting 沖田"
- },
- {
- "value":"30020",
- "name":"MEDIUMなフレンズ"
- },
- {
- "value":"30021",
- "name":"ワイトもそう思います。"
- },
- {
- "value":"30022",
- "name":"万年補欠枠"
- },
- {
- "value":"30023",
- "name":"町田からの襲来者"
- },
- {
- "value":"30024",
- "name":"土着神の頂点"
- },
- {
- "value":"30025",
- "name":"愛しさと切なさと城ヶ崎"
- },
- {
- "value":"30026",
- "name":"本厚木の王"
- },
- {
- "value":"30027",
- "name":"RANDOM OPTION Player"
- },
- {
- "value":"30028",
- "name":"バァー!!お腹減ったズラ!!"
- },
- {
- "value":"30029",
- "name":"BMI27.68"
- },
- {
- "value":"30030",
- "name":"紅い墨染"
- },
- {
- "value":"30031",
- "name":"脂っぽい料理大好き"
- },
- {
- "value":"30032",
- "name":"テスト期間の休日潰して来ました。"
- },
- {
- "value":"30033",
- "name":"メイメイ楽しい"
- },
- {
- "value":"30034",
- "name":"特技:つまみに突き指"
- },
- {
- "value":"30035",
- "name":"グレイスちゃんの腹心の部下"
- },
- {
- "value":"30036",
- "name":"卵割り検定七級不合格"
- },
- {
- "value":"30037",
- "name":"中部からの天元突破"
- },
- {
- "value":"30038",
- "name":"Respect for ぺのれり"
- },
- {
- "value":"30039",
- "name":"天下無双"
- },
- {
- "value":"30040",
- "name":"八戸のチューバ吹き"
- },
- {
- "value":"30041",
- "name":"神暴龍天"
- },
- {
- "value":"30042",
- "name":"(∩^-^)∩ニアだよー!"
- },
- {
- "value":"30043",
- "name":"出そうと思えば(王者の風格)"
- },
- {
- "value":"30044",
- "name":"神暴龍天"
- },
- {
- "value":"30045",
- "name":"今何度?World’s en度"
- },
- {
- "value":"30047",
- "name":"Angraecum"
- },
- {
- "value":"30048",
- "name":"リミットオーバーアクセルシンクロ"
- },
- {
- "value":"30049",
- "name":"クリスタライズシルバー"
- },
- {
- "value":"30050",
- "name":"アスナは俺が守る"
- },
- {
- "value":"30051",
- "name":"素晴らしき日々"
- },
- {
- "value":"30052",
- "name":"あ、自己ベ"
- },
- {
- "value":"30053",
- "name":"Determination."
- },
- {
- "value":"30054",
- "name":"なせば大抵なんとかなる!"
- },
- {
- "value":"30055",
- "name":"二代目天下無双"
- },
- {
- "value":"30056",
- "name":"音ゲー界のカリスマ"
- },
- {
- "value":"30058",
- "name":"三代目天下無双"
- },
- {
- "value":"30059",
- "name":"World Wakarimi Organization"
- },
- {
- "value":"30060",
- "name":"星の導火線"
- },
- {
- "value":"30061",
- "name":"大須の番人"
- },
- {
- "value":"30062",
- "name":"人の家で唐揚げを揚げるマン"
- },
- {
- "value":"30063",
- "name":"戦場の青木Twilight"
- },
- {
- "value":"30064",
- "name":"私今日"大吉"ですから"
- },
- {
- "value":"30065",
- "name":"アホなそめちゃん"
- },
- {
- "value":"30066",
- "name":"この世は弱肉強食!ボルテで負けても拳で潰す。"
- },
- {
- "value":"30067",
- "name":"jubeat Champion"
- },
- {
- "value":"30068",
- "name":"Who done it?!"
- },
- {
- "value":"30069",
- "name":"MINI"
- },
- {
- "value":"30071",
- "name":"第五のセフィラ†の従者"
- },
- {
- "value":"30072",
- "name":"ンパパBBQ"
- },
- {
- "value":"30073",
- "name":"Iシテイマス"
- },
- {
- "value":"30074",
- "name":"勇者部/手芸部所属"
- },
- {
- "value":"30075",
- "name":"おおきいおてて"
- },
- {
- "value":"30076",
- "name":"おいしいから大丈夫だよ~♪"
- },
- {
- "value":"30079",
- "name":"決勝ブロック参加者0人"
- },
- {
- "value":"30080",
- "name":"南瓜でも天婦羅でもなく"
- },
- {
- "value":"30081",
- "name":"北の影"
- },
- {
- "value":"30082",
- "name":"浪速の専属バーテンダー"
- },
- {
- "value":"30083",
- "name":"初見の神"
- },
- {
- "value":"30084",
- "name":"精度の乱れは心の乱れ"
- },
- {
- "value":"30085",
- "name":"ランダムを愛し、ランダムに取り憑かれた男"
- },
- {
- "value":"30086",
- "name":"好きなお花は椿"
- },
- {
- "value":"30087",
- "name":"揚げたてのとんかつに触ると熱い"
- },
- {
- "value":"30088",
- "name":"レベル20征服者"
- },
- {
- "value":"30089",
- "name":"プロ11段"
- },
- {
- "value":"30090",
- "name":"Bangkok' Burst"
- },
- {
- "value":"30091",
- "name":"The 9th KAC セミファイナリスト"
- },
- {
- "value":"40001",
- "name":"第十四回博麗神社例大祭"
- },
- {
- "value":"40002",
- "name":"第十五回博麗神社例大祭"
- },
- {
- "value":"40003",
- "name":"初代PCB勢"
- },
- {
- "value":"40004",
- "name":"初代PCB番長"
- },
- {
- "value":"40005",
- "name":"初代PCB将軍"
- },
- {
- "value":"40006",
- "name":"初代PCB大臣"
- },
- {
- "value":"40007",
- "name":"初代PCB王"
- },
- {
- "value":"40008",
- "name":"初代PCB神"
- },
- {
- "value":"40009",
- "name":"初代MIX勢"
- },
- {
- "value":"40010",
- "name":"初代MIX番長"
- },
- {
- "value":"40011",
- "name":"初代MIX将軍"
- },
- {
- "value":"40012",
- "name":"初代MIX大臣"
- },
- {
- "value":"40013",
- "name":"初代MIX王"
- },
- {
- "value":"40014",
- "name":"初代MIX神"
- },
- {
- "value":"40015",
- "name":"初代回転勢"
- },
- {
- "value":"40016",
- "name":"初代回転番長"
- },
- {
- "value":"40017",
- "name":"初代回転将軍"
- },
- {
- "value":"40018",
- "name":"初代回転大臣"
- },
- {
- "value":"40019",
- "name":"初代回転王"
- },
- {
- "value":"40020",
- "name":"初代回転神"
- },
- {
- "value":"40021",
- "name":"初代得点勢"
- },
- {
- "value":"40022",
- "name":"初代得点番長"
- },
- {
- "value":"40023",
- "name":"初代得点将軍"
- },
- {
- "value":"40024",
- "name":"初代得点大臣"
- },
- {
- "value":"40025",
- "name":"初代得点王"
- },
- {
- "value":"40026",
- "name":"初代得点神"
- },
- {
- "value":"40027",
- "name":"初代マッチング勢"
- },
- {
- "value":"40028",
- "name":"初代マッチング番長"
- },
- {
- "value":"40029",
- "name":"初代マッチング将軍"
- },
- {
- "value":"40030",
- "name":"初代マッチング大臣"
- },
- {
- "value":"40031",
- "name":"初代マッチング王"
- },
- {
- "value":"40032",
- "name":"初代マッチング神"
- },
- {
- "value":"50000",
- "name":"Custom"
- }
- ]
-}
\ No newline at end of file
diff --git a/sdvx@asphyxia/webui/asset/json/music_db.json b/sdvx@asphyxia/webui/asset/json/music_db.json
deleted file mode 100644
index 0e2cecd..0000000
--- a/sdvx@asphyxia/webui/asset/json/music_db.json
+++ /dev/null
@@ -1 +0,0 @@
-{"mdb": {"music": [{"@id": "1", "info": {"title_name": "ALBIDA Powerless Mix", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "2"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "2", "info": {"title_name": "Broken 8cmix", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "4"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "3", "info": {"title_name": "ヒマワリ MUZIK SERVANT Remix", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "10"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "4", "info": {"title_name": "凛として咲く花の如く スプーキィテルミィンミックス", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "2"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "1"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "6"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "11"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "15"}}}}, {"@id": "5", "info": {"title_name": "MAX 300 takamatt MIN REMIX", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "6", "info": {"title_name": "PULSE LASER", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "2"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "7", "info": {"title_name": "good high school", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "2"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "5"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "8"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "8", "info": {"title_name": "smooooch・∀・ KN mix", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "9", "info": {"title_name": "Love♡sicK", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "11"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "10", "info": {"title_name": "It's over", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "2"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "1"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "13"}}}}, {"@id": "11", "info": {"title_name": "ガッテンだ!! Novoiski Remix", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "11"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "12", "info": {"title_name": "ふしぎなくすり いっきのみっくす", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "6"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "11"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "13", "info": {"title_name": "Love♡Shine わんだふるmix", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "14", "info": {"title_name": "Evans VolteX Pf arrange", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "4"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "15", "info": {"title_name": "jet coaster☆girl sasakure.UK tRiCkStAr Remix", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "1"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "5"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "9"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "16", "info": {"title_name": "Ha・lle・lu・jah", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "2"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "15"}}}}, {"@id": "17", "info": {"title_name": "dilemma", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "6"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "10"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "18", "info": {"title_name": "Iterator", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "10"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "19", "info": {"title_name": "「月風魔伝」龍骨鬼戦 yks Remix", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "2"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "20", "info": {"title_name": "gentle stress wobble rmx", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "21", "info": {"title_name": "SurVALI", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "11"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "22", "info": {"title_name": "バタフライキャット", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "2"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "15"}}}}, {"@id": "23", "info": {"title_name": "ナナイロ", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "2"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "10"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "13"}}}}, {"@id": "24", "info": {"title_name": "西日暮里の踊り", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "2"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "25", "info": {"title_name": "Rebellious stage", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "2"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "6"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "10"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "13"}}}}, {"@id": "26", "info": {"title_name": "ごりらがいるんだ", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "2"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "15"}}}}, {"@id": "27", "info": {"title_name": "とある少年の一日", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "28", "info": {"title_name": "Vampire Killer scar-ed Pf rmx", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "6"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "29", "info": {"title_name": "遠く Dexholic Mix", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "6"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "11"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "30", "info": {"title_name": "Xepher Light and Darkness Dragon REMIX", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "31", "info": {"title_name": "Diamond Dust Black Diamond Dust", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "32", "info": {"title_name": "Second Heaven Lamaze-REMIX", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "33", "info": {"title_name": "RED ZONE NeoClassical Party Remix", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "34", "info": {"title_name": "サイコパスコミュニケーション", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "2"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "10"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "13"}}}}, {"@id": "35", "info": {"title_name": "candii", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "1"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "6"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "11"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "36", "info": {"title_name": "冥 Rockin' SWING REMIX", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "2"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "37", "info": {"title_name": "neu BSP style", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "39", "info": {"title_name": "TYCOON", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "2"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "40", "info": {"title_name": "不思議玩具ガンガラディンドン", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "41", "info": {"title_name": "U&M", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "5"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "8"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "42", "info": {"title_name": "ヤサイマシ☆ニンニクアブラオオメ", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "2"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "43", "info": {"title_name": "RPGシンドローム", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "44", "info": {"title_name": "世界はネコのもの", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "6"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "45", "info": {"title_name": "wound", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "11"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "47", "info": {"title_name": "FLOWER REDALiCE Remix", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "2"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "48", "info": {"title_name": "cloud", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "4"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "49", "info": {"title_name": "ソラヘドライブ", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "50", "info": {"title_name": "おにゃのこ きねんび", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "51", "info": {"title_name": "春色ポートレート", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "1"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "4"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "7"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "52", "info": {"title_name": "キミノメヲ", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "53", "info": {"title_name": "カーニバル", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "54", "info": {"title_name": "恋する☆宇宙戦争っ!! あばばばみっくす", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "2"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "15"}}}}, {"@id": "55", "info": {"title_name": "突撃!ガラスのニーソ姫! D.watt nu-denpa RMX", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "56", "info": {"title_name": "天ノ弱", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "2"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "57", "info": {"title_name": "君にエールを・・・! (DJ UTO REMIX)", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "58", "info": {"title_name": "Nyan Cat", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "2"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "59", "info": {"title_name": "caramel ribbon", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "2"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "1"}}, {"@id": "60", "info": {"title_name": "香港功夫大旋風", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "1"}}, {"@id": "61", "info": {"title_name": "レトロスペクティビリー・メリーゴーランド", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "1"}}, {"@id": "62", "info": {"title_name": "Space Diver Tama", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "4"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "1"}}, {"@id": "63", "info": {"title_name": "Onigo", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "4"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "1"}}, {"@id": "64", "info": {"title_name": "SOUL EXPLOSION", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "1"}}, {"@id": "65", "info": {"title_name": "サヨナラ・ヘヴン (かめりあ's NEKOMATAelectroRMX)", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "4"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "2"}}, {"@id": "66", "info": {"title_name": ".59 -BOOTH BOOST REMIX-", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "4"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "2"}}, {"@id": "67", "info": {"title_name": "Ignited Night burst", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "2"}}, {"@id": "68", "info": {"title_name": "Fire Strike", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "4"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "1"}}, {"@id": "69", "info": {"title_name": "World Vertex", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "1"}}, {"@id": "70", "info": {"title_name": "Distorted Floor", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "2"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "1"}}, {"@id": "71", "info": {"title_name": "freaky freak", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "1"}}, {"@id": "72", "info": {"title_name": "GAMBOL (dfk SLC rmx)", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "2"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "2"}}, {"@id": "73", "info": {"title_name": "Ganymede kamome mix", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "2"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "19"}}}, "tag": {"@id": "2"}}, {"@id": "74", "info": {"title_name": "SEED (DJ Noriken Remix)", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "2"}}, {"@id": "75", "info": {"title_name": "Clione Hommarju Remix", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "2"}}, {"@id": "76", "info": {"title_name": "炉心融解", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "2"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "11"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "13"}}}}, {"@id": "77", "info": {"title_name": "恋愛勇者", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "78", "info": {"title_name": "セツナトリップ", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "4"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "79", "info": {"title_name": "イカサマライフゲイム", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "4"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "80", "info": {"title_name": "六兆年と一夜物語", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "2"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "81", "info": {"title_name": "ハートブレイク・ヘッドライン", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "11"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "82", "info": {"title_name": "ポーカーフェイス", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "83", "info": {"title_name": "Black Board", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "84", "info": {"title_name": "再教育", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "9"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "85", "info": {"title_name": "dreamin' feat.Ryu☆", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "86", "info": {"title_name": "チルノのパーフェクトさんすう教室", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "2"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "87", "info": {"title_name": "Bad Apple!! feat. nomico", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "2"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "88", "info": {"title_name": "Grip & Break down !! - SDVX Edit. -", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "89", "info": {"title_name": "taboo tears you up 2008", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "90", "info": {"title_name": "月に叢雲華に風", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "2"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "15"}}}}, {"@id": "91", "info": {"title_name": "幻想のサテライト", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "4"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "92", "info": {"title_name": "明星ロケット", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "93", "info": {"title_name": "Runway Drive", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "11"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "94", "info": {"title_name": "Blue Rain Dustboxxxx RMX", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "4"}}, {"@id": "95", "info": {"title_name": "Abyss (sharp stepp remix)", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "4"}}, {"@id": "96", "info": {"title_name": "rainbow flyer -gratitude remix-", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "4"}}, {"@id": "97", "info": {"title_name": "Tomorrow Perfume (C-Show Remix)", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "4"}}, {"@id": "98", "info": {"title_name": "Tomorrow Perfume (tpz Despair Remix)", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "4"}}, {"@id": "99", "info": {"title_name": "Freeway Shuffle -More2 HAPPY Re-Mix-", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "4"}}, {"@id": "100", "info": {"title_name": "pandora (Maozon Remix)", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "4"}}, {"@id": "101", "info": {"title_name": "AA BlackY mix", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "2"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "4"}}, {"@id": "102", "info": {"title_name": "Soundscape", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "3"}}, {"@id": "103", "info": {"title_name": "Ray", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "4"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "3"}}, {"@id": "104", "info": {"title_name": "腐れ外道とチョコレゐト", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "4"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "105", "info": {"title_name": "十面相", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "106", "info": {"title_name": "ルートスフィア", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "1"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "6"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "11"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "107", "info": {"title_name": "人生リセットボタン", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "108", "info": {"title_name": "カミサマネジマキ", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "109", "info": {"title_name": "V.I.P.", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "4"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "5"}}, {"@id": "110", "info": {"title_name": "エスケープ・フロム・ディストピア", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "111", "info": {"title_name": "地球最後の告白を", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "112", "info": {"title_name": "ノイジーラバーソウル", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "113", "info": {"title_name": "チェックメイト", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "114", "info": {"title_name": "ディストピア・ジパング", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "115", "info": {"title_name": "EGG", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "7"}}, {"@id": "116", "info": {"title_name": "大宇宙ステージ", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "19"}}}, "tag": {"@id": "7"}}, {"@id": "117", "info": {"title_name": "Absurd Gaff", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "7"}}, {"@id": "118", "info": {"title_name": "VISION", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "7"}}, {"@id": "119", "info": {"title_name": "線香花火 SDVX edit", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "1"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "6"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "11"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "15"}}}, "tag": {"@id": "7"}}, {"@id": "120", "info": {"title_name": "TRIGGER★HAPPY", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "7"}}, {"@id": "121", "info": {"title_name": "éclair au chocolat", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "7"}}, {"@id": "122", "info": {"title_name": "PANIC HOLIC", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "7"}}, {"@id": "123", "info": {"title_name": "Dynasty", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "2"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "7"}}, {"@id": "124", "info": {"title_name": "croiX", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "2"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "7"}}, {"@id": "125", "info": {"title_name": "Gott", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "2"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "7"}}, {"@id": "126", "info": {"title_name": "Max Burning!!", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "2"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "7"}}, {"@id": "127", "info": {"title_name": "Rot in hell!!", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "128", "info": {"title_name": "魔理沙は大変なものを盗んでいきました", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "129", "info": {"title_name": "究極焼肉レストラン!お燐の地獄亭!", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "130", "info": {"title_name": "ケロHdestiny", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "4"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "131", "info": {"title_name": "物凄い勢いでけーねが物凄いうた", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "132", "info": {"title_name": "色は匂へど散りぬるを", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "133", "info": {"title_name": "泡沫、哀のまほろば", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "134", "info": {"title_name": "ナイト・オブ・ナイツ", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "2"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "135", "info": {"title_name": "Help me, ERINNNNNN!!", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "136", "info": {"title_name": "DesireDrive", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "137", "info": {"title_name": "-Rayrain-", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "138", "info": {"title_name": "Silent Story", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "11"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "139", "info": {"title_name": "Wheel", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "4"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "140", "info": {"title_name": "秘封倶楽部の未踏世界", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "142", "info": {"title_name": "灰色の空想をつかんで", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "6"}}, {"@id": "143", "info": {"title_name": "MANDARA", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "6"}}, {"@id": "144", "info": {"title_name": "センチメント", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "1"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "10"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "6"}}, {"@id": "145", "info": {"title_name": "Disagree Feelings", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "6"}}, {"@id": "146", "info": {"title_name": "ナツノメイロ", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "6"}}, {"@id": "147", "info": {"title_name": "true feeling?~本当の気持ち♪~", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "6"}}, {"@id": "148", "info": {"title_name": "夕焼のナパーム (SDVX Edit)", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "6"}}, {"@id": "149", "info": {"title_name": "境界インサニティー", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "6"}}, {"@id": "150", "info": {"title_name": "BlueSky", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "6"}}, {"@id": "151", "info": {"title_name": "金縛りの逢を", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "4"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "6"}}, {"@id": "152", "info": {"title_name": "Earthquake Super Shock - SDVX Edit. -", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "153", "info": {"title_name": "一途な片思い、実らせたい小さな幸せ。", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "154", "info": {"title_name": "ケッペキショウ", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "155", "info": {"title_name": "過食性:アイドル症候群", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "2"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "157", "info": {"title_name": "サンドリヨン", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "158", "info": {"title_name": "こちら、幸福安心委員会です。", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "159", "info": {"title_name": "十面相(フリーダムver.)", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "160", "info": {"title_name": "サリシノハラ", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "161", "info": {"title_name": "僕たちは此処にいる", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "8"}}, {"@id": "162", "info": {"title_name": "Life is Beautiful", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "8"}}, {"@id": "163", "info": {"title_name": "draw!!!!", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "8"}}, {"@id": "164", "info": {"title_name": "超恋愛☆エクストリーム・ガール", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "8"}}, {"@id": "165", "info": {"title_name": "Hello world!", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "8"}}, {"@id": "166", "info": {"title_name": "The world of sound", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "4"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "8"}}, {"@id": "167", "info": {"title_name": "STARDUST MERMAID", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "1"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "8"}}, {"@id": "168", "info": {"title_name": "七色のウタ", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "8"}}, {"@id": "169", "info": {"title_name": "ずっとそばにいさせてよね!", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "8"}}, {"@id": "170", "info": {"title_name": "ルービックキューブ", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "171", "info": {"title_name": "非公開日誌", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "172", "info": {"title_name": "ドロボウナイトトリック", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "173", "info": {"title_name": "孤独の番人", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "4"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "174", "info": {"title_name": "仇返しシンドローム", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "175", "info": {"title_name": "トーキョープレジャーグラウンド", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "176", "info": {"title_name": "ワールド・ランプシェード", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "1"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "177", "info": {"title_name": "ファンタジースター", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "178", "info": {"title_name": "木彫り鯰と右肩ゾンビ", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "180", "info": {"title_name": "最終鬼畜妹フランドール・S", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "181", "info": {"title_name": "星霜輪廻~Repeat~", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "182", "info": {"title_name": "待チ人ハ来ズ。", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "183", "info": {"title_name": "ウサテイ", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "184", "info": {"title_name": "魔境堕天録サリエル", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "4"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "185", "info": {"title_name": "Starlight Vision", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "186", "info": {"title_name": "エピクロスの虹はもう見えない", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "1"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "187", "info": {"title_name": "Strawberry Crisis", "version": {"@__type": "u8", "#text": "1"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "188", "info": {"title_name": "東方妖々夢 ~the maximum moving about~", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "189", "info": {"title_name": "神々の祈り", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "1"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "10"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "190", "info": {"title_name": "蒼空に舞え、墨染の桜", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "1"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "6"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "11"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "191", "info": {"title_name": "Shiny Up!", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "192", "info": {"title_name": "Virtual Sunrise", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "194", "info": {"title_name": "つぶやき魔法少女りむる", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "195", "info": {"title_name": "サイバーサンダーサイダー", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "1"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "196", "info": {"title_name": "SCAPEGOAT BOY - SDVX Edit. -", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "198", "info": {"title_name": "天狗の落とし文 feat. ytr", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "199", "info": {"title_name": "アノ華咲クヤ", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "200", "info": {"title_name": "Keep Going!", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "201", "info": {"title_name": "Two Fates", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "6"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "11"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "202", "info": {"title_name": "げきオコスティックファイナリアリティぷんぷんマスタースパーク", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "203", "info": {"title_name": "Antinomie (SDVX EDIT)", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "204", "info": {"title_name": "Power of Battle (SDVX EDIT)", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "205", "info": {"title_name": "concon (picom'n'bass rmx)", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "9"}}, {"@id": "206", "info": {"title_name": "Daily Lunch Special ~DeliciousREMIX~", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "9"}}, {"@id": "207", "info": {"title_name": "Daily Lunch Special (tpz Overcute Remix)", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "9"}}, {"@id": "208", "info": {"title_name": "DEADLOCK XXX", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "9"}}, {"@id": "209", "info": {"title_name": "Fly to Next World (syzfonics Remix)", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "9"}}, {"@id": "210", "info": {"title_name": "Mother Ship (C-YA MIX)", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "9"}}, {"@id": "211", "info": {"title_name": "Sakura Reflection (P*Light Slayer Remix)", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "9"}}, {"@id": "212", "info": {"title_name": "Sakura Reflection 音頭 -盆踊Remix-", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "9"}}, {"@id": "213", "info": {"title_name": "She is my wife すーぱーアイドル☆ミツル子Remixちゃん", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "9"}}, {"@id": "214", "info": {"title_name": "snow storm -euphoria-", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "19"}}}, "tag": {"@id": "9"}}, {"@id": "215", "info": {"title_name": "Survival Games (Hommarju Remix)", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "9"}}, {"@id": "216", "info": {"title_name": "Unicorn tail Dustboxxxx RMX", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "9"}}, {"@id": "217", "info": {"title_name": "UNLIMITED FIRE (DJ Amane Remix)", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "9"}}, {"@id": "218", "info": {"title_name": "アルストロメリア KURO-HACO Remix", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "9"}}, {"@id": "219", "info": {"title_name": "カラルの月 Verdammt Remix", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "9"}}, {"@id": "220", "info": {"title_name": "音楽 -壊音楽 mix-", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "9"}}, {"@id": "221", "info": {"title_name": "音楽 -resolve-", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "19"}}}, "tag": {"@id": "9"}}, {"@id": "222", "info": {"title_name": "隅田川夏恋歌 (I/O Angel mix)", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "9"}}, {"@id": "223", "info": {"title_name": "少年は空を辿る Prog Piano Remix", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "9"}}, {"@id": "224", "info": {"title_name": "WobbleTangleFestival", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "10"}}, {"@id": "225", "info": {"title_name": "Next infection", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "10"}}, {"@id": "226", "info": {"title_name": "DELETED MOTION", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "10"}}, {"@id": "227", "info": {"title_name": "Tomato Leaf Breaks", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "10"}}, {"@id": "228", "info": {"title_name": "C18H27NO3", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "4"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "10"}}, {"@id": "229", "info": {"title_name": "Booths of Fighters", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "4"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "19"}}}, "tag": {"@id": "10"}}, {"@id": "230", "info": {"title_name": "Party Stream !!", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "10"}}, {"@id": "231", "info": {"title_name": "honey trap", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "10"}}, {"@id": "232", "info": {"title_name": "悪いところがひとつもない!", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "10"}}, {"@id": "233", "info": {"title_name": "L4TS", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "234", "info": {"title_name": "デストロイマーチ", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "10"}}, {"@id": "235", "info": {"title_name": "青春☆してるかい?READY&LADY!", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "10"}}, {"@id": "236", "info": {"title_name": "Goodbye-bye Planet", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "10"}}, {"@id": "237", "info": {"title_name": "dream control", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "11"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "10"}}, {"@id": "238", "info": {"title_name": "自由のための不自由", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "11"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "10"}}, {"@id": "239", "info": {"title_name": "Foolish Hero", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "10"}}, {"@id": "240", "info": {"title_name": "VERSUS!!", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "10"}}, {"@id": "241", "info": {"title_name": "Lieselotte", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "10"}}, {"@id": "242", "info": {"title_name": "サヨナラデイズ", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "10"}}, {"@id": "243", "info": {"title_name": "skyful of stars-SDVX EDIT-", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "10"}}, {"@id": "244", "info": {"title_name": "Brain Power", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "245", "info": {"title_name": "Smile", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "10"}}, {"@id": "246", "info": {"title_name": "Voice 2 Voice", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "10"}}, {"@id": "247", "info": {"title_name": "Joyeuse", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "10"}}, {"@id": "248", "info": {"title_name": "Diffused Reflection", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "10"}}, {"@id": "249", "info": {"title_name": "届け!シューティングスター☆", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "250", "info": {"title_name": "Crack Traxxxx", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "10"}}, {"@id": "251", "info": {"title_name": "Double Universe", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "10"}}, {"@id": "252", "info": {"title_name": "Qubism", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "4"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "10"}}, {"@id": "253", "info": {"title_name": "ませまてぃっく♥ま+ま=まじっく!", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "10"}}, {"@id": "254", "info": {"title_name": "HAPPY HEART BEAT", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "10"}}, {"@id": "255", "info": {"title_name": "Dawn of Asia", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "10"}}, {"@id": "256", "info": {"title_name": "OVERDRIVERS", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "10"}}, {"@id": "257", "info": {"title_name": "En FIRE-G SOUL", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "10"}}, {"@id": "258", "info": {"title_name": "XROSS INFECTION", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "19"}}}, "tag": {"@id": "10"}}, {"@id": "259", "info": {"title_name": "Quietus Ray", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "4"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "19"}}}, "tag": {"@id": "10"}}, {"@id": "260", "info": {"title_name": "GIGI BABA", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "10"}}, {"@id": "261", "info": {"title_name": "Vindicator", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "10"}}, {"@id": "262", "info": {"title_name": "華陽炎-Hana Kagerou-", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "10"}}, {"@id": "263", "info": {"title_name": "Starlight Express", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "10"}}, {"@id": "264", "info": {"title_name": "獣性オーバーフロウ", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "10"}}, {"@id": "265", "info": {"title_name": "Raptate", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "10"}}, {"@id": "266", "info": {"title_name": "殯", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "10"}}, {"@id": "267", "info": {"title_name": "INFINITY OVERDRIVE", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "10"}}, {"@id": "268", "info": {"title_name": "GEROL", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "10"}}, {"@id": "269", "info": {"title_name": "HAELEQUIN", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "10"}}, {"@id": "271", "info": {"title_name": "VALLIS-NERIA", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "272", "info": {"title_name": "I'm so Happy", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "273", "info": {"title_name": "ラクガキスト", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "274", "info": {"title_name": "HΨ=世界創造=EΨ", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "275", "info": {"title_name": "ロストワンの号哭", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "276", "info": {"title_name": "Bad ∞ End ∞ Night", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "277", "info": {"title_name": "迷妄少年と小世界", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "278", "info": {"title_name": "いーあるふぁんくらぶ", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "279", "info": {"title_name": "トリノコシティ", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "280", "info": {"title_name": "え?あぁ、そう。", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "281", "info": {"title_name": "ネトゲ廃人シュプレヒコール", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "282", "info": {"title_name": "BabeL ~Next Story~", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "283", "info": {"title_name": "Hail Storm", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "285", "info": {"title_name": "Catadioptric", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "11"}}, {"@id": "286", "info": {"title_name": "Electric \"Sister\" Bitch", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "11"}}, {"@id": "287", "info": {"title_name": "U.N.オーエンは彼女なのか?(TO-HOlic mix)", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "11"}}, {"@id": "288", "info": {"title_name": "U.N. Owen was her? (Hyuji Remix)", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "11"}}, {"@id": "289", "info": {"title_name": "U.N.オーエンは彼女なのか?haru_naba Remix", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "11"}}, {"@id": "290", "info": {"title_name": "ワヴル魔法図書館", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "11"}}, {"@id": "291", "info": {"title_name": "愛くるしフール -Not EASY!!-", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "11"}}, {"@id": "292", "info": {"title_name": "やばいつよくてあたまいいあたいのうた", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "11"}}, {"@id": "293", "info": {"title_name": "Cirno Break", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "11"}}, {"@id": "294", "info": {"title_name": "Devotion", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "11"}}, {"@id": "295", "info": {"title_name": "おお われら喜び讃うべし、主よ", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "11"}}, {"@id": "296", "info": {"title_name": "Silver Impact", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "11"}}, {"@id": "297", "info": {"title_name": "Venona", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "11"}}, {"@id": "298", "info": {"title_name": "Over the Starlit sky", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "11"}}, {"@id": "299", "info": {"title_name": "#Fairy_dancing_in_lake", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "11"}}, {"@id": "300", "info": {"title_name": "Lunatic Rough Party!!", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "11"}}, {"@id": "301", "info": {"title_name": "ルーネイトエルフ(Riz Mix)", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "11"}}, {"@id": "302", "info": {"title_name": "Lunartic Dial", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "11"}}, {"@id": "303", "info": {"title_name": "夢の空、約束の場所", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "11"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "11"}}, {"@id": "304", "info": {"title_name": "上海紅茶館 ~ Chinese Tea Orchid Remix", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "11"}}, {"@id": "305", "info": {"title_name": "赤より紅い夢 -lucid dream Mix-", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "11"}}, {"@id": "306", "info": {"title_name": "赤より紅い夢-Aya2g Tech Dance Remix-", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "11"}}, {"@id": "307", "info": {"title_name": "We Are The Scarlet (SDVX Edit)", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "11"}}, {"@id": "308", "info": {"title_name": "INVITATION SiGN -SDVX Version-", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "309", "info": {"title_name": "太陽はやめて!ぼくらのスカーレット警察", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "11"}}, {"@id": "310", "info": {"title_name": "魔法少女達の百年祭(masty core remix)", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "11"}}, {"@id": "311", "info": {"title_name": "モモンが門番ばんっ☆", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "11"}}, {"@id": "312", "info": {"title_name": "Indomitable Spirit", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "11"}}, {"@id": "313", "info": {"title_name": "桜華月想-SDVX EDIT-", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "11"}}, {"@id": "314", "info": {"title_name": "Darkness Pleasure", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "11"}}, {"@id": "315", "info": {"title_name": "恋はどう?モロ◎波動OK☆方程式!!", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "316", "info": {"title_name": "Playing With Fire", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "317", "info": {"title_name": "ありふれたせかいせいふく", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "318", "info": {"title_name": "ハローラフター", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "319", "info": {"title_name": "ユクエシレズ", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "320", "info": {"title_name": "曾根崎心中", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "321", "info": {"title_name": "8 -eight-", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "322", "info": {"title_name": "放課後ストライド", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "4"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "323", "info": {"title_name": "マネマネサイコトロピック", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "324", "info": {"title_name": "True Blue", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "325", "info": {"title_name": "- dirty rouge -", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "12"}}, {"@id": "326", "info": {"title_name": "コンベア速度Max!? しゃいにん☆廻転ズシ\"Sushi&Peace\"", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "12"}}, {"@id": "327", "info": {"title_name": "Shadows in the Light", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "12"}}, {"@id": "328", "info": {"title_name": "Future MUSiC", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "12"}}, {"@id": "329", "info": {"title_name": "Decretum", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "12"}}, {"@id": "330", "info": {"title_name": "Paradoxy", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "12"}}, {"@id": "331", "info": {"title_name": "ゆうしゃのなつやすみ", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "12"}}, {"@id": "332", "info": {"title_name": "crazy cinema story", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "12"}}, {"@id": "333", "info": {"title_name": "ムーニャポヨポヨスッポコニャーゴ", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "12"}}, {"@id": "334", "info": {"title_name": "Demetel", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "12"}}, {"@id": "335", "info": {"title_name": "will o' the wisp", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "12"}}, {"@id": "336", "info": {"title_name": "神となり彼が見た境界線", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "12"}}, {"@id": "337", "info": {"title_name": "snow motion", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "12"}}, {"@id": "338", "info": {"title_name": "嘘と接吻", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "12"}}, {"@id": "339", "info": {"title_name": "Innocent Tempest", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "19"}}}, "tag": {"@id": "12"}}, {"@id": "340", "info": {"title_name": "絢爛創世絵巻物", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "12"}}, {"@id": "341", "info": {"title_name": "雪女", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "12"}}, {"@id": "342", "info": {"title_name": "Fiat Lux", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "12"}}, {"@id": "343", "info": {"title_name": "Dignity", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "12"}}, {"@id": "344", "info": {"title_name": "LEMON SUMMER", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "12"}}, {"@id": "345", "info": {"title_name": "Profession", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "12"}}, {"@id": "346", "info": {"title_name": "イゴモヨス=オムルのテーマによるブヨブヨ・スケッチの試み", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "12"}}, {"@id": "347", "info": {"title_name": "トラウィスカルパンテクートリ", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "12"}}, {"@id": "348", "info": {"title_name": "ボルテ体操第一", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "1"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "12"}}, {"@id": "349", "info": {"title_name": "Rings of Rainbow", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "12"}}, {"@id": "350", "info": {"title_name": "侵蝕コード:666 -今日ちょっと指(略-", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "12"}}, {"@id": "352", "info": {"title_name": "ゴーイング マイ ウェイ!", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "12"}}, {"@id": "353", "info": {"title_name": "BUBBLE RAVER", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "12"}}, {"@id": "354", "info": {"title_name": "タイムマシン", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "355", "info": {"title_name": "shiningray", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "1"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "356", "info": {"title_name": "クノイチでも恋がしたい", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "357", "info": {"title_name": "Last Battalion", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "14"}}, {"@id": "358", "info": {"title_name": "TrailBlazer", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "14"}}, {"@id": "359", "info": {"title_name": "choux à la crème", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "14"}}, {"@id": "360", "info": {"title_name": "Black Emperor", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "19"}}}, "tag": {"@id": "14"}}, {"@id": "361", "info": {"title_name": "take a step forward", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "4"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "14"}}, {"@id": "362", "info": {"title_name": "Harpuia", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "4"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "14"}}, {"@id": "363", "info": {"title_name": "Last Concerto", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "14"}}, {"@id": "364", "info": {"title_name": "Hellfire", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "14"}}, {"@id": "365", "info": {"title_name": "超越してしまった彼女と其を生み落した理由", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "4"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "14"}}, {"@id": "366", "info": {"title_name": "Bangin' Burst", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "19"}}}, "tag": {"@id": "14"}}, {"@id": "367", "info": {"title_name": "For UltraPlayers", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "4"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "19"}}}, "tag": {"@id": "14"}}, {"@id": "368", "info": {"title_name": "LittleGameStar", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "14"}}, {"@id": "369", "info": {"title_name": "EOS -INFINITE EDIT-", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "14"}}, {"@id": "370", "info": {"title_name": "Hoshizora Illumination", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "4"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "14"}}, {"@id": "372", "info": {"title_name": "odds and ends", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "14"}}, {"@id": "373", "info": {"title_name": "ウバワレ", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "14"}}, {"@id": "374", "info": {"title_name": "BLACK or WHITE?", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "19"}}}, "tag": {"@id": "14"}}, {"@id": "375", "info": {"title_name": "Erlung", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "14"}}, {"@id": "376", "info": {"title_name": "Verse IV", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "4"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "19"}}}, "tag": {"@id": "14"}}, {"@id": "377", "info": {"title_name": "はなむけ", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "4"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "14"}}, {"@id": "378", "info": {"title_name": "Stella Sinistra", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "379", "info": {"title_name": "マインド・ゲーム", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "380", "info": {"title_name": "PUNISHER", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "381", "info": {"title_name": "HYENA", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "382", "info": {"title_name": "WAVE", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "383", "info": {"title_name": "命のユースティティア", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "384", "info": {"title_name": "FLYING OUT TO THE SKY", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "13"}}, {"@id": "385", "info": {"title_name": "十六夜桜-Zakura-", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "13"}}, {"@id": "386", "info": {"title_name": "群青硝子のスピカ", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "13"}}, {"@id": "387", "info": {"title_name": "超爽快☆パッショネイト・フィーバー", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "13"}}, {"@id": "388", "info": {"title_name": "Arcadia", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "13"}}, {"@id": "389", "info": {"title_name": "デッドボヲルdeホームラン", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "390", "info": {"title_name": "轟け!恋のビーンボール!!", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "391", "info": {"title_name": "野球の遊び方 そしてその歴史 ~決定版~", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "392", "info": {"title_name": "Squeeze", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "393", "info": {"title_name": "IX", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "394", "info": {"title_name": "Engraved Mark", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "395", "info": {"title_name": "きょうもハレバレ", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "396", "info": {"title_name": "茅蜩モラトリアム", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "397", "info": {"title_name": "君と僕とその空白と", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "398", "info": {"title_name": "Liar World Monologue", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "15"}}, {"@id": "399", "info": {"title_name": "Unlimited Field", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "15"}}, {"@id": "400", "info": {"title_name": "流れ星と君の歌", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "15"}}, {"@id": "401", "info": {"title_name": "冬に桜が咲くようなキセキ。", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "15"}}, {"@id": "402", "info": {"title_name": "SPARKLING FANTASY", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "15"}}, {"@id": "403", "info": {"title_name": "REPLiCA", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "15"}}, {"@id": "404", "info": {"title_name": "mon$tage", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "15"}}, {"@id": "405", "info": {"title_name": "ぱられる", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "15"}}, {"@id": "406", "info": {"title_name": "カレクレンマ", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "15"}}, {"@id": "407", "info": {"title_name": "Pure Evil", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "408", "info": {"title_name": "KiLLeR MeRMaiD", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "16"}}, {"@id": "409", "info": {"title_name": "REVERSE LIMITED!(SDVX Edit)", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "16"}}, {"@id": "410", "info": {"title_name": "進め!イッスン軍団 -Rebellion of the Dwarfs-", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "411", "info": {"title_name": "wander+wonder+wand", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "16"}}, {"@id": "412", "info": {"title_name": "WAVE WAVE WAVE", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "16"}}, {"@id": "413", "info": {"title_name": "柳の下のデュラハン hard chaos mix", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "16"}}, {"@id": "414", "info": {"title_name": "Mist In Hell", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "16"}}, {"@id": "415", "info": {"title_name": "幻想浄瑠璃-Aya2g Tech Dance Remix-", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "16"}}, {"@id": "416", "info": {"title_name": "Attack on Dwarf", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "16"}}, {"@id": "417", "info": {"title_name": "Frantic Wolf", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "16"}}, {"@id": "418", "info": {"title_name": "werewolf howls.", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "16"}}, {"@id": "419", "info": {"title_name": "Mist Tek", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "16"}}, {"@id": "420", "info": {"title_name": "Little princess has no identity.", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "16"}}, {"@id": "421", "info": {"title_name": "Pristine Bigband", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "16"}}, {"@id": "422", "info": {"title_name": "Wave of Craze", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "16"}}, {"@id": "423", "info": {"title_name": "Flying!", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "16"}}, {"@id": "424", "info": {"title_name": "ゼンマイ恋時計(T.E.B Summer Mix)", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "425", "info": {"title_name": "SPARKING 2012", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "426", "info": {"title_name": "竹取飛翔", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "4"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "427", "info": {"title_name": "Mami Mami Zone", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "428", "info": {"title_name": "Phantasm Brigade", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "429", "info": {"title_name": "少女暴動", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "430", "info": {"title_name": "終点", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "431", "info": {"title_name": "Rebirth", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "432", "info": {"title_name": "患部で止まってすぐ溶ける ~ 狂気の優曇華院", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "2"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "433", "info": {"title_name": "ってゐ! ~えいえんてゐVer~", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "2"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "15"}}}}, {"@id": "434", "info": {"title_name": "NEXT BILLIONAIRE", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "435", "info": {"title_name": "夕立、君と隠れ処", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "436", "info": {"title_name": "八雲藍の唯心論", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "437", "info": {"title_name": "#FairyJoke #SDVX_Edit", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "438", "info": {"title_name": "Lemures Prelude", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "439", "info": {"title_name": "信仰は儚き人間の為に ~ Arr.Demetori", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "440", "info": {"title_name": "Get out of my sight", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "441", "info": {"title_name": "マスパでシュッ☆メイドウィッチまりさちゃん", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "442", "info": {"title_name": "幻想系世界修復少女", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "4"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "443", "info": {"title_name": "バンブーソード・ガール", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "4"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "444", "info": {"title_name": "Idola", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "4"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "445", "info": {"title_name": "shiny rainbow flower", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "17"}}, {"@id": "446", "info": {"title_name": "始まりへと続く帰り道", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "17"}}, {"@id": "447", "info": {"title_name": "I love you even now", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "17"}}, {"@id": "448", "info": {"title_name": "City Edge", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "17"}}, {"@id": "449", "info": {"title_name": "憂恋☆アクティベーション", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "17"}}, {"@id": "450", "info": {"title_name": "VILE CAT", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "17"}}, {"@id": "451", "info": {"title_name": "ドキドキ☆流星トラップガール!!", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "17"}}, {"@id": "452", "info": {"title_name": "アルテミス", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "17"}}, {"@id": "453", "info": {"title_name": "further the future", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "17"}}, {"@id": "454", "info": {"title_name": "Strobe♡Girl", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "17"}}, {"@id": "455", "info": {"title_name": "second spring storm", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "17"}}, {"@id": "456", "info": {"title_name": "断片Story", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "17"}}, {"@id": "457", "info": {"title_name": "Baby Sherry", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "17"}}, {"@id": "458", "info": {"title_name": "sweet dream", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "459", "info": {"title_name": "Opium and Purple haze", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "460", "info": {"title_name": "コミカルなミシャグジとラジエーション(PUNK IT ver.)", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "461", "info": {"title_name": "シャ ビ ドゥ 素敵な恋の魔法", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "462", "info": {"title_name": "Jump!", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "463", "info": {"title_name": "THUNDERCRACK", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "464", "info": {"title_name": "メイガスナイト ~ Arr.Demetori", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "465", "info": {"title_name": "無気力クーデター", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "466", "info": {"title_name": "有頂天ビバーチェ", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "467", "info": {"title_name": "僕は空気が嫁ない", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "468", "info": {"title_name": "悪性ロリィタマキャヴェリズム", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "469", "info": {"title_name": "幸せになれる隠しコマンドがあるらしい", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "470", "info": {"title_name": "イグジスタンス", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "471", "info": {"title_name": "しゅわスパ大作戦☆ - SDVX Edit. -", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "472", "info": {"title_name": "物凄い狂っとるフランちゃんが物凄いうた", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "473", "info": {"title_name": "最速最高シャッターガール", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "474", "info": {"title_name": "最果てのコトバ", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "475", "info": {"title_name": "SkyDrive!", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "476", "info": {"title_name": "リズの内心革命", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "2"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "477", "info": {"title_name": "Scene", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "478", "info": {"title_name": "キリトリセン", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "479", "info": {"title_name": "Sakura Mirage", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "480", "info": {"title_name": "ミライプリズム", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "2"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "11"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "15"}}}}, {"@id": "481", "info": {"title_name": "ナキムシロボ", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "482", "info": {"title_name": "ぼくらのタイムカプセル", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "483", "info": {"title_name": "白い雪のプリンセスは", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "484", "info": {"title_name": "鎖の少女", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "485", "info": {"title_name": "ナイフ", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "486", "info": {"title_name": "MEGANE", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "1"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "487", "info": {"title_name": "ハウトゥー世界征服", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "488", "info": {"title_name": "飛花落葉", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "489", "info": {"title_name": "しんでしまうとはなさけない!", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "490", "info": {"title_name": "月見夜ラビット", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "491", "info": {"title_name": "About me", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "492", "info": {"title_name": "Cleopatrysm", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "2"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "493", "info": {"title_name": "御千手メディテーション", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "2"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "494", "info": {"title_name": "KHAMEN BREAK", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "2"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "495", "info": {"title_name": "INSECTICIDE", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "4"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "496", "info": {"title_name": "FIRE FIRE(Kazmasa Remix)", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "18"}}, {"@id": "497", "info": {"title_name": "FIRE FIREは電気スウィングの夢を見るか?", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "18"}}, {"@id": "498", "info": {"title_name": "FIRE FIRE -DARK BLAZE REMIX-", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "18"}}, {"@id": "499", "info": {"title_name": "gigadelic (かめりあ's \"The TERA\" RMX)", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "18"}}, {"@id": "500", "info": {"title_name": "gigadelic -stance xxxx-", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "18"}}, {"@id": "501", "info": {"title_name": "gigadelic(m3rkAb4# R3m!x)", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "18"}}, {"@id": "502", "info": {"title_name": "Monkey Business(Band Edit.)", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "18"}}, {"@id": "503", "info": {"title_name": "Monkey Business (lapix Remix)", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "18"}}, {"@id": "504", "info": {"title_name": "Monkey Business -Satire mix-", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "18"}}, {"@id": "505", "info": {"title_name": "Our Faith (takdrive remix)", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "18"}}, {"@id": "506", "info": {"title_name": "Our Faith (Faithful MTL Remix)", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "18"}}, {"@id": "507", "info": {"title_name": "Pure Evil (Kobaryo FTN-Remix)", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "18"}}, {"@id": "508", "info": {"title_name": "Pure Evil-Aya2g Drm'n Tech Rmx-", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "18"}}, {"@id": "509", "info": {"title_name": "The Sampling Paradise (N-Driver Style)", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "18"}}, {"@id": "510", "info": {"title_name": "The Sampling Paradise (P*Light Remix)", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "18"}}, {"@id": "511", "info": {"title_name": "The Wind of Gold (folkcore remix)", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "18"}}, {"@id": "512", "info": {"title_name": "The Wind of Gold -HΔPPY MIX-", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "18"}}, {"@id": "513", "info": {"title_name": "The Wind of Gold(飛翔鳶 Remix)", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "18"}}, {"@id": "514", "info": {"title_name": "Virtual Sunrise (xac remix)", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "18"}}, {"@id": "515", "info": {"title_name": "Virtual Sunrise (nana's Festival EDM Remix) feat. Kanae Asaba", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "18"}}, {"@id": "516", "info": {"title_name": "Virtual Sunrise (MYTK Remix)", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "18"}}, {"@id": "517", "info": {"title_name": "Wuv U(pico/ustic rmx)", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "18"}}, {"@id": "518", "info": {"title_name": "Wuv U (Colorful QT3 nekomix)", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "18"}}, {"@id": "519", "info": {"title_name": "Wuv U -More2 HAPPY Re-Mix Special-", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "18"}}, {"@id": "520", "info": {"title_name": "Find the Answer", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "19"}}, {"@id": "521", "info": {"title_name": "はわわw!な展開っ!", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "19"}}, {"@id": "522", "info": {"title_name": "Seraphim", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "19"}}, {"@id": "523", "info": {"title_name": "君がいる場所へ", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "19"}}, {"@id": "524", "info": {"title_name": "Hustle Beat!!", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "19"}}, {"@id": "525", "info": {"title_name": "Growth Memories", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "19"}}}, "tag": {"@id": "19"}}, {"@id": "526", "info": {"title_name": "TU-MA-MI△ALL-NIGHTER", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "19"}}, {"@id": "527", "info": {"title_name": "My name is TSUMABUKI", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "19"}}, {"@id": "528", "info": {"title_name": "twilight signal", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "19"}}, {"@id": "529", "info": {"title_name": "F.K.S.", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "19"}}, {"@id": "530", "info": {"title_name": "Twin Blaster", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "19"}}, {"@id": "531", "info": {"title_name": "Violet Soul", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "19"}}, {"@id": "532", "info": {"title_name": "INF-B《L-aste-R》", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "19"}}}, "tag": {"@id": "19"}}, {"@id": "533", "info": {"title_name": "Princessどうかお願い!!", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "19"}}, {"@id": "534", "info": {"title_name": "トリコロール・ダイアリー", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "19"}}, {"@id": "535", "info": {"title_name": "きらきらタイム☆", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "19"}}, {"@id": "536", "info": {"title_name": "ちぇいす いん ざ さんしゃいん!!!", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "19"}}, {"@id": "537", "info": {"title_name": "CUTIE☆EX-DREAM", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "19"}}, {"@id": "538", "info": {"title_name": "Twin Rocket", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "19"}}, {"@id": "539", "info": {"title_name": "Happy Sensation", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "19"}}, {"@id": "540", "info": {"title_name": "Wish upon Twin Stars", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "19"}}, {"@id": "541", "info": {"title_name": "Milkyway - memorable -", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "19"}}, {"@id": "542", "info": {"title_name": "CODE -CRiMSON-", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "19"}}, {"@id": "543", "info": {"title_name": "Warriors Aboot", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "19"}}, {"@id": "544", "info": {"title_name": "Poison Blood", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "19"}}, {"@id": "545", "info": {"title_name": "感情Xerography", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "19"}}, {"@id": "546", "info": {"title_name": "AYAKASHI", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "19"}}, {"@id": "547", "info": {"title_name": "紅の剣舞", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "19"}}, {"@id": "548", "info": {"title_name": "Appliqué", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "19"}}, {"@id": "549", "info": {"title_name": "Sourire", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "19"}}, {"@id": "550", "info": {"title_name": "The setting sun", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "19"}}, {"@id": "551", "info": {"title_name": "Firestorm", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "19"}}, {"@id": "552", "info": {"title_name": "朱と碧のランページ", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "553", "info": {"title_name": "打打打打打打打打打打", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "2"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "554", "info": {"title_name": "キミヱゴサーチ", "version": {"@__type": "u8", "#text": "2"}, "inf_ver": {"@__type": "u8", "#text": "2"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "11"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "555", "info": {"title_name": "双翼 - Black Wings - SDVX Edit. -", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "556", "info": {"title_name": "Scream out! (SDVX EDIT)", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "557", "info": {"title_name": "囲い無き世は一期の月影", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "558", "info": {"title_name": "弾幕注意報2014", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "559", "info": {"title_name": "君色サブリミナル(Arranged: Iceon)", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "560", "info": {"title_name": "Paranoia", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "561", "info": {"title_name": "Pieces", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "1"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "562", "info": {"title_name": "Liminality", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "563", "info": {"title_name": "Innocent Eyes", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "564", "info": {"title_name": "The Starry true", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "565", "info": {"title_name": "木彫り鯰と右肩ゾンビ", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "566", "info": {"title_name": "シリョクケンサ", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "567", "info": {"title_name": "ツギハギスタッカート", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "568", "info": {"title_name": "星屑ユートピア", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "569", "info": {"title_name": "Just Be Friends", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "570", "info": {"title_name": "Crazy ∞ nighT", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "571", "info": {"title_name": "心臓デモクラシー", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "572", "info": {"title_name": "深海シティアンダーグラウンド", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "573", "info": {"title_name": "気まぐれスターダム", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "574", "info": {"title_name": "あれこれそれどれ", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "575", "info": {"title_name": "脱獄", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "576", "info": {"title_name": "鬼KYOKAN", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "579", "info": {"title_name": "ポメグラネイト", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "580", "info": {"title_name": "Vampire's Territory", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "20"}}, {"@id": "581", "info": {"title_name": "Borealis", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "20"}}, {"@id": "582", "info": {"title_name": "bloom", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "20"}}, {"@id": "583", "info": {"title_name": "ぼくらしかしらない", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "20"}}, {"@id": "584", "info": {"title_name": "零れる夢のレミニセンス", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "20"}}, {"@id": "585", "info": {"title_name": "瞬間ドリップ♪秘蜜のケーキセット", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "20"}}, {"@id": "586", "info": {"title_name": "The willow and snow", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "20"}}, {"@id": "587", "info": {"title_name": "Discloze", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "20"}}, {"@id": "588", "info": {"title_name": "Lovesick Lovetune", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "20"}}, {"@id": "589", "info": {"title_name": "One & Only", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "20"}}, {"@id": "590", "info": {"title_name": "disco KAWAii", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "20"}}, {"@id": "591", "info": {"title_name": "Hyper☆Chipspace", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "20"}}, {"@id": "592", "info": {"title_name": "6弦とピアノのためのエチュード op.4", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "20"}}, {"@id": "593", "info": {"title_name": "Pon-Pon-Pompoko Dai-Sen-Saw!", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "20"}}, {"@id": "594", "info": {"title_name": "macaron", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "20"}}, {"@id": "595", "info": {"title_name": "Shanghai Wu Long ~上海舞龍~", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "20"}}, {"@id": "596", "info": {"title_name": "Belly Flopper", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "20"}}, {"@id": "597", "info": {"title_name": "tricky trick", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "20"}}, {"@id": "598", "info": {"title_name": "Pet Peeve", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "20"}}, {"@id": "599", "info": {"title_name": "Never Regret Anything", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "20"}}, {"@id": "600", "info": {"title_name": "UnivEarth", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "20"}}, {"@id": "601", "info": {"title_name": "Liming Light", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "20"}}, {"@id": "602", "info": {"title_name": "ハナビラ:リンクス", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "20"}}, {"@id": "603", "info": {"title_name": "Le ××××", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "20"}}, {"@id": "604", "info": {"title_name": "Rubeus", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "20"}}, {"@id": "605", "info": {"title_name": "New Days", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "20"}}, {"@id": "606", "info": {"title_name": "Innocent Floor", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "20"}}, {"@id": "607", "info": {"title_name": "Scarlet Pinheel", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "20"}}, {"@id": "608", "info": {"title_name": "ドゥンガドゥンガ狂詩曲", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "20"}}, {"@id": "609", "info": {"title_name": "好きトキメキとキス", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "20"}}, {"@id": "610", "info": {"title_name": "veRtrageS", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "20"}}, {"@id": "611", "info": {"title_name": "じゅーじゅー♥焼肉の火からフェニックス!?~再誕の†炭火焼き~", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "20"}}, {"@id": "612", "info": {"title_name": "Le Fruit Défendu", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "20"}}, {"@id": "614", "info": {"title_name": "BOUNCE BOUNCE BOUNCE", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "20"}}, {"@id": "615", "info": {"title_name": "Witch in Sweetsland", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "20"}}, {"@id": "616", "info": {"title_name": "Cold Inflation", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "20"}}, {"@id": "617", "info": {"title_name": "ネメシス SDVX Edit", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "20"}}, {"@id": "618", "info": {"title_name": "恋愛方程式", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "20"}}, {"@id": "619", "info": {"title_name": "ON FIRE", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "20"}}, {"@id": "620", "info": {"title_name": "ギャラクシィ・トラベラー", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "20"}}, {"@id": "621", "info": {"title_name": "時計仕掛けのメリーゴーランド", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "20"}}, {"@id": "622", "info": {"title_name": "Prelude-Hereafter-", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "20"}}, {"@id": "623", "info": {"title_name": "False Cross", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "20"}}, {"@id": "624", "info": {"title_name": "ツーマンライブ", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "625", "info": {"title_name": "INDEPENDENT SKY", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "626", "info": {"title_name": "鬼天", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "627", "info": {"title_name": "Go↓Go↑Girls&Boys!", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "628", "info": {"title_name": "ショットガン・ラヴァーズ", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "629", "info": {"title_name": "TIEFSEE", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "630", "info": {"title_name": "CRITICAL LINE", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "631", "info": {"title_name": "星の器 feat. らっぷびと", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "632", "info": {"title_name": "Invitation from Mr.C", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "21"}}, {"@id": "633", "info": {"title_name": "2 MINUTES FIGHTERS", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "21"}}, {"@id": "634", "info": {"title_name": "LegenD.", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "21"}}, {"@id": "635", "info": {"title_name": "World's end", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "21"}}, {"@id": "636", "info": {"title_name": "Everlasting Message", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "19"}}}, "tag": {"@id": "21"}}, {"@id": "637", "info": {"title_name": "Shiawase Transmission", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "21"}}, {"@id": "638", "info": {"title_name": "Aliquam", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "21"}}, {"@id": "639", "info": {"title_name": "Oriental Blossom", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "21"}}, {"@id": "640", "info": {"title_name": "Stleq", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "21"}}, {"@id": "641", "info": {"title_name": "Backflow", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "21"}}, {"@id": "642", "info": {"title_name": "Sayonara Planet Wars", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "21"}}, {"@id": "643", "info": {"title_name": "Beyond the Sandstorm", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "21"}}, {"@id": "644", "info": {"title_name": "Asian Chip City", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "21"}}, {"@id": "645", "info": {"title_name": "冥天・ヘメロカリス", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "21"}}, {"@id": "646", "info": {"title_name": "FAKE STYLE II", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "21"}}, {"@id": "647", "info": {"title_name": "eternita", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "21"}}, {"@id": "648", "info": {"title_name": "Pieces of a Dream", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "21"}}, {"@id": "649", "info": {"title_name": "continew", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "21"}}, {"@id": "650", "info": {"title_name": "Chant du Cygne", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "21"}}, {"@id": "651", "info": {"title_name": "Blacksphere", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "21"}}, {"@id": "652", "info": {"title_name": "Ops:Code-Rapture-", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "21"}}, {"@id": "653", "info": {"title_name": "混乱少女♥そふらんちゃん!!", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "21"}}, {"@id": "654", "info": {"title_name": "XHAOS JUDGE", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "21"}}, {"@id": "655", "info": {"title_name": "Lucky*Clover", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "21"}}, {"@id": "656", "info": {"title_name": "cr壬e suzette", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "21"}}, {"@id": "657", "info": {"title_name": "到達してしまった僕らと夢と希望の最之果", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "21"}}, {"@id": "658", "info": {"title_name": "Nofram", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "21"}}, {"@id": "659", "info": {"title_name": "Never Ending", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "21"}}, {"@id": "660", "info": {"title_name": "キモチコネクト", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "661", "info": {"title_name": "KAC 2012 ULTIMATE MEDLEY -HISTORIA SOUND VOLTEX-", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "662", "info": {"title_name": "ECHO", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "663", "info": {"title_name": "M.A.Y.U.", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "664", "info": {"title_name": "ELECT", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "665", "info": {"title_name": "女言葉の消失", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "666", "info": {"title_name": "朝色の紙飛行機", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "667", "info": {"title_name": "NEON WORLD", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "668", "info": {"title_name": "Scarlet Moon", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "669", "info": {"title_name": "Russian Caravan Rhapsody", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "670", "info": {"title_name": "ほおずき程度には赤い頭髪", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "671", "info": {"title_name": "取り残された美術(Arranged:HiZuMi)", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "672", "info": {"title_name": "Struggle", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "673", "info": {"title_name": "ホメ猫☆センセーション", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "674", "info": {"title_name": "妖隠し -あやかしかくし-", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "675", "info": {"title_name": "BEAT-NEW-WORLD", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "676", "info": {"title_name": "プレインエイジア -PHQ remix-", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "677", "info": {"title_name": "竹取飛翔 ~ Lunatic Princess (Ryu☆Remix)", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "678", "info": {"title_name": "千年ノ理", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "679", "info": {"title_name": "HAVOX", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "680", "info": {"title_name": "量子の海のリントヴルム", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "681", "info": {"title_name": "EBONY & IVORY", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "682", "info": {"title_name": "パ→ピ→プ→Yeah!", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "683", "info": {"title_name": "無双", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "684", "info": {"title_name": "ロンロンへ ライライライ!", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "685", "info": {"title_name": "感情の魔天楼 ~ Arr.Demetori", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "686", "info": {"title_name": "In The Breeze", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "687", "info": {"title_name": "Sounds Of Summer", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "688", "info": {"title_name": "リカーシブ・ファンクション", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "689", "info": {"title_name": "TOXIC VIBRATION", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "690", "info": {"title_name": "citrus", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "691", "info": {"title_name": "夏色DIARY -Summer Dazzlin' Vacation miX-", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "692", "info": {"title_name": "ΑΩ", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "693", "info": {"title_name": "Blastix Riotz", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "694", "info": {"title_name": "Preserved Valkyria", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "695", "info": {"title_name": "XyHATTE", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "696", "info": {"title_name": "暴走", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "697", "info": {"title_name": "消失", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "698", "info": {"title_name": "灼熱Beach Side Bunny", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "699", "info": {"title_name": "ΕΛΠΙΣ", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "700", "info": {"title_name": "Starlight Dance Floor", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "701", "info": {"title_name": "Treasure", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "702", "info": {"title_name": "三つ数えろ", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "703", "info": {"title_name": "我楽多イノセンス", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "704", "info": {"title_name": "FLOWER", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "4"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "705", "info": {"title_name": "Got more raves?", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "4"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "706", "info": {"title_name": "きたさいたま2000", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "4"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "707", "info": {"title_name": "Garakuta Doll Play", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "4"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "708", "info": {"title_name": "マサカリブレイド", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "709", "info": {"title_name": "月光乱舞", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "710", "info": {"title_name": "めうめうぺったんたん!!", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "711", "info": {"title_name": "ちくわパフェだよ☆CKP", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "712", "info": {"title_name": "ホーンテッド★メイドランチ", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "713", "info": {"title_name": "都会征服Girls☆", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "714", "info": {"title_name": "滅亡天使 † にこきゅっぴん", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "715", "info": {"title_name": "HAELE III ~Angel Worlds~", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "716", "info": {"title_name": "Never Fails", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "717", "info": {"title_name": "ドーパミン", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "718", "info": {"title_name": "Ultimate Ascension", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "22"}}, {"@id": "719", "info": {"title_name": "Ultimate Fury", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "22"}}, {"@id": "720", "info": {"title_name": "アルティメットトゥルース -Phantasm-", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "22"}}, {"@id": "721", "info": {"title_name": "Shirogane", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "22"}}, {"@id": "722", "info": {"title_name": "常夏!!クリスタライズ・シャーベット", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "22"}}, {"@id": "723", "info": {"title_name": "-約束-", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "22"}}, {"@id": "724", "info": {"title_name": "ジャンピン・スマイル", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "22"}}, {"@id": "725", "info": {"title_name": "Angels And Demons", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "22"}}, {"@id": "726", "info": {"title_name": "Russet", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "22"}}, {"@id": "727", "info": {"title_name": "You Know-SDVX EDIT-", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "22"}}, {"@id": "728", "info": {"title_name": "NECRO PARTY", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "22"}}, {"@id": "729", "info": {"title_name": "Utopia", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "22"}}, {"@id": "730", "info": {"title_name": "そして紫の幻想曲は全てを受け入れる", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "22"}}, {"@id": "731", "info": {"title_name": "東方妖々夢 ULTIMATE MEDLEY", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "22"}}, {"@id": "732", "info": {"title_name": "spectroscape", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "22"}}, {"@id": "733", "info": {"title_name": "Deadly Dolly Dance", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "22"}}, {"@id": "734", "info": {"title_name": "lost chain", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "22"}}, {"@id": "735", "info": {"title_name": "Mayohiga Spurt", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "22"}}, {"@id": "736", "info": {"title_name": "Smooth Wind", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "22"}}, {"@id": "737", "info": {"title_name": "Question.", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "22"}}, {"@id": "738", "info": {"title_name": "Fabula Nova", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "22"}}, {"@id": "739", "info": {"title_name": "鳥と桜と嘴と", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "22"}}, {"@id": "740", "info": {"title_name": "Clash of swords", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "22"}}, {"@id": "741", "info": {"title_name": "人形裁判 -THIRD IMPACT-", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "22"}}, {"@id": "742", "info": {"title_name": "MAGATORO", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "22"}}, {"@id": "743", "info": {"title_name": "JEHANNEDARC", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "22"}}, {"@id": "744", "info": {"title_name": "ancient garden", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "22"}}, {"@id": "745", "info": {"title_name": "Issen", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "22"}}, {"@id": "746", "info": {"title_name": "S1CK_F41RY", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "22"}}, {"@id": "747", "info": {"title_name": "花ノ下連歌", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "22"}}, {"@id": "748", "info": {"title_name": "交渉人・西行寺幽々子 vs スカーレット警察", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "22"}}, {"@id": "749", "info": {"title_name": "Phantom dinning tonight!", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "22"}}, {"@id": "750", "info": {"title_name": "Phantom Ensemble (ゆんゆん Remix)", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "22"}}, {"@id": "751", "info": {"title_name": "ツインソウル~輪廻する旋律~", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "22"}}, {"@id": "752", "info": {"title_name": "ハイスピヰド・ランパンシヰ", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "22"}}, {"@id": "753", "info": {"title_name": "Spice Road", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "22"}}, {"@id": "754", "info": {"title_name": "モラトリアムノオト", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "23"}}, {"@id": "755", "info": {"title_name": "キズナ", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "23"}}, {"@id": "756", "info": {"title_name": "コンフェイト*コンチェルト", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "23"}}, {"@id": "757", "info": {"title_name": "「ここなつ☆」は夢のカタチ", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "23"}}, {"@id": "758", "info": {"title_name": "ムラサキグルマ", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "23"}}, {"@id": "759", "info": {"title_name": "千客万来☆無問題!", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "23"}}, {"@id": "760", "info": {"title_name": "アナーキーインザ夕景", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "23"}}, {"@id": "761", "info": {"title_name": "闇夜舞踏会 -緋碧と蝶のためのmasquerade-", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "23"}}, {"@id": "762", "info": {"title_name": "Finally Dive", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "23"}}, {"@id": "763", "info": {"title_name": "お嫁にしなさいっ!", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "764", "info": {"title_name": "響縁", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "765", "info": {"title_name": "斑鳩", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "766", "info": {"title_name": "Take to Lips", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "15"}}}}, {"@id": "767", "info": {"title_name": "Two of Us", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "768", "info": {"title_name": "メランコリック", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "1"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "769", "info": {"title_name": "みくみくにしてあげる♪【してやんよ】", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "770", "info": {"title_name": "ハッピーシンセサイザ", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "771", "info": {"title_name": "ダブルラリアット", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "772", "info": {"title_name": "Chloé", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "773", "info": {"title_name": "モンスターストライクメドレー(SDVX REMIX)", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "774", "info": {"title_name": "neko*neko", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "775", "info": {"title_name": "激アツ☆マジヤバ☆チアガール", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "776", "info": {"title_name": "漆黒のスペシャルプリンセスサンデー", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "777", "info": {"title_name": "地方創生☆チクワクティクス", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "778", "info": {"title_name": "フラッター現象の顛末と単一指向性の感情論", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "779", "info": {"title_name": "conflict", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "780", "info": {"title_name": "墨染 ft. ネコメアリ", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "781", "info": {"title_name": "Alice Maestera feat. nomico", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "10"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "14"}}}}, {"@id": "782", "info": {"title_name": "Dreaming feat. nomico", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "783", "info": {"title_name": "VOLTEXES", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "784", "info": {"title_name": "VOLTEXES II", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "785", "info": {"title_name": "VOLTEXES III", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "786", "info": {"title_name": "雲の彼方", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "24"}}, {"@id": "787", "info": {"title_name": "Candy Colored Hearts", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "24"}}, {"@id": "788", "info": {"title_name": "NEO GRAVITY", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "24"}}, {"@id": "789", "info": {"title_name": "End to end", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "24"}}, {"@id": "790", "info": {"title_name": "EMPIRE OF FLAME", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "24"}}, {"@id": "791", "info": {"title_name": "Lachryma《Re:Queen’M》", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "8"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "20"}}}, "tag": {"@id": "24"}}, {"@id": "792", "info": {"title_name": "Emperor's Divide", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "24"}}, {"@id": "793", "info": {"title_name": "↓↓↓", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "24"}}, {"@id": "794", "info": {"title_name": "REGALIA", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "24"}}, {"@id": "795", "info": {"title_name": "侍Annihilate!!", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "24"}}, {"@id": "796", "info": {"title_name": "The End of War", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "24"}}, {"@id": "797", "info": {"title_name": "Follow Up", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "24"}}, {"@id": "798", "info": {"title_name": "UROBØROS", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "24"}}, {"@id": "799", "info": {"title_name": "ゆうしゃのふゆやすみ", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "24"}}, {"@id": "800", "info": {"title_name": "ブチアゲドクター☆ハイテッコ三姉妹", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "24"}}, {"@id": "801", "info": {"title_name": "Apex of the World", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "24"}}, {"@id": "802", "info": {"title_name": "cross the future", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "24"}}, {"@id": "803", "info": {"title_name": "Prayer", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "24"}}, {"@id": "804", "info": {"title_name": "Enigma", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "24"}}, {"@id": "805", "info": {"title_name": "Quaint Echo", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "24"}}, {"@id": "806", "info": {"title_name": "Endless GRAVITY", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "24"}}, {"@id": "807", "info": {"title_name": "MG277", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "24"}}, {"@id": "808", "info": {"title_name": "GEOMETRIA", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "24"}}, {"@id": "809", "info": {"title_name": "#Endroll", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "24"}}, {"@id": "810", "info": {"title_name": "Demise Quartet", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "24"}}, {"@id": "811", "info": {"title_name": "Voynich:Manuscript", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "24"}}, {"@id": "812", "info": {"title_name": "eastward -sdvx edit-", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "24"}}, {"@id": "813", "info": {"title_name": "relegation grimoire", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "24"}}, {"@id": "814", "info": {"title_name": "Fox4-Raize-", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "24"}}, {"@id": "815", "info": {"title_name": "いつかの夢、またねの約束。", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "24"}}, {"@id": "816", "info": {"title_name": "REVOLVER", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "24"}}, {"@id": "817", "info": {"title_name": "Zero-Day Exploit", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "24"}}, {"@id": "818", "info": {"title_name": "IKAROS DYNAMITE!!!!", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "24"}}, {"@id": "819", "info": {"title_name": "伐折羅-vajra-", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "820", "info": {"title_name": "きゅん×きゅんばっきゅん☆LOVE", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "15"}}}}, {"@id": "821", "info": {"title_name": "しゅわスパ大作戦☆ (カシオれ!くーにゃんリミックス)", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "822", "info": {"title_name": "Help me, ERINNNNNN!! - SH Style -", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "823", "info": {"title_name": "チルノとまりおのパーフェクトさんすう教室", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "824", "info": {"title_name": "KAC 2013 ULTIMATE MEDLEY -HISTORIA SOUND VOLTEX- Emperor Side", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "825", "info": {"title_name": "Nexta", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "826", "info": {"title_name": "She is my wife", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "827", "info": {"title_name": "archive::zip", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "828", "info": {"title_name": "ERROR CODE", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "829", "info": {"title_name": "Inixia", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "830", "info": {"title_name": "Renegade Fruits", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "831", "info": {"title_name": "XROSS THE XOUL", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "832", "info": {"title_name": "0=Xerostrumental=", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "833", "info": {"title_name": "ANTI THE∞HOLiC", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "834", "info": {"title_name": "Aragami", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "835", "info": {"title_name": "Parousia", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "836", "info": {"title_name": "Halcyon", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "837", "info": {"title_name": "Virtual Bit", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "838", "info": {"title_name": "爆なな☆てすとロイヤー", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "839", "info": {"title_name": "アキネイション", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "840", "info": {"title_name": "グレイスちゃんの超~絶!!グラビティ講座w", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "0"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "0"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "0"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "1"}}}}, {"@id": "841", "info": {"title_name": "GO BACK 2 YOUR RAVE", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "842", "info": {"title_name": "B.B.K.K.B.K.K.", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "843", "info": {"title_name": "水月鏡花のコノテーション", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "844", "info": {"title_name": "カタルシスの月", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "845", "info": {"title_name": "滅びに至るエランプシス", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "846", "info": {"title_name": "虚空と光明のディスクール", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "847", "info": {"title_name": "黒髪乱れし修羅となりて~凛 edition~", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "848", "info": {"title_name": "Help me, ERINNNNNN!! -Cranky remix-", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "849", "info": {"title_name": "Help me, ERINNNNNN!! -VENUS mix-", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "850", "info": {"title_name": "仙酌絶唱のファンタジア", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "851", "info": {"title_name": "幻想郷DEMPASTICグリーティング", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "852", "info": {"title_name": "トラウマ催眠少女さとり!", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "853", "info": {"title_name": "断罪は遍く人間の元に", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "854", "info": {"title_name": "碧の疾風", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "855", "info": {"title_name": "GRISAILLE", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "856", "info": {"title_name": "Sweet little Lily", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "857", "info": {"title_name": "Discover the Life", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "858", "info": {"title_name": "ゲキツイムラサ", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "859", "info": {"title_name": "Solitude & Nightmare", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "860", "info": {"title_name": "Prominence", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "861", "info": {"title_name": "Nostalgia", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "15"}}}}, {"@id": "862", "info": {"title_name": "Death Blossom", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "863", "info": {"title_name": "CENSORED!!", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "864", "info": {"title_name": "或る春の日", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "865", "info": {"title_name": "善悪の頂にある真実", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "866", "info": {"title_name": "恋繋エピローグ", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "867", "info": {"title_name": "akasha-assembly", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "868", "info": {"title_name": "Everything but the Girl", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "869", "info": {"title_name": "crescent moon", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "870", "info": {"title_name": "Locus of Control", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "871", "info": {"title_name": "The star in eclipse", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "25"}}, {"@id": "872", "info": {"title_name": "Din Don Dan (Fusion Remix)", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "25"}}, {"@id": "873", "info": {"title_name": "Dualive", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "874", "info": {"title_name": "Critical Crystal(brz_remix)", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "25"}}, {"@id": "875", "info": {"title_name": "Mind Mapping (hard liquid remix)", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "25"}}, {"@id": "876", "info": {"title_name": "雪月花 -さわわRemix-", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "25"}}, {"@id": "877", "info": {"title_name": "Rebuilding of Paradise Lost", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "25"}}, {"@id": "878", "info": {"title_name": "Aurora(Latinized Style)", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "15"}}}, "tag": {"@id": "25"}}, {"@id": "879", "info": {"title_name": "Narcissus At Oasis (Freezer Remix)", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "25"}}, {"@id": "880", "info": {"title_name": "3y3s (JMBS FUNKOT RMX)", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "25"}}, {"@id": "881", "info": {"title_name": "405nm(Shu※mix)", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "25"}}, {"@id": "882", "info": {"title_name": "Engraved Mark-Gow's ill! RMX-", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "25"}}, {"@id": "883", "info": {"title_name": "Genesis At Oasis (Hirayasu Matsudo Remix)", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "25"}}, {"@id": "884", "info": {"title_name": "I'm so happy(Happy Hoppin Remix)", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "25"}}, {"@id": "885", "info": {"title_name": "Line 4 Ruin -kohumix-", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "25"}}, {"@id": "886", "info": {"title_name": "Mind Mapping(ag Remix)", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "25"}}, {"@id": "887", "info": {"title_name": "Narcissus At Oasis -影虎。 style-", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "25"}}, {"@id": "888", "info": {"title_name": "Sakura Mirage -Drum'n World-", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "25"}}, {"@id": "889", "info": {"title_name": "壊Rave*it!! 壊Rave*it!!", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "25"}}, {"@id": "890", "info": {"title_name": "Second Heaven GravityPfArrange", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "25"}}, {"@id": "891", "info": {"title_name": "starmine (nora2r Remix)", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "25"}}, {"@id": "892", "info": {"title_name": "Time to Air (jazz it up style)", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "25"}}, {"@id": "893", "info": {"title_name": "Time to Air -Fly High Remix-", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "25"}}, {"@id": "894", "info": {"title_name": "waxing and wanding(SS Remix)", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "25"}}, {"@id": "895", "info": {"title_name": "bass 2 bass [Tracy vs. Astronomical Remix]", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "25"}}, {"@id": "896", "info": {"title_name": "Mermaid girl (Tropical Remix)", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "25"}}, {"@id": "897", "info": {"title_name": "雪月花 (Shiron & Sound Artz Remix)", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "25"}}, {"@id": "898", "info": {"title_name": "朧 (kamome sano remix)", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "15"}}}, "tag": {"@id": "25"}}, {"@id": "899", "info": {"title_name": "Never Let It End", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "900", "info": {"title_name": "Destroy", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "901", "info": {"title_name": "双星ルミネセンス", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "902", "info": {"title_name": "Get back here", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "903", "info": {"title_name": "踊るフィーバーロボ", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "904", "info": {"title_name": "MERRiESTxHOLiC", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "905", "info": {"title_name": "Laughin' Muffin", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "906", "info": {"title_name": "Lo-Fi-M", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "907", "info": {"title_name": "Paradission", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "908", "info": {"title_name": "ウエンレラの氷華", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "909", "info": {"title_name": "NEO TREASON", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "910", "info": {"title_name": "Celestial stinger", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "911", "info": {"title_name": "Completeness Under Incompleteness", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "912", "info": {"title_name": "Ok!! Hug Me", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "913", "info": {"title_name": "Lord=Crossight", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "914", "info": {"title_name": "DIABLOSIS::Nāga", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "915", "info": {"title_name": "FLügeL《Λrp:ΣggyØ》", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "916", "info": {"title_name": "イブの時代っ!", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "917", "info": {"title_name": "Angelic Jelly", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "918", "info": {"title_name": "Grand Chariot", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "919", "info": {"title_name": "StrayedCatz", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "920", "info": {"title_name": "Sephirot", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "921", "info": {"title_name": "ZEPHYRANTHES", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "922", "info": {"title_name": "Triple Counter", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "923", "info": {"title_name": "バイナリスター", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "924", "info": {"title_name": "Solar Storm", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "925", "info": {"title_name": "絶対零度", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "926", "info": {"title_name": "ネコクマウササー", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "927", "info": {"title_name": "極圏", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "4"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "928", "info": {"title_name": "零の位相", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "929", "info": {"title_name": "PROVOES*PROPOSE <<人 fine>>", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "930", "info": {"title_name": "オトゲラヴ!", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "931", "info": {"title_name": "Dreadnought", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "932", "info": {"title_name": "からくりピエロ", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "933", "info": {"title_name": "見世物ライフ", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "934", "info": {"title_name": "異世界ノットパンピー", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "935", "info": {"title_name": "Twilight ∞ nighT", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "936", "info": {"title_name": "moon", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "937", "info": {"title_name": "嘘とぬいぐるみ", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "938", "info": {"title_name": "失敗作少女", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "939", "info": {"title_name": "JOMANDA", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "940", "info": {"title_name": "千本桜", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "10"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "15"}}}}, {"@id": "941", "info": {"title_name": "TRICKL4SH 220", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "942", "info": {"title_name": "New Game feat.Mayumi Morinaga", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "11"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "15"}}}}, {"@id": "943", "info": {"title_name": "HiGHER", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "944", "info": {"title_name": "シアワセうさぎ", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "945", "info": {"title_name": "LOVE EAST", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "15"}}}}, {"@id": "946", "info": {"title_name": "インビジブル", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "947", "info": {"title_name": "永遠に幸せになる方法、見つけました。", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "948", "info": {"title_name": "裏表ラバーズ", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "949", "info": {"title_name": "Lonly Ranunculus", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "950", "info": {"title_name": "Poppin' Shower", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "951", "info": {"title_name": "ヒミツダイヤル", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "952", "info": {"title_name": "{albus}", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "953", "info": {"title_name": "Metamorphobia", "version": {"@__type": "u8", "#text": "3"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "954", "info": {"title_name": "JULIAN", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "955", "info": {"title_name": "刃の如く ft. ネコメアリ", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "15"}}}}, {"@id": "956", "info": {"title_name": "ケムマキunderground", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "957", "info": {"title_name": "盗宝", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "958", "info": {"title_name": "インフルエンサー・イズ・デッド", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "959", "info": {"title_name": "Candy Star", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "960", "info": {"title_name": "焔 -MAGMA-", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "961", "info": {"title_name": "HEAVENLY SMILE", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "962", "info": {"title_name": "Dharma", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "26"}}, {"@id": "963", "info": {"title_name": "JUGGLE", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "26"}}, {"@id": "964", "info": {"title_name": "ドリームエンド・サバイバー", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "26"}}, {"@id": "965", "info": {"title_name": "キュリオシティ", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "26"}}, {"@id": "966", "info": {"title_name": "水槽のクジラ", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "26"}}, {"@id": "967", "info": {"title_name": "Chocolate Planet", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "26"}}, {"@id": "968", "info": {"title_name": "Heavenly Adventure", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "26"}}, {"@id": "969", "info": {"title_name": "Four Leaves", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "26"}}, {"@id": "970", "info": {"title_name": "EDEN of TRUTH", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "26"}}, {"@id": "971", "info": {"title_name": "Noisy Minority", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "26"}}, {"@id": "972", "info": {"title_name": "Voltage Higher", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "973", "info": {"title_name": "Crystallize Forest", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "11"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "15"}}}}, {"@id": "974", "info": {"title_name": "Blue Fire", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "975", "info": {"title_name": "業焔繚乱", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "976", "info": {"title_name": "スピーカーガール!", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "16"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "977", "info": {"title_name": "Royal Judgement", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "978", "info": {"title_name": "Arcade Prison", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "979", "info": {"title_name": "まじかる生主@りすなちゃん", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "980", "info": {"title_name": "Lowermost revolt", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "26"}}, {"@id": "981", "info": {"title_name": "Vigor", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "26"}}, {"@id": "982", "info": {"title_name": "Gorgetech", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "26"}}, {"@id": "983", "info": {"title_name": "オンディーヌの泪", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "26"}}, {"@id": "984", "info": {"title_name": "湖底遺跡のヴィダー・ハル", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "15"}}}, "tag": {"@id": "26"}}, {"@id": "985", "info": {"title_name": "Royal Action", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "26"}}, {"@id": "986", "info": {"title_name": "Carry Me Away", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "26"}}, {"@id": "987", "info": {"title_name": "SO FLY ME TO YOU", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "11"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "15"}}}, "tag": {"@id": "26"}}, {"@id": "988", "info": {"title_name": "ツキアカリ", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "26"}}, {"@id": "989", "info": {"title_name": "Zelophilia", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "26"}}, {"@id": "990", "info": {"title_name": "Gaze ft. 紫崎 雪", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "15"}}}, "tag": {"@id": "26"}}, {"@id": "991", "info": {"title_name": "Sadistic Stabbing", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "26"}}, {"@id": "992", "info": {"title_name": "Junk Mania", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "26"}}, {"@id": "993", "info": {"title_name": "黎明スケッチブック", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "26"}}, {"@id": "994", "info": {"title_name": "NEON LOVE♥POTION!!!", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "26"}}, {"@id": "995", "info": {"title_name": "HP:1", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "26"}}, {"@id": "996", "info": {"title_name": "VAMPIRE", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "26"}}, {"@id": "997", "info": {"title_name": "ゴーストマスコット", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "26"}}, {"@id": "998", "info": {"title_name": "sink into the dream", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "26"}}, {"@id": "999", "info": {"title_name": "couleur automnes de chocolat", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "26"}}, {"@id": "1000", "info": {"title_name": "ぱあ", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "26"}}, {"@id": "1001", "info": {"title_name": "春時雨", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "26"}}, {"@id": "1002", "info": {"title_name": "Fairy in Strasbourg", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "26"}}, {"@id": "1003", "info": {"title_name": "ボーイミーツ・ブルー", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "26"}}, {"@id": "1004", "info": {"title_name": "SprrRush!!", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "15"}}}, "tag": {"@id": "26"}}, {"@id": "1005", "info": {"title_name": "It's a new day!", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "26"}}, {"@id": "1006", "info": {"title_name": "QUAKE", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "26"}}, {"@id": "1007", "info": {"title_name": "Cepheus", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "26"}}, {"@id": "1008", "info": {"title_name": "WONDER_WOBBLER", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "26"}}, {"@id": "1009", "info": {"title_name": "Ghost Trigger", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "26"}}, {"@id": "1010", "info": {"title_name": "444", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "26"}}, {"@id": "1011", "info": {"title_name": "極彩天奏", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "26"}}, {"@id": "1012", "info": {"title_name": "Poppin’Cats!!", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "26"}}, {"@id": "1013", "info": {"title_name": "The Golden Era", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "26"}}, {"@id": "1014", "info": {"title_name": "クリスタルミサイル", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "11"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "14"}}}, "tag": {"@id": "26"}}, {"@id": "1015", "info": {"title_name": "Smoked Turkey Rag", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "26"}}, {"@id": "1016", "info": {"title_name": "゜*。Chantilly Fille。*°", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "26"}}, {"@id": "1017", "info": {"title_name": "Inscape", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "26"}}, {"@id": "1018", "info": {"title_name": "準備運動", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "26"}}, {"@id": "1019", "info": {"title_name": "fancy cake!!", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "26"}}, {"@id": "1020", "info": {"title_name": "デュアルメモリ", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1021", "info": {"title_name": "If", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1022", "info": {"title_name": "Chaotic Romance", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "27"}}, {"@id": "1023", "info": {"title_name": "rhythmology study", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "27"}}, {"@id": "1024", "info": {"title_name": "JUNKIE FLAVOR", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "27"}}, {"@id": "1025", "info": {"title_name": "Make Magic", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "27"}}, {"@id": "1026", "info": {"title_name": "Apocrypha", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "27"}}, {"@id": "1027", "info": {"title_name": "infinite:youniverse", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "27"}}, {"@id": "1028", "info": {"title_name": "HE4VEN ~天国へようこそ~", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "15"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "20"}}}, "tag": {"@id": "27"}}, {"@id": "1029", "info": {"title_name": "Fáfnir", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "27"}}, {"@id": "1030", "info": {"title_name": "Gamerz FestivaL", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "27"}}, {"@id": "1031", "info": {"title_name": "DropZ-Line-", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "27"}}, {"@id": "1032", "info": {"title_name": "Fin.ArcDeaR", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}, "tag": {"@id": "27"}}, {"@id": "1033", "info": {"title_name": "Sailing Force", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}, "tag": {"@id": "27"}}, {"@id": "1034", "info": {"title_name": "獅子奮迅", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "27"}}, {"@id": "1035", "info": {"title_name": "Spirit of the Beast", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "27"}}, {"@id": "1036", "info": {"title_name": "iLLness LiLin", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "15"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "20"}}}, "tag": {"@id": "27"}}, {"@id": "1037", "info": {"title_name": "Khionos TiARA", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "27"}}, {"@id": "1038", "info": {"title_name": "超☆超☆光☆速☆出☆前☆最☆速!!! スピード★スター★かなで", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "8"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "15"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "27"}}, {"@id": "1039", "info": {"title_name": "おにいちゃんハイテック", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "27"}}, {"@id": "1040", "info": {"title_name": "Grand-Guignol", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "27"}}, {"@id": "1041", "info": {"title_name": "Destruction & Qreation", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "27"}}, {"@id": "1042", "info": {"title_name": "Goddess Bless you", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "27"}}, {"@id": "1043", "info": {"title_name": "Legendary Road", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "27"}}, {"@id": "1044", "info": {"title_name": "Immortal saga", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}, "tag": {"@id": "27"}}, {"@id": "1045", "info": {"title_name": "Game Over", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "27"}}, {"@id": "1046", "info": {"title_name": "PIERROT KNIfE", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "27"}}, {"@id": "1047", "info": {"title_name": "Xibercannon", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "27"}}, {"@id": "1048", "info": {"title_name": "dreamin' of u", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "27"}}, {"@id": "1049", "info": {"title_name": "ΩVERSOUL", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "27"}}, {"@id": "1050", "info": {"title_name": "Fly far bounce", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1051", "info": {"title_name": "We Go Down", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1052", "info": {"title_name": "Boss Rush", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1053", "info": {"title_name": "恋歌疾風!かるたクイーンいろは", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1054", "info": {"title_name": "ナナイロライト", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "15"}}}}, {"@id": "1055", "info": {"title_name": "Rebellio", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1056", "info": {"title_name": "マトリョシカ", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1057", "info": {"title_name": "パンダヒーロー", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "10"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "15"}}}}, {"@id": "1058", "info": {"title_name": "POLICY BREAK Medley from SOUND VOLTEX×jubeat", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1059", "info": {"title_name": "FLOOR INFECTION Medley from SOUND VOLTEX×jubeat", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1060", "info": {"title_name": "The Formula", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1061", "info": {"title_name": "Poison AND÷OR Affection", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1062", "info": {"title_name": "Doppelganger", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1063", "info": {"title_name": "Adansonia", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1064", "info": {"title_name": "KIRAMEKI OVERDRIVE", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1065", "info": {"title_name": "スペクトラム", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1066", "info": {"title_name": "消失(Hommarju Remix)", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1067", "info": {"title_name": "チルノのパーフェクトさんすう教室 H周年バージョン", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1068", "info": {"title_name": "アンハッピーリフレイン", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1069", "info": {"title_name": "ローリンガール", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1070", "info": {"title_name": "ワールズエンド・ダンスホール", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1071", "info": {"title_name": "Finale", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1072", "info": {"title_name": "SACRIFICE feat. ayame", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1073", "info": {"title_name": "Regretful Flower", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1074", "info": {"title_name": "Dystopia", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "15"}}}}, {"@id": "1075", "info": {"title_name": "幽玄の桜", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1076", "info": {"title_name": "私とあなたのMYOURENJI☆", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1077", "info": {"title_name": "トーホータノシ (feat. 抹)", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1078", "info": {"title_name": "物凄いスペースシャトルでこいしが物凄いうた", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1079", "info": {"title_name": "Burn everything", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1080", "info": {"title_name": "Root Consciousness", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1081", "info": {"title_name": "Technical Master", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1082", "info": {"title_name": "NEWBORN CRYING", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1083", "info": {"title_name": "I feel something for you", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "15"}}}}, {"@id": "1084", "info": {"title_name": "FIRE IN MY HEART", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1085", "info": {"title_name": "透明な記憶の風穴", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1086", "info": {"title_name": "胸の中で誰かが", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "15"}}}}, {"@id": "1087", "info": {"title_name": "少女救世論", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1088", "info": {"title_name": "冒涜的選択のアレグリア ft. Mayumi Morinaga", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "15"}}}}, {"@id": "1089", "info": {"title_name": "Sweet Requiem", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1090", "info": {"title_name": "廃獄ドリームランド", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1091", "info": {"title_name": "雷鼓サンダービート", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1092", "info": {"title_name": "つるぺったん", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1093", "info": {"title_name": "Claidheamh Soluis-光の剣- feat.はるの", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1094", "info": {"title_name": "のぼれ八坂坂!", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1095", "info": {"title_name": "恋とキングコング", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "15"}}}}, {"@id": "1096", "info": {"title_name": "PUPA", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1097", "info": {"title_name": "Theme of Ricerca", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1098", "info": {"title_name": "Concertino in Blue", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1099", "info": {"title_name": "FIN4LE ~終止線の彼方へ~", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "15"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "20"}}}}, {"@id": "1100", "info": {"title_name": "WHITEOUT", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "15"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "20"}}}}, {"@id": "1101", "info": {"title_name": "Deadly force", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "1102", "info": {"title_name": "Staring at star", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "1103", "info": {"title_name": "Dyscontrolled Galaxy", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "1104", "info": {"title_name": "セイレーン ~悲壮の竪琴~", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "1105", "info": {"title_name": "神獄烙桜", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1106", "info": {"title_name": "Juggler's Maddness", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1107", "info": {"title_name": "ULTiMATE INFLATiON", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1108", "info": {"title_name": "Mirrorwall", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1109", "info": {"title_name": "Altale", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1110", "info": {"title_name": "ミラクル・スイート・スイーツ・マジック!!", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1111", "info": {"title_name": "ナイト・オブ・ロンド", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "15"}}}}, {"@id": "1112", "info": {"title_name": "Drizzly Venom", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1113", "info": {"title_name": "けもののおうじゃ🐾めうめう", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1114", "info": {"title_name": "銃弾は解を撃ち抜いて", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1115", "info": {"title_name": "キリステゴメン", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1116", "info": {"title_name": "シノビシノノメ", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1117", "info": {"title_name": "GERBERA", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1118", "info": {"title_name": "Scarlet Lance", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1119", "info": {"title_name": "怒槌", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1120", "info": {"title_name": "セイクリッド ルイン", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1121", "info": {"title_name": "Glitter Flatter Scatter", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1122", "info": {"title_name": "DREAMING-ING!!", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "15"}}}}, {"@id": "1123", "info": {"title_name": "狂騒こども節", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1124", "info": {"title_name": "新米天使のメランコリー", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1125", "info": {"title_name": "地球防衛乙女パンナコッター", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1126", "info": {"title_name": "炎夏の音", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1127", "info": {"title_name": "テレポーテーションでやってきた彼とのその後の顛末", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1128", "info": {"title_name": "ペタ靴と憂夜リムーバー", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1129", "info": {"title_name": "セイシュンライナー", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1130", "info": {"title_name": "怪盗Fの台本~消えたダイヤの謎~", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1131", "info": {"title_name": "Sweetiex2", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1132", "info": {"title_name": "すろぉもぉしょん", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1133", "info": {"title_name": "Enjoy This Time", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1134", "info": {"title_name": "Oriens", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1135", "info": {"title_name": "Libera me", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1136", "info": {"title_name": "FREEDOM DiVE", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "1137", "info": {"title_name": "β", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1138", "info": {"title_name": "New Leaf", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1139", "info": {"title_name": "Decoy", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1140", "info": {"title_name": "BEAST BASS BOMB", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1141", "info": {"title_name": "Cy-Bird", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1142", "info": {"title_name": "Far Away", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1143", "info": {"title_name": "OPEN MY GATE", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1144", "info": {"title_name": "Hug!! Vs. Hug!!", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1145", "info": {"title_name": "#SpeedyCats", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1146", "info": {"title_name": "闇夜に舞うは紅の華", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1147", "info": {"title_name": "All Clear!!", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1148", "info": {"title_name": "TWO-TORIAL", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "1149", "info": {"title_name": "Be a Hero!", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1150", "info": {"title_name": "KAC 2013 ULTIMATE MEDLEY -HISTORIA SOUND VOLTEX- Empress Side", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "1151", "info": {"title_name": "cobalt", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1152", "info": {"title_name": "НУМЛ", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1153", "info": {"title_name": "ルミナスデイズ", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1154", "info": {"title_name": "Lionheart", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "28"}}, {"@id": "1155", "info": {"title_name": "Random Box", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "28"}}, {"@id": "1156", "info": {"title_name": "BREAKNECK NY☆N! NY★N!", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "28"}}, {"@id": "1157", "info": {"title_name": "planetarium", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "28"}}, {"@id": "1158", "info": {"title_name": "VOLTEXES IV", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1159", "info": {"title_name": "トキメキストリーム", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1160", "info": {"title_name": "スカイダイバー", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1161", "info": {"title_name": "CARNIVOROUS", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1162", "info": {"title_name": "それは花火のような恋", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1163", "info": {"title_name": "Lost wing at.0", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1164", "info": {"title_name": "SPACE VILLAGE", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1165", "info": {"title_name": "びいすと!", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1166", "info": {"title_name": "メイビ~初恋!?ビスケット☆大作戦", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1167", "info": {"title_name": "MONOLITH", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1168", "info": {"title_name": "ビビットストリーム", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1169", "info": {"title_name": "惑星☆ロリポップ", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1170", "info": {"title_name": "分けるな危険!モモモモモモーイズム", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1171", "info": {"title_name": "Phlox", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1172", "info": {"title_name": "ロプノールの商隊", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1173", "info": {"title_name": "蟲の棲む処", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1174", "info": {"title_name": "Sky High", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1175", "info": {"title_name": "CHERNOBOG", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1176", "info": {"title_name": "GERBERA-For Finalists-", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "1177", "info": {"title_name": "Last Resort", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}, "tag": {"@id": "30"}}, {"@id": "1178", "info": {"title_name": "A Lasting Promise", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}, "tag": {"@id": "30"}}, {"@id": "1179", "info": {"title_name": "Cloud 9", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "30"}}, {"@id": "1180", "info": {"title_name": "Sacrifice and Faith", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "30"}}, {"@id": "1181", "info": {"title_name": "羅生門", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "30"}}, {"@id": "1183", "info": {"title_name": "僕らの時間", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "30"}}, {"@id": "1184", "info": {"title_name": "Iridescent Clouds", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "30"}}, {"@id": "1185", "info": {"title_name": "I", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "8"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "15"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "20"}}}, "tag": {"@id": "30"}}, {"@id": "1186", "info": {"title_name": "神話に芽吹く", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "30"}}, {"@id": "1187", "info": {"title_name": "CUTE-Reflection", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "30"}}, {"@id": "1188", "info": {"title_name": "Awakening", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}, "tag": {"@id": "30"}}, {"@id": "1189", "info": {"title_name": "Xéroa", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}, "tag": {"@id": "30"}}, {"@id": "1190", "info": {"title_name": "SAtAN", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "30"}}, {"@id": "1191", "info": {"title_name": "crossing blue", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "30"}}, {"@id": "1192", "info": {"title_name": "Divine's or Deal", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "30"}}, {"@id": "1193", "info": {"title_name": "ファイナルレター", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "30"}}, {"@id": "1194", "info": {"title_name": "Dark Matter", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "30"}}, {"@id": "1195", "info": {"title_name": "Levier'n NābYss", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "30"}}, {"@id": "1196", "info": {"title_name": "BlueMoon Princess", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "30"}}, {"@id": "1197", "info": {"title_name": "LastΩmegA", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "30"}}, {"@id": "1198", "info": {"title_name": "Justitia Gladius", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "30"}}, {"@id": "1199", "info": {"title_name": "BLAZING_LAZER", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "30"}}, {"@id": "1200", "info": {"title_name": "MeteorGlow Aftermath", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "30"}}, {"@id": "1201", "info": {"title_name": "Divine's:Bugscript", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "30"}}, {"@id": "1202", "info": {"title_name": "Яe's NoVǢ", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "30"}}, {"@id": "1203", "info": {"title_name": "SUPER BUBBLE JOURNEY", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "30"}}, {"@id": "1204", "info": {"title_name": "No way", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "30"}}, {"@id": "1205", "info": {"title_name": "Blue Stream", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "30"}}, {"@id": "1206", "info": {"title_name": "Wings of Glory", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "30"}}, {"@id": "1207", "info": {"title_name": "メルヘン風紀委員会", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "30"}}, {"@id": "1208", "info": {"title_name": "Coldlapse", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "30"}}, {"@id": "1209", "info": {"title_name": "Knights Assault", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "30"}}, {"@id": "1210", "info": {"title_name": "ひとりぼっちの魔王", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "30"}}, {"@id": "1211", "info": {"title_name": "Beyond the BLUE", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "30"}}, {"@id": "1212", "info": {"title_name": "プラネタジャーニー", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "30"}}, {"@id": "1213", "info": {"title_name": "ブチ上げ候!現代忍者三姉妹", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "30"}}, {"@id": "1214", "info": {"title_name": "Musha Vibration", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "30"}}, {"@id": "1215", "info": {"title_name": "Gate of Atlantis", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "30"}}, {"@id": "1216", "info": {"title_name": "ホワイトパレード", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "30"}}, {"@id": "1217", "info": {"title_name": "Melty Sweets", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "30"}}, {"@id": "1218", "info": {"title_name": "Akzeriyyuth", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "30"}}, {"@id": "1219", "info": {"title_name": "マキシマ先生の満開!!ヘヴンリー講座♥", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "4"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "0"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "0"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "0"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "1"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "1220", "info": {"title_name": "Reb∞t", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "1221", "info": {"title_name": "BELOBOG", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "1222", "info": {"title_name": "Re:End of a Dream", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1223", "info": {"title_name": "Record one's Dream", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1224", "info": {"title_name": "RHYZING BEAT", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1225", "info": {"title_name": "Evans", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1226", "info": {"title_name": "Black night", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "29"}}, {"@id": "1227", "info": {"title_name": "私の恋色。", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "29"}}, {"@id": "1228", "info": {"title_name": "煙", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "29"}}, {"@id": "1229", "info": {"title_name": "Mysterious Nights", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "29"}}, {"@id": "1230", "info": {"title_name": "プレインエイジア(MRM REMIX)", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "29"}}, {"@id": "1231", "info": {"title_name": "Invisible Bullets", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "29"}}, {"@id": "1233", "info": {"title_name": "灼熱のBlazin' Beat", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "29"}}, {"@id": "1234", "info": {"title_name": "Invisible Full Moon 古屋直雪 remix", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "29"}}, {"@id": "1235", "info": {"title_name": "Liévre -blanche-", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "29"}}, {"@id": "1236", "info": {"title_name": "disordered asia", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "29"}}, {"@id": "1237", "info": {"title_name": "少女綺想曲 -G.X.N. Remix-", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "29"}}, {"@id": "1238", "info": {"title_name": "Night Rockin' Bird", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "29"}}, {"@id": "1239", "info": {"title_name": "Breakin' Asia", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "29"}}, {"@id": "1240", "info": {"title_name": "Venomous Firefly", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "29"}}, {"@id": "1241", "info": {"title_name": "Princess K", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "29"}}, {"@id": "1242", "info": {"title_name": "4NT1 D34D", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "29"}}, {"@id": "1243", "info": {"title_name": "ILL-STARRED Diver", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "29"}}, {"@id": "1244", "info": {"title_name": "Nostalgic Blood of the Strife", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "29"}}, {"@id": "1245", "info": {"title_name": "マイネ・クライネ・ナハトムジーク", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "29"}}, {"@id": "1246", "info": {"title_name": "Lunatic Sprinter", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "29"}}, {"@id": "1247", "info": {"title_name": "Victim of Nights", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "29"}}, {"@id": "1248", "info": {"title_name": "アワデコノヨヲ", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "29"}}, {"@id": "1249", "info": {"title_name": "Burning Spark!", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "29"}}, {"@id": "1250", "info": {"title_name": "KIMIDORI Streak!!", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "29"}}, {"@id": "1251", "info": {"title_name": "Tic Exe", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "29"}}, {"@id": "1252", "info": {"title_name": "蓬莱フェスティボー", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "29"}}, {"@id": "1253", "info": {"title_name": "誰が為に兎は舞う=狂速狂騒曲=", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "29"}}, {"@id": "1254", "info": {"title_name": "Secret Traveler -MeniRemix-", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "29"}}, {"@id": "1255", "info": {"title_name": "片翼のディザイア", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1256", "info": {"title_name": "La Danza del Fuego", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1257", "info": {"title_name": "Touch My Body", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1258", "info": {"title_name": "Redshift", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1259", "info": {"title_name": "AUTOMATION PARADISE", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1260", "info": {"title_name": "Chrono Diver -PENDULUMs-", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "1261", "info": {"title_name": "ECHIDNA", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1262", "info": {"title_name": "星座が恋した瞬間を。", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1263", "info": {"title_name": "Puberty Dysthymia", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1264", "info": {"title_name": "Life is beautiful", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1265", "info": {"title_name": "SUPER SUMMER SALE", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1266", "info": {"title_name": "風鈴花火", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1267", "info": {"title_name": "Prey", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1268", "info": {"title_name": "Rejoin", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1269", "info": {"title_name": "Made In Love", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1270", "info": {"title_name": "Xronièr", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "15"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "20"}}}}, {"@id": "1271", "info": {"title_name": "Failnaught", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "1272", "info": {"title_name": "Absolute Domination", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "1273", "info": {"title_name": "Fly Like You", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "1274", "info": {"title_name": "そして黄金郷へ", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1275", "info": {"title_name": "光射す澪のユズリハ", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1276", "info": {"title_name": "サイコパスラビット", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1277", "info": {"title_name": "オニユリ", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1278", "info": {"title_name": "水簾ノ調", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1279", "info": {"title_name": "Another Chapter", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1280", "info": {"title_name": "スラッシュ//シスターズ", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1281", "info": {"title_name": "コメット⇒スケイター", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1282", "info": {"title_name": "She Turns Me On", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "1283", "info": {"title_name": "Sleepless days", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1284", "info": {"title_name": "MAXIVCORD", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1285", "info": {"title_name": "Let's Bounce !!", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1286", "info": {"title_name": "クレイジークレイジーダンサーズ", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1287", "info": {"title_name": "零次元エクスプレス", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1288", "info": {"title_name": "Colors", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1289", "info": {"title_name": "ARROW RAIN feat. ayame", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1290", "info": {"title_name": "真夏の蜜と唇 fm. 希望の星は青霄に昇る", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1291", "info": {"title_name": "迷夢ソウル", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1292", "info": {"title_name": "Princess Lily", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1293", "info": {"title_name": "抜刀", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1294", "info": {"title_name": "Together Going My Way", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1295", "info": {"title_name": "Addicted Moon", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1296", "info": {"title_name": "Colorless feat.ももかみ", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1297", "info": {"title_name": "全力ハッピーライフ", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1298", "info": {"title_name": "GALAXY BURST", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1299", "info": {"title_name": "Revolution", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1300", "info": {"title_name": "REDO the NIGHT", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "1301", "info": {"title_name": "ALTONA", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "1302", "info": {"title_name": "真っ白な靴", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "1303", "info": {"title_name": "君は Fantasista", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1304", "info": {"title_name": "bistro twins☆☆☆", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1305", "info": {"title_name": "FlowerNation", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1306", "info": {"title_name": "lEyl", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1307", "info": {"title_name": "伊邪那美白山姫大神", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1308", "info": {"title_name": "On take SUN", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1309", "info": {"title_name": "Cloud Crasher", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "1310", "info": {"title_name": "GaLaXyEggPlanT", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1311", "info": {"title_name": "vivid landscape", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1312", "info": {"title_name": "雲海", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1313", "info": {"title_name": "真夏の海の修道女", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1314", "info": {"title_name": "BLIZZARD BEAT", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1315", "info": {"title_name": "scary night", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1316", "info": {"title_name": "Elemental Creation", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "1317", "info": {"title_name": "ラキラキ", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1318", "info": {"title_name": "晴天Bon Voyage", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1319", "info": {"title_name": "STULTI", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1320", "info": {"title_name": "虹色の花", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1321", "info": {"title_name": "お米の美味しい炊き方、そしてお米を食べることによるその効果。", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1322", "info": {"title_name": "創世ノート", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1323", "info": {"title_name": "Synergy For Angels", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1324", "info": {"title_name": "Empathetic", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1325", "info": {"title_name": "GAIA", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1326", "info": {"title_name": "Xevel", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1327", "info": {"title_name": "ouroboros -twin stroke of the end-", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1328", "info": {"title_name": "Taiko Drum Monster", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1329", "info": {"title_name": "逆月", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "1330", "info": {"title_name": "POP TEAM EPIC/アニメ「ポプテピピック」より", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1331", "info": {"title_name": "Sulk", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1332", "info": {"title_name": "Midnight City Warfare", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1333", "info": {"title_name": "†渚の小悪魔ラヴリィ~レイディオ†", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1334", "info": {"title_name": "Catch Our Fire!", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1335", "info": {"title_name": "MODEL FT4", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1336", "info": {"title_name": "Yum Yum Sweetie", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1337", "info": {"title_name": "弱虫モンブラン", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1338", "info": {"title_name": "モザイクロール", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1339", "info": {"title_name": "妄想税", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1340", "info": {"title_name": "ストリーミングハート", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1341", "info": {"title_name": "ゴーストルール", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1342", "info": {"title_name": "ぼくらの16bit戦争", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1343", "info": {"title_name": "Jack-the-Ripper◆", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1344", "info": {"title_name": "すきなことだけでいいです", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1345", "info": {"title_name": "Barbless Ego", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "1346", "info": {"title_name": "rE:Voltagers", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "1347", "info": {"title_name": "Liar rain", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "1348", "info": {"title_name": "Typhoon Craaash!!", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "1349", "info": {"title_name": "V", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1350", "info": {"title_name": "シュガーソングとビターステップ/アニメ「血界戦線」より", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "1"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1351", "info": {"title_name": "only my railgun/アニメ「とある科学の超電磁砲」より", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1352", "info": {"title_name": "ハレ晴レユカイ/アニメ「涼宮ハルヒの憂鬱」より", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1353", "info": {"title_name": "ガヴリールドロップキック/アニメ「ガヴリールドロップアウト」より", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1354", "info": {"title_name": "Paradisus-Paradoxum/アニメ「Re:ゼロから始める異世界生活」より", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1355", "info": {"title_name": "ヒトリゴト/アニメ「エロマンガ先生」OP", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1356", "info": {"title_name": "ようこそジャパリパークへ/アニメ「けものフレンズ」より", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1357", "info": {"title_name": "RPG/アニメ「映画クレヨンしんちゃん バカうまっ!B級グルメサバイバル!!」より", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1358", "info": {"title_name": "もってけ!セーラーふく/アニメ「らき☆すた」より", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1359", "info": {"title_name": "君の知らない物語/アニメ「化物語」ED", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1360", "info": {"title_name": "TENKAICHI ULTIMATE BOSSRUSH MEDLEY", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "1361", "info": {"title_name": "*Feels Seasickness...*", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "8"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "15"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "20"}}}, "tag": {"@id": "31"}}, {"@id": "1362", "info": {"title_name": "ΣmbryØ", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "8"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "15"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "20"}}}, "tag": {"@id": "31"}}, {"@id": "1363", "info": {"title_name": "Cross Fire", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}, "tag": {"@id": "31"}}, {"@id": "1364", "info": {"title_name": "GODHEART", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}, "tag": {"@id": "31"}}, {"@id": "1365", "info": {"title_name": "THE HEAVEN", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "31"}}, {"@id": "1366", "info": {"title_name": "祝福の色彩は想い結ぶ君たち迄", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "31"}}, {"@id": "1367", "info": {"title_name": "ULTRAVELOCITY", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "31"}}, {"@id": "1368", "info": {"title_name": "Destiny", "version": {"@__type": "u8", "#text": "4"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "31"}}, {"@id": "1369", "info": {"title_name": "THE凸GENERATOR", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}, "tag": {"@id": "31"}}, {"@id": "1370", "info": {"title_name": "翠雨の祷", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "31"}}, {"@id": "1371", "info": {"title_name": "Sacrifice Escape: 不条理の模倣による感情と代償", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "31"}}, {"@id": "1372", "info": {"title_name": "clear:wings", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "31"}}, {"@id": "1373", "info": {"title_name": "Atropa bella-donna", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "31"}}, {"@id": "1374", "info": {"title_name": "Turn the story", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "31"}}, {"@id": "1375", "info": {"title_name": "Enigma II", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "31"}}, {"@id": "1376", "info": {"title_name": "FIRST:DREAMS", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "31"}}, {"@id": "1377", "info": {"title_name": "J雋PITΨR ♃ GЯ鬥VIT鬆", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "31"}}, {"@id": "1378", "info": {"title_name": "empty", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "31"}}, {"@id": "1379", "info": {"title_name": "Call of the World", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "31"}}, {"@id": "1380", "info": {"title_name": "Barbatos", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "31"}}, {"@id": "1381", "info": {"title_name": "ЯegreT of MemoRy", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "31"}}, {"@id": "1382", "info": {"title_name": "Xicholauncher", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "31"}}, {"@id": "1383", "info": {"title_name": "Aurolla", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "31"}}, {"@id": "1384", "info": {"title_name": "Jacob’s Elevator", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "31"}}, {"@id": "1385", "info": {"title_name": "SociuS", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "31"}}, {"@id": "1386", "info": {"title_name": "Glorious Journey", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "31"}}, {"@id": "1387", "info": {"title_name": "Hi-Fi!!双子'S", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "32"}}, {"@id": "1388", "info": {"title_name": "Sharkbait", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "32"}}, {"@id": "1389", "info": {"title_name": "び", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "32"}}, {"@id": "1390", "info": {"title_name": "エンゲージ〆ント", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "32"}}, {"@id": "1391", "info": {"title_name": "120秒のエンドロール", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "32"}}, {"@id": "1392", "info": {"title_name": "Cynical Joker", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "32"}}, {"@id": "1393", "info": {"title_name": "無魎大数", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "32"}}, {"@id": "1394", "info": {"title_name": "アオアラシ", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "32"}}, {"@id": "1395", "info": {"title_name": "港町レディ", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "32"}}, {"@id": "1396", "info": {"title_name": "ツマミ戦隊 タテレンジャー", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "32"}}, {"@id": "1397", "info": {"title_name": "Vividly Impromptu", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "32"}}, {"@id": "1398", "info": {"title_name": "VIVID DEBUT!", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "32"}}, {"@id": "1399", "info": {"title_name": "Mischievous theater", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "32"}}, {"@id": "1400", "info": {"title_name": "PARTY TIME!", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "32"}}, {"@id": "1401", "info": {"title_name": "近未来百鬼夜行譚~死返之巻~", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "32"}}, {"@id": "1402", "info": {"title_name": "Tribal Trial", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "32"}}, {"@id": "1403", "info": {"title_name": "ultra turbo", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "32"}}, {"@id": "1404", "info": {"title_name": "Sunflower Vibes", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "32"}}, {"@id": "1405", "info": {"title_name": "Chocolate Parade", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "32"}}, {"@id": "1406", "info": {"title_name": "CLOUDS FLYER -sdvx edit-", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "32"}}, {"@id": "1407", "info": {"title_name": "eighth-slave", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "32"}}, {"@id": "1408", "info": {"title_name": "シープドリーミン", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "32"}}, {"@id": "1409", "info": {"title_name": "Adrenaline Rush", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "32"}}, {"@id": "1410", "info": {"title_name": "Enchanté", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "32"}}, {"@id": "1411", "info": {"title_name": "アライヴ", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "32"}}, {"@id": "1412", "info": {"title_name": "Pixelated Platform", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "32"}}, {"@id": "1413", "info": {"title_name": "D1g1t1ze b0dy", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "32"}}, {"@id": "1414", "info": {"title_name": "Circulator", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "32"}}, {"@id": "1415", "info": {"title_name": "V Sen5eS", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "32"}}, {"@id": "1416", "info": {"title_name": "Bye or not", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "32"}}, {"@id": "1417", "info": {"title_name": "祭囃子", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "32"}}, {"@id": "1418", "info": {"title_name": "偶然? 必然? アンビバレンス!", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "32"}}, {"@id": "1419", "info": {"title_name": "To:BrandNewDeadline", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "32"}}, {"@id": "1420", "info": {"title_name": "Into The Madness", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "32"}}, {"@id": "1421", "info": {"title_name": "PIZZATIME", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "32"}}, {"@id": "1422", "info": {"title_name": "Believe (y)our Wings {V:IVID RAYS}", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1423", "info": {"title_name": "Believe (y)our Wings {GRA5P WAVES}", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1424", "info": {"title_name": "スイーツはとまらない♪", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1425", "info": {"title_name": "熱情のサパデアード", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1426", "info": {"title_name": "革命パッショネイト", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1427", "info": {"title_name": "ヒカリユリイカ", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1428", "info": {"title_name": "ベビーステップ", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1429", "info": {"title_name": "50th Memorial Songs -Beginning Story-", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "16"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "1430", "info": {"title_name": "50th Memorial Songs -二人の時 ~under the cherry blossoms~-", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "16"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "1431", "info": {"title_name": "50th Memorial Songs -Flagship medley-", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "16"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "1432", "info": {"title_name": "50th Memorial Songs -The BEMANI History-", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "1433", "info": {"title_name": "ねこみみ(=ФωФ=)ぱんでみみっく", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "1434", "info": {"title_name": "タイムトラベル", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "1435", "info": {"title_name": "Believe In Yourself", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "1436", "info": {"title_name": "OZONE", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "3"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "1437", "info": {"title_name": "Dogeza Stairs", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1438", "info": {"title_name": "おーとめーしょんぱらだいす", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1439", "info": {"title_name": "諏訪大信仰", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1440", "info": {"title_name": "ΩBIRD", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1441", "info": {"title_name": "悪戯センセーション", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1442", "info": {"title_name": "Get over!!", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1443", "info": {"title_name": "Little Big Princess(DJ katsu EDIT)", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1444", "info": {"title_name": "Sweetest Paranoia", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1445", "info": {"title_name": "DESIRE", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1446", "info": {"title_name": "太陽曰く燃えよカオス(Sol oscuro ¡Nya! Mix)", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1447", "info": {"title_name": "Princess Rose(Sunshine Mix)", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1448", "info": {"title_name": "One In A Billion(Hedonist Remix)", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1449", "info": {"title_name": "ゆりゆららららゆるゆり大事件(yuzen remix)", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1450", "info": {"title_name": "ユニバーページ(i-world Mix)", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1451", "info": {"title_name": "かくしん的☆めたまるふぉ~ぜっ!(crabMixx)", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1452", "info": {"title_name": "鏡面の波(ramble mix)", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1453", "info": {"title_name": "動く、動く(\"A&M Chillin' \" Electro Remix)", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "7"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1454", "info": {"title_name": "SAKURAスキップ(ハピネス mix)", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1455", "info": {"title_name": "回レ!雪月花 (Heart's Cry Remix)", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1456", "info": {"title_name": "STYX HELIX(Digi-Rock Remix)", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1457", "info": {"title_name": "ふ・れ・ん・ど・し・た・い(WEREHEREMIX)", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1458", "info": {"title_name": "Daydream café (Euro Hopping Mix)", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1459", "info": {"title_name": "LECTORIA", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1460", "info": {"title_name": "mqlo", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1461", "info": {"title_name": "Aerial Fortress", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1462", "info": {"title_name": "ΣgØ", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "8"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "15"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "20"}}}}, {"@id": "1463", "info": {"title_name": "星の透る夏空に願う", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1464", "info": {"title_name": "Lancelot ~Flame of the Rebellion~", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "1465", "info": {"title_name": "ΩVERFLOW", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1466", "info": {"title_name": "Sudden Visitor", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1467", "info": {"title_name": "Ghost Family Living In Graveyard", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "1468", "info": {"title_name": "petits fours", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1469", "info": {"title_name": "ロキ", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1471", "info": {"title_name": "*ハロー、プラネット。", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1472", "info": {"title_name": "MARENOL", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1473", "info": {"title_name": "Quark", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1474", "info": {"title_name": "Black Lotus", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1475", "info": {"title_name": "Nhelv", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1476", "info": {"title_name": "AXION", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1477", "info": {"title_name": "Destined Marionette", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1478", "info": {"title_name": "Sakura Fubuki", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1480", "info": {"title_name": "L9", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1481", "info": {"title_name": "ミッドナイト☆WAR", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1482", "info": {"title_name": "Trill auf G", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "1483", "info": {"title_name": "voltississimo", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "1484", "info": {"title_name": "toy boxer", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1485", "info": {"title_name": "最小三倍完全数", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1486", "info": {"title_name": "Six String Proof", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1487", "info": {"title_name": "おーまい!らぶりー!すうぃーてぃ!だーりん!", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1488", "info": {"title_name": "Afterimage d'automne", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1489", "info": {"title_name": "BLACK JACKAL", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1490", "info": {"title_name": "MAX BURNING!! (FOR INFINITE EXTENDED VERSION)", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "2"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "1491", "info": {"title_name": "Zusammenbruch of Gott", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "2"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}}, {"@id": "1495", "info": {"title_name": "* Erm, could it be a Spatiotemporal ShockWAVE Syndrome...?", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "8"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "15"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "20"}}}}, {"@id": "1496", "info": {"title_name": "OUTERHEΛVEN", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "1497", "info": {"title_name": "Pulsar", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1498", "info": {"title_name": "θコトノハθカプセルθ", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "1499", "info": {"title_name": "Butterfly Twist", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1500", "info": {"title_name": "pique", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1501", "info": {"title_name": "Teufel", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1502", "info": {"title_name": "Übertreffen", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1503", "info": {"title_name": "蛇神", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1504", "info": {"title_name": "Harmonia", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1505", "info": {"title_name": "ランカーキラーガール", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1509", "info": {"title_name": "VIVIDWAVERS", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1510", "info": {"title_name": "ABSOLUTE (EUROBEAT REMIX)", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "33"}}, {"@id": "1511", "info": {"title_name": "ABSOLUTE (saminun mix)", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "33"}}, {"@id": "1512", "info": {"title_name": "ABSOLUTE(ismK passionate remix)", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "33"}}, {"@id": "1513", "info": {"title_name": "Blue Forest(NightBounce Remix)", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "33"}}, {"@id": "1514", "info": {"title_name": "Blue Forest (Prog Keys Remix)", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "33"}}, {"@id": "1515", "info": {"title_name": "#EmoCloche", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "33"}}, {"@id": "1516", "info": {"title_name": "cloche(といぼっくすうぃんぐ みっくす)", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "33"}}, {"@id": "1517", "info": {"title_name": "EGOISM 440 (Ange;art remix)", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "33"}}, {"@id": "1518", "info": {"title_name": "EGOISM -Rebuild-", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "33"}}, {"@id": "1519", "info": {"title_name": "Elemental Creation (kamome sano Remix)", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "33"}}, {"@id": "1520", "info": {"title_name": "Elemental Creation -xiRemix-", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "33"}}, {"@id": "1521", "info": {"title_name": "Re:Elemental Creation", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "33"}}, {"@id": "1522", "info": {"title_name": "EMERALDAS (Yuta Imai Remix)", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "33"}}, {"@id": "1523", "info": {"title_name": "Impress (bansou Remix)", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "33"}}, {"@id": "1524", "info": {"title_name": "Impress(siqlo's Hi-Tech Veats)", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "33"}}, {"@id": "1525", "info": {"title_name": "Macuilxochitl (Latin Jazz Mix)", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "33"}}, {"@id": "1526", "info": {"title_name": "Mynarco(Nagomu 2Step Remix)", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "33"}}, {"@id": "1527", "info": {"title_name": "nostos -ark remix-", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "33"}}, {"@id": "1528", "info": {"title_name": "onslaught -Retaliation of Bahamūt-", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}, "tag": {"@id": "33"}}, {"@id": "1529", "info": {"title_name": "POSSESSION(Gowrock Remix)", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "33"}}, {"@id": "1530", "info": {"title_name": "POSSESSION (Aoi Q.E.D. RMX)", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "33"}}, {"@id": "1531", "info": {"title_name": "Scars of FAUNA(ろひ Remix)", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "33"}}, {"@id": "1532", "info": {"title_name": "SHION (ロースピード幻想チューン Remix)", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "33"}}, {"@id": "1533", "info": {"title_name": "SHION -sublimation mix-", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "33"}}, {"@id": "1534", "info": {"title_name": "DEEP PSYCHEDELIC STRIKER", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "33"}}, {"@id": "1535", "info": {"title_name": "ばらんが!!!!", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "33"}}, {"@id": "1536", "info": {"title_name": "Valanga(polysha Remix)", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "33"}}, {"@id": "1537", "info": {"title_name": "ナスカの丘 (Hi-NRG Remix)", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "33"}}, {"@id": "1538", "info": {"title_name": "ナナホシ(lovely bubbly party mix!)", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "33"}}, {"@id": "1539", "info": {"title_name": "ナナホシのうた", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "33"}}, {"@id": "1540", "info": {"title_name": "MilK", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1541", "info": {"title_name": "ULTRA B+K", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1542", "info": {"title_name": "ANGER of the GOD", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "1543", "info": {"title_name": "ハレ トキドキ メランコリック", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1544", "info": {"title_name": "Finally Dive -kors k Remix-", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1547", "info": {"title_name": "ENDYMION", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "1548", "info": {"title_name": "Xroniàl Xéro", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "1549", "info": {"title_name": "トーキョーサマーナイト", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "16"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "35"}}, {"@id": "1550", "info": {"title_name": "トマヨイ", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "35"}}, {"@id": "1551", "info": {"title_name": "PSYCHO+HEROES", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "35"}}, {"@id": "1552", "info": {"title_name": "DO-IT-AMA-SITE!!!", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "35"}}, {"@id": "1553", "info": {"title_name": "夢見草奇譚", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "35"}}, {"@id": "1554", "info": {"title_name": "Over The Top", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "35"}}, {"@id": "1555", "info": {"title_name": "Ichi-Go! DX Pancake!", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "35"}}, {"@id": "1556", "info": {"title_name": "Hexennacht", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "35"}}, {"@id": "1557", "info": {"title_name": "Devastated Territory", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "35"}}, {"@id": "1558", "info": {"title_name": "Electric Injury", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "35"}}, {"@id": "1559", "info": {"title_name": "遷", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "35"}}, {"@id": "1560", "info": {"title_name": "月々紅花", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "35"}}, {"@id": "1561", "info": {"title_name": "Your SOUL Is Mine", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "35"}}, {"@id": "1562", "info": {"title_name": "€omet popcorn", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "35"}}, {"@id": "1563", "info": {"title_name": "恋するレインガール", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "16"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "35"}}, {"@id": "1564", "info": {"title_name": "Sparkling Laser Beam", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "35"}}, {"@id": "1565", "info": {"title_name": "Screaming!!", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "35"}}, {"@id": "1566", "info": {"title_name": "おはようからおやすみまでかまってポメポメ", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "35"}}, {"@id": "1567", "info": {"title_name": "floorkiller", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "35"}}, {"@id": "1568", "info": {"title_name": "Flaa Behavior", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "16"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "35"}}, {"@id": "1569", "info": {"title_name": "Dooooope", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "16"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "35"}}, {"@id": "1570", "info": {"title_name": "Gimme dreamin'", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "35"}}, {"@id": "1571", "info": {"title_name": "Ring!Run!Nyan!!", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "35"}}, {"@id": "1572", "info": {"title_name": "孤月群雲に沈む", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "35"}}, {"@id": "1573", "info": {"title_name": "floating girl", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "16"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "35"}}, {"@id": "1574", "info": {"title_name": "Holy Legacy", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "35"}}, {"@id": "1575", "info": {"title_name": "SLEEPWALKER", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "35"}}, {"@id": "1576", "info": {"title_name": "Historia of Velnoti", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "17"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "35"}}, {"@id": "1577", "info": {"title_name": "Hurt me plenty", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "35"}}, {"@id": "1578", "info": {"title_name": "iberis", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "16"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "35"}}, {"@id": "1579", "info": {"title_name": "World of Iris", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "5"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "18"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "0"}}}, "tag": {"@id": "35"}}, {"@id": "1580", "info": {"title_name": "666", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "8"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "15"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "20"}}}, "tag": {"@id": "34"}}, {"@id": "1581", "info": {"title_name": "色を喪った街", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}, "tag": {"@id": "34"}}, {"@id": "1582", "info": {"title_name": "ЯeviveR", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}, "tag": {"@id": "34"}}, {"@id": "1583", "info": {"title_name": "9TH5IN", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}, "tag": {"@id": "34"}}, {"@id": "1584", "info": {"title_name": "VVelcome!!", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "15"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "20"}}}, "tag": {"@id": "34"}}, {"@id": "1585", "info": {"title_name": "Katharsis", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "34"}}, {"@id": "1586", "info": {"title_name": "ZEИITH", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "34"}}, {"@id": "1587", "info": {"title_name": "SAMURAI TIGER", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "34"}}, {"@id": "1588", "info": {"title_name": "Redshift 2nd Ignition", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}, "tag": {"@id": "34"}}, {"@id": "1589", "info": {"title_name": "ミュージックプレイヤー", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "34"}}, {"@id": "1590", "info": {"title_name": "春告胡蝶", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "34"}}, {"@id": "1591", "info": {"title_name": "†:OLPHEUX:†", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}, "tag": {"@id": "34"}}, {"@id": "1592", "info": {"title_name": "GEMINI LA2ER", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "34"}}, {"@id": "1593", "info": {"title_name": "LubedeR", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}, "tag": {"@id": "34"}}, {"@id": "1594", "info": {"title_name": "Яe:son D'腎re", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "34"}}, {"@id": "1595", "info": {"title_name": "おどりましょうよ!ドラゴンさん ~転生したらゲーム曲でした~", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "34"}}, {"@id": "1596", "info": {"title_name": "星の詩", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "34"}}, {"@id": "1597", "info": {"title_name": "Non RolicK!!大冒険", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "34"}}, {"@id": "1598", "info": {"title_name": "Thank you for your playing music", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "34"}}, {"@id": "1599", "info": {"title_name": "Defining Future", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "34"}}, {"@id": "1600", "info": {"title_name": "le coeur patissiere", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "34"}}, {"@id": "1601", "info": {"title_name": "Lazurite", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "34"}}, {"@id": "1602", "info": {"title_name": "Φnd:you", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "34"}}, {"@id": "1603", "info": {"title_name": "Valkyrja ~Aldrlag~", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "34"}}, {"@id": "1604", "info": {"title_name": "濁色踊るオートマタ", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "34"}}, {"@id": "1605", "info": {"title_name": "MICHIZURE", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "34"}}, {"@id": "1606", "info": {"title_name": "Me:Tear", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "34"}}, {"@id": "1607", "info": {"title_name": "Innocent", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "34"}}, {"@id": "1608", "info": {"title_name": "Ethereal Lotus", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "34"}}, {"@id": "1609", "info": {"title_name": "who I am", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "34"}}, {"@id": "1610", "info": {"title_name": "eternite", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "34"}}, {"@id": "1611", "info": {"title_name": "Blessing Bouquet", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "34"}}, {"@id": "1612", "info": {"title_name": "卑弥呼", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "1613", "info": {"title_name": "Nebulas", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1614", "info": {"title_name": "αρχη", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1615", "info": {"title_name": "焦がれ唄", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1616", "info": {"title_name": "Still Lonesome", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1617", "info": {"title_name": "Bioslaves", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1618", "info": {"title_name": "Bolérrot", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1619", "info": {"title_name": "MeteorA", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1620", "info": {"title_name": "Our Love", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1621", "info": {"title_name": "The First Step", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1622", "info": {"title_name": "BLAZE∞BREEZE", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1623", "info": {"title_name": "ラブキラ☆スプラッシュ", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1624", "info": {"title_name": "Sparkle Smilin'", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1625", "info": {"title_name": "狂水一華", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1626", "info": {"title_name": "ROOM", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1627", "info": {"title_name": "至上のラトゥーリア", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1628", "info": {"title_name": "御伽噺に幕切れを", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1629", "info": {"title_name": "逆さま♥シンデレラパレード", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1630", "info": {"title_name": "memento mori -intro-", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1631", "info": {"title_name": "m1dy Deluxe", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1632", "info": {"title_name": "Leviathan", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1633", "info": {"title_name": "Jetcoaster Windy", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1634", "info": {"title_name": "追憶のアリア", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1635", "info": {"title_name": "叛逆のディスパレート", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1636", "info": {"title_name": "花は折りたし梢は高し", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1637", "info": {"title_name": "アリスサイド・キャスリング", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1638", "info": {"title_name": "うさぬこぬんぬんファンタジー!", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1639", "info": {"title_name": "Lisa-RICCIA", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "1640", "info": {"title_name": "New Decade", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1641", "info": {"title_name": "METATRON", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1642", "info": {"title_name": "Air", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1644", "info": {"title_name": "- Jupiter -", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1646", "info": {"title_name": "Pure Ruby", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1647", "info": {"title_name": "Destr0yer", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1648", "info": {"title_name": "Bad Elixir", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "1649", "info": {"title_name": "キラメキ居残り大戦争", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1650", "info": {"title_name": "門門しましょ", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1651", "info": {"title_name": "緋色月下、狂咲ノ絶 (nayuta 2017 ver)", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1652", "info": {"title_name": "WARNING×WARNING×WARNING", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1653", "info": {"title_name": "トランスダンスアナーキー", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1654", "info": {"title_name": "不可測的メトロポリス", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1655", "info": {"title_name": "穢れなきユーフォリア", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1657", "info": {"title_name": "オルターエゴ", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1658", "info": {"title_name": "ラストリゾート", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "1"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "12"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1659", "info": {"title_name": "Chronomia", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "1660", "info": {"title_name": "MAYHEM", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "8"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "15"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "20"}}}}, {"@id": "1661", "info": {"title_name": "飄える翼追い掛けて", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "1662", "info": {"title_name": "Calamity Tempest", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "1663", "info": {"title_name": "Daisycutter", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "1664", "info": {"title_name": "ΛΛemoria", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "1665", "info": {"title_name": "With It This Heaven?", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1666", "info": {"title_name": "apo:llioth", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1668", "info": {"title_name": "世界の果てに約束の凱歌を -VOLTEX Mix-", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1669", "info": {"title_name": "ここからよろしく大作戦143", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1670", "info": {"title_name": "プログレなぞなぞクイズのテーマ", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1671", "info": {"title_name": "Symphonic Tear", "version": {"@__type": "u8", "#text": "5"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1672", "info": {"title_name": "VALKYRIE ASSAULT", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "1673", "info": {"title_name": "Continuous Moment", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "36"}}, {"@id": "1675", "info": {"title_name": "文月", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "36"}}, {"@id": "1677", "info": {"title_name": "Aqua,Luna-rium", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "36"}}, {"@id": "1679", "info": {"title_name": "まみむめ🍄まるっと🍄まっしゅるーむ🍄🍄", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "36"}}, {"@id": "1681", "info": {"title_name": "The Clown of 24stairs", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}, "tag": {"@id": "36"}}, {"@id": "1682", "info": {"title_name": "FEEL THE FORCE", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "36"}}, {"@id": "1683", "info": {"title_name": "Vallasotiena", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "36"}}, {"@id": "1685", "info": {"title_name": "恋は君のそばでサクラサク", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "36"}}, {"@id": "1686", "info": {"title_name": "Enter The Fire", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "36"}}, {"@id": "1687", "info": {"title_name": "charm♡you", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "36"}}, {"@id": "1689", "info": {"title_name": "Restless Waitress", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "36"}}, {"@id": "1690", "info": {"title_name": "WILD FIRE", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "36"}}, {"@id": "1692", "info": {"title_name": "M-O-R-F-I-N-E", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "36"}}, {"@id": "1694", "info": {"title_name": "2094", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "36"}}, {"@id": "1695", "info": {"title_name": "End of Guilty", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "36"}}, {"@id": "1696", "info": {"title_name": "Going My Future!", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "36"}}, {"@id": "1697", "info": {"title_name": "Cappuccino Hearts", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "36"}}, {"@id": "1698", "info": {"title_name": "フェアリーテイル・ラヴァーズ", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "36"}}, {"@id": "1699", "info": {"title_name": "Unleashed Redness", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "36"}}, {"@id": "1700", "info": {"title_name": "Chakra", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "36"}}, {"@id": "1701", "info": {"title_name": "party:stage", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "36"}}, {"@id": "1702", "info": {"title_name": "Rapsodia d'amore", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}, "tag": {"@id": "36"}}, {"@id": "1703", "info": {"title_name": "XXanadu#climaXX", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "36"}}, {"@id": "1704", "info": {"title_name": "G4ME ØVEЯ", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "36"}}, {"@id": "1705", "info": {"title_name": "Bigbang Faker", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "36"}}, {"@id": "1707", "info": {"title_name": "Xymatic Scope", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "36"}}, {"@id": "1708", "info": {"title_name": "Archangelio", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "36"}}, {"@id": "1710", "info": {"title_name": "The King Of Red", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "36"}}, {"@id": "1711", "info": {"title_name": "Le Merle Noir", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "36"}}, {"@id": "1712", "info": {"title_name": "Innocent Azure", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "36"}}, {"@id": "1713", "info": {"title_name": "Souhait bleu", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "36"}}, {"@id": "1714", "info": {"title_name": "Vanishing Eidos", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "36"}}, {"@id": "1715", "info": {"title_name": "Metagame Matador", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "36"}}, {"@id": "1716", "info": {"title_name": "木洩れ日に咲く", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "36"}}, {"@id": "1717", "info": {"title_name": "恋獄対刃", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "36"}}, {"@id": "1718", "info": {"title_name": "ラヴ♡チャンス!!", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "36"}}, {"@id": "1719", "info": {"title_name": "神にした彼女が示す世界線", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "36"}}, {"@id": "1720", "info": {"title_name": "月下の舞兎祭", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "36"}}, {"@id": "1721", "info": {"title_name": "Now loading…", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}, "tag": {"@id": "36"}}, {"@id": "1722", "info": {"title_name": "SuperMiracleEnsemble", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "36"}}, {"@id": "1723", "info": {"title_name": "Whip☆Drip", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "36"}}, {"@id": "1724", "info": {"title_name": "Verstärkt Killer", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "36"}}, {"@id": "1725", "info": {"title_name": "りむむむむむむ", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "36"}}, {"@id": "1726", "info": {"title_name": "響く静寂", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "36"}}, {"@id": "1727", "info": {"title_name": "恋愛♡悪戯!?まじかる☆ぱふゅ~む!!", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "36"}}, {"@id": "1728", "info": {"title_name": "#Namescapes", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "36"}}, {"@id": "1729", "info": {"title_name": "Fun walk!!", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "36"}}, {"@id": "1730", "info": {"title_name": "運命超過乃巡合", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "36"}}, {"@id": "1731", "info": {"title_name": "黎明の情", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "36"}}, {"@id": "1732", "info": {"title_name": "I Left for my Right", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}, "tag": {"@id": "36"}}, {"@id": "1734", "info": {"title_name": "777", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "1735", "info": {"title_name": "プナイプナイたいそう", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1736", "info": {"title_name": "ディスコルディア", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "1737", "info": {"title_name": "Chewingood!!!", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1738", "info": {"title_name": "Verflucht", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1739", "info": {"title_name": "ヒトガタ", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "1"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1740", "info": {"title_name": "Mr.VIRTUALIZER", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "8"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1741", "info": {"title_name": "藍の華", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1744", "info": {"title_name": "Puni Puni Parade", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1746", "info": {"title_name": "Jailbreaker", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1747", "info": {"title_name": "限界突破リザレクション", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1748", "info": {"title_name": "BEAT MAGIC", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1749", "info": {"title_name": "Empty Backdoor", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1750", "info": {"title_name": "驪駒早鬼は馬並み☆プロテイン", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1751", "info": {"title_name": "エクシード仮面ちゃんのちょっと一線をえくしーどしたEXCEED講座", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "0"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "0"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "0"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "1"}}}}, {"@id": "1753", "info": {"title_name": "ホイホイ☆幻想ホロイズム", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1754", "info": {"title_name": "キャプテン・マリンのケツアンカー", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1755", "info": {"title_name": "シアワセうさぎ・ぺこみこマリン", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1756", "info": {"title_name": "イヤホンロマンス", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1757", "info": {"title_name": "Over the Border", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1758", "info": {"title_name": "Help me, ERINNNNNN!! #幻想郷ホロイズムver.", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1759", "info": {"title_name": "くらべられっ子", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "2"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "9"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1760", "info": {"title_name": "泥の分際で私だけの大切を奪おうだなんて", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1761", "info": {"title_name": "ナミカレ", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1762", "info": {"title_name": "ドゥサンコオデッセイ!!", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "1763", "info": {"title_name": "αzalea", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "1764", "info": {"title_name": "BAYONEX", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "1765", "info": {"title_name": "Reverenced Flower", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "1766", "info": {"title_name": "XHRONOXAPSULΞ", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "8"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "15"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "20"}}}, "tag": {"@id": "37"}}, {"@id": "1767", "info": {"title_name": "MixxioN", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "8"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "15"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "20"}}}, "tag": {"@id": "37"}}, {"@id": "1768", "info": {"title_name": "EncorE & cALL", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}, "tag": {"@id": "37"}}, {"@id": "1769", "info": {"title_name": "AμreoLe ~for Triumph~", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}, "tag": {"@id": "37"}}, {"@id": "1770", "info": {"title_name": "ZEUS", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}, "tag": {"@id": "37"}}, {"@id": "1771", "info": {"title_name": "Xb10r", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}, "tag": {"@id": "37"}}, {"@id": "1772", "info": {"title_name": "十の試煉", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}, "tag": {"@id": "37"}}, {"@id": "1773", "info": {"title_name": "Rhapsody ⚙︎f Triumph", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}, "tag": {"@id": "37"}}, {"@id": "1774", "info": {"title_name": "All for One", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "37"}}, {"@id": "1775", "info": {"title_name": "Wings to fly high", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "37"}}, {"@id": "1776", "info": {"title_name": "AIM HIGHER", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "37"}}, {"@id": "1777", "info": {"title_name": "火狐之舞", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "37"}}, {"@id": "1778", "info": {"title_name": "蝕", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "37"}}, {"@id": "1779", "info": {"title_name": "refluxio", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}, "tag": {"@id": "37"}}, {"@id": "1802", "info": {"title_name": "MA・TSU・RI", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1803", "info": {"title_name": "MOVE! (We Keep It Movin')", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1804", "info": {"title_name": "LIKE A VAMPIRE", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1805", "info": {"title_name": "スーパー戦湯ババンバーン", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1806", "info": {"title_name": "斑咲花", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1807", "info": {"title_name": "ユメブキ", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1808", "info": {"title_name": "カジノファイヤーことみちゃん", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1809", "info": {"title_name": "STEEL NEEDLE", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1810", "info": {"title_name": "R.I.P.ゴシップの海", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1811", "info": {"title_name": "《Re:miniscence》", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "8"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "15"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "18"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "20"}}}}, {"@id": "1812", "info": {"title_name": "竹", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "1813", "info": {"title_name": "Triple Cross", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1814", "info": {"title_name": "Aftermath", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1815", "info": {"title_name": "Love Love Scarlet", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1816", "info": {"title_name": "PRESERVED VAMPIRE", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1817", "info": {"title_name": "デンデラパーティーナイト", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1818", "info": {"title_name": "LUCKY CAT", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1819", "info": {"title_name": "スカーレット警察のゲットーパトロール24時", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1820", "info": {"title_name": "天弓天華オトハナビ", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1821", "info": {"title_name": "↑↑↓↓←→←→BA", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "3"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1822", "info": {"title_name": "Halloween Is Chaos", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1823", "info": {"title_name": "スノウイコン", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1824", "info": {"title_name": "Star☆Beat", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1825", "info": {"title_name": "Red+White=Kawaii", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1826", "info": {"title_name": "みたらしプラトニック (feat. nicamoq)", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1827", "info": {"title_name": "eXtridia", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1828", "info": {"title_name": "NIN-NIN-NIN!!", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1829", "info": {"title_name": "Refrain", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1830", "info": {"title_name": "オリガミカル・スウィートラヴ", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1831", "info": {"title_name": "キカイノミルユメ", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "10"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "13"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "16"}}}}, {"@id": "1832", "info": {"title_name": "~仔羊のナヴァラン・クリシェを添えて~", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1838", "info": {"title_name": "PLANISPHERE", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1839", "info": {"title_name": "Foolish Again", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1840", "info": {"title_name": "夢の終わり、世界のはじまり。", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1841", "info": {"title_name": "鑷ぉるみっくす!!!!", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1842", "info": {"title_name": "sparky spark", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1843", "info": {"title_name": "Test Flight", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1844", "info": {"title_name": "Perfect Ultimate Celebration!!", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1847", "info": {"title_name": "2 Beasts Unchained", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "1848", "info": {"title_name": "Fegrix", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1849", "info": {"title_name": "ピアノ協奏曲第1番”蠍火”", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}}, {"@id": "1850", "info": {"title_name": "SPECIAL SUMMER CAMPAIGN!", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "5"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1851", "info": {"title_name": "WICKeD CRφSS", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "12"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "15"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1852", "info": {"title_name": "Crystalia", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "6"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "13"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "16"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "18"}}}}, {"@id": "1853", "info": {"title_name": "Flip Flap", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "4"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "11"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "14"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "17"}}}}, {"@id": "1854", "info": {"title_name": "CLAMARE", "version": {"@__type": "u8", "#text": "6"}, "inf_ver": {"@__type": "u8", "#text": "0"}}, "difficulty": {"novice": {"difnum": {"@__type": "u8", "#text": "7"}}, "advanced": {"difnum": {"@__type": "u8", "#text": "14"}}, "exhaust": {"difnum": {"@__type": "u8", "#text": "17"}}, "infinite": {"difnum": {"@__type": "u8", "#text": "0"}}, "maximum": {"difnum": {"@__type": "u8", "#text": "19"}}}}]}}
\ No newline at end of file