Fix handling of image upload endpoint to immediately remove files instead of waiting for confirmation.

pull/5/head
sigonasr2 4 years ago
parent 6e50ab2915
commit 91d30e4fa0
  1. 3
      backupfiles.sh
  2. 20
      frontend/src/App.js
  3. 2
      imgparser/projectDivaImgParser
  4. 21
      server/app.js
  5. BIN
      server/files/album_art/021.jpg
  6. BIN
      server/files/album_art/022.jpg
  7. BIN
      server/files/album_art/028.jpg
  8. BIN
      server/files/album_art/038.jpg
  9. BIN
      server/files/album_art/061.jpg
  10. BIN
      server/files/album_art/086.jpg
  11. BIN
      server/files/album_art/088.jpg
  12. BIN
      server/files/album_art/106.jpg
  13. BIN
      server/files/album_art/151.jpg
  14. BIN
      server/files/album_art/161.jpg
  15. BIN
      server/files/album_art/168.jpg
  16. BIN
      server/files/album_art/175.jpg.1.1
  17. BIN
      server/files/album_art/227.jpg
  18. BIN
      server/files/album_art/252.jpg
  19. BIN
      server/files/album_art/253.jpg
  20. 343
      server/files/album_art/downloadImages.sh
  21. BIN
      server/files/album_art/small/021.jpg
  22. BIN
      server/files/album_art/small/022.jpg
  23. BIN
      server/files/album_art/small/028.jpg
  24. BIN
      server/files/album_art/small/038.jpg
  25. BIN
      server/files/album_art/small/061.jpg
  26. BIN
      server/files/album_art/small/086.jpg
  27. BIN
      server/files/album_art/small/088.jpg
  28. BIN
      server/files/album_art/small/106.jpg
  29. BIN
      server/files/album_art/small/151.jpg
  30. BIN
      server/files/album_art/small/161.jpg
  31. BIN
      server/files/album_art/small/168.jpg
  32. BIN
      server/files/album_art/small/227.jpg
  33. BIN
      server/files/album_art/small/252.jpg
  34. BIN
      server/files/album_art/small/253.jpg
  35. BIN
      server/files/releases/DivaBot03.zip
  36. 302
      songDataImport.sql
  37. 14
      songDataImport2.sql
  38. 180
      songUpdateImport.sql
  39. 1273
      updateNoteCounts.sql
  40. 50
      updateNoteCounts2.sql
  41. 8
      updateNoteCounts3.sql

@ -0,0 +1,3 @@
pg_dumpall -Upostgres > divar.backup
#psql -f infile postgres #Restore using this command.

@ -1779,11 +1779,16 @@ function ReleaseList(p) {
function DivaBot() {
const releases=[
["02A","http://projectdivar.com/files/releases/DivaBot02A.zip","14 Sep 2020",<><b>Recommended!</b> <i>Label Headers and Redo Song Calibration features added</i></>],
["02","http://projectdivar.com/files/releases/DivaBot02.zip","14 Sep 2020",<>Stable</>],
["01B","http://projectdivar.com/files/releases/DivaBot01B.zip","13 Sep 2020",<><IMAGE_BUG/> <b>BUGGED! DO NOT USE!</b></>],
["01A","http://projectdivar.com/files/releases/DivaBot01A.zip","13 Sep 2020",<><IMAGE_BUG/> <b>BUGGED! DO NOT USE!</b> <i>Speed Improvements</i></>],
["01","http://projectdivar.com/files/releases/DivaBot01.zip","13 Sep 2020",<><IMAGE_BUG/> <b>BUGGED! DO NOT USE!</b> <i>Initial Release</i></>]]
["03","http://projectdivar.com/files/releases/DivaBot03.zip","17 Sep 2020",<><b>Recommended!</b> <i>DLC Update - Compatibility with removed 'bpm' field from database. Fixed bug with ":" in song names.</i></>],
]
const incompatiblereleases=[
["02A","http://projectdivar.com/files/releases/DivaBot02A.zip","14 Sep 2020",<><b style={{color:"red"}}>Incompatible!</b> <i>Label Headers and Redo Song Calibration features added</i></>],
["02","http://projectdivar.com/files/releases/DivaBot02.zip","14 Sep 2020",<><b style={{color:"red"}}>Incompatible!</b></>],
["01B","http://projectdivar.com/files/releases/DivaBot01B.zip","13 Sep 2020",<><IMAGE_BUG/> <b style={{color:"red"}}>Incompatible!</b> <b>BUGGED! DO NOT USE!</b></>],
["01A","http://projectdivar.com/files/releases/DivaBot01A.zip","13 Sep 2020",<><IMAGE_BUG/> <b style={{color:"red"}}>Incompatible!</b> <b>BUGGED! DO NOT USE!</b> <i>Speed Improvements</i></>],
["01","http://projectdivar.com/files/releases/DivaBot01.zip","13 Sep 2020",<><IMAGE_BUG/> <b style={{color:"red"}}>Incompatible!</b> <b>BUGGED! DO NOT USE!</b> <i>Initial Release</i></>]
]
return (
<>
@ -1806,6 +1811,11 @@ function DivaBot() {
<br/><br/><b>This app and Project DivaR</b> itself is open source. You can find its source code <a href="https://github.com/sigonasr2/DivaBot" target="_blank">at this link</a>.
<br/><br/>
If you need an open discussion about how this program works or have any feedbacks/concerns, please contact me via the <b>Project DivaR Discord</b> server (<b>@sigonasr2</b>).
<hr/>
<h3>Incompatible Downloads</h3>
Downloads stored below no longer work due to infrastructure changes or updates that break old apps.
<ReleaseList releases={incompatiblereleases}/>
<hr/>
</>
)
}

@ -1 +1 @@
Subproject commit cdfe63fec298f37a70d3b34ac90cb5cd2a45b479
Subproject commit ac2c50bd39603a8efc4cacdfb704301c97aec3a4

@ -76,6 +76,12 @@ app.get('/songs', (req, res) => {
data[song.id].notecount[song.difficulty]=song.notecount;
} else {
data[song.id]=song
if (data[song.id].rating===null) {
data[song.id].rating={}
}
if (data[song.id].notecount===null) {
data[song.id].notecount={};
}
}})
res.status(200).json(data)
}
@ -1008,7 +1014,7 @@ axios.get('https://api.twitter.com/1.1/search/tweets.json?q=@divarbot', {
setInterval(
()=>{
var uploadData=undefined;
var uploadData=undefined,user=undefined,auth=undefined;
db.query("select * from uploadedplays order by submissiondate asc limit 1;")
.then((data)=>{
if (data.rows.length>0) {
@ -1018,16 +1024,21 @@ setInterval(
})
.then((data)=>{
if (uploadData && data.rows.length>0) {
return axios.post("http://projectdivar.com/image",
{url:uploadData.filename,user:data.rows[0].username,auth:data.rows[0].authentication_token})
user=data.rows[0].username
auth=data.rows[0].authentication_token
return db.query("delete from uploadedplays where id=$1",[uploadData.id])
} else {
throw new Error("Something went wrong!")
}
})
.then((data)=>{
return axios.post("http://projectdivar.com/image",
{url:uploadData.filename,user:user,auth:auth})
})
.then((data)=>{
if (uploadData) {
if (data.data==="Invalid parameters!") {
throw new Error("Invalid parameters while trying to submit play!")
} else {
return db.query("delete from uploadedplays where id=$1",[uploadData.id])
}
}
})

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 77 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

@ -1,165 +1,178 @@
wget https://108memo.jp/images/result-pic/242.jpg &
wget https://108memo.jp/images/result-pic/240.jpg &
wget https://108memo.jp/images/result-pic/243.jpg &
wget https://108memo.jp/images/result-pic/247.jpg &
wget https://108memo.jp/images/result-pic/248.jpg &
wget https://108memo.jp/images/result-pic/241.jpg &
wget https://108memo.jp/images/result-pic/246.jpg &
wget https://108memo.jp/images/result-pic/245.jpg &
wget https://108memo.jp/images/result-pic/244.jpg &
wget https://108memo.jp/images/result-pic/249.jpg &
wget https://108memo.jp/images/result-pic/030.jpg &
wget https://108memo.jp/images/result-pic/027.jpg &
wget https://108memo.jp/images/result-pic/025.jpg &
wget https://108memo.jp/images/result-pic/196.jpg &
wget https://108memo.jp/images/result-pic/004.jpg &
wget https://108memo.jp/images/result-pic/016.jpg &
wget https://108memo.jp/images/result-pic/024.jpg &
wget https://108memo.jp/images/result-pic/059.jpg &
wget https://108memo.jp/images/result-pic/078.jpg &
wget https://108memo.jp/images/result-pic/060.jpg &
wget https://108memo.jp/images/result-pic/073.jpg &
wget https://108memo.jp/images/result-pic/102.jpg &
wget https://108memo.jp/images/result-pic/062.jpg &
wget https://108memo.jp/images/result-pic/056.jpg &
wget https://108memo.jp/images/result-pic/087.jpg &
wget https://108memo.jp/images/result-pic/075.jpg &
wget https://108memo.jp/images/result-pic/074.jpg &
wget https://108memo.jp/images/result-pic/055.jpg &
wget https://108memo.jp/images/result-pic/097.jpg &
wget https://108memo.jp/images/result-pic/114.jpg &
wget https://108memo.jp/images/result-pic/122.jpg &
wget https://108memo.jp/images/result-pic/109.jpg &
wget https://108memo.jp/images/result-pic/089.jpg &
wget https://108memo.jp/images/result-pic/120.jpg &
wget https://108memo.jp/images/result-pic/104.jpg &
wget https://108memo.jp/images/result-pic/123.jpg &
wget https://108memo.jp/images/result-pic/157.jpg &
wget https://108memo.jp/images/result-pic/129.jpg &
wget https://108memo.jp/images/result-pic/232.jpg &
wget https://108memo.jp/images/result-pic/143.jpg &
wget https://108memo.jp/images/result-pic/231.jpg &
wget https://108memo.jp/images/result-pic/148.jpg &
wget https://108memo.jp/images/result-pic/164.jpg &
wget https://108memo.jp/images/result-pic/158.jpg &
wget https://108memo.jp/images/result-pic/147.jpg &
wget https://108memo.jp/images/result-pic/176.jpg &
wget https://108memo.jp/images/result-pic/152.jpg &
wget https://108memo.jp/images/result-pic/149.jpg &
wget https://108memo.jp/images/result-pic/163.jpg &
wget https://108memo.jp/images/result-pic/202.jpg &
wget https://108memo.jp/images/result-pic/165.jpg &
wget https://108memo.jp/images/result-pic/150.jpg &
wget https://108memo.jp/images/result-pic/162.jpg &
wget https://108memo.jp/images/result-pic/128.jpg &
wget https://108memo.jp/images/result-pic/175.jpg &
wget https://108memo.jp/images/result-pic/184.jpg &
wget https://108memo.jp/images/result-pic/146.jpg &
wget https://108memo.jp/images/result-pic/178.jpg &
wget https://108memo.jp/images/result-pic/153.jpg &
wget https://108memo.jp/images/result-pic/181.jpg &
wget https://108memo.jp/images/result-pic/204.jpg &
wget https://108memo.jp/images/result-pic/154.jpg &
wget https://108memo.jp/images/result-pic/170.jpg &
wget https://108memo.jp/images/result-pic/180.jpg &
wget https://108memo.jp/images/result-pic/198.jpg &
wget https://108memo.jp/images/result-pic/207.jpg &
wget https://108memo.jp/images/result-pic/201.jpg &
wget https://108memo.jp/images/result-pic/236.jpg &
wget https://108memo.jp/images/result-pic/175.jpg &
wget https://108memo.jp/images/result-pic/177.jpg &
wget https://108memo.jp/images/result-pic/237.jpg &
wget https://108memo.jp/images/result-pic/228.jpg &
wget https://108memo.jp/images/result-pic/193.jpg &
wget https://108memo.jp/images/result-pic/230.jpg &
wget https://108memo.jp/images/result-pic/212.jpg &
wget https://108memo.jp/images/result-pic/179.jpg &
wget https://108memo.jp/images/result-pic/234.jpg &
wget https://108memo.jp/images/result-pic/229.jpg &
wget https://108memo.jp/images/result-pic/209.jpg &
wget https://108memo.jp/images/result-pic/213.jpg &
wget https://108memo.jp/images/result-pic/208.jpg &
wget https://108memo.jp/images/result-pic/220.jpg &
wget https://108memo.jp/images/result-pic/225.jpg &
wget https://108memo.jp/images/result-pic/218.jpg &
wget https://108memo.jp/images/result-pic/224.jpg &
wget https://108memo.jp/images/result-pic/215.jpg &
wget https://108memo.jp/images/result-pic/190.jpg &
wget https://108memo.jp/images/result-pic/211.jpg &
wget https://108memo.jp/images/result-pic/221.jpg &
wget https://108memo.jp/images/result-pic/223.jpg &
wget https://108memo.jp/images/result-pic/206.jpg &
wget https://108memo.jp/images/result-pic/214.jpg &
wget https://108memo.jp/images/result-pic/210.jpg &
wget https://108memo.jp/images/result-pic/205.jpg &
wget https://108memo.jp/images/result-pic/233.jpg &
wget https://108memo.jp/images/result-pic/131.jpg &
wget https://108memo.jp/images/result-pic/033.jpg &
wget https://108memo.jp/images/result-pic/137.jpg &
wget https://108memo.jp/images/result-pic/235.jpg &
wget https://108memo.jp/images/result-pic/238.jpg &
wget https://108memo.jp/images/result-pic/239.jpg &
wget https://108memo.jp/images/result-pic/009.jpg &
wget https://108memo.jp/images/result-pic/057.jpg &
wget https://108memo.jp/images/result-pic/111.jpg &
wget https://108memo.jp/images/result-pic/132.jpg &
wget https://108memo.jp/images/result-pic/110.jpg &
wget https://108memo.jp/images/result-pic/194.jpg &
wget https://108memo.jp/images/result-pic/064.jpg &
wget https://108memo.jp/images/result-pic/096.jpg &
wget https://108memo.jp/images/result-pic/155.jpg &
wget https://108memo.jp/images/result-pic/219.jpg &
wget https://108memo.jp/images/result-pic/076.jpg &
wget https://108memo.jp/images/result-pic/127.jpg &
wget https://108memo.jp/images/result-pic/169.jpg &
wget https://108memo.jp/images/result-pic/124.jpg &
wget https://108memo.jp/images/result-pic/063.jpg &
wget https://108memo.jp/images/result-pic/125.jpg &
wget https://108memo.jp/images/result-pic/200.jpg &
wget https://108memo.jp/images/result-pic/015.jpg &
wget https://108memo.jp/images/result-pic/085.jpg &
wget https://108memo.jp/images/result-pic/174.jpg &
wget https://108memo.jp/images/result-pic/112.jpg &
wget https://108memo.jp/images/result-pic/116.jpg &
wget https://108memo.jp/images/result-pic/199.jpg &
wget https://108memo.jp/images/result-pic/005.jpg &
wget https://108memo.jp/images/result-pic/203.jpg &
wget https://108memo.jp/images/result-pic/084.jpg &
wget https://108memo.jp/images/result-pic/160.jpg &
wget https://108memo.jp/images/result-pic/159.jpg &
wget https://108memo.jp/images/result-pic/118.jpg &
wget https://108memo.jp/images/result-pic/100.jpg &
wget https://108memo.jp/images/result-pic/167.jpg &
wget https://108memo.jp/images/result-pic/095.jpg &
wget https://108memo.jp/images/result-pic/189.jpg &
wget https://108memo.jp/images/result-pic/139.jpg &
wget https://108memo.jp/images/result-pic/216.jpg &
wget https://108memo.jp/images/result-pic/217.jpg &
wget https://108memo.jp/images/result-pic/156.jpg &
wget https://108memo.jp/images/result-pic/072.jpg &
wget https://108memo.jp/images/result-pic/188.jpg &
wget https://108memo.jp/images/result-pic/222.jpg &
wget https://108memo.jp/images/result-pic/250.jpg &
wget https://108memo.jp/images/result-pic/006.jpg &
wget https://108memo.jp/images/result-pic/000.jpg &
wget https://108memo.jp/images/result-pic/121.jpg &
wget https://108memo.jp/images/result-pic/035.jpg &
wget https://108memo.jp/images/result-pic/117.jpg &
wget https://108memo.jp/images/result-pic/141.jpg &
wget https://108memo.jp/images/result-pic/051.jpg &
wget https://108memo.jp/images/result-pic/138.jpg &
wget https://108memo.jp/images/result-pic/134.jpg &
wget https://108memo.jp/images/result-pic/058.jpg &
wget https://108memo.jp/images/result-pic/171.jpg &
wget https://108memo.jp/images/result-pic/192.jpg &
wget https://108memo.jp/images/result-pic/130.jpg &
wget https://108memo.jp/images/result-pic/105.jpg &
wget https://108memo.jp/images/result-pic/010.jpg &
wget https://108memo.jp/images/result-pic/251.jpg &
wget https://108memo.jp/images/result-pic/071.jpg &
wget https://108memo.jp/images/result-pic/113.jpg &
wget https://108memo.jp/images/result-pic/115.jpg &
wget https://108memo.jp/images/result-pic/099.jpg &
wget https://108memo.jp/images/result-pic/077.jpg &
wget https://108memo.jp/images/result-pic/011.jpg &
# wget https://108memo.jp/images/result-pic/242.jpg &
# wget https://108memo.jp/images/result-pic/240.jpg &
# wget https://108memo.jp/images/result-pic/243.jpg &
# wget https://108memo.jp/images/result-pic/247.jpg &
# wget https://108memo.jp/images/result-pic/248.jpg &
# wget https://108memo.jp/images/result-pic/241.jpg &
# wget https://108memo.jp/images/result-pic/246.jpg &
# wget https://108memo.jp/images/result-pic/245.jpg &
# wget https://108memo.jp/images/result-pic/244.jpg &
# wget https://108memo.jp/images/result-pic/249.jpg &
# wget https://108memo.jp/images/result-pic/030.jpg &
# wget https://108memo.jp/images/result-pic/027.jpg &
# wget https://108memo.jp/images/result-pic/025.jpg &
# wget https://108memo.jp/images/result-pic/196.jpg &
# wget https://108memo.jp/images/result-pic/004.jpg &
# wget https://108memo.jp/images/result-pic/016.jpg &
# wget https://108memo.jp/images/result-pic/024.jpg &
# wget https://108memo.jp/images/result-pic/059.jpg &
# wget https://108memo.jp/images/result-pic/078.jpg &
# wget https://108memo.jp/images/result-pic/060.jpg &
# wget https://108memo.jp/images/result-pic/073.jpg &
# wget https://108memo.jp/images/result-pic/102.jpg &
# wget https://108memo.jp/images/result-pic/062.jpg &
# wget https://108memo.jp/images/result-pic/056.jpg &
# wget https://108memo.jp/images/result-pic/087.jpg &
# wget https://108memo.jp/images/result-pic/075.jpg &
# wget https://108memo.jp/images/result-pic/074.jpg &
# wget https://108memo.jp/images/result-pic/055.jpg &
# wget https://108memo.jp/images/result-pic/097.jpg &
# wget https://108memo.jp/images/result-pic/114.jpg &
# wget https://108memo.jp/images/result-pic/122.jpg &
# wget https://108memo.jp/images/result-pic/109.jpg &
# wget https://108memo.jp/images/result-pic/089.jpg &
# wget https://108memo.jp/images/result-pic/120.jpg &
# wget https://108memo.jp/images/result-pic/104.jpg &
# wget https://108memo.jp/images/result-pic/123.jpg &
# wget https://108memo.jp/images/result-pic/157.jpg &
# wget https://108memo.jp/images/result-pic/129.jpg &
# wget https://108memo.jp/images/result-pic/232.jpg &
# wget https://108memo.jp/images/result-pic/143.jpg &
# wget https://108memo.jp/images/result-pic/231.jpg &
# wget https://108memo.jp/images/result-pic/148.jpg &
# wget https://108memo.jp/images/result-pic/164.jpg &
# wget https://108memo.jp/images/result-pic/158.jpg &
# wget https://108memo.jp/images/result-pic/147.jpg &
# wget https://108memo.jp/images/result-pic/176.jpg &
# wget https://108memo.jp/images/result-pic/152.jpg &
# wget https://108memo.jp/images/result-pic/149.jpg &
# wget https://108memo.jp/images/result-pic/163.jpg &
# wget https://108memo.jp/images/result-pic/202.jpg &
# wget https://108memo.jp/images/result-pic/165.jpg &
# wget https://108memo.jp/images/result-pic/150.jpg &
# wget https://108memo.jp/images/result-pic/162.jpg &
# wget https://108memo.jp/images/result-pic/128.jpg &
# wget https://108memo.jp/images/result-pic/175.jpg &
# wget https://108memo.jp/images/result-pic/184.jpg &
# wget https://108memo.jp/images/result-pic/146.jpg &
# wget https://108memo.jp/images/result-pic/178.jpg &
# wget https://108memo.jp/images/result-pic/153.jpg &
# wget https://108memo.jp/images/result-pic/181.jpg &
# wget https://108memo.jp/images/result-pic/204.jpg &
# wget https://108memo.jp/images/result-pic/154.jpg &
# wget https://108memo.jp/images/result-pic/170.jpg &
# wget https://108memo.jp/images/result-pic/180.jpg &
# wget https://108memo.jp/images/result-pic/198.jpg &
# wget https://108memo.jp/images/result-pic/207.jpg &
# wget https://108memo.jp/images/result-pic/201.jpg &
# wget https://108memo.jp/images/result-pic/236.jpg &
# wget https://108memo.jp/images/result-pic/175.jpg &
# wget https://108memo.jp/images/result-pic/177.jpg &
# wget https://108memo.jp/images/result-pic/237.jpg &
# wget https://108memo.jp/images/result-pic/228.jpg &
# wget https://108memo.jp/images/result-pic/193.jpg &
# wget https://108memo.jp/images/result-pic/230.jpg &
# wget https://108memo.jp/images/result-pic/212.jpg &
# wget https://108memo.jp/images/result-pic/179.jpg &
# wget https://108memo.jp/images/result-pic/234.jpg &
# wget https://108memo.jp/images/result-pic/229.jpg &
# wget https://108memo.jp/images/result-pic/209.jpg &
# wget https://108memo.jp/images/result-pic/213.jpg &
# wget https://108memo.jp/images/result-pic/208.jpg &
# wget https://108memo.jp/images/result-pic/220.jpg &
# wget https://108memo.jp/images/result-pic/225.jpg &
# wget https://108memo.jp/images/result-pic/218.jpg &
# wget https://108memo.jp/images/result-pic/224.jpg &
# wget https://108memo.jp/images/result-pic/215.jpg &
# wget https://108memo.jp/images/result-pic/190.jpg &
# wget https://108memo.jp/images/result-pic/211.jpg &
# wget https://108memo.jp/images/result-pic/221.jpg &
# wget https://108memo.jp/images/result-pic/223.jpg &
# wget https://108memo.jp/images/result-pic/206.jpg &
# wget https://108memo.jp/images/result-pic/214.jpg &
# wget https://108memo.jp/images/result-pic/210.jpg &
# wget https://108memo.jp/images/result-pic/205.jpg &
# wget https://108memo.jp/images/result-pic/233.jpg &
# wget https://108memo.jp/images/result-pic/131.jpg &
# wget https://108memo.jp/images/result-pic/033.jpg &
# wget https://108memo.jp/images/result-pic/137.jpg &
# wget https://108memo.jp/images/result-pic/235.jpg &
# wget https://108memo.jp/images/result-pic/238.jpg &
# wget https://108memo.jp/images/result-pic/239.jpg &
# wget https://108memo.jp/images/result-pic/009.jpg &
# wget https://108memo.jp/images/result-pic/057.jpg &
# wget https://108memo.jp/images/result-pic/111.jpg &
# wget https://108memo.jp/images/result-pic/132.jpg &
# wget https://108memo.jp/images/result-pic/110.jpg &
# wget https://108memo.jp/images/result-pic/194.jpg &
# wget https://108memo.jp/images/result-pic/064.jpg &
# wget https://108memo.jp/images/result-pic/096.jpg &
# wget https://108memo.jp/images/result-pic/155.jpg &
# wget https://108memo.jp/images/result-pic/219.jpg &
# wget https://108memo.jp/images/result-pic/076.jpg &
# wget https://108memo.jp/images/result-pic/127.jpg &
# wget https://108memo.jp/images/result-pic/169.jpg &
# wget https://108memo.jp/images/result-pic/124.jpg &
# wget https://108memo.jp/images/result-pic/063.jpg &
# wget https://108memo.jp/images/result-pic/125.jpg &
# wget https://108memo.jp/images/result-pic/200.jpg &
# wget https://108memo.jp/images/result-pic/015.jpg &
# wget https://108memo.jp/images/result-pic/085.jpg &
# wget https://108memo.jp/images/result-pic/174.jpg &
# wget https://108memo.jp/images/result-pic/112.jpg &
# wget https://108memo.jp/images/result-pic/116.jpg &
# wget https://108memo.jp/images/result-pic/199.jpg &
# wget https://108memo.jp/images/result-pic/005.jpg &
# wget https://108memo.jp/images/result-pic/203.jpg &
# wget https://108memo.jp/images/result-pic/084.jpg &
# wget https://108memo.jp/images/result-pic/160.jpg &
# wget https://108memo.jp/images/result-pic/159.jpg &
# wget https://108memo.jp/images/result-pic/118.jpg &
# wget https://108memo.jp/images/result-pic/100.jpg &
# wget https://108memo.jp/images/result-pic/167.jpg &
# wget https://108memo.jp/images/result-pic/095.jpg &
# wget https://108memo.jp/images/result-pic/189.jpg &
# wget https://108memo.jp/images/result-pic/139.jpg &
# wget https://108memo.jp/images/result-pic/216.jpg &
# wget https://108memo.jp/images/result-pic/217.jpg &
# wget https://108memo.jp/images/result-pic/156.jpg &
# wget https://108memo.jp/images/result-pic/072.jpg &
# wget https://108memo.jp/images/result-pic/188.jpg &
# wget https://108memo.jp/images/result-pic/222.jpg &
# wget https://108memo.jp/images/result-pic/250.jpg &
# wget https://108memo.jp/images/result-pic/006.jpg &
# wget https://108memo.jp/images/result-pic/000.jpg &
# wget https://108memo.jp/images/result-pic/121.jpg &
# wget https://108memo.jp/images/result-pic/035.jpg &
# wget https://108memo.jp/images/result-pic/117.jpg &
# wget https://108memo.jp/images/result-pic/141.jpg &
# wget https://108memo.jp/images/result-pic/051.jpg &
# wget https://108memo.jp/images/result-pic/138.jpg &
# wget https://108memo.jp/images/result-pic/134.jpg &
# wget https://108memo.jp/images/result-pic/058.jpg &
# wget https://108memo.jp/images/result-pic/171.jpg &
# wget https://108memo.jp/images/result-pic/192.jpg &
# wget https://108memo.jp/images/result-pic/130.jpg &
# wget https://108memo.jp/images/result-pic/105.jpg &
# wget https://108memo.jp/images/result-pic/010.jpg &
# wget https://108memo.jp/images/result-pic/251.jpg &
# wget https://108memo.jp/images/result-pic/071.jpg &
# wget https://108memo.jp/images/result-pic/113.jpg &
# wget https://108memo.jp/images/result-pic/115.jpg &
# wget https://108memo.jp/images/result-pic/099.jpg &
# wget https://108memo.jp/images/result-pic/077.jpg &
# wget https://108memo.jp/images/result-pic/011.jpg &
# wget https://108memo.jp/images/result-pic/252.jpg &
# wget https://108memo.jp/images/result-pic/253.jpg &
# wget https://108memo.jp/images/result-pic/022.jpg &
# wget https://108memo.jp/images/result-pic/086.jpg &
# wget https://108memo.jp/images/result-pic/088.jpg &
# wget https://108memo.jp/images/result-pic/168.jpg &
# wget https://108memo.jp/images/result-pic/161.jpg &
# wget https://108memo.jp/images/result-pic/038.jpg &
# wget https://108memo.jp/images/result-pic/028.jpg &
# wget https://108memo.jp/images/result-pic/021.jpg &
# wget https://108memo.jp/images/result-pic/061.jpg &
# wget https://108memo.jp/images/result-pic/227.jpg &
# wget https://108memo.jp/images/result-pic/106.jpg &
# wget https://108memo.jp/images/result-pic/151.jpg &

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 869 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

@ -0,0 +1,302 @@
update songs set bpm=153 where id=1;
update songs set album_art='http://projectdivar.com/files/album_art/242.jpg' where id= 1; /*Catch the Wave */;
update songs set bpm=152 where id=2;
update songs set album_art='http://projectdivar.com/files/album_art/240.jpg' where id= 2; /*Alien Alien */;
update songs set bpm=130 where id=3;
update songs set album_art='http://projectdivar.com/files/album_art/243.jpg' where id= 3; /*39 Music! */;
update songs set bpm=128 where id=4;
update songs set album_art='http://projectdivar.com/files/album_art/247.jpg' where id= 4; /*Dreamin Chuchu */;
update songs set bpm=200 where id=5;
update songs set album_art='http://projectdivar.com/files/album_art/248.jpg' where id= 5; /*Hibana */;
update songs set bpm=144 where id=6;
update songs set album_art='http://projectdivar.com/files/album_art/241.jpg' where id= 6; /*Ohedo Julia-Night */;
update songs set bpm=200 where id=7;
update songs set album_art='http://projectdivar.com/files/album_art/246.jpg' where id= 7; /*Teo */;
update songs set bpm=264 where id=8;
update songs set album_art='http://projectdivar.com/files/album_art/245.jpg' where id= 8; /*Jitter Bug */;
update songs set bpm=172 where id=9;
update songs set album_art='http://projectdivar.com/files/album_art/244.jpg' where id= 9; /*Jigsaw Puzzle */;
update songs set bpm=150 where id=10;
update songs set album_art='http://projectdivar.com/files/album_art/249.jpg' where id= 10; /*Roki */;
update songs set bpm=165 where id=11;
update songs set album_art='http://projectdivar.com/files/album_art/030.jpg' where id= 11; /*World is Mine */;
update songs set bpm=170 where id=12;
update songs set album_art='http://projectdivar.com/files/album_art/27.jpg' where id= 12; /*Melt */;
update songs set bpm=215 where id=13;
update songs set album_art='http://projectdivar.com/files/album_art/025.jpg' where id= 13; /*Miracle Paint */;
update songs set bpm=76 where id=14;
update songs set album_art='http://projectdivar.com/files/album_art/196.jpg' where id= 14; /*Sakura no Ame */;
update songs set bpm=150 where id=15;
update songs set album_art='http://projectdivar.com/files/album_art/004.jpg' where id= 15; /*Electric Angel */;
update songs set bpm=240 where id=16;
update songs set album_art='http://projectdivar.com/files/album_art/016.jpg' where id= 16; /*Hatsune Miku no Shoushitsu -DEAD END- */;
update songs set bpm=160 where id=17;
update songs set album_art='http://projectdivar.com/files/album_art/024.jpg' where id= 17; /*Miku Miku ni Shite Ageru♪ */;
update songs set bpm=170 where id=18;
update songs set album_art='http://projectdivar.com/files/album_art/059.jpg' where id= 18; /*Romeo to Cinderella */;
update songs set bpm=216 where id=19;
update songs set album_art='http://projectdivar.com/files/album_art/078.jpg' where id= 19; /*magnet */;
update songs set bpm=136 where id=20;
update songs set album_art='http://projectdivar.com/files/album_art/060.jpg' where id= 20; /*Ai Kotoba */;
update songs set bpm=128 where id=21;
update songs set album_art='http://projectdivar.com/files/album_art/073.jpg' where id= 21; /*Just Be Friends */;
update songs set bpm=98 where id=22;
update songs set album_art='http://projectdivar.com/files/album_art/102.jpg' where id= 22; /*from Y to Y */;
update songs set bpm=150 where id=23;
update songs set album_art='http://projectdivar.com/files/album_art/062.jpg' where id= 23; /*PoPiPo */;
update songs set bpm=144 where id=24;
update songs set album_art='http://projectdivar.com/files/album_art/056.jpg' where id= 24; /*Cantarella */;
update songs set bpm=90 where id=25;
update songs set album_art='http://projectdivar.com/files/album_art/087.jpg' where id= 25; /*Gemini */;
update songs set bpm=100 where id=26;
update songs set album_art='http://projectdivar.com/files/album_art/075.jpg' where id= 26; /*Hajimete no Oto */;
update songs set bpm=146 where id=27;
update songs set album_art='http://projectdivar.com/files/album_art/074.jpg' where id= 27; /*Saihate */;
update songs set bpm=185 where id=28;
update songs set album_art='http://projectdivar.com/files/album_art/055.jpg' where id= 28; /*Colorful × Melody */;
update songs set bpm=200 where id=29;
update songs set album_art='http://projectdivar.com/files/album_art/097.jpg' where id= 29; /*Hatsune Miku no Gekishou */;
update songs set bpm=180 where id=30;
update songs set album_art='http://projectdivar.com/files/album_art/114.jpg' where id= 30; /*Palette */;
update songs set bpm=162 where id=31;
update songs set album_art='http://projectdivar.com/files/album_art/122.jpg' where id= 31; /*SPiCa -39update songs set album_art='s Giving Day Edition- */;
update songs set bpm=102 where id=32;
update songs set album_art='http://projectdivar.com/files/album_art/109.jpg' where id= 32; /*Tsugai Kogarashi */;
update songs set bpm=160 where id=33;
update songs set album_art='http://projectdivar.com/files/album_art/089.jpg' where id= 33; /*Luka Luka★Night Fever */;
update songs set bpm=150 where id=34;
update songs set album_art='http://projectdivar.com/files/album_art/120.jpg' where id= 34; /**Hello*/;
update songs set bpm=159 where id=35;
update songs set album_art='http://projectdivar.com/files/album_art/104.jpg' where id= 35; /*Ura-omote Lovers */;
update songs set bpm=195 where id=36;
update songs set album_art='http://projectdivar.com/files/album_art/123.jpg' where id= 36; /*Rolling Girl */;
update songs set bpm=110 where id=37;
update songs set album_art='http://projectdivar.com/files/album_art/157.jpg' where id= 37; /*Tricolor Airline */;
update songs set bpm=150 where id=38;
update songs set album_art='http://projectdivar.com/files/album_art/129.jpg' where id= 38; /*on the rocks */;
update songs set bpm=138 where id=39;
update songs set album_art='http://projectdivar.com/files/album_art/232.jpg' where id= 39; /*LOL -lots of laugh- */;
update songs set bpm=137 where id=40;
update songs set album_art='http://projectdivar.com/files/album_art/143.jpg' where id= 40; /*Shinkai Shoujo */;
update songs set bpm=220 where id=41;
update songs set album_art='http://projectdivar.com/files/album_art/231.jpg' where id= 41; /*Kimi no Taion */;
update songs set bpm=174 where id=42;
update songs set album_art='http://projectdivar.com/files/album_art/148.jpg' where id= 42; /*Cat Food */;
update songs set bpm=200 where id=43;
update songs set album_art='http://projectdivar.com/files/album_art/164.jpg' where id= 43; /*Himitsu Keisatsu */;
update songs set bpm=140 where id=44;
update songs set album_art='http://projectdivar.com/files/album_art/158.jpg' where id= 44; /*Melancholic */;
update songs set bpm=132 where id=45;
update songs set album_art='http://projectdivar.com/files/album_art/147.jpg' where id= 45; /*Weekender Girl */;
update songs set bpm=126 where id=46;
update songs set album_art='http://projectdivar.com/files/album_art/176.jpg' where id= 46; /*Time Machine */;
update songs set bpm=158 where id=47;
update songs set album_art='http://projectdivar.com/files/album_art/152.jpg' where id= 47; /*DYE */;
update songs set bpm=175 where id=48;
update songs set album_art='http://projectdivar.com/files/album_art/149.jpg' where id= 48; /*Fire◎Flower */;
update songs set bpm=114 where id=49;
update songs set album_art='http://projectdivar.com/files/album_art/163.jpg' where id= 49; /*ACUTE */;
update songs set bpm=135 where id=50;
update songs set album_art='http://projectdivar.com/files/album_art/202.jpg' where id= 50; /*Torinoko City */;
update songs set bpm=165 where id=51;
update songs set album_art='http://projectdivar.com/files/album_art/165.jpg' where id= 51; /*Rimokon */;
update songs set bpm=129 where id=52;
update songs set album_art='http://projectdivar.com/files/album_art/150.jpg' where id= 52; /*FREELY TOMORROW */;
update songs set bpm=130 where id=53;
update songs set album_art='http://projectdivar.com/files/album_art/162.jpg' where id= 53; /*Monochro∞Blue Sky */;
update songs set bpm=171 where id=54;
update songs set album_art='http://projectdivar.com/files/album_art/128.jpg' where id= 54; /*Worldupdate songs set album_art='s End Dancehall */;
update songs set bpm=175 where id=55;
update songs set album_art='http://projectdivar.com/files/album_art/175.jpg' where id= 55; /*Netoge Haijin Sprechchor */;
update songs set bpm=140 where id=56;
update songs set album_art='http://projectdivar.com/files/album_art/184.jpg' where id= 56; /*Nostalogic */;
update songs set bpm=205 where id=57;
update songs set album_art='http://projectdivar.com/files/album_art/146.jpg' where id= 57; /*Unhappy Refrain */;
update songs set bpm=192 where id=58;
update songs set album_art='http://projectdivar.com/files/album_art/178.jpg' where id= 58; /*ODDS&ENDS */;
update songs set bpm=232 where id=59;
update songs set album_art='http://projectdivar.com/files/album_art/153.jpg' where id= 59; /*Tengaku */;
update songs set bpm=165 where id=60;
update songs set album_art='http://projectdivar.com/files/album_art/181.jpg' where id= 60; /*Black★Rock Shooter */;
update songs set bpm=165 where id=61;
update songs set album_art='http://projectdivar.com/files/album_art/204.jpg' where id= 61; /*Sadistic.Music∞Factory */;
update songs set bpm=150 where id=62;
update songs set album_art='http://projectdivar.com/files/album_art/154.jpg' where id= 62; /*Tell Your World */;
update songs set bpm=204 where id=63;
update songs set album_art='http://projectdivar.com/files/album_art/170.jpg' where id= 63; /*Tokyo Teddy Bear */;
update songs set bpm=132 where id=64;
update songs set album_art='http://projectdivar.com/files/album_art/180.jpg' where id= 64; /*Sweet Devil */;
update songs set bpm=154 where id=65;
update songs set album_art='http://projectdivar.com/files/album_art/198.jpg' where id= 65; /*Senbonzakura */;
update songs set bpm=123 where id=66;
update songs set album_art='http://projectdivar.com/files/album_art/207.jpg' where id= 66; /*Sweet Magic */;
update songs set bpm=170 where id=67;
update songs set album_art='http://projectdivar.com/files/album_art/201.jpg' where id= 67; /*Terekakushi Shishunki */;
update songs set bpm=190 where id=68;
update songs set album_art='http://projectdivar.com/files/album_art/236.jpg' where id= 68; /*Amatsukitsune */;
update songs set bpm=226 where id=69;
update songs set album_art='http://projectdivar.com/files/album_art/175.jpg' where id= 69; /*Ageage Again */;
update songs set bpm=125 where id=70;
update songs set album_art='http://projectdivar.com/files/album_art/177.jpg' where id= 70; /*1/6 -out of the gravity- */;
update songs set bpm=145 where id=71;
update songs set album_art='http://projectdivar.com/files/album_art/237.jpg' where id= 71; /*1925 */;
update songs set bpm=147 where id=72;
update songs set album_art='http://projectdivar.com/files/album_art/228.jpg' where id= 72; /*Cendrillon */;
update songs set bpm=127 where id=73;
update songs set album_art='http://projectdivar.com/files/album_art/193.jpg' where id= 73; /*Snowman */;
update songs set bpm=130 where id=74;
update songs set album_art='http://projectdivar.com/files/album_art/230.jpg' where id= 74; /*Gaikotsu Gakudan to Lilia */;
update songs set bpm=150 where id=75;
update songs set album_art='http://projectdivar.com/files/album_art/212.jpg' where id= 75; /*Arifureta Sekai Seifuku */;
update songs set bpm=125 where id=76;
update songs set album_art='http://projectdivar.com/files/album_art/179.jpg' where id= 76; /*Interviewer */;
update songs set bpm=135 where id=77;
update songs set album_art='http://projectdivar.com/files/album_art/234.jpg' where id= 77; /*Piano × Forte × Scandal */;
update songs set bpm=130 where id=78;
update songs set album_art='http://projectdivar.com/files/album_art/229.jpg' where id= 78; /*shake it! */;
update songs set bpm=125 where id=79;
update songs set album_art='http://projectdivar.com/files/album_art/209.jpg' where id= 79; /*Akatsuki Arrival */;
update songs set bpm=140 where id=80;
update songs set album_art='http://projectdivar.com/files/album_art/213.jpg' where id= 80; /*Glory 3usi9 */;
update songs set bpm=120 where id=81;
update songs set album_art='http://projectdivar.com/files/album_art/208.jpg' where id= 81; /*Suki Kirai */;
update songs set bpm=195 where id=82;
update songs set album_art='http://projectdivar.com/files/album_art/220.jpg' where id= 82; /*Yubikiri */;
update songs set bpm=228 where id=83;
update songs set album_art='http://projectdivar.com/files/album_art/225.jpg' where id= 83; /*Blackjack */;
update songs set bpm=102 where id=84;
update songs set album_art='http://projectdivar.com/files/album_art/218.jpg' where id= 84; /*Karakuri Pierrot */;
update songs set bpm=178 where id=85;
update songs set album_art='http://projectdivar.com/files/album_art/224.jpg' where id= 85; /*Narisumashi Genga */;
update songs set bpm=128 where id=86;
update songs set album_art='http://projectdivar.com/files/album_art/215.jpg' where id= 86; /*e*/;
update songs set bpm=168 where id=87;
update songs set album_art='http://projectdivar.com/files/album_art/190.jpg' where id= 87; /*Hello*/;
update songs set bpm=140 where id=88;
update songs set album_art='http://projectdivar.com/files/album_art/211.jpg' where id= 88; /*Meteor */;
update songs set bpm=82 where id=89;
update songs set album_art='http://projectdivar.com/files/album_art/221.jpg' where id= 89; /*soundless voice */;
update songs set bpm=138 where id=90;
update songs set album_art='http://projectdivar.com/files/album_art/223.jpg' where id= 90; /*erase or zero */;
update songs set bpm=160 where id=91;
update songs set album_art='http://projectdivar.com/files/album_art/206.jpg' where id= 91; /*Envy Cat Walk */;
update songs set bpm=143 where id=92;
update songs set album_art='http://projectdivar.com/files/album_art/214.jpg' where id= 92; /*DECORATOR */;
update songs set bpm=180 where id=93;
update songs set album_art='http://projectdivar.com/files/album_art/210.jpg' where id= 93; /*Nijigen Dream Fever */;
update songs set bpm=175 where id=94;
update songs set album_art='http://projectdivar.com/files/album_art/205.jpg' where id= 94; /*Hajimemashite Chikyuujin-san */;
update songs set bpm=128 where id=95;
update songs set album_art='http://projectdivar.com/files/album_art/233.jpg' where id= 95; /*Hand in Hand */;
update songs set bpm=200 where id=96;
update songs set album_art='http://projectdivar.com/files/album_art/131.jpg' where id= 96; /*Shiroi Yuki no Princess wa */;
update songs set bpm=175 where id=97;
update songs set album_art='http://projectdivar.com/files/album_art/033.jpg' where id= 97; /*39 */;
update songs set bpm=250 where id=98;
update songs set album_art='http://projectdivar.com/files/album_art/137.jpg' where id= 98; /*Black Gold */;
update songs set bpm=140 where id=99;
update songs set album_art='http://projectdivar.com/files/album_art/235.jpg' where id= 99; /*Hibikase */;
update songs set bpm=210 where id=100;
update songs set album_art='http://projectdivar.com/files/album_art/238.jpg' where id=100; /*Ghost Rule */;
update songs set bpm=96 where id=101;
update songs set album_art='http://projectdivar.com/files/album_art/239.jpg' where id=101; /*Suna no Wakusei */;
update songs set bpm=133 where id=102;
update songs set album_art='http://projectdivar.com/files/album_art/009.jpg' where id=102; /*The secret garden */;
update songs set bpm=185 where id=103;
update songs set album_art='http://projectdivar.com/files/album_art/057.jpg' where id=103; /*Kocchi Muite Baby */;
update songs set bpm=138 where id=104;
update songs set album_art='http://projectdivar.com/files/album_art/111.jpg' where id=104; /*Sekiranun Graffiti */;
update songs set bpm=160 where id=105;
update songs set album_art='http://projectdivar.com/files/album_art/132.jpg' where id=105; /*YUMEYUME */;
update songs set bpm=169 where id=106;
update songs set album_art='http://projectdivar.com/files/album_art/110.jpg' where id=106; /*Musunde Hiraite Rasetsu to Mukuro */;
update songs set bpm=141 where id=107;
update songs set album_art='http://projectdivar.com/files/album_art/194.jpg' where id=107; /*electro saturator */;
update songs set bpm=165 where id=108;
update songs set album_art='http://projectdivar.com/files/album_art/064.jpg' where id=108; /*Roshin Yuukai */;
update songs set bpm=138 where id=109;
update songs set album_art='http://projectdivar.com/files/album_art/096.jpg' where id=109; /*Double Lariat */;
update songs set bpm=130 where id=110;
update songs set album_art='http://projectdivar.com/files/album_art/155.jpg' where id=110; /*Hai wa Hai ni */;
update songs set bpm=116 where id=111;
update songs set album_art='http://projectdivar.com/files/album_art/219.jpg' where id=111; /*Kowase Kowase */;
update songs set bpm=180 where id=112;
update songs set album_art='http://projectdivar.com/files/album_art/076.jpg' where id=112; /*Hajimete no Koi ga Owaru Toki */;
update songs set bpm=174 where id=113;
update songs set album_art='http://projectdivar.com/files/album_art/127.jpg' where id=113; /*Mousou Sketch */;
update songs set bpm=220 where id=114;
update songs set album_art='http://projectdivar.com/files/album_art/169.jpg' where id=114; /*Den Paradigm */;
update songs set bpm=180 where id=115;
update songs set album_art='http://projectdivar.com/files/album_art/124.jpg' where id=115; /*Kodoku no Hate */;
update songs set bpm=140 where id=116;
update songs set album_art='http://projectdivar.com/files/album_art/063.jpg' where id=116; /*Migikata no Chou */;
update songs set bpm=120 where id=117;
update songs set album_art='http://projectdivar.com/files/album_art/125.jpg' where id=117; /*No Logic */;
update songs set bpm=192 where id=118;
update songs set album_art='http://projectdivar.com/files/album_art/200.jpg' where id=118; /*E? Aa*/;
update songs set bpm=125 where id=119;
update songs set album_art='http://projectdivar.com/files/album_art/015.jpg' where id=119; /*packaged */;
update songs set bpm=135 where id=120;
update songs set album_art='http://projectdivar.com/files/album_art/085.jpg' where id=120; /*Kyodai Shoujo */;
update songs set bpm=180 where id=121;
update songs set album_art='http://projectdivar.com/files/album_art/174.jpg' where id=121; /*Summer Idol */;
update songs set bpm=108 where id=122;
update songs set album_art='http://projectdivar.com/files/album_art/112.jpg' where id=122; /*Sennen no Dokusou Ka */;
update songs set bpm=180 where id=123;
update songs set album_art='http://projectdivar.com/files/album_art/116.jpg' where id=123; /*Boukyaku Shinjuu */;
update songs set bpm=180 where id=124;
update songs set album_art='http://projectdivar.com/files/album_art/199.jpg' where id=124; /*WORLDupdate songs set album_art='S END UMBRELLA */;
update songs set bpm=130 where id=125;
update songs set album_art='http://projectdivar.com/files/album_art/005.jpg' where id=125; /*Koisuru VOC@LOID */;
update songs set bpm=163 where id=126;
update songs set album_art='http://projectdivar.com/files/album_art/203.jpg' where id=126; /*Kami Kyoku */;
update songs set bpm=127 where id=127;
update songs set album_art='http://projectdivar.com/files/album_art/084.jpg' where id=127; /*Yellow */;
update songs set bpm=220 where id=128;
update songs set album_art='http://projectdivar.com/files/album_art/160.jpg' where id=128; /*Negaposi*Continues */;
update songs set bpm=190 where id=129;
update songs set album_art='http://projectdivar.com/files/album_art/159.jpg' where id=129; /*SING&SMILE */;
update songs set bpm=98 where id=130;
update songs set album_art='http://projectdivar.com/files/album_art/118.jpg' where id=130; /*Uta ni Katachi wa Nai Keredo */;
update songs set bpm=135 where id=131;
update songs set album_art='http://projectdivar.com/files/album_art/100.jpg' where id=131; /*Dear */;
update songs set bpm=175 where id=132;
update songs set album_art='http://projectdivar.com/files/album_art/167.jpg' where id=132; /*Dou Iu Koto na no!? */;
update songs set bpm=150 where id=133;
update songs set album_art='http://projectdivar.com/files/album_art/095.jpg' where id=133; /*Clover♣Club */;
update songs set bpm=200 where id=134;
update songs set album_art='http://projectdivar.com/files/album_art/189.jpg' where id=134; /*Rin-chan Nau! */;
update songs set bpm=170 where id=135;
update songs set album_art='http://projectdivar.com/files/album_art/139.jpg' where id=135; /*Shinkai City Underground */;
update songs set bpm=180 where id=136;
update songs set album_art='http://projectdivar.com/files/album_art/216.jpg' where id=136; /*Nisoku Hokou */;
update songs set bpm=130 where id=137;
update songs set album_art='http://projectdivar.com/files/album_art/217.jpg' where id=137; /*PIANO*GIRL */;
update songs set bpm=136 where id=138;
update songs set album_art='http://projectdivar.com/files/album_art/156.jpg' where id=138; /*Systematic Love */;
update songs set bpm=140 where id=139;
update songs set album_art='http://projectdivar.com/files/album_art/072.jpg' where id=139; /*Kokoro */;
update songs set bpm=197 where id=140;
update songs set album_art='http://projectdivar.com/files/album_art/188.jpg' where id=140; /*Yumekui Shirokuro Baku */;
update songs set bpm=110 where id=141;
update songs set album_art='http://projectdivar.com/files/album_art/222.jpg' where id=141; /*Knife */;
update songs set bpm=152 where id=142;
update songs set album_art='http://projectdivar.com/files/album_art/250.jpg' where id=142; /*Bless Your Breath */;
update songs set bpm=175 where id=143;
update songs set album_art='http://projectdivar.com/files/album_art/006.jpg' where id=143; /*Koi wa Sensou */;
update songs set bpm=89 where id=144;
update songs set album_art='http://projectdivar.com/files/album_art/000.jpg' where id=144; /*Anata no Utahime */;
update songs set bpm=82 where id=145;
update songs set album_art='http://projectdivar.com/files/album_art/121.jpg' where id=145; /*Starduster */;
update songs set bpm=195 where id=146;
update songs set album_art='http://projectdivar.com/files/album_art/035.jpg' where id=146; /*StargazeR */;
update songs set bpm=124 where id=147;
update songs set album_art='http://projectdivar.com/files/album_art/117.jpg' where id=147; /*Rin Rin Signal */;
update songs set bpm=148 where id=148;
update songs set album_art='http://projectdivar.com/files/album_art/141.jpg' where id=148; /*Rosary Pale */;
update songs set bpm=150 where id=149;
update songs set album_art='http://projectdivar.com/files/album_art/051.jpg' where id=149; /*Tajuu Mirai no Quartet ~QUARTET THEME~ */;
update songs set bpm=182 where id=150;
update songs set album_art='http://projectdivar.com/files/album_art/138.jpg' where id=150; /*LIKE THE WIND */;
update songs set bpm=172 where id=151;
update songs set album_art='http://projectdivar.com/files/album_art/134.jpg' where id=151; /*AFTER BURNER */;

@ -0,0 +1,14 @@
insert into songs(name,english_name,romanized_name,artist,vocaloid,album_art) values(E'ドラマツルギー',E'Dramaturgy',E'Doramatsurugii',E'Eve',E'Miku','http://projectdivar.com/files/album_art/252.jpg');
insert into songs(name,english_name,romanized_name,artist,vocaloid,album_art) values(E'グリーンライツセレナーデ',E'Greenlights Serenade',E'Guriinraitsu Sereneede',E'Omoi',E'Miku','http://projectdivar.com/files/album_art/253.jpg');
insert into songs(name,english_name,romanized_name,artist,vocaloid,album_art) values(E'マージナル',E'Marginal',E'Marginal',E'OSTER project',E'Miku','http://projectdivar.com/files/album_art/022.jpg');
insert into songs(name,english_name,romanized_name,artist,vocaloid,album_art) values(E'サウンド',E'sound',E'sound',E'baker',E'Miku','http://projectdivar.com/files/album_art/086.jpg');
insert into songs(name,english_name,romanized_name,artist,vocaloid,album_art) values(E'ファインダー (DSLR remix - re:edit)',E'finder (DSLR remix - re:edit)',E'',E'kz (livetune)',E'Miku','http://projectdivar.com/files/album_art/088.jpg');
insert into songs(name,english_name,romanized_name,artist,vocaloid,album_art) values(E'Nyanyanyanyanyanyanya!',E'Nyanyanyanyanyanyanya!',E'',E'daniwellP',E'Miku','http://projectdivar.com/files/album_art/168.jpg');
insert into songs(name,english_name,romanized_name,artist,vocaloid,album_art) values(E'巴里映画少女',E'Paris Eiga Shoujo',E'Paris Cinema Girl',E'apfel note',E'Miku','http://projectdivar.com/files/album_art/161.jpg');
insert into songs(name,english_name,romanized_name,artist,vocaloid,album_art) values(E'星屑ユートピア',E'Hoshikuzu Utopia',E'Stardust Utopia',E'otetsu',E'Luka','http://projectdivar.com/files/album_art/038.jpg');
insert into songs(name,english_name,romanized_name,artist,vocaloid,album_art) values(E'Last Night, Good Night',E'Last Night, Good Night',E'',E'kz (livetune)',E'Miku','http://projectdivar.com/files/album_art/028.jpg');
insert into songs(name,english_name,romanized_name,artist,vocaloid,album_art) values(E'フキゲンワルツ',E'Fukigen Waltz',E'Bad Mood Waltz',E'OSTER project',E'Miku','http://projectdivar.com/files/album_art/021.jpg');
insert into songs(name,english_name,romanized_name,artist,vocaloid,album_art) values(E'Promise',E'Promise',E'',E'samfree',E'Miku, Rin','http://projectdivar.com/files/album_art/061.jpg');
insert into songs(name,english_name,romanized_name,artist,vocaloid,album_art) values(E'アドレサンス',E'Adolescence',E'Adolescence',E'Signal-P',E'Rin, Len','http://projectdivar.com/files/album_art/227.jpg');
insert into songs(name,english_name,romanized_name,artist,vocaloid,album_art) values(E'Leia',E'Leia',E'',E'yuyoyuppe',E'Luka','http://projectdivar.com/files/album_art/106.jpg');
insert into songs(name,english_name,romanized_name,artist,vocaloid,album_art) values(E'Stay with me',E'Stay with me',E'',E'shu-tP',E'MEIKO','http://projectdivar.com/files/album_art/151.jpg');

@ -0,0 +1,180 @@
update songs set name=E'Catch the Wave',english_name=E'Catch the Wave',romanized_name=E'' where id=1;
update songs set name=E'エイリアンエイリアン',english_name=E'Alien Alien',romanized_name=E'Eirian eirian' where id=2;
update songs set name=E'39みゅーじっく!',english_name=E'39 Music!',romanized_name=E'39 myuujikku' where id=3;
update songs set name=E'どりーみんチュチュ',english_name=E'Dreamin Chuchu',romanized_name=E'Doriimin chu chu' where id=4;
update songs set name=E'ヒバナ',english_name=E'HIBANA',romanized_name=E'Hibana' where id=5;
update songs set name=E'大江戸ジュリアナイト',english_name=E'Ooedo Julia-Night',romanized_name=E'Ooedo juria naito' where id=6;
update songs set name=E'テオ',english_name=E'Teo',romanized_name=E'Teo' where id=7;
update songs set name=E'ジターバグ',english_name=E'JITTERBUG',romanized_name=E'Jitaabagu' where id=8;
update songs set name=E'ジグソーパズル',english_name=E'Jigsaw Puzzle',romanized_name=E'Jigusoo puzuru' where id=9;
update songs set name=E'ロキ',english_name=E'ROKI',romanized_name=E'Roki' where id=10;
update songs set name=E'ワールドイズマイン',english_name=E'The World is Mine',romanized_name=E'Waarudo izu main' where id=11;
update songs set name=E'メルト',english_name=E'Melt',romanized_name=E'Meruto' where id=12;
update songs set name=E'ミラクルペイント',english_name=E'Miracle Paint',romanized_name=E'Mirakuru peinto' where id=13;
update songs set name=E'桜ノ雨',english_name=E'Sakura no Ame',romanized_name=E'Sakura no ame' where id=14;
update songs set name=E'えれくとりっく・えんじぇぅ',english_name=E'Electric Angel',romanized_name=E'Erekutorikku enjeu' where id=15;
update songs set name=E'初音ミクの消失 -DEAD END-',english_name=E'The Disappearance of Hatsune Miku',romanized_name=E'Hatsune Miku no shoushitsu' where id=16;
update songs set name=E'みくみくにしてあげる♪',english_name=E'I\'ll Miku-Miku You (For Reals)',romanized_name=E'Miku Miku ni shite ageru (Shiteyanyo)' where id=17;
update songs set name=E'ロミオとシンデレラ',english_name=E'Romeo and Cinderella',romanized_name=E'Romio to shinderera' where id=18;
update songs set name=E'magnet',english_name=E'Magnet',romanized_name=E'magnet' where id=19;
update songs set name=E'愛言葉',english_name=E'Aikotoba',romanized_name=E'Ai kotoba' where id=20;
update songs set name=E'Just Be Friends',english_name=E'',romanized_name=E'Just Be Friends' where id=21;
update songs set name=E'from Y to Y',english_name=E'from Y to Y',romanized_name=E'' where id=22;
update songs set name=E'ぽっぴっぽー',english_name=E'Po Pi Po',romanized_name=E'Poppippoo' where id=23;
update songs set name=E'カンタレラ',english_name=E'Cantarella',romanized_name=E'Kandarera' where id=24;
update songs set name=E'ジェミニ',english_name=E'Gemini',romanized_name=E'Jemini' where id=25;
update songs set name=E'ハジメテノオト',english_name=E'The First Sound',romanized_name=E'Hajimete no oto' where id=26;
update songs set name=E'サイハテ',english_name=E'Saihate',romanized_name=E'Saihate' where id=27;
update songs set name=E'カラフル×メロディ',english_name=E'Colorful × Melody',romanized_name=E'Karafuru × Medodi' where id=28;
update songs set name=E'初音ミクの激唱',english_name=E'The Intense Voice of Hatsune Miku',romanized_name=E'Hatsune Miku no gekishou' where id=29;
update songs set name=E'Palette',english_name=E'Palette',romanized_name=E'' where id=30;
update songs set name=E'SPiCa -39\'s Giving Day Edition-',english_name=E'SPiCa',romanized_name=E'' where id=31;
update songs set name=E'番凩',english_name=E'Wintry Winds',romanized_name=E'Tsugai kogarashi' where id=32;
update songs set name=E'ルカルカ★ナイトフィーバー',english_name=E'Luka Luka★Night Fever',romanized_name=E'Ruka Ruka★naito feebaa' where id=33;
update songs set name=E'*ハロー、プラネット。 (I.M.PLSE-EDIT)',english_name=E'*Hello, Planet.',romanized_name=E'*Haroo, puranetto.' where id=34;
update songs set name=E'裏表ラバーズ',english_name=E'Two-Sided Lovers',romanized_name=E'Ura-omote rabaazu' where id=35;
update songs set name=E'ローリンガール',english_name=E'Rolling Girl',romanized_name=E'Roorin gaaru' where id=36;
update songs set name=E'トリコロール・エア・ライン',english_name=E'Tricolore Airline',romanized_name=E'Torikorooru ea rain' where id=37;
update songs set name=E'on the rocks',english_name=E'On The Rocks',romanized_name=E'on the rocks' where id=38;
update songs set name=E'LOL -lots of laugh-',english_name=E'LOL -lots of laugh-',romanized_name=E'' where id=39;
update songs set name=E'深海少女',english_name=E'Deep Sea Girl',romanized_name=E'Shinkai shoujo' where id=40;
update songs set name=E'君の体温',english_name=E'Kimi no Taion',romanized_name=E'Kimi no taion' where id=41;
update songs set name=E'キャットフード',english_name=E'Cat Food',romanized_name=E'Kyatto fuudo' where id=42;
update songs set name=E'秘密警察',english_name=E'Secret Police',romanized_name=E'Himitsu keisatsu' where id=43;
update songs set name=E'メランコリック',english_name=E'Melancholic',romanized_name=E'Merankorikku' where id=44;
update songs set name=E'Weekender Girl',english_name=E'Weekender Girl',romanized_name=E'' where id=45;
update songs set name=E'タイムマシン',english_name=E'Time Machine',romanized_name=E'taimu mashin' where id=46;
update songs set name=E'DYE',english_name=E'DYE',romanized_name=E'' where id=47;
update songs set name=E'Fire◎Flower',english_name=E'Fire◎Flower',romanized_name=E'' where id=48;
update songs set name=E'ACUTE',english_name=E'ACUTE',romanized_name=E'' where id=49;
update songs set name=E'トリノコシティ',english_name=E'Torinoko City',romanized_name=E'Torinoko shidi' where id=50;
update songs set name=E'リモコン',english_name=E'',romanized_name=E'' where id=51;
update songs set name=E'FREELY TOMORROW',english_name=E'Freely Tomorrow',romanized_name=E'FREELY TOMORROW' where id=52;
update songs set name=E'モノクロ∞ブルースカイ',english_name=E'Monochrome∞Blue Sky',romanized_name=E'Monnokuro∞buruu sukai' where id=53;
update songs set name=E'ワールズエンド・ダンスホール',english_name=E'World\'s End Dance Hall',romanized_name=E'Waaruzuendo dansuhooru' where id=54;
update songs set name=E'ネトゲ廃人シュプレヒコール',english_name=E'The MMORPG Addict\'s Anthem',romanized_name=E'Netoge hijin shupurehikooru' where id=55;
update songs set name=E'Nostalogic',english_name=E'Nostalogic',romanized_name=E'' where id=56;
update songs set name=E'アンハッピーリフレイン',english_name=E'Unhappy Refrain',romanized_name=E'Anhapii refurein' where id=57;
update songs set name=E'ODDS&ENDS',english_name=E'Odds & Ends',romanized_name=E'ODDS&ENDS' where id=58;
update songs set name=E'天樂',english_name=E'Tengaku',romanized_name=E'Tengaku' where id=59;
update songs set name=E'ブラック★ロックシューター',english_name=E'Black★Rock Shooter',romanized_name=E'Burakku★rokku syuudaa' where id=60;
update songs set name=E'Sadistic.Music∞Factory',english_name=E'Sadistic.Music∞Factory',romanized_name=E'' where id=61;
update songs set name=E'Tell Your World',english_name=E'Tell Your World',romanized_name=E'' where id=62;
update songs set name=E'東京テディベア',english_name=E'Tokyo Teddy Bear',romanized_name=E'Tokyo tedi bea' where id=63;
update songs set name=E'Sweet Devil',english_name=E'Sweet Devil',romanized_name=E'' where id=64;
update songs set name=E'千本桜',english_name=E'Senbonzakura',romanized_name=E'Senbonzakura' where id=65;
update songs set name=E'スイートマジック',english_name=E'Sweet Magic',romanized_name=E'Suiito majiku' where id=66;
update songs set name=E'テレカクシ思春期',english_name=E'Terekakushi Shishunki',romanized_name=E'Terekakushi shishunki' where id=67;
update songs set name=E'アマツキツネ',english_name=E'Amatsu Kitsune',romanized_name=E'Amatsu kitsune' where id=68;
update songs set name=E'アゲアゲアゲイン',english_name=E'Ageage Again',romanized_name=E'Ageage again' where id=69;
update songs set name=E'1/6 -out of the gravity-',english_name=E'1/6 -out of the gravity-',romanized_name=E'' where id=70;
update songs set name=E'1925',english_name=E'1925',romanized_name=E'' where id=71;
update songs set name=E'サンドリヨン',english_name=E'Cendrillon',romanized_name=E'Sendoriyon' where id=72;
update songs set name=E'スノーマン',english_name=E'Snowman',romanized_name=E'Sunooman' where id=73;
update songs set name=E'骸骨楽団とリリア',english_name=E'Gaikotsu Gakudan to Riria',romanized_name=E'Gaikotsu gakudan to Riria' where id=74;
update songs set name=E'ありふれたせかいせいふく',english_name=E'Arifureta Sekai Seifuku',romanized_name=E'Arifureta sekai seifuku' where id=75;
update songs set name=E'インタビュア',english_name=E'Interviewer',romanized_name=E'Inkubya' where id=76;
update songs set name=E'ピアノ×フォルテ×スキャンダル',english_name=E'Piano × Forte × Scandal',romanized_name=E'Piano × Forute × Sukyandaru' where id=77;
update songs set name=E'shake it!',english_name=E'shake it!',romanized_name=E'' where id=78;
update songs set name=E'アカツキアライヴァル',english_name=E'Akatsuki Arrival',romanized_name=E'Akatsuki arrival' where id=79;
update songs set name=E'Glory 3usi9',english_name=E'Glory 3usi9',romanized_name=E'' where id=80;
update songs set name=E'スキキライ',english_name=E'Love-Hate',romanized_name=E'Suki kirai' where id=81;
update songs set name=E'指切り',english_name=E'Pinky Swear',romanized_name=E'Yubikiri' where id=82;
update songs set name=E'Blackjack',english_name=E'Blackjack',romanized_name=E'' where id=83;
update songs set name=E'からくりピエロ',english_name=E'Karakuri Pierrot',romanized_name=E'Karakuri pierot' where id=84;
update songs set name=E'なりすましゲンガー',english_name=E'Doubleganger',romanized_name=E'Narisumashi gengaa' where id=85;
update songs set name=E'こちら、幸福安心委員会です。',english_name=E'This is the Happiness and Peace of Mind Committee',romanized_name=E'Kochira, koufuku anshin iinkai desu.' where id=86;
update songs set name=E'Hello, Worker',english_name=E'Hello, Worker',romanized_name=E'' where id=87;
update songs set name=E'メテオ',english_name=E'Meteor',romanized_name=E'Meteo' where id=88;
update songs set name=E'soundless voice',english_name=E'Soundless Voice',romanized_name=E'souldless voice' where id=89;
update songs set name=E'erase or zero',english_name=E'Erase or Zero',romanized_name=E'erase or zero' where id=90;
update songs set name=E'エンヴィキャットウォーク',english_name=E'Envy Cat Walk',romanized_name=E'Enbi kyatto wooku' where id=91;
update songs set name=E'DECORATOR',english_name=E'Decorator',romanized_name=E'DECORATOR' where id=92;
update songs set name=E'二次元ドリームフィーバー',english_name=E'2D Dream Fever',romanized_name=E'Nijigen Doriimu fiibaa' where id=93;
update songs set name=E'はじめまして地球人さん',english_name=E'Nice To Meet You, Mr. Earthling',romanized_name=E'Hajimemashite Chikyuujin-san' where id=94;
update songs set name=E'Hand in Hand',english_name=E'Hand in Hand',romanized_name=E'' where id=95;
update songs set name=E'白い雪のプリンセスは',english_name=E'The Snow White Princess is..',romanized_name=E'Shiroi yuki no purinsesu wa' where id=96;
update songs set name=E'39',english_name=E'39',romanized_name=E'' where id=97;
update songs set name=E'ブラックゴールド',english_name=E'Black Gold',romanized_name=E'Burakku goorudo' where id=98;
update songs set name=E'ヒビカセ',english_name=E'Hibikase',romanized_name=E'Hibikase' where id=99;
update songs set name=E'ゴーストルール',english_name=E'Ghost Rule',romanized_name=E'Goosuto ruuru' where id=100;
update songs set name=E'砂の惑星',english_name=E'Suna no Wakusei feat. Hatsune Miku',romanized_name=E'Suna no wakusei feat. Hatsune Miku' where id=101;
update songs set name=E'The secret garden',english_name=E'The secret garden',romanized_name=E'' where id=102;
update songs set name=E'こっち向いて Baby',english_name=E'Look This Way, Baby',romanized_name=E'Kocchi muite Baby' where id=103;
update songs set name=E'積乱雲グラフィティ',english_name=E'Sekiranun Graffiti',romanized_name=E'Sekiranun gurafiti' where id=104;
update songs set name=E'ゆめゆめ',english_name=E'Yumeyume',romanized_name=E'Yume yume' where id=105;
update songs set name=E'結ンデ開イテ羅刹ト骸',english_name=E'Close and Open, Demons and The Dead',romanized_name=E'Musunde hiraite rasetsu to mukuro' where id=106;
update songs set name=E'エレクトロサチュレイタ',english_name=E'Electrosaturator',romanized_name=E'Erekutoro sachureita' where id=107;
update songs set name=E'炉心融解',english_name=E'Rushin Yukai',romanized_name=E'Roshin yuukai' where id=108;
update songs set name=E'ダブルラリアット',english_name=E'Double Lariat',romanized_name=E'Dapuru rariatto' where id=109;
update songs set name=E'ハイハハイニ',english_name=E'Ashes to Ashes',romanized_name=E'Hai wa hai ni' where id=110;
update songs set name=E'壊セ壊セ',english_name=E'Break It, Break It!',romanized_name=E'Kowase kowase' where id=111;
update songs set name=E'初めての恋が終わる時',english_name=E'When First Love Ends',romanized_name=E'Hajimete no hoi ga owaru toki' where id=112;
update songs set name=E'妄想スケッチ',english_name=E'Mousou Sketch',romanized_name=E'Mousou sketch' where id=113;
update songs set name=E'デンパラダイム',english_name=E'Denparadigm',romanized_name=E'Den paradaimu' where id=114;
update songs set name=E'孤独の果て -extend edition-',english_name=E'Solitude\'s End',romanized_name=E'Kodoku no hate' where id=115;
update songs set name=E'右肩の蝶',english_name=E'Butterfly on Your Right Shoulder',romanized_name=E'Migikata no chou' where id=116;
update songs set name=E'No Logic',english_name=E'No Logic',romanized_name=E'' where id=117;
update songs set name=E'え?あぁ、そう。',english_name=E'Hm? Ah, Yes.',romanized_name=E'E? Aa, sou.' where id=118;
update songs set name=E'packaged',english_name=E'Packaged',romanized_name=E'' where id=119;
update songs set name=E'巨大少女',english_name=E'Gigantic Girl',romanized_name=E'Kyodai shoujo' where id=120;
update songs set name=E'サマーアイドル',english_name=E'Summer Idol',romanized_name=E'Samaa aidoru' where id=121;
update songs set name=E'千年の独奏歌',english_name=E'Thousand Year Solo',romanized_name=E'Sennen no dokusou Ka' where id=122;
update songs set name=E'忘却心中',english_name=E'Lover\'s Suicide Oblivion',romanized_name=E'Boukyaku hinjuu' where id=123;
update songs set name=E'WORLD\'S END UMBRELLA',english_name=E'World\'s End Umbrella',romanized_name=E'WORLD\'S END UMBRELLA' where id=124;
update songs set name=E'恋スルVOC@LOID',english_name=E'VOC@LOID in Love',romanized_name=E'Koisuru VOC@LOID' where id=125;
update songs set name=E'神曲',english_name=E'God-Tier Tune',romanized_name=E'Kami kyoku' where id=126;
update songs set name=E'Yellow',english_name=E'Yellow',romanized_name=E'' where id=127;
update songs set name=E'ネガポジ*コンティニューズ',english_name=E'Negaposi*Continues',romanized_name=E'Negapoji*kontinyuuzu' where id=128;
update songs set name=E'SING&SMILE',english_name=E'SING&SMILE',romanized_name=E'' where id=129;
update songs set name=E'歌に形はないけれど',english_name=E'Though My Song Has No Form',romanized_name=E'Uta ni katachi wa nai keredo' where id=130;
update songs set name=E'Dear',english_name=E'Dear',romanized_name=E'' where id=131;
update songs set name=E'どういうことなの!?',english_name=E'What Do You Mean!?',romanized_name=E'Dou iu koto na no!?' where id=132;
update songs set name=E'クローバー♣クラブ',english_name=E'Clover♣Club',romanized_name=E'kuroobaa kurapu' where id=133;
update songs set name=E'リンちゃんなう!',english_name=E'Rin-chan Now!',romanized_name=E'Rin-chan nau!' where id=134;
update songs set name=E'深海シティアンダーグラウンド',english_name=E'Deep Sea City Underground',romanized_name=E'Shinkai city andaaguraundo' where id=135;
update songs set name=E'二息歩行',english_name=E'Two Breaths Walking',romanized_name=E'Nisoku hokou' where id=136;
update songs set name=E'PIANO*GIRL',english_name=E'PIANO*GIRL',romanized_name=E'' where id=137;
update songs set name=E'システマティック・ラヴ',english_name=E'Systematic Love',romanized_name=E'Shisutematikku rabu' where id=138;
update songs set name=E'ココロ',english_name=E'Kokoro',romanized_name=E'' where id=139;
update songs set name=E'夢喰い白黒バク',english_name=E'Dream-Eating Monochrome Baku',romanized_name=E'Yumekui shirokuro baku' where id=140;
update songs set name=E'Knife',english_name=E'Knife',romanized_name=E'' where id=141;
update songs set name=E'ブレス・ユア・ブレス',english_name=E'Bless Your Breath',romanized_name=E'Buresu yua buresu' where id=142;
update songs set name=E'恋は戦争',english_name=E'Love is War',romanized_name=E'Koi wa sensou' where id=143;
update songs set name=E'あなたの歌姫',english_name=E'I\'m Your Diva',romanized_name=E'Anata no utahime' where id=144;
update songs set name=E'Starduster',english_name=E'Starduster',romanized_name=E'' where id=145;
update songs set name=E'StargazeR',english_name=E'StargazeR',romanized_name=E'' where id=146;
update songs set name=E'リンリンシグナル',english_name=E'RinRin Signal',romanized_name=E'Rin Rin shugynaru' where id=147;
update songs set name=E'Rosary Pale',english_name=E'Rosary Pale',romanized_name=E'' where id=148;
update songs set name=E'多重未来のカルテット~QUARTET THEME~',english_name=E'Quartet of Multiple Futures',romanized_name=E'Tajuu mirai no karudetto' where id=149;
update songs set name=E'LIKE THE WIND',english_name=E'LIKE THE WIND',romanized_name=E'' where id=150;
update songs set name=E'AFTER BURNER',english_name=E'AFTER BURNER',romanized_name=E'' where id=151;
update songs set name=E'ストロボナイツ',english_name=E'Strobe Nights',romanized_name=E'Sutorobo naito' where id=152;
update songs set name=E'VOiCE',english_name=E'VOiCE',romanized_name=E'' where id=153;
update songs set name=E'恋色病棟',english_name=E'Love-Colored Ward',romanized_name=E'Koi iro byoutou' where id=154;
update songs set name=E'ねこみみスイッチ',english_name=E'NekoMimi Switch',romanized_name=E'Nekomimi suicchi' where id=155;
update songs set name=E'パラジクロロベンゼン',english_name=E'Paradichlorobenzene',romanized_name=E'Parajikurorobenzen' where id=156;
update songs set name=E'カラフル×セクシィ',english_name=E'Colorful × Sexy',romanized_name=E'Karafuru × Sekushi' where id=157;
update songs set name=E'劣等上等',english_name=E'BRING IT ON',romanized_name=E'Rettou joutou' where id=158;
update songs set name=E'Star Story',english_name=E'Star Story',romanized_name=E'' where id=159;
update songs set name=E'パズル',english_name=E'Puzzle',romanized_name=E'Puzuru' where id=160;
update songs set name=E'キップル・インダストリー',english_name=E'Kipple Industry, Inc.',romanized_name=E'Kyupuru indasutorii' where id=161;
update songs set name=E'パラジクロロベンゼン',english_name=E'Continuing Dream',romanized_name=E'Yume no tsuzuki' where id=162;
update songs set name=E'MEGANE',english_name=E'Glasses',romanized_name=E'Megane' where id=163;
update songs set name=E'Change me',english_name=E'Change Me',romanized_name=E'' where id=164;
update songs set name=E'ドラマツルギー',english_name=E'Dramaturgy',romanized_name=E'Doramatsurugii' where id=165;
update songs set name=E'グリーンライツセレナーデ',english_name=E'Greenlights Serenade',romanized_name=E'Guriinraitsu Sereneede' where id=166;
update songs set name=E'マージナル',english_name=E'Marginal',romanized_name=E'Marginal' where id=167;
update songs set name=E'サウンド',english_name=E'sound',romanized_name=E'sound' where id=168;
update songs set name=E'ファインダー (DSLR remix - re:edit)',english_name=E'finder (DSLR remix - re:edit)',romanized_name=E'' where id=169;
update songs set name=E'Nyanyanyanyanyanyanya!',english_name=E'Nyanyanyanyanyanyanya!',romanized_name=E'' where id=170;
update songs set name=E'巴里映画少女',english_name=E'Paris Cinema Girl',romanized_name=E'Paris Eiga Shoujo' where id=171;
update songs set name=E'星屑ユートピア',english_name=E'Stardust Utopia',romanized_name=E'Hoshikuzu Utopia' where id=172;
update songs set name=E'Last Night, Good Night',english_name=E'Last Night, Good Night',romanized_name=E'' where id=173;
update songs set name=E'フキゲンワルツ',english_name=E'Bad Mood Waltz',romanized_name=E'Fukigen Waltz' where id=174;
update songs set name=E'Promise',english_name=E'Promise',romanized_name=E'' where id=175;
update songs set name=E'アドレサンス',english_name=E'Adolescence',romanized_name=E'Adolescence' where id=176;
update songs set name=E'Leia',english_name=E'Leia',romanized_name=E'' where id=177;
update songs set name=E'Stay with me',english_name=E'Stay with me',romanized_name=E'' where id=178;
update songs set name=E'Just Be Friends',english_name=E'Just Be Friends',romanized_name=E'' where id=21;
update songs set name=E'リモコン',english_name=E'Remote Controller',romanized_name=E'Rimokon' where id=51;

File diff suppressed because it is too large Load Diff

@ -0,0 +1,50 @@
insert into songdata(songid,difficulty,rating) values(167,'N',5.5);
insert into songdata(songid,difficulty,rating) values(167,'H',6);
insert into songdata(songid,difficulty,rating) values(167,'EX',8);
insert into songdata(songid,difficulty,rating) values(167,'EXEX',9);
insert into songdata(songid,difficulty,rating) values(168,'E',3.5);
insert into songdata(songid,difficulty,rating) values(168,'N',5);
insert into songdata(songid,difficulty,rating) values(168,'H',6);
insert into songdata(songid,difficulty,rating) values(168,'EX',8);
insert into songdata(songid,difficulty,rating) values(168,'EXEX',8.5);
insert into songdata(songid,difficulty,rating) values(169,'E',2);
insert into songdata(songid,difficulty,rating) values(169,'N',4);
insert into songdata(songid,difficulty,rating) values(169,'H',5);
insert into songdata(songid,difficulty,rating) values(169,'EX',7);
insert into songdata(songid,difficulty,rating) values(169,'EXEX',7.5);
insert into songdata(songid,difficulty,rating) values(170,'E',3);
insert into songdata(songid,difficulty,rating) values(170,'N',5.5);
insert into songdata(songid,difficulty,rating) values(170,'H',7.5);
insert into songdata(songid,difficulty,rating) values(170,'EX',9);
insert into songdata(songid,difficulty,rating) values(171,'E',3.5);
insert into songdata(songid,difficulty,rating) values(171,'N',4.5);
insert into songdata(songid,difficulty,rating) values(171,'H',6.5);
insert into songdata(songid,difficulty,rating) values(171,'EX',8);
insert into songdata(songid,difficulty,rating) values(172,'N',5);
insert into songdata(songid,difficulty,rating) values(172,'H',6.5);
insert into songdata(songid,difficulty,rating) values(172,'EX',8);
insert into songdata(songid,difficulty,rating) values(172,'EXEX',8.5);
insert into songdata(songid,difficulty,rating) values(173,'E',2);
insert into songdata(songid,difficulty,rating) values(173,'H',5.5);
insert into songdata(songid,difficulty,rating) values(173,'EX',6.5);
insert into songdata(songid,difficulty,rating) values(174,'N',5);
insert into songdata(songid,difficulty,rating) values(174,'H',7);
insert into songdata(songid,difficulty,rating) values(174,'EX',9.5);
insert into songdata(songid,difficulty,rating) values(174,'EXEX',9.5);
insert into songdata(songid,difficulty,rating) values(175,'E',3.5);
insert into songdata(songid,difficulty,rating) values(175,'N',4.5);
insert into songdata(songid,difficulty,rating) values(175,'H',6);
insert into songdata(songid,difficulty,rating) values(175,'EX',8);
insert into songdata(songid,difficulty,rating) values(175,'EXEX',8);
insert into songdata(songid,difficulty,rating) values(176,'E', );
insert into songdata(songid,difficulty,rating) values(176,'N',4.5);
insert into songdata(songid,difficulty,rating) values(176,'H',5.5);
insert into songdata(songid,difficulty,rating) values(176,'EX',8);
insert into songdata(songid,difficulty,rating) values(177,'N',5.5);
insert into songdata(songid,difficulty,rating) values(177,'H',6.5);
insert into songdata(songid,difficulty,rating) values(177,'EX',8);
insert into songdata(songid,difficulty,rating) values(177,'EXEX',9.5);
insert into songdata(songid,difficulty,rating) values(178,'E',2.5);
insert into songdata(songid,difficulty,rating) values(178,'N',4);
insert into songdata(songid,difficulty,rating) values(178,'H',5);
insert into songdata(songid,difficulty,rating) values(178,'EX',7.5);"

@ -0,0 +1,8 @@
insert into songdata(songid,difficulty,rating) values(165,'E',2);
insert into songdata(songid,difficulty,rating) values(165,'N',4.5);
insert into songdata(songid,difficulty,rating) values(165,'H',7.5);
insert into songdata(songid,difficulty,rating) values(165,'EX',9.5);
insert into songdata(songid,difficulty,rating) values(166,'E',2);
insert into songdata(songid,difficulty,rating) values(166,'N',5);
insert into songdata(songid,difficulty,rating) values(166,'H',7);
insert into songdata(songid,difficulty,rating) values(166,'EX',8.5);
Loading…
Cancel
Save