├── .gitignore ├── .prettierrc ├── README.md ├── bst@asphyxia ├── README.md ├── handlers │ ├── bst2 │ │ ├── common.ts │ │ ├── processing.ts │ │ └── webui.ts │ └── utility │ │ ├── batch.ts │ │ ├── batch_initialize.ts │ │ ├── common.ts │ │ ├── db_manager.ts │ │ ├── initialize.ts │ │ └── webui.ts ├── index.ts ├── models │ ├── bst2 │ │ ├── event_params.ts │ │ ├── profile.ts │ │ └── stagelog.ts │ └── utility │ │ ├── batch.ts │ │ ├── definitions.d.ts │ │ ├── plugin_version.ts │ │ └── webui_message.ts ├── utility │ ├── about.ts │ ├── mapping.ts │ ├── type.ts │ └── utility_functions.ts └── webui │ ├── css │ └── webui_util.css │ ├── js │ └── webui_util.js │ └── profile_detail.pug ├── ddr@asphyxia ├── README.md ├── handlers │ ├── common.ts │ ├── usergamedata.ts │ ├── usergamedata_recv.ts │ └── usergamedata_send.ts ├── index.ts ├── models │ ├── ghost.ts │ ├── profile.ts │ └── score.ts ├── utils.ts └── webui │ ├── js │ └── profile_settings.js │ └── profile_settings.pug ├── gitadora@asphyxia ├── .gitignore ├── README.md ├── const.ts ├── data │ ├── extrastage.ts │ └── mdb │ │ ├── .gitignore │ │ ├── ex.b64 │ │ ├── fz.b64 │ │ ├── gw.b64 │ │ ├── hv.b64 │ │ ├── index.ts │ │ ├── mt.b64 │ │ ├── nt.b64 │ │ └── re.b64 ├── handlers │ ├── FavoriteMusic.ts │ ├── MusicList.ts │ ├── SharedScores.ts │ ├── info.ts │ ├── profiles.ts │ └── webui.ts ├── index.ts ├── models │ ├── Responses │ │ ├── battledataresponse.ts │ │ ├── checkplayerresponse.ts │ │ ├── playablemusicresponse.ts │ │ ├── playerplayinforesponse.ts │ │ ├── playerrecordresponse.ts │ │ ├── playerstickerresponse.ts │ │ ├── saveprofileresponse.ts │ │ └── secretmusicresponse.ts │ ├── commonmusicdata.ts │ ├── extra.ts │ ├── favoritemusic.ts │ ├── playerinfo.ts │ ├── playerranking.ts │ ├── playerstickerresponse.ts │ ├── profile.ts │ ├── record.ts │ ├── scores.ts │ ├── secretmusicentry.ts │ └── secretmusicresponse.ts ├── utils │ ├── index.ts │ └── logger.ts └── webui │ ├── leaderboards.pug │ └── profile_player_info.pug ├── iidx@asphyxia ├── README.md ├── data │ ├── grade.json │ └── music_open.json ├── handlers │ ├── gamesystem.ts │ ├── grade.ts │ ├── music.ts │ ├── pc.ts │ ├── ranking.ts │ ├── shop.ts │ └── webui.ts ├── index.ts ├── models │ ├── activity.ts │ ├── arena.ts │ ├── badge.ts │ ├── custom.ts │ ├── event.ts │ ├── extraboss.ts │ ├── favorite.ts │ ├── grade.ts │ ├── lightning.ts │ ├── pcdata.ts │ ├── profile.ts │ ├── ranking.ts │ ├── rival.ts │ ├── score.ts │ ├── shop.ts │ ├── tutorial.ts │ └── worldtourism.ts ├── pug │ ├── GLD │ │ └── pcget.pug │ ├── HDD │ │ └── pcget.pug │ ├── I00 │ │ └── pcget.pug │ ├── JDJ │ │ └── pcget.pug │ ├── JDZ │ │ └── pcget.pug │ ├── KDZ │ │ └── pcget.pug │ └── LDJ │ │ ├── 21pcget.pug │ │ ├── 22pcget.pug │ │ ├── 23pcget.pug │ │ ├── 24pcget.pug │ │ ├── 25pcget.pug │ │ ├── 26pcget.pug │ │ ├── 27pcget.pug │ │ ├── 28pcget.pug │ │ ├── 29pcget.pug │ │ ├── 30pcget.pug │ │ ├── 31pcget.pug │ │ ├── 32pcget.pug │ │ └── pcget.pug ├── util.ts └── webui │ ├── asset │ └── js │ │ ├── detail.js │ │ └── setting.js │ ├── profile_-----detail.pug │ ├── profile_----setting.pug │ ├── profile_---rival.pug │ ├── profile_--score.pug │ └── profile_-data.pug ├── jubeat@asphyxia ├── README.md ├── index.ts ├── models │ ├── course.ts │ ├── profile.ts │ └── score.ts ├── routes │ ├── gameend.ts │ ├── gametop.ts │ ├── lobby.ts │ └── shopinfo.ts ├── static │ ├── data.ts │ └── raw_course.json └── templates │ ├── gameInfos.ts │ └── profiles.ts ├── mga@asphyxia ├── README.md └── index.ts ├── museca@asphyxia ├── README.md ├── data │ ├── .gitignore │ ├── CommunityPlusMDB.ts │ ├── OnePlusHalfMDB.ts │ ├── helper.ts │ ├── mdb_community_plus.json │ └── mdb_one_plus_half.json ├── handlers │ ├── common.ts │ └── player.ts ├── index.ts ├── models │ ├── profile.ts │ └── scores.ts └── utils.ts ├── nostalgia@asphyxia ├── README.md ├── data │ ├── .gitignore │ ├── FirstMusic.ts │ ├── ForteMusic.ts │ ├── course.json.b64 │ ├── first_mdb.json.b64 │ ├── forte_mdb.json.b64 │ ├── helper.ts │ └── island.json.b64 ├── handler │ ├── common.ts │ ├── player.ts │ └── webui.ts ├── index.ts ├── models │ ├── profile.ts │ └── scores.ts ├── utils.ts └── webui │ └── profile_fix_login.pug ├── popn-hello@asphyxia ├── README.md ├── handler │ ├── player.ts │ └── webui.ts ├── index.ts ├── models │ ├── profile.ts │ └── scores.ts └── webui │ └── profile_unlock.pug ├── popn@asphyxia ├── README.md ├── handler │ ├── eclale.ts │ ├── fantasia.ts │ ├── lapistoria.ts │ ├── sunny.ts │ ├── tunestreet.ts │ ├── usaneko.ts │ └── utils.ts ├── index.ts ├── models │ ├── achievements.ts │ └── common.ts └── webui │ └── profile_page.pug └── sdvx@asphyxia ├── README.md ├── data ├── exg.ts └── exg_data.json ├── handlers ├── common.ts ├── features.ts ├── profiles.ts └── webui.ts ├── index.ts ├── models ├── counter.ts ├── course_record.ts ├── item.ts ├── matching.ts ├── mix.ts ├── music_record.ts ├── param.ts ├── profile.ts └── skill.ts ├── s3p.ts ├── templates └── load.pug ├── utils.ts └── webui ├── asset ├── audio │ ├── custom_00 │ │ ├── 0.mp3 │ │ └── 1.mp3 │ ├── custom_01 │ │ ├── 0.mp3 │ │ └── 1.mp3 │ ├── custom_02 │ │ ├── 0.mp3 │ │ └── 1.mp3 │ ├── custom_03 │ │ ├── 0.mp3 │ │ └── 1.mp3 │ ├── custom_04 │ │ ├── 0.mp3 │ │ └── 1.mp3 │ ├── custom_05 │ │ ├── 0.mp3 │ │ └── 1.mp3 │ ├── custom_06 │ │ ├── 0.mp3 │ │ └── 1.mp3 │ ├── custom_07 │ │ ├── 0.mp3 │ │ └── 1.mp3 │ ├── custom_08 │ │ ├── 0.mp3 │ │ └── 1.mp3 │ ├── custom_09 │ │ ├── 0.mp3 │ │ ├── 1.mp3 │ │ └── 2.mp3 │ ├── custom_10 │ │ ├── 0.mp3 │ │ ├── 1.mp3 │ │ └── 2.mp3 │ ├── custom_11 │ │ ├── 0.mp3 │ │ ├── 1.mp3 │ │ └── 2.mp3 │ ├── custom_12 │ │ ├── 0.mp3 │ │ ├── 1.mp3 │ │ └── 2.mp3 │ ├── custom_13 │ │ ├── 0.mp3 │ │ ├── 1.mp3 │ │ └── 2.mp3 │ ├── custom_14 │ │ ├── 0.mp3 │ │ ├── 1.mp3 │ │ └── 2.mp3 │ ├── custom_15 │ │ ├── 0.mp3 │ │ └── 1.mp3 │ ├── custom_16 │ │ ├── 0.mp3 │ │ └── 1.mp3 │ ├── custom_17 │ │ ├── 0.mp3 │ │ └── 1.mp3 │ ├── custom_18 │ │ ├── 0.mp3 │ │ └── 1.mp3 │ ├── custom_19 │ │ ├── 0.mp3 │ │ └── 1.mp3 │ ├── custom_20 │ │ ├── 0.mp3 │ │ └── 1.mp3 │ ├── custom_21 │ │ ├── 0.mp3 │ │ └── 1.mp3 │ ├── custom_22 │ │ ├── 0.mp3 │ │ └── 1.mp3 │ ├── custom_23 │ │ ├── 0.mp3 │ │ └── 1.mp3 │ ├── custom_24 │ │ ├── 0.mp3 │ │ └── 1.mp3 │ ├── custom_25 │ │ ├── 0.mp3 │ │ └── 1.mp3 │ ├── custom_26 │ │ ├── 0.mp3 │ │ └── 1.mp3 │ ├── custom_27 │ │ ├── 0.mp3 │ │ └── 1.mp3 │ ├── custom_28 │ │ ├── 0.mp3 │ │ └── 1.mp3 │ ├── custom_29 │ │ ├── 0.mp3 │ │ └── 1.mp3 │ ├── custom_30 │ │ ├── 0.mp3 │ │ └── 1.mp3 │ ├── custom_31 │ │ ├── 0.mp3 │ │ └── 1.mp3 │ ├── custom_32 │ │ ├── 0.mp3 │ │ └── 1.mp3 │ ├── custom_33 │ │ ├── 0.mp3 │ │ └── 1.mp3 │ ├── custom_34 │ │ ├── 0.mp3 │ │ └── 1.mp3 │ ├── custom_35 │ │ ├── 0.mp3 │ │ └── 1.mp3 │ ├── custom_36 │ │ ├── 0.mp3 │ │ └── 1.mp3 │ ├── custom_37 │ │ ├── 0.mp3 │ │ └── 1.mp3 │ ├── custom_38 │ │ ├── 0.mp3 │ │ └── 1.mp3 │ ├── custom_39 │ │ ├── 0.mp3 │ │ └── 1.mp3 │ ├── custom_40 │ │ ├── 0.mp3 │ │ └── 1.mp3 │ ├── custom_41 │ │ ├── 0.mp3 │ │ └── 1.mp3 │ ├── custom_42 │ │ ├── 0.mp3 │ │ └── 1.mp3 │ ├── custom_43 │ │ ├── 0.mp3 │ │ └── 1.mp3 │ ├── custom_44 │ │ ├── 0.mp3 │ │ └── 1.mp3 │ ├── custom_45 │ │ ├── 0.mp3 │ │ └── 1.mp3 │ ├── custom_46 │ │ ├── 0.mp3 │ │ └── 1.mp3 │ ├── custom_47 │ │ ├── 0.mp3 │ │ └── 1.mp3 │ └── special_00 │ │ └── 0.mp3 ├── css │ ├── course.css │ ├── datatables.css │ ├── detail.css │ ├── font │ │ ├── 0001.ttf │ │ ├── 0002.ttf │ │ ├── 0004.ttf │ │ └── 0004.woff │ ├── profile.css │ └── score.css ├── difficulty │ ├── level_small_adv.png │ ├── level_small_exh.png │ ├── level_small_grv.png │ ├── level_small_hvn.png │ ├── level_small_inf.png │ ├── level_small_mxm.png │ ├── level_small_nov.png │ ├── level_small_vvd.png │ └── level_small_xcd.png ├── force │ ├── em6_01_i_eab.png │ ├── em6_02_i_eab.png │ ├── em6_03_i_eab.png │ ├── em6_04_i_eab.png │ ├── em6_05_i_eab.png │ ├── em6_06_i_eab.png │ ├── em6_07_i_eab.png │ ├── em6_08_i_eab.png │ ├── em6_09_i_eab.png │ └── em6_10_i_eab.png ├── grade │ ├── grade_a.png │ ├── grade_a_plus.png │ ├── grade_aa.png │ ├── grade_aa_plus.png │ ├── grade_aaa.png │ ├── grade_aaa_plus.png │ ├── grade_b.png │ ├── grade_c.png │ ├── grade_d.png │ ├── grade_no.png │ └── grade_s.png ├── js │ ├── course.js │ ├── datatables.js │ ├── detail.js │ ├── import_assets.js │ ├── lazyload.min.js │ ├── preview.js │ └── score.js ├── json │ ├── appeal.json │ ├── course_data.json │ ├── data.json │ └── music_db.json ├── mark_0.png ├── mark_1.png ├── mark_2.png ├── mark_3.png ├── mark_4.png ├── mark_5.png ├── nostamp.png ├── skill_lv │ ├── skill_00.png │ ├── skill_01.png │ ├── skill_02.png │ ├── skill_03.png │ ├── skill_04.png │ ├── skill_05.png │ ├── skill_06.png │ ├── skill_07.png │ ├── skill_08.png │ ├── skill_09.png │ ├── skill_10.png │ ├── skill_11.png │ └── skill_12.png ├── skill_num │ ├── num_mmscore_0.png │ ├── num_mmscore_1.png │ ├── num_mmscore_2.png │ ├── num_mmscore_3.png │ ├── num_mmscore_4.png │ ├── num_mmscore_5.png │ ├── num_mmscore_6.png │ ├── num_mmscore_7.png │ ├── num_mmscore_8.png │ └── num_mmscore_9.png ├── skill_tex_percent.png └── video │ ├── booth.mp4 │ ├── ii.mp4 │ └── iii.mp4 ├── automation_mixes.pug ├── import_assets.pug ├── profile_--detail.pug ├── profile_--setting.pug ├── profile_-score.pug ├── profile_course.pug └── question and answer.pug /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/README.md -------------------------------------------------------------------------------- /bst@asphyxia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/bst@asphyxia/README.md -------------------------------------------------------------------------------- /bst@asphyxia/handlers/bst2/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/bst@asphyxia/handlers/bst2/common.ts -------------------------------------------------------------------------------- /bst@asphyxia/handlers/bst2/processing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/bst@asphyxia/handlers/bst2/processing.ts -------------------------------------------------------------------------------- /bst@asphyxia/handlers/bst2/webui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/bst@asphyxia/handlers/bst2/webui.ts -------------------------------------------------------------------------------- /bst@asphyxia/handlers/utility/batch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/bst@asphyxia/handlers/utility/batch.ts -------------------------------------------------------------------------------- /bst@asphyxia/handlers/utility/batch_initialize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/bst@asphyxia/handlers/utility/batch_initialize.ts -------------------------------------------------------------------------------- /bst@asphyxia/handlers/utility/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/bst@asphyxia/handlers/utility/common.ts -------------------------------------------------------------------------------- /bst@asphyxia/handlers/utility/db_manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/bst@asphyxia/handlers/utility/db_manager.ts -------------------------------------------------------------------------------- /bst@asphyxia/handlers/utility/initialize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/bst@asphyxia/handlers/utility/initialize.ts -------------------------------------------------------------------------------- /bst@asphyxia/handlers/utility/webui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/bst@asphyxia/handlers/utility/webui.ts -------------------------------------------------------------------------------- /bst@asphyxia/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/bst@asphyxia/index.ts -------------------------------------------------------------------------------- /bst@asphyxia/models/bst2/event_params.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/bst@asphyxia/models/bst2/event_params.ts -------------------------------------------------------------------------------- /bst@asphyxia/models/bst2/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/bst@asphyxia/models/bst2/profile.ts -------------------------------------------------------------------------------- /bst@asphyxia/models/bst2/stagelog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/bst@asphyxia/models/bst2/stagelog.ts -------------------------------------------------------------------------------- /bst@asphyxia/models/utility/batch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/bst@asphyxia/models/utility/batch.ts -------------------------------------------------------------------------------- /bst@asphyxia/models/utility/definitions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/bst@asphyxia/models/utility/definitions.d.ts -------------------------------------------------------------------------------- /bst@asphyxia/models/utility/plugin_version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/bst@asphyxia/models/utility/plugin_version.ts -------------------------------------------------------------------------------- /bst@asphyxia/models/utility/webui_message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/bst@asphyxia/models/utility/webui_message.ts -------------------------------------------------------------------------------- /bst@asphyxia/utility/about.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/bst@asphyxia/utility/about.ts -------------------------------------------------------------------------------- /bst@asphyxia/utility/mapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/bst@asphyxia/utility/mapping.ts -------------------------------------------------------------------------------- /bst@asphyxia/utility/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/bst@asphyxia/utility/type.ts -------------------------------------------------------------------------------- /bst@asphyxia/utility/utility_functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/bst@asphyxia/utility/utility_functions.ts -------------------------------------------------------------------------------- /bst@asphyxia/webui/css/webui_util.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/bst@asphyxia/webui/css/webui_util.css -------------------------------------------------------------------------------- /bst@asphyxia/webui/js/webui_util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/bst@asphyxia/webui/js/webui_util.js -------------------------------------------------------------------------------- /bst@asphyxia/webui/profile_detail.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/bst@asphyxia/webui/profile_detail.pug -------------------------------------------------------------------------------- /ddr@asphyxia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/ddr@asphyxia/README.md -------------------------------------------------------------------------------- /ddr@asphyxia/handlers/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/ddr@asphyxia/handlers/common.ts -------------------------------------------------------------------------------- /ddr@asphyxia/handlers/usergamedata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/ddr@asphyxia/handlers/usergamedata.ts -------------------------------------------------------------------------------- /ddr@asphyxia/handlers/usergamedata_recv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/ddr@asphyxia/handlers/usergamedata_recv.ts -------------------------------------------------------------------------------- /ddr@asphyxia/handlers/usergamedata_send.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/ddr@asphyxia/handlers/usergamedata_send.ts -------------------------------------------------------------------------------- /ddr@asphyxia/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/ddr@asphyxia/index.ts -------------------------------------------------------------------------------- /ddr@asphyxia/models/ghost.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/ddr@asphyxia/models/ghost.ts -------------------------------------------------------------------------------- /ddr@asphyxia/models/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/ddr@asphyxia/models/profile.ts -------------------------------------------------------------------------------- /ddr@asphyxia/models/score.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/ddr@asphyxia/models/score.ts -------------------------------------------------------------------------------- /ddr@asphyxia/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/ddr@asphyxia/utils.ts -------------------------------------------------------------------------------- /ddr@asphyxia/webui/js/profile_settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/ddr@asphyxia/webui/js/profile_settings.js -------------------------------------------------------------------------------- /ddr@asphyxia/webui/profile_settings.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/ddr@asphyxia/webui/profile_settings.pug -------------------------------------------------------------------------------- /gitadora@asphyxia/.gitignore: -------------------------------------------------------------------------------- 1 | apisamples/ -------------------------------------------------------------------------------- /gitadora@asphyxia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/gitadora@asphyxia/README.md -------------------------------------------------------------------------------- /gitadora@asphyxia/const.ts: -------------------------------------------------------------------------------- 1 | export const PLUGIN_VER = 1; -------------------------------------------------------------------------------- /gitadora@asphyxia/data/extrastage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/gitadora@asphyxia/data/extrastage.ts -------------------------------------------------------------------------------- /gitadora@asphyxia/data/mdb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/gitadora@asphyxia/data/mdb/.gitignore -------------------------------------------------------------------------------- /gitadora@asphyxia/data/mdb/ex.b64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/gitadora@asphyxia/data/mdb/ex.b64 -------------------------------------------------------------------------------- /gitadora@asphyxia/data/mdb/fz.b64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/gitadora@asphyxia/data/mdb/fz.b64 -------------------------------------------------------------------------------- /gitadora@asphyxia/data/mdb/gw.b64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/gitadora@asphyxia/data/mdb/gw.b64 -------------------------------------------------------------------------------- /gitadora@asphyxia/data/mdb/hv.b64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/gitadora@asphyxia/data/mdb/hv.b64 -------------------------------------------------------------------------------- /gitadora@asphyxia/data/mdb/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/gitadora@asphyxia/data/mdb/index.ts -------------------------------------------------------------------------------- /gitadora@asphyxia/data/mdb/mt.b64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/gitadora@asphyxia/data/mdb/mt.b64 -------------------------------------------------------------------------------- /gitadora@asphyxia/data/mdb/nt.b64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/gitadora@asphyxia/data/mdb/nt.b64 -------------------------------------------------------------------------------- /gitadora@asphyxia/data/mdb/re.b64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/gitadora@asphyxia/data/mdb/re.b64 -------------------------------------------------------------------------------- /gitadora@asphyxia/handlers/FavoriteMusic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/gitadora@asphyxia/handlers/FavoriteMusic.ts -------------------------------------------------------------------------------- /gitadora@asphyxia/handlers/MusicList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/gitadora@asphyxia/handlers/MusicList.ts -------------------------------------------------------------------------------- /gitadora@asphyxia/handlers/SharedScores.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/gitadora@asphyxia/handlers/SharedScores.ts -------------------------------------------------------------------------------- /gitadora@asphyxia/handlers/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/gitadora@asphyxia/handlers/info.ts -------------------------------------------------------------------------------- /gitadora@asphyxia/handlers/profiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/gitadora@asphyxia/handlers/profiles.ts -------------------------------------------------------------------------------- /gitadora@asphyxia/handlers/webui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/gitadora@asphyxia/handlers/webui.ts -------------------------------------------------------------------------------- /gitadora@asphyxia/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/gitadora@asphyxia/index.ts -------------------------------------------------------------------------------- /gitadora@asphyxia/models/Responses/battledataresponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/gitadora@asphyxia/models/Responses/battledataresponse.ts -------------------------------------------------------------------------------- /gitadora@asphyxia/models/Responses/checkplayerresponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/gitadora@asphyxia/models/Responses/checkplayerresponse.ts -------------------------------------------------------------------------------- /gitadora@asphyxia/models/Responses/playablemusicresponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/gitadora@asphyxia/models/Responses/playablemusicresponse.ts -------------------------------------------------------------------------------- /gitadora@asphyxia/models/Responses/playerplayinforesponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/gitadora@asphyxia/models/Responses/playerplayinforesponse.ts -------------------------------------------------------------------------------- /gitadora@asphyxia/models/Responses/playerrecordresponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/gitadora@asphyxia/models/Responses/playerrecordresponse.ts -------------------------------------------------------------------------------- /gitadora@asphyxia/models/Responses/playerstickerresponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/gitadora@asphyxia/models/Responses/playerstickerresponse.ts -------------------------------------------------------------------------------- /gitadora@asphyxia/models/Responses/saveprofileresponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/gitadora@asphyxia/models/Responses/saveprofileresponse.ts -------------------------------------------------------------------------------- /gitadora@asphyxia/models/Responses/secretmusicresponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/gitadora@asphyxia/models/Responses/secretmusicresponse.ts -------------------------------------------------------------------------------- /gitadora@asphyxia/models/commonmusicdata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/gitadora@asphyxia/models/commonmusicdata.ts -------------------------------------------------------------------------------- /gitadora@asphyxia/models/extra.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/gitadora@asphyxia/models/extra.ts -------------------------------------------------------------------------------- /gitadora@asphyxia/models/favoritemusic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/gitadora@asphyxia/models/favoritemusic.ts -------------------------------------------------------------------------------- /gitadora@asphyxia/models/playerinfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/gitadora@asphyxia/models/playerinfo.ts -------------------------------------------------------------------------------- /gitadora@asphyxia/models/playerranking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/gitadora@asphyxia/models/playerranking.ts -------------------------------------------------------------------------------- /gitadora@asphyxia/models/playerstickerresponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/gitadora@asphyxia/models/playerstickerresponse.ts -------------------------------------------------------------------------------- /gitadora@asphyxia/models/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/gitadora@asphyxia/models/profile.ts -------------------------------------------------------------------------------- /gitadora@asphyxia/models/record.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/gitadora@asphyxia/models/record.ts -------------------------------------------------------------------------------- /gitadora@asphyxia/models/scores.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/gitadora@asphyxia/models/scores.ts -------------------------------------------------------------------------------- /gitadora@asphyxia/models/secretmusicentry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/gitadora@asphyxia/models/secretmusicentry.ts -------------------------------------------------------------------------------- /gitadora@asphyxia/models/secretmusicresponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/gitadora@asphyxia/models/secretmusicresponse.ts -------------------------------------------------------------------------------- /gitadora@asphyxia/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/gitadora@asphyxia/utils/index.ts -------------------------------------------------------------------------------- /gitadora@asphyxia/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/gitadora@asphyxia/utils/logger.ts -------------------------------------------------------------------------------- /gitadora@asphyxia/webui/leaderboards.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/gitadora@asphyxia/webui/leaderboards.pug -------------------------------------------------------------------------------- /gitadora@asphyxia/webui/profile_player_info.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/gitadora@asphyxia/webui/profile_player_info.pug -------------------------------------------------------------------------------- /iidx@asphyxia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/README.md -------------------------------------------------------------------------------- /iidx@asphyxia/data/grade.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/data/grade.json -------------------------------------------------------------------------------- /iidx@asphyxia/data/music_open.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/data/music_open.json -------------------------------------------------------------------------------- /iidx@asphyxia/handlers/gamesystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/handlers/gamesystem.ts -------------------------------------------------------------------------------- /iidx@asphyxia/handlers/grade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/handlers/grade.ts -------------------------------------------------------------------------------- /iidx@asphyxia/handlers/music.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/handlers/music.ts -------------------------------------------------------------------------------- /iidx@asphyxia/handlers/pc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/handlers/pc.ts -------------------------------------------------------------------------------- /iidx@asphyxia/handlers/ranking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/handlers/ranking.ts -------------------------------------------------------------------------------- /iidx@asphyxia/handlers/shop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/handlers/shop.ts -------------------------------------------------------------------------------- /iidx@asphyxia/handlers/webui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/handlers/webui.ts -------------------------------------------------------------------------------- /iidx@asphyxia/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/index.ts -------------------------------------------------------------------------------- /iidx@asphyxia/models/activity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/models/activity.ts -------------------------------------------------------------------------------- /iidx@asphyxia/models/arena.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/models/arena.ts -------------------------------------------------------------------------------- /iidx@asphyxia/models/badge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/models/badge.ts -------------------------------------------------------------------------------- /iidx@asphyxia/models/custom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/models/custom.ts -------------------------------------------------------------------------------- /iidx@asphyxia/models/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/models/event.ts -------------------------------------------------------------------------------- /iidx@asphyxia/models/extraboss.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/models/extraboss.ts -------------------------------------------------------------------------------- /iidx@asphyxia/models/favorite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/models/favorite.ts -------------------------------------------------------------------------------- /iidx@asphyxia/models/grade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/models/grade.ts -------------------------------------------------------------------------------- /iidx@asphyxia/models/lightning.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/models/lightning.ts -------------------------------------------------------------------------------- /iidx@asphyxia/models/pcdata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/models/pcdata.ts -------------------------------------------------------------------------------- /iidx@asphyxia/models/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/models/profile.ts -------------------------------------------------------------------------------- /iidx@asphyxia/models/ranking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/models/ranking.ts -------------------------------------------------------------------------------- /iidx@asphyxia/models/rival.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/models/rival.ts -------------------------------------------------------------------------------- /iidx@asphyxia/models/score.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/models/score.ts -------------------------------------------------------------------------------- /iidx@asphyxia/models/shop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/models/shop.ts -------------------------------------------------------------------------------- /iidx@asphyxia/models/tutorial.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/models/tutorial.ts -------------------------------------------------------------------------------- /iidx@asphyxia/models/worldtourism.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/models/worldtourism.ts -------------------------------------------------------------------------------- /iidx@asphyxia/pug/GLD/pcget.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/pug/GLD/pcget.pug -------------------------------------------------------------------------------- /iidx@asphyxia/pug/HDD/pcget.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/pug/HDD/pcget.pug -------------------------------------------------------------------------------- /iidx@asphyxia/pug/I00/pcget.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/pug/I00/pcget.pug -------------------------------------------------------------------------------- /iidx@asphyxia/pug/JDJ/pcget.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/pug/JDJ/pcget.pug -------------------------------------------------------------------------------- /iidx@asphyxia/pug/JDZ/pcget.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/pug/JDZ/pcget.pug -------------------------------------------------------------------------------- /iidx@asphyxia/pug/KDZ/pcget.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/pug/KDZ/pcget.pug -------------------------------------------------------------------------------- /iidx@asphyxia/pug/LDJ/21pcget.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/pug/LDJ/21pcget.pug -------------------------------------------------------------------------------- /iidx@asphyxia/pug/LDJ/22pcget.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/pug/LDJ/22pcget.pug -------------------------------------------------------------------------------- /iidx@asphyxia/pug/LDJ/23pcget.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/pug/LDJ/23pcget.pug -------------------------------------------------------------------------------- /iidx@asphyxia/pug/LDJ/24pcget.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/pug/LDJ/24pcget.pug -------------------------------------------------------------------------------- /iidx@asphyxia/pug/LDJ/25pcget.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/pug/LDJ/25pcget.pug -------------------------------------------------------------------------------- /iidx@asphyxia/pug/LDJ/26pcget.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/pug/LDJ/26pcget.pug -------------------------------------------------------------------------------- /iidx@asphyxia/pug/LDJ/27pcget.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/pug/LDJ/27pcget.pug -------------------------------------------------------------------------------- /iidx@asphyxia/pug/LDJ/28pcget.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/pug/LDJ/28pcget.pug -------------------------------------------------------------------------------- /iidx@asphyxia/pug/LDJ/29pcget.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/pug/LDJ/29pcget.pug -------------------------------------------------------------------------------- /iidx@asphyxia/pug/LDJ/30pcget.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/pug/LDJ/30pcget.pug -------------------------------------------------------------------------------- /iidx@asphyxia/pug/LDJ/31pcget.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/pug/LDJ/31pcget.pug -------------------------------------------------------------------------------- /iidx@asphyxia/pug/LDJ/32pcget.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/pug/LDJ/32pcget.pug -------------------------------------------------------------------------------- /iidx@asphyxia/pug/LDJ/pcget.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/pug/LDJ/pcget.pug -------------------------------------------------------------------------------- /iidx@asphyxia/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/util.ts -------------------------------------------------------------------------------- /iidx@asphyxia/webui/asset/js/detail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/webui/asset/js/detail.js -------------------------------------------------------------------------------- /iidx@asphyxia/webui/asset/js/setting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/webui/asset/js/setting.js -------------------------------------------------------------------------------- /iidx@asphyxia/webui/profile_-----detail.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/webui/profile_-----detail.pug -------------------------------------------------------------------------------- /iidx@asphyxia/webui/profile_----setting.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/webui/profile_----setting.pug -------------------------------------------------------------------------------- /iidx@asphyxia/webui/profile_---rival.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/webui/profile_---rival.pug -------------------------------------------------------------------------------- /iidx@asphyxia/webui/profile_--score.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/webui/profile_--score.pug -------------------------------------------------------------------------------- /iidx@asphyxia/webui/profile_-data.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/iidx@asphyxia/webui/profile_-data.pug -------------------------------------------------------------------------------- /jubeat@asphyxia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/jubeat@asphyxia/README.md -------------------------------------------------------------------------------- /jubeat@asphyxia/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/jubeat@asphyxia/index.ts -------------------------------------------------------------------------------- /jubeat@asphyxia/models/course.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/jubeat@asphyxia/models/course.ts -------------------------------------------------------------------------------- /jubeat@asphyxia/models/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/jubeat@asphyxia/models/profile.ts -------------------------------------------------------------------------------- /jubeat@asphyxia/models/score.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/jubeat@asphyxia/models/score.ts -------------------------------------------------------------------------------- /jubeat@asphyxia/routes/gameend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/jubeat@asphyxia/routes/gameend.ts -------------------------------------------------------------------------------- /jubeat@asphyxia/routes/gametop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/jubeat@asphyxia/routes/gametop.ts -------------------------------------------------------------------------------- /jubeat@asphyxia/routes/lobby.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/jubeat@asphyxia/routes/lobby.ts -------------------------------------------------------------------------------- /jubeat@asphyxia/routes/shopinfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/jubeat@asphyxia/routes/shopinfo.ts -------------------------------------------------------------------------------- /jubeat@asphyxia/static/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/jubeat@asphyxia/static/data.ts -------------------------------------------------------------------------------- /jubeat@asphyxia/static/raw_course.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/jubeat@asphyxia/static/raw_course.json -------------------------------------------------------------------------------- /jubeat@asphyxia/templates/gameInfos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/jubeat@asphyxia/templates/gameInfos.ts -------------------------------------------------------------------------------- /jubeat@asphyxia/templates/profiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/jubeat@asphyxia/templates/profiles.ts -------------------------------------------------------------------------------- /mga@asphyxia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/mga@asphyxia/README.md -------------------------------------------------------------------------------- /mga@asphyxia/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/mga@asphyxia/index.ts -------------------------------------------------------------------------------- /museca@asphyxia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/museca@asphyxia/README.md -------------------------------------------------------------------------------- /museca@asphyxia/data/.gitignore: -------------------------------------------------------------------------------- 1 | *.xml -------------------------------------------------------------------------------- /museca@asphyxia/data/CommunityPlusMDB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/museca@asphyxia/data/CommunityPlusMDB.ts -------------------------------------------------------------------------------- /museca@asphyxia/data/OnePlusHalfMDB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/museca@asphyxia/data/OnePlusHalfMDB.ts -------------------------------------------------------------------------------- /museca@asphyxia/data/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/museca@asphyxia/data/helper.ts -------------------------------------------------------------------------------- /museca@asphyxia/data/mdb_community_plus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/museca@asphyxia/data/mdb_community_plus.json -------------------------------------------------------------------------------- /museca@asphyxia/data/mdb_one_plus_half.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/museca@asphyxia/data/mdb_one_plus_half.json -------------------------------------------------------------------------------- /museca@asphyxia/handlers/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/museca@asphyxia/handlers/common.ts -------------------------------------------------------------------------------- /museca@asphyxia/handlers/player.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/museca@asphyxia/handlers/player.ts -------------------------------------------------------------------------------- /museca@asphyxia/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/museca@asphyxia/index.ts -------------------------------------------------------------------------------- /museca@asphyxia/models/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/museca@asphyxia/models/profile.ts -------------------------------------------------------------------------------- /museca@asphyxia/models/scores.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/museca@asphyxia/models/scores.ts -------------------------------------------------------------------------------- /museca@asphyxia/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/museca@asphyxia/utils.ts -------------------------------------------------------------------------------- /nostalgia@asphyxia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/nostalgia@asphyxia/README.md -------------------------------------------------------------------------------- /nostalgia@asphyxia/data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/nostalgia@asphyxia/data/.gitignore -------------------------------------------------------------------------------- /nostalgia@asphyxia/data/FirstMusic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/nostalgia@asphyxia/data/FirstMusic.ts -------------------------------------------------------------------------------- /nostalgia@asphyxia/data/ForteMusic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/nostalgia@asphyxia/data/ForteMusic.ts -------------------------------------------------------------------------------- /nostalgia@asphyxia/data/course.json.b64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/nostalgia@asphyxia/data/course.json.b64 -------------------------------------------------------------------------------- /nostalgia@asphyxia/data/first_mdb.json.b64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/nostalgia@asphyxia/data/first_mdb.json.b64 -------------------------------------------------------------------------------- /nostalgia@asphyxia/data/forte_mdb.json.b64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/nostalgia@asphyxia/data/forte_mdb.json.b64 -------------------------------------------------------------------------------- /nostalgia@asphyxia/data/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/nostalgia@asphyxia/data/helper.ts -------------------------------------------------------------------------------- /nostalgia@asphyxia/data/island.json.b64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/nostalgia@asphyxia/data/island.json.b64 -------------------------------------------------------------------------------- /nostalgia@asphyxia/handler/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/nostalgia@asphyxia/handler/common.ts -------------------------------------------------------------------------------- /nostalgia@asphyxia/handler/player.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/nostalgia@asphyxia/handler/player.ts -------------------------------------------------------------------------------- /nostalgia@asphyxia/handler/webui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/nostalgia@asphyxia/handler/webui.ts -------------------------------------------------------------------------------- /nostalgia@asphyxia/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/nostalgia@asphyxia/index.ts -------------------------------------------------------------------------------- /nostalgia@asphyxia/models/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/nostalgia@asphyxia/models/profile.ts -------------------------------------------------------------------------------- /nostalgia@asphyxia/models/scores.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/nostalgia@asphyxia/models/scores.ts -------------------------------------------------------------------------------- /nostalgia@asphyxia/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/nostalgia@asphyxia/utils.ts -------------------------------------------------------------------------------- /nostalgia@asphyxia/webui/profile_fix_login.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/nostalgia@asphyxia/webui/profile_fix_login.pug -------------------------------------------------------------------------------- /popn-hello@asphyxia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/popn-hello@asphyxia/README.md -------------------------------------------------------------------------------- /popn-hello@asphyxia/handler/player.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/popn-hello@asphyxia/handler/player.ts -------------------------------------------------------------------------------- /popn-hello@asphyxia/handler/webui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/popn-hello@asphyxia/handler/webui.ts -------------------------------------------------------------------------------- /popn-hello@asphyxia/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/popn-hello@asphyxia/index.ts -------------------------------------------------------------------------------- /popn-hello@asphyxia/models/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/popn-hello@asphyxia/models/profile.ts -------------------------------------------------------------------------------- /popn-hello@asphyxia/models/scores.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/popn-hello@asphyxia/models/scores.ts -------------------------------------------------------------------------------- /popn-hello@asphyxia/webui/profile_unlock.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/popn-hello@asphyxia/webui/profile_unlock.pug -------------------------------------------------------------------------------- /popn@asphyxia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/popn@asphyxia/README.md -------------------------------------------------------------------------------- /popn@asphyxia/handler/eclale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/popn@asphyxia/handler/eclale.ts -------------------------------------------------------------------------------- /popn@asphyxia/handler/fantasia.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/popn@asphyxia/handler/fantasia.ts -------------------------------------------------------------------------------- /popn@asphyxia/handler/lapistoria.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/popn@asphyxia/handler/lapistoria.ts -------------------------------------------------------------------------------- /popn@asphyxia/handler/sunny.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/popn@asphyxia/handler/sunny.ts -------------------------------------------------------------------------------- /popn@asphyxia/handler/tunestreet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/popn@asphyxia/handler/tunestreet.ts -------------------------------------------------------------------------------- /popn@asphyxia/handler/usaneko.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/popn@asphyxia/handler/usaneko.ts -------------------------------------------------------------------------------- /popn@asphyxia/handler/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/popn@asphyxia/handler/utils.ts -------------------------------------------------------------------------------- /popn@asphyxia/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/popn@asphyxia/index.ts -------------------------------------------------------------------------------- /popn@asphyxia/models/achievements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/popn@asphyxia/models/achievements.ts -------------------------------------------------------------------------------- /popn@asphyxia/models/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/popn@asphyxia/models/common.ts -------------------------------------------------------------------------------- /popn@asphyxia/webui/profile_page.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/popn@asphyxia/webui/profile_page.pug -------------------------------------------------------------------------------- /sdvx@asphyxia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/README.md -------------------------------------------------------------------------------- /sdvx@asphyxia/data/exg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/data/exg.ts -------------------------------------------------------------------------------- /sdvx@asphyxia/data/exg_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/data/exg_data.json -------------------------------------------------------------------------------- /sdvx@asphyxia/handlers/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/handlers/common.ts -------------------------------------------------------------------------------- /sdvx@asphyxia/handlers/features.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/handlers/features.ts -------------------------------------------------------------------------------- /sdvx@asphyxia/handlers/profiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/handlers/profiles.ts -------------------------------------------------------------------------------- /sdvx@asphyxia/handlers/webui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/handlers/webui.ts -------------------------------------------------------------------------------- /sdvx@asphyxia/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/index.ts -------------------------------------------------------------------------------- /sdvx@asphyxia/models/counter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/models/counter.ts -------------------------------------------------------------------------------- /sdvx@asphyxia/models/course_record.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/models/course_record.ts -------------------------------------------------------------------------------- /sdvx@asphyxia/models/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/models/item.ts -------------------------------------------------------------------------------- /sdvx@asphyxia/models/matching.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/models/matching.ts -------------------------------------------------------------------------------- /sdvx@asphyxia/models/mix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/models/mix.ts -------------------------------------------------------------------------------- /sdvx@asphyxia/models/music_record.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/models/music_record.ts -------------------------------------------------------------------------------- /sdvx@asphyxia/models/param.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/models/param.ts -------------------------------------------------------------------------------- /sdvx@asphyxia/models/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/models/profile.ts -------------------------------------------------------------------------------- /sdvx@asphyxia/models/skill.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/models/skill.ts -------------------------------------------------------------------------------- /sdvx@asphyxia/s3p.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/s3p.ts -------------------------------------------------------------------------------- /sdvx@asphyxia/templates/load.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/templates/load.pug -------------------------------------------------------------------------------- /sdvx@asphyxia/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/utils.ts -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_00/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_00/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_00/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_00/1.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_01/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_01/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_01/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_01/1.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_02/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_02/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_02/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_02/1.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_03/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_03/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_03/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_03/1.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_04/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_04/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_04/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_04/1.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_05/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_05/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_05/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_05/1.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_06/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_06/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_06/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_06/1.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_07/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_07/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_07/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_07/1.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_08/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_08/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_08/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_08/1.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_09/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_09/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_09/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_09/1.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_09/2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_09/2.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_10/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_10/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_10/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_10/1.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_10/2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_10/2.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_11/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_11/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_11/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_11/1.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_11/2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_11/2.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_12/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_12/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_12/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_12/1.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_12/2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_12/2.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_13/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_13/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_13/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_13/1.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_13/2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_13/2.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_14/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_14/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_14/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_14/1.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_14/2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_14/2.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_15/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_15/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_15/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_15/1.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_16/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_16/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_16/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_16/1.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_17/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_17/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_17/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_17/1.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_18/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_18/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_18/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_18/1.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_19/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_19/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_19/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_19/1.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_20/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_20/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_20/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_20/1.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_21/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_21/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_21/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_21/1.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_22/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_22/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_22/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_22/1.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_23/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_23/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_23/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_23/1.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_24/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_24/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_24/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_24/1.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_25/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_25/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_25/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_25/1.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_26/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_26/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_26/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_26/1.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_27/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_27/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_27/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_27/1.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_28/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_28/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_28/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_28/1.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_29/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_29/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_29/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_29/1.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_30/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_30/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_30/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_30/1.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_31/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_31/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_31/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_31/1.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_32/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_32/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_32/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_32/1.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_33/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_33/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_33/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_33/1.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_34/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_34/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_34/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_34/1.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_35/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_35/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_35/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_35/1.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_36/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_36/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_36/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_36/1.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_37/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_37/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_37/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_37/1.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_38/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_38/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_38/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_38/1.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_39/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_39/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_39/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_39/1.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_40/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_40/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_40/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_40/1.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_41/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_41/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_41/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_41/1.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_42/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_42/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_42/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_42/1.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_43/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_43/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_43/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_43/1.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_44/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_44/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_44/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_44/1.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_45/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_45/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_45/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_45/1.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_46/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_46/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_46/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_46/1.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_47/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_47/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/custom_47/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/custom_47/1.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/audio/special_00/0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/audio/special_00/0.mp3 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/css/course.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/css/course.css -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/css/datatables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/css/datatables.css -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/css/detail.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/css/detail.css -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/css/font/0001.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/css/font/0001.ttf -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/css/font/0002.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/css/font/0002.ttf -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/css/font/0004.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/css/font/0004.ttf -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/css/font/0004.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/css/font/0004.woff -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/css/profile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/css/profile.css -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/css/score.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/css/score.css -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/difficulty/level_small_adv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/difficulty/level_small_adv.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/difficulty/level_small_exh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/difficulty/level_small_exh.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/difficulty/level_small_grv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/difficulty/level_small_grv.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/difficulty/level_small_hvn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/difficulty/level_small_hvn.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/difficulty/level_small_inf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/difficulty/level_small_inf.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/difficulty/level_small_mxm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/difficulty/level_small_mxm.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/difficulty/level_small_nov.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/difficulty/level_small_nov.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/difficulty/level_small_vvd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/difficulty/level_small_vvd.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/difficulty/level_small_xcd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/difficulty/level_small_xcd.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/force/em6_01_i_eab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/force/em6_01_i_eab.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/force/em6_02_i_eab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/force/em6_02_i_eab.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/force/em6_03_i_eab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/force/em6_03_i_eab.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/force/em6_04_i_eab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/force/em6_04_i_eab.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/force/em6_05_i_eab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/force/em6_05_i_eab.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/force/em6_06_i_eab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/force/em6_06_i_eab.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/force/em6_07_i_eab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/force/em6_07_i_eab.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/force/em6_08_i_eab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/force/em6_08_i_eab.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/force/em6_09_i_eab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/force/em6_09_i_eab.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/force/em6_10_i_eab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/force/em6_10_i_eab.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/grade/grade_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/grade/grade_a.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/grade/grade_a_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/grade/grade_a_plus.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/grade/grade_aa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/grade/grade_aa.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/grade/grade_aa_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/grade/grade_aa_plus.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/grade/grade_aaa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/grade/grade_aaa.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/grade/grade_aaa_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/grade/grade_aaa_plus.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/grade/grade_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/grade/grade_b.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/grade/grade_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/grade/grade_c.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/grade/grade_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/grade/grade_d.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/grade/grade_no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/grade/grade_no.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/grade/grade_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/grade/grade_s.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/js/course.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/js/course.js -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/js/datatables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/js/datatables.js -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/js/detail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/js/detail.js -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/js/import_assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/js/import_assets.js -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/js/lazyload.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/js/lazyload.min.js -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/js/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/js/preview.js -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/js/score.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/js/score.js -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/json/appeal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/json/appeal.json -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/json/course_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/json/course_data.json -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/json/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/json/data.json -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/json/music_db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/json/music_db.json -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/mark_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/mark_0.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/mark_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/mark_1.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/mark_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/mark_2.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/mark_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/mark_3.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/mark_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/mark_4.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/mark_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/mark_5.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/nostamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/nostamp.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/skill_lv/skill_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/skill_lv/skill_00.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/skill_lv/skill_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/skill_lv/skill_01.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/skill_lv/skill_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/skill_lv/skill_02.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/skill_lv/skill_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/skill_lv/skill_03.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/skill_lv/skill_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/skill_lv/skill_04.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/skill_lv/skill_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/skill_lv/skill_05.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/skill_lv/skill_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/skill_lv/skill_06.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/skill_lv/skill_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/skill_lv/skill_07.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/skill_lv/skill_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/skill_lv/skill_08.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/skill_lv/skill_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/skill_lv/skill_09.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/skill_lv/skill_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/skill_lv/skill_10.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/skill_lv/skill_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/skill_lv/skill_11.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/skill_lv/skill_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/skill_lv/skill_12.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/skill_num/num_mmscore_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/skill_num/num_mmscore_0.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/skill_num/num_mmscore_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/skill_num/num_mmscore_1.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/skill_num/num_mmscore_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/skill_num/num_mmscore_2.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/skill_num/num_mmscore_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/skill_num/num_mmscore_3.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/skill_num/num_mmscore_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/skill_num/num_mmscore_4.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/skill_num/num_mmscore_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/skill_num/num_mmscore_5.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/skill_num/num_mmscore_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/skill_num/num_mmscore_6.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/skill_num/num_mmscore_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/skill_num/num_mmscore_7.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/skill_num/num_mmscore_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/skill_num/num_mmscore_8.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/skill_num/num_mmscore_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/skill_num/num_mmscore_9.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/skill_tex_percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/skill_tex_percent.png -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/video/booth.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/video/booth.mp4 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/video/ii.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/video/ii.mp4 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/asset/video/iii.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/asset/video/iii.mp4 -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/automation_mixes.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/automation_mixes.pug -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/import_assets.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/import_assets.pug -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/profile_--detail.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/profile_--detail.pug -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/profile_--setting.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/profile_--setting.pug -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/profile_-score.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/profile_-score.pug -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/profile_course.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/profile_course.pug -------------------------------------------------------------------------------- /sdvx@asphyxia/webui/question and answer.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asphyxia-core/plugins/HEAD/sdvx@asphyxia/webui/question and answer.pug --------------------------------------------------------------------------------